/* 
  Inova4Tech - NextGen Main CSS
  Design System: Cyber-Glass / Ultra-Modern
  Approach: Mobile-First
*/

:root {
    /* Theme Light (Institutional Premium) */
    --bg: #FFFFFF;
    --bg-alt: #F8FAFC;
    --bg-card: #FFFFFF;
    --text-primary: #07132B;
    --text-secondary: #333333;
    --text-muted: #666666;
    --accent-green: #66CDAA;
    --cta-primary: #FF1353;
    --cta-text: #FFFFFF;
    --border-color: rgba(7, 19, 43, 0.08);
    --glass-border: rgba(7, 19, 43, 0.1);
    --glass-blur: blur(20px);
    
    --logo-invert: 1;

    /* Spacing & Layout */
    --container-max: 1200px;
    --container-padding: 24px;
    --header-height: 80px;
    
    /* Typography Modular Scale (1.25) */
    --base-font: 16px;
    --font-h1: 56px;
    --font-h2: 40px;
    --font-h3: 26px;
    --font-body: 18px;
    --font-micro: 14px;
    --font-btn: 16px;
}

[data-theme="dark"] {
    /* Theme Dark (Modern Cyber) */
    --bg: #050508;
    --bg-alt: #0A0A0F;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-primary: #FFFFFF;
    --text-secondary: #E2E8F0;
    --text-muted: #94A3B8;
    --accent-green: #66CDAA;
    --cta-primary: #FF1353;
    --cta-text: #FFFFFF;
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    --logo-invert: 0;
}

/* Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: initial;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text-secondary);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: var(--base-font);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* 3D Canvas Background */
#webgl {
    position: fixed;
    top: 0;
    left: 0;
    outline: none;
    z-index: -1;
    opacity: 0.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography & Display */
.section-title-pink {
    font-size: clamp(2rem, 5vw, 2.5rem);
    background: linear-gradient(135deg, #ff006e 0%, #bd00ff 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    margin-bottom: 2rem;
    display: inline-block;
    text-shadow: 0 10px 30px rgba(255, 0, 110, 0.15);
}

@media (min-width: 768px) {
    .section-title-premium {
        margin-bottom: 4rem;
    }
}

.display-1 {
    font-family: 'DM Serif Display', serif;
    font-size: var(--font-h1);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .display-1 {
        font-size: 36px;
    }
}

.display-2 {
    font-family: 'DM Serif Display', serif;
    font-size: var(--font-h2);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .display-2 {
        font-size: 28px;
    }
}

.display-3 {
    font-family: 'DM Serif Display', serif;
    font-size: var(--font-h3);
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .display-3 {
        font-size: 22px;
    }
}

.gradient {
    color: var(--cta-primary);
}

.text-center {
    text-align: center;
}

.section-title-area {
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--text-dim);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1rem auto 0;
}

@media (min-width: 1024px) {
    .section-title-area {
        margin-bottom: 6rem;
    }
}

/* Grid Systems - Mobile First */
.modern-grid,
.services-grid,
.bento-grid,
.differentials-grid,
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}



/* Tablet Up */
@media (min-width: 768px) {

    .modern-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop Up */
@media (min-width: 1024px) {

    .modern-grid,
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: minmax(320px, auto);
    }

    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .differentials-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 80px;
    }
}
/* Base Icons */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
}

/* Cards */
.modern-card,
.service-card,
.bento-item,
.team-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 2px;
    padding: 2.5rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modern-card {
    text-align: center;
    align-items: center;
}

.modern-card:hover,
.service-card:hover,
.bento-item:hover,
.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 245, 255, 0.1);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.08) 0%, transparent 60%);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    transition: all 0.5s ease;
    transform: scale(0.5);
}

.modern-card:hover .card-glow {
    opacity: 1;
    transform: scale(1);
}

.card-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #00f5ff, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dim);
}

