/* =====================
   Hero Section
===================== */
.inno-hero {
    min-height: 85vh;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #1a2a4a 0%, #2a3f6a 50%, #396bad 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.inno-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20S-10 18.954-10 30s8.954 20 20 20 20-8.954 20-20zm30 0c0-11.046-8.954-20-20-20S20 18.954 20 30s8.954 20 20 20 20-8.954 20-20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Geometric shapes */
.geo-shape {
    position: absolute;
    opacity: 0.1;
    animation: floatGeo 20s infinite ease-in-out;
}
.geo-shape.circle-1 {
    width: 500px; height: 500px;
    border: 3px solid #fff; border-radius: 50%;
    top: -150px; right: -150px;
    animation-delay: 0s;
}
.geo-shape.circle-2 {
    width: 280px; height: 280px;
    border: 2px solid #fff; border-radius: 50%;
    bottom: 5%; left: 3%;
    animation-delay: 6s;
}
.geo-shape.triangle {
    width: 0; height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid rgba(255,255,255,0.07);
    top: 20%; left: 15%;
    animation-delay: 3s;
}
.geo-shape.dot-grid {
    width: 180px; height: 180px;
    background-image: radial-gradient(#fff 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    top: 15%; right: 18%;
    opacity: 0.06;
}
.geo-shape.line-1 {
    width: 220px; height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    bottom: 30%; right: 10%;
    transform: rotate(40deg);
    animation-delay: 9s;
}

@keyframes floatGeo {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25%       { transform: translate(20px, -20px) rotate(5deg); }
    50%       { transform: translate(-10px, 10px) rotate(-5deg); }
    75%       { transform: translate(15px, 15px) rotate(3deg); }
}

.hero-content-inno {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: center;
}

.hero-text-inno h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    white-space: nowrap;
}

.hero-text-inno h1 span {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    opacity: 0.85;
    margin-top: 0.4rem;
    white-space: normal;
}

.hero-text-inno p {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 560px;
    margin-bottom: 2.5rem;
}

/* Stats bar */
.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-left: 3px solid rgba(255,255,255,0.35);
    padding-left: 1rem;
}

.hero-stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.7;
    font-weight: 500;
}

.hero-visual-inno {
    display: flex;
    justify-content: center;
    align-items: center;
}

.inno-icon {
    width: 280px;
    height: 280px;
}

.inno-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
}

/* =====================
   Intro / badge section
===================== */
.intro-section {
    padding: 100px 0;
    background: var(--white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(57,107,173,0.1), rgba(121,169,214,0.15));
    color: var(--primary-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(57,107,173,0.2);
}

.intro-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-content p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.9;
}

/* =====================
   Problems Section
===================== */
.problems-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 620px;
    margin: 0 auto;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

.problem-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border-left: 5px solid var(--primary-blue);
    box-shadow: 0 8px 30px rgba(15,23,42,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(57,107,173,0.14);
}

.problem-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.problem-card p {
    color: #666;
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0;
}

/* =====================
   Methodology Section
===================== */
.methodology-section {
    padding: 100px 0;
    background: var(--white);
}

.methodology-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1rem;
}

.method-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(57,107,173,0.1);
    transition: background 0.2s;
}

.method-item:last-child {
    border-bottom: none;
}

.method-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(57,107,173,0.15);
    line-height: 1;
    text-align: center;
    padding-top: 0.1rem;
}

.method-content {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--secondary-blue);
    margin-bottom: 0.35rem;
}

.method-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.method-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.75;
    margin: 0;
}

/* =====================
   Process / Phases Section
===================== */
.process-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #f0f4f9 100%);
}

.phases-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.phase-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.25rem;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2.5rem;
    align-items: start;
    box-shadow: 0 8px 30px rgba(15,23,42,0.06);
    border: 1px solid transparent;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(57,107,173,0.4), rgba(121,169,214,0.2)) border-box;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.phase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 55px rgba(57,107,173,0.13);
}

.phase-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.phase-number {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--secondary-blue);
}

.phase-meta h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin: 0;
}

.phase-duration {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    margin-top: 0.25rem;
}

.phase-body p {
    color: #555;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.phase-deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.deliverable-tag {
    background: linear-gradient(135deg, rgba(57,107,173,0.08), rgba(121,169,214,0.12));
    border: 1px solid rgba(57,107,173,0.18);
    color: var(--primary-blue);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
}

/* =====================
   Deliverables Section
===================== */
.deliverables-section {
    padding: 100px 0;
    background: var(--white);
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.deliverable-card {
    border-radius: 20px;
    padding: 2.25rem;
    background: #f8fafc;
    border: 1px solid rgba(57,107,173,0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.deliverable-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(57,107,173,0.12);
}

.deliverable-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #396bad 0%, #79a9d6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 20px rgba(57,107,173,0.22);
}

.deliverable-icon-wrap .bi {
    color: #fff;
    font-size: 1.4rem;
}

.deliverable-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.deliverable-card p {
    color: #666;
    font-size: 0.97rem;
    line-height: 1.7;
    margin: 0;
}

/* =====================
   Why GlobeMind Section
===================== */
.why-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2a4a 0%, #2a3f6a 50%, #396bad 100%);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50m-40 0a40,40 0 1,0 80,0a40,40 0 1,0 -80,0' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.05'/%3E%3C/svg%3E");
}

.why-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.why-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.why-text p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.85;
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(6px);
}

.value-item .check {
    width: 26px;
    height: 26px;
    min-width: 26px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-weight: 700;
}

.value-item .check svg {
    width: 14px;
    height: 14px;
}

/* =====================
   CTA Section
===================== */
.cta-inno {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1.25rem;
}

.cta-content p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* =====================
   Fade-in animations
===================== */
.inno-fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.inno-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.inno-fade-in.delay-1 { transition-delay: 0.1s; }
.inno-fade-in.delay-2 { transition-delay: 0.2s; }
.inno-fade-in.delay-3 { transition-delay: 0.3s; }
.inno-fade-in.delay-4 { transition-delay: 0.4s; }
.inno-fade-in.delay-5 { transition-delay: 0.5s; }
.inno-fade-in.delay-6 { transition-delay: 0.6s; }

/* =====================
   Responsive
===================== */
@media (max-width: 1024px) {
    .hero-content-inno {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text-inno h1 { white-space: normal; }
    .hero-text-inno p { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-stats { justify-content: center; }
    .hero-stat { align-items: center; }
    .hero-visual-inno { display: none; }
    .why-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .inno-hero { min-height: auto; padding: 120px 0 60px; }
    .hero-text-inno h1 { font-size: 2.2rem; white-space: normal; }
    .hero-text-inno h1 span { font-size: 1.3rem; }
    .hero-stat-value { font-size: 1.6rem; }
    .problems-grid { grid-template-columns: 1fr; }
    .method-item { grid-template-columns: 50px 1fr; gap: 1.25rem; }
    .method-number { font-size: 2rem; }
    .phase-card { grid-template-columns: 1fr; gap: 1rem; }
    .deliverables-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 2rem; }
    .why-text h2 { font-size: 1.9rem; }
    .cta-content h2 { font-size: 1.9rem; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; }
}