/* /* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s var(--ease-expo);
    border-bottom: 1px solid transparent;
}

.header.is-scrolled {
    height: 70px;
    background: var(--bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-color);
}

@media (min-width: 768px) {
    .header.is-scrolled {
        height: 80px;
    }
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s var(--ease-expo);
    filter: invert(var(--logo-invert)) !important;
}

@media (min-width: 768px) {
    .logo img {
        height: 65px;
    }
}

/* Navigation Component */
.nav-toggle {
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1100;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
}

.nav-toggle span:nth-child(1) {
    top: 0;
}

.nav-toggle span:nth-child(2) {
    top: 9px;
}

.nav-toggle span:nth-child(3) {
    top: 18px;
}


@media (min-width: 993px) {
    .nav-toggle {
        display: none;
    }
}

.nav__list {
    list-style: none;
    display: flex;
}

.nav__link {
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s var(--ease-expo);
    }

    .nav.is-active {
        opacity: 1;
        visibility: visible;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        transform: translateY(30px);
        transition: all 0.5s var(--ease-expo) 0.1s;
    }

    .nav.is-active .nav__list {
        transform: translateY(0);
    }

    .nav__link {
        color: var(--text-primary);
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
}

/* Desktop Menu Styles */
@media (min-width: 993px) {
    .nav {
        display: block;
    }

    .nav__list {
        flex-direction: row;
        gap: 2.5rem;
    }

    .nav__link {
        font-size: 0.85rem;
        color: var(--text-muted);
    }

    .nav__link:hover {
        color: var(--text-primary);
    }
}





.nav-toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.theme-toggle-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
    background: var(--text-primary);
    color: var(--bg);
}

.btn-contact {
    display: none;
}

@media (min-width: 993px) {
    .btn-contact {
        display: inline-block;
        padding: 12px 28px;
        background: var(--cta-primary);
        color: var(--cta-text);
        border: 1px solid var(--cta-primary);
        border-radius: 100px;
        font-weight: 700;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-contact:hover {
        background: transparent;
        color: var(--cta-primary);
    }
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
}

@media (min-width: 993px) {
    .nav__item {
        position: relative;
    }

    .nav__item:hover .dropdown-menu {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(10px);
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        backdrop-filter: var(--glass-blur);
        padding: 1.5rem;
        border-radius: 20px;
        min-width: 280px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.4s var(--ease-expo);
        z-index: 100;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .dropdown-item {
        text-decoration: none;
        color: var(--text-muted);
        font-size: 0.85rem;
        padding: 10px 15px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .dropdown-item:hover {
        background: var(--bg-alt);
        color: var(--text-primary);
        padding-left: 20px;
    }
}

/* Sections */
.section {
    padding: 4rem 0;
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 0;
    }
    
    .logo img {
        height: 50px;
    }
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 0;
    }
}

/* Hero Section (Premium Update) */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background-color: var(--bg);
}

.hero__container {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}

.hero__content {
    max-width: 800px;
    text-align: left;
}

.hero__micro {
    display: block;
    font-size: var(--font-micro);
    font-weight: 500;
    color: var(--accent-green);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero__sub {
    font-size: var(--font-body);
    color: var(--text-secondary);
    max-width: 650px;
    margin-bottom: 32px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero__sub {
        font-size: 16px;
        margin-top: 24px;
        margin-bottom: 32px;
    }
}

.hero__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.hero__link-sec {
    font-size: 16px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.hero__link-sec:hover {
    opacity: 0.7;
}

@media (min-width: 768px) {
    .hero__actions {
        flex-direction: row;
        align-items: center;
        gap: 24px;
    }
}

/* Service Hero - Internal Pages */
.service-hero {
    padding-top: 180px;
    padding-bottom: 80px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .service-hero {
        padding-top: 140px;
        padding-bottom: 60px;
    }
}

/* Magnetic Button (Updated to Premium Style) */
.magnetic-btn {
    position: relative;
    padding: 20px 40px;
    background: var(--cta-primary);
    color: var(--cta-text);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: var(--font-btn);
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-block;
    text-decoration: none;
}

.magnetic-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 19, 83, 0.25);
    filter: brightness(1.1);
}

/* Trust Section & Logo Marquee */
.trust-section {
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
}

.logo-marquee-wrapper {
    position: relative;
    width: 100%;
    margin-top: 4rem;
    /* Side fade masks */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logo-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    padding: 24px 0;
    width: 100%;
}

.logo-item {
    flex: 0 0 auto;
    width: 160px;
    height: 100px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    backdrop-filter: var(--glass-blur);
    transition: all 0.4s var(--ease-expo);
}

.logo-item:hover {
    background: var(--bg-alt);
    border-color: var(--cta-primary);
    transform: translateY(-5px) scale(1.05);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(1) invert(var(--logo-invert, 0));
    opacity: 0.6;
    transition: all 0.4s ease;
}

.logo-item:hover img {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

@keyframes scrollMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}


@media (max-width: 768px) {
    .logo-item {
        width: 130px;
        height: 80px;
        padding: 1rem;
    }

    .logo-marquee__track {
        gap: 1.5rem;
        padding-right: 1.5rem;
        /* Sync with mobile gap */
        animation-duration: 25s;
    }
}






/* Bento Grid Overrides */
.bento-item {
    padding: 2rem;
    border-radius: 2px;
    justify-content: flex-end;
}

@media (min-width: 1024px) {
    .bento-item {
        padding: 48px;
        border-radius: 2px;
    }

    .bento-item--large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento-item--wide {
        grid-column: span 2;
    }

    .bento-item--tall {
        grid-row: span 2;
    }
}

/* Values Grid Section */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 2px;
    transition: all 0.4s var(--ease-expo);
}

@media (min-width: 480px) {
    .value-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-pink);
    transform: translateY(-5px);
}

.value-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--grad-text);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon span {
    color: var(--text-primary);
    font-size: 24px;
}

.value-text h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.value-text p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}


/* Testimonials / Bento specific */
.quote {
    font-size: clamp(1.1rem, 3vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.client-name {
    font-weight: 800;
    color: var(--cta-primary);
    font-size: 1.1rem;
}

.client-info {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Service Cards */
.service-card {
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(102, 205, 170, 0.1);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon span {
    font-size: 2rem;
    color: var(--accent-green);
}

.service-cta {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1.5rem;
}

/* Differentials */
.differentials-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .differentials-content {
        text-align: left;
    }
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 19, 83, 0.1);
    border: 1px solid var(--cta-primary);
    color: var(--cta-primary);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.diff-icon {
    width: 48px;
    height: 48px;
    background: rgba(102, 205, 170, 0.1);
    border: 1px solid var(--accent-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.diff-icon span {
    color: var(--accent-green);
    font-size: 1.5rem;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .image-wrapper {
        margin-top: 0;
        border-radius: 40px;
    }
}

.premium-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
}

.contact-info {
    text-align: center;
}

@media (min-width: 992px) {
    .contact-info {
        text-align: left;
    }
}

.contact-info-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .contact-info-list {
        align-items: flex-start;
    }
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item p a {
    color: var(--text-primary);
    text-decoration: none;
}

.form-input {
    width: 100%;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    padding: 1.25rem;
    border-radius: 2px;
    color: var(--text-primary);
    transition: 0.3s;
}

.form-input:focus {
    border-color: var(--cta-primary);
    outline: none;
    background: var(--bg-card);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.cta-final-box textarea.form-input {
    margin-bottom: 1rem;
}

/* Toast Notification Premium System */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    background: var(--bg-card);
    border-left: 4px solid var(--cta-primary);
    color: var(--text-primary);
    font-weight: 500;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(100px);
    opacity: 0;
    max-width: 400px;
}
.toast-notification.error { border-left-color: #ff3333; }
.toast-notification.success { border-left-color: var(--accent-green); }

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-top: 1rem;
    text-align: left;
}

@media (min-width: 480px) {
    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Locations Section */
.locations-section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .locations-section {
        padding: 6rem 0;
    }
}

.locations-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 4rem auto 0;
    max-width: 1200px;
    width: 100%;
}

@media (min-width: 993px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer */
.footer {
    padding: 4rem 0 2rem 0;
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .footer {
        padding: 6rem 0 3rem 0;
        margin-top: 8rem;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 100px;
        text-align: left;
    }
}

.footer-cta-text {
    color: var(--cta-primary);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 15px;
    justify-content: center;
}

@media (min-width: 992px) {
    .footer-socials {
        justify-content: flex-start;
    }
}

.footer-socials a {
    width: 45px;
    height: 45px;
    background: var(--text-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    transition: 0.3s;
}

.footer-socials a:hover {
    background: var(--cta-primary);
    color: #fff;
    transform: translateY(-5px);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    font-size: 0.8rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom-links a {
    color: var(--text-dim);
    text-decoration: none;
    margin: 0 10px;
}

.footer-title {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-map-area {
    width: 100%;
}

.map-container {
    position: relative;
    width: 100%;
    margin-top: 1rem;
}


/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px !important;
    height: 60px !important;
    aspect-ratio: 1/1 !important;
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-expo);
    cursor: pointer;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    /* Lock circularity */
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: scale(1.1);
    border-color: var(--cta-primary);
}

.back-to-top__rings {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    pointer-events: none;
    transform: rotate(-90deg);
}

.ring-outer,
.ring-inner {
    fill: none;
    stroke: var(--cta-primary);
    stroke-width: 2;
    stroke-dasharray: 283;
    /* 2 * pi * 45 */
    stroke-dashoffset: 283;
    transition: all 0.8s var(--ease-expo);
    opacity: 0.1;
}

.back-to-top:hover .ring-outer {
    stroke-dashoffset: 0;
    opacity: 1;
}

.back-to-top:hover .ring-inner {
    stroke-dashoffset: 80;
    opacity: 0.6;
}

.back-to-top span {
    font-size: 28px;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

@media (min-width: 992px) {
    .back-to-top {
        bottom: 50px;
        right: 50px;
        width: 70px !important;
        height: 70px !important;
    }

    .back-to-top__rings {
        width: 70px;
        height: 70px;
    }
}




/* Tech Plates Cluster */
.tech-cluster {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

@media (min-width: 992px) {
    .tech-cluster--3cols {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        gap: 1.5rem;
    }

    .tech-cluster--3cols .tech-plate {
        flex: 0 1 calc(33.333% - 1rem);
        /* Force 3 per row max */
        min-width: 280px;
    }
}



.tech-plate {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1 1 200px;
}

.tech-icon {
    color: var(--accent-cyan);
    font-size: 1.2rem;
}

.tech-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* CTA Strip */
.cta-strip {
    padding: 4rem 0;
    background: linear-gradient(270deg, #0f0f13, #1a1a24, #0f0f13);
    background-size: 400% 400%;
    animation: gradient-move 15s ease infinite;
    text-align: center;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .cta-strip {
        padding: 6rem 0;
        margin-top: 6rem;
    }
}

/* Timeline */
.experimental-timeline {
    margin-top: 4rem;
    position: relative;
}

.timeline-track {
    position: absolute;
    left: 20px;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--glass-border);
}

@media (min-width: 768px) {
    .timeline-track {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline-step {
    padding: 20px 20px 20px 50px;
    position: relative;
    width: 100%;
}

@media (min-width: 768px) {
    .timeline-step {
        width: 50%;
        padding: 50px;
    }

    .timeline-step:nth-child(even) {
        align-self: flex-end;
        margin-left: 50%;
        text-align: right;
    }
}

/* --- Refactored Home Page Styles --- */

/* Hero Premium */
.hero--premium {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 6rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero--premium .hero__container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero__visual {
    position: relative;
}

.hero__image-frame {
    position: relative;
    padding: 1rem;
}

.hero__img {
    width: 100%;
    height: auto;
    filter: grayscale(0.2) contrast(1.1);
    border-radius: 2px;
}

.frame-line {
    position: absolute;
    background: var(--cta-primary);
    opacity: 0.6;
}

.frame-line--top {
    top: 0;
    right: 0;
    width: 100px;
    height: 2px;
}

.frame-line--left {
    bottom: 0;
    left: 0;
    width: 2px;
    height: 150px;
}

/* Problem & Diagnostic */
.grid-layout--problem {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.diagnostic-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.diagnostic-item {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.diagnostic-item span {
    color: var(--cta-primary);
    font-size: 2rem;
}

.diagnostic-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

/* Methodology Pillars */
.methodology-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pillar {
    padding: 4rem 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s var(--ease-expo);
    backdrop-filter: blur(10px);
}

.pillar:hover {
    transform: translateY(-10px);
    border-color: var(--cta-primary);
    background: var(--bg-alt);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.pillar__num {
    font-family: 'DM Serif Display', serif;
    font-size: 8rem;
    color: var(--text-primary);
    opacity: 0.08;
    position: absolute;
    bottom: -1.5rem;
    right: -1rem;
    line-height: 1;
    pointer-events: none;
    transition: all 0.5s var(--ease-expo);
}

.pillar:hover .pillar__num {
    opacity: 0.15;
    transform: scale(1.1);
    color: var(--cta-primary);
}

.pillar h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--cta-primary);
    position: relative;
    display: inline-block;
}

.pillar h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-green);
    transition: width 0.4s ease;
}

.pillar:hover h3::after {
    width: 60px;
}

.pillar p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 5. SERVICES GRID STRATEGIC */
.services-grid--strategic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-block {
    padding: 3rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: all 0.4s var(--ease-expo);
    border-radius: 2px;
    display: flex;
    flex-direction: column;
}

.service-block:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
    background: var(--bg-alt);
}

.service-block__icon {
    width: 50px;
    height: 50px;
    background: rgba(102, 205, 170, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--accent-green);
    border-radius: 2px;
}

.service-block h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-family: 'DM Serif Display', serif;
}

.service-block p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

/* 6 & 7. QUALIFYING */
.qualifying-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.qualify-box {
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 2px;
}

.qualify-box--is {
    border-left: 4px solid var(--accent-green);
}

.qualify-box--not {
    border-left: 4px solid var(--text-muted);
    opacity: 0.8;
}

.qualify-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.qualify-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.qualify-list li {
    display: flex;
    gap: 1rem;
    align-items: center;
    color: var(--text-secondary);
}

.qualify-list li span {
    color: var(--accent-green);
}

.qualify-box--not .qualify-list li span {
    color: var(--cta-primary);
}

/* 8. PROVA / CASES */
.case-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .case-grid {
        grid-template-columns: 1fr;
    }
}

.case-block {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 4rem;
    border-radius: 2px;
    position: relative;
}

.case-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.case-block h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.case-quote {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.case-quote p {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.case-quote span {
    font-weight: 700;
    color: var(--cta-primary);
}

.testimonial-block {
    background: var(--bg-alt);
    padding: 3rem;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-block p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* 10. CTA FINAL */
.section--final-cta {
    padding: 8rem 0;
}

.cta-final-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-top: 6px solid var(--cta-primary);
    border-radius: 2px;
}

.cta-text {
    font-size: 1.2rem;
    margin: 1.5rem 0 3rem;
    color: var(--text-muted);
}

/* --- Utility --- */
.text-center { text-align: center; }
.bg-alt { background-color: var(--bg-alt); }

/* Animation: Staggered Fade In Up */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-expo);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Custom spacing for displays */
.hero--premium h1 { margin-bottom: 1.5rem; }
.hero--premium .hero__sub { margin-bottom: 3rem; }

.hero__image-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    overflow: hidden;
}

.hero__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero__image-frame {
        max-height: 400px;
        margin-top: 2rem;
    }
}

.btn--premium-red {
    background: var(--cta-primary);
    color: var(--cta-text);
    padding: 1.2rem 2.5rem;
    border: 1px solid var(--cta-primary);
    border-radius: 2px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: 0.4s var(--ease-expo);
}

.btn--premium-red:hover {
    background: transparent;
    color: var(--cta-primary);
}

/* --- Refactored Home Page Section Additions --- */
/* Strategic Services */
.services-grid--strategic {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.service-block {
    text-decoration: none;
    padding: 3rem 2rem;
    border: 1px solid var(--border-color);
    transition: 0.4s var(--ease-expo);
    display: block;
}

.service-block:hover {
    border-color: var(--cta-primary);
    transform: translateY(-5px);
}

.service-block__icon span {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 2rem;
    display: block;
}

/* Qualifying Boxes */
.qualifying-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.qualify-box {
    padding: 3rem;
    border-radius: 2px;
}

.qualify-box--is {
    border: 1px solid var(--cta-primary);
    background: rgba(255, 19, 83, 0.02);
}

.qualify-box--not {
    border: 1px solid var(--border-color);
}

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

.qualify-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.qualify-box--is li span { color: var(--accent-green); }
.qualify-box--not li span { color: var(--text-muted); }

/* 8. Proof Grid */
.section--proof .bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* 9. Accordion FAQ & 2-Column Layout */
.faq-section-modern {
    padding-top: 10rem;
    padding-bottom: 8rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.faq-text-column {
    position: sticky;
    top: 120px;
    padding-right: 2rem;
}

.faq-accordion-column {
    width: 100%;
}

@media (max-width: 991px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .faq-text-column {
        position: relative;
        top: 0;
        padding-right: 0;
        text-align: center;
    }
    .faq-section-modern {
        padding-top: 7rem;
        padding-bottom: 5rem;
    }
}

.accordion-list {
    width: 100%;
    margin: 0; /* Removing top margin */
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .accordion-item:hover {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

[data-theme="light"] .accordion-header:hover {
    background: rgba(0, 0, 0, 0.02);
}

.accordion-header h3 {
    font-size: 1.2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
    padding-right: 1.5rem;
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] .accordion-icon {
    background: rgba(0, 0, 0, 0.05);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    background: var(--cta-primary);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 19, 83, 0.4);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    color: var(--text-secondary);
    line-height: 1.7;
    opacity: 0;
}

.accordion-item.active .accordion-content {
    max-height: 400px;
    padding-bottom: 2rem;
    opacity: 1;
}


/* 10. Final CTA refinement */
.cta-final-box {
    padding: 6rem;
    text-align: center;
    border: 1px solid var(--cta-primary);
    background: rgba(255, 19, 83, 0.02);
}

.cta-final-box .modern-form {
    max-width: 700px;
    margin: 4rem auto 0;
}

@media (max-width: 992px) {
    .hero--premium .hero__container,
    .grid-layout--problem,
    .qualifying-grid,
    .cta-final-box .form-row,
    .section--proof .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-final-box {
        padding: 4rem 1.5rem;
    }

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

.card-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.pink .card-icon-wrapper {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.2), rgba(255, 0, 110, 0.1));
    color: var(--accent-pink);
    border: 1px solid rgba(255, 0, 110, 0.2);
}

.cyan .card-icon-wrapper {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.2), rgba(0, 245, 255, 0.1));
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 245, 255, 0.2);
}

.evolution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
    position: relative;
    z-index: 1;
}

.evolution-card p {
    color: var(--text-dim);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
/* --- Approach Section --- */
.section--approach {
    padding: 12rem 0;
    position: relative;
    overflow: hidden;
    background-color: var(--bg);
}

/* Background Numeral */
.approach__bg-num {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    font-family: 'DM Serif Display', serif;
    font-size: clamp(20rem, 40vw, 50rem);
    line-height: 1;
    color: var(--text-primary);
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
    user-select: none;
    font-weight: 600;
}

/* Glow Elements */
.approach__glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

.approach__glow--1 {
    top: -20%;
    right: -10%;
    background: radial-gradient(circle, var(--accent-green), transparent 70%);
}

.approach__glow--2 {
    bottom: -20%;
    left: -10%;
    background: radial-gradient(circle, var(--cta-primary), transparent 70%);
}

.approach__layout {
    display: grid;
    grid-template-columns: 45fr 55fr;
    gap: 8rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.approach__intro {
    position: sticky;
    top: 15rem;
}

.approach__text-content {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.approach-card {
    background: transparent;
    perspective: 1000px;
    height: auto;
    opacity: 1 !important; /* Force visible by default */
}

.approach-card.revealed {
    opacity: 1 !important;
}

.approach-card__inner {
    height: 100%;
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 2px;
    backdrop-filter: blur(20px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.approach-card:hover .approach-card__inner {
    transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
    border-color: var(--accent-green);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.approach-card:hover .approach-card__inner::before {
    opacity: 1;
}

.approach-card__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 205, 170, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.approach-card__icon {
    width: 60px;
    height: 60px;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--accent-green);
    transition: all 0.4s ease;
}

.approach-card:hover .approach-card__icon {
    background: var(--accent-green);
    color: var(--bg);
    transform: scale(1.1) rotate(5deg);
}

.approach-card__icon .material-symbols-outlined {
    font-size: 2rem;
}

.approach-card h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'DM Serif Display', serif;
}

.approach-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex-grow: 1;
}

.approach-card__line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: var(--accent-green);
    transition: width 0.6s ease;
}

.approach-card:hover .approach-card__line {
    width: 100%;
}

@media (max-width: 1200px) {
    .approach__layout {
        gap: 4rem;
        grid-template-columns: 1fr 1.2fr;
    }
}

@media (max-width: 992px) {
    .section--approach {
        padding: 8rem 0;
    }

    .approach__layout {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .approach__intro {
        position: relative;
        top: 0;
        text-align: center;
    }

    .approach__text-content {
        align-items: center;
    }

    .approach-cards {
        overflow-x: auto;
        display: flex;
        gap: 1.5rem;
        padding-bottom: 2rem;
        scroll-snap-type: x mandatory;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .approach-cards::-webkit-scrollbar {
        display: none;
    }

    .approach-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }

    .approach-card__inner {
        padding: 2.5rem;
    }

    .approach__bg-num {
        top: 20%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 30rem;
    }
}

@media (max-width: 600px) {
    .approach-card {
        flex: 0 0 92%;
    }

    .approach__bg-num {
        font-size: 20rem;
    }

    .approach-card__inner {
        padding: 2.5rem 1.5rem;
    }

    .section--approach .approach__dots,
    .section--methodology .methodology__dots {
        display: flex;
        justify-content: center;
        gap: 0.8rem;
        margin-top: 1.5rem;
        z-index: 2;
        position: relative;
    }

    .section--approach .approach__dots .dot,
    .section--methodology .methodology__dots .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--text-muted);
        opacity: 0.3;
        transition: all 0.3s ease;
    }

    .section--approach .approach__dots .dot.active,
    .section--methodology .methodology__dots .dot.active {
        background: var(--accent-green);
        opacity: 1;
        transform: scale(1.3);
    }

    .methodology-pillars {
        overflow-x: auto;
        display: flex;
        gap: 1.5rem;
        padding-bottom: 2rem;
        scroll-snap-type: x mandatory;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .methodology-pillars::-webkit-scrollbar {
        display: none;
    }

    .pillar {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
}

@media (max-width: 600px) {
    .pillar {
        flex: 0 0 92%;
    }
}

/* Hide on Desktop */
.approach__dots,
.methodology__dots {
    display: none;
}
