/* ============================================
   VARIABLES & THEME
   ============================================ */
:root {
    --primary: #2D70F4;
    --primary-light: rgba(45, 112, 244, 0.1);
    --primary-20: rgba(45, 112, 244, 0.2);
    --primary-30: rgba(45, 112, 244, 0.3);
    --primary-40: rgba(45, 112, 244, 0.4);

    --accent: #A7EA1A;
    --accent-foreground: #081C44;
    --accent-15: rgba(167, 234, 26, 0.15);
    --accent-20: rgba(167, 234, 26, 0.2);

    --foreground: #081C44;
    --foreground-60: rgba(8, 28, 68, 0.6);
    --foreground-15: rgba(8, 28, 68, 0.15);

    --muted: #F3F7FC;
    --muted-foreground: #4C535E;

    --border: #E0E5EB;
    --input: #E0E5EB;

    --white: #FFFFFF;
    --white-80: rgba(255, 255, 255, 0.8);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-60: rgba(255, 255, 255, 0.6);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-15: rgba(255, 255, 255, 0.15);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-5: rgba(255, 255, 255, 0.05);

    --navy: #020F30;
    --navy-deep: #020F30;

    --font-family-1: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-family-2: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-sm: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0px 20px 50px -20px rgba(8, 28, 68, 0.4);
    --shadow-glow: 0px 10px 30px -8px rgba(167, 234, 26, 0.45);

    /* Compatibility aliases for service pages */
    --primary-blue: #2D70F4;
    --accent-lime: #A7EA1A;
    --text-dark: #081C44;
    --text-muted: #4C535E;
    --bg-light: #F3F7FC;
    --bg-white: #FFFFFF;
    --border-color: #E0E5EB;
    --muted-light: #E0E5EB;

    --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-grotesk: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --radius-sm: 9px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 22px;

    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-lg: 16px;
    --spacing-xl: 24px;
    --spacing-2xl: 32px;
    --spacing-3xl: 48px;
    --spacing-4xl: 56px;
    --spacing-5xl: 80px;
    --spacing-6xl: 112px;

    --line-height-tight: 1.4;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.8;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-1);
    background: linear-gradient(to right, var(--white), var(--white));
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(224, 229, 235, 0.6);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo-section {
    display: flex;
    gap: 8px;
    align-items: center;
}

.header-logo {
    display: flex;
    gap: 8px;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.header-logo-icon {
    font-size: 20px;
}

.header-logo-text {
    font-family: var(--font-family-2);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.5px;
    color: var(--foreground);
}

.dot {
    color: var(--primary);
}

.logo {
    display: flex;
    gap: 8px;
    align-items: center;
}

.logo-text {
    font-family: var(--font-family-2);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.5px;
    color: var(--foreground);
}

.logo-dot {
    color: var(--primary);
}

.nav {
    display: flex;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: var(--muted-foreground);
    transition: background 0.3s ease;
}

.nav-link.active {
    background: var(--muted);
    font-weight: 600;
    color: var(--muted-foreground);
}

.nav-link:hover {
    background: var(--muted);
}

.nav-item {
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: var(--muted-foreground);
    transition: background 0.3s ease;
}

.nav-item.active {
    background: var(--muted);
    font-weight: 600;
    color: var(--muted-foreground);
}

.nav-item:hover {
    background: var(--muted);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    padding: 14px 24px;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--accent), #b5ff04);
    border: none;
    color: var(--foreground);
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
    position: relative;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0px 15px 40px -5px rgba(167, 234, 26, 0.5);
}

.cta-button {
    padding: 14px 24px;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--accent), #b5ff04);
    border: none;
    color: var(--foreground);
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
    position: relative;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 15px 40px -5px rgba(167, 234, 26, 0.5);
}

.btn {
    padding: 14px 24px;
    border-radius: 9999px;
    border: none;
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #b5ff04);
    color: var(--foreground);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0px 15px 40px -5px rgba(167, 234, 26, 0.5);
}

.btn-secondary {
    padding: 14px 25px;
    border-radius: 9999px;
    border: 1px solid rgba(8, 28, 68, 0.15);
    background: transparent;
    color: var(--foreground);
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(245, 247, 252, 0.5);
}

.btn-secondary-light {
    padding: 14px 25px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--white);
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-dark {
    background: var(--foreground);
    color: var(--white);
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-tag {
    display: block;
    font-family: var(--font-family-1);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-family-2);
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -0.72px;
    color: var(--foreground);
}

.section-description {
    font-size: 18px;
    line-height: 28px;
    color: var(--muted-foreground);
    max-width: 672px;
    margin: 0 auto;
}

.gradient-lime-text {
    background: linear-gradient(122deg, var(--accent), #b5ff04);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text {
    background: linear-gradient(122deg, var(--accent), #b5ff04);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 112px 80px;
    position: relative;
    background: linear-gradient(to right, var(--white), var(--white));
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -160px;
    left: -160px;
    width: 384px;
    height: 384px;
    background: var(--primary-20);
    border-radius: 50%;
    filter: blur(32px);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -160px;
    right: -160px;
    width: 384px;
    height: 384px;
    background: var(--accent-15);
    border-radius: 50%;
    filter: blur(32px);
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 17px;
    border: 1px solid var(--primary-30);
    border-radius: 9999px;
    background: var(--primary-light);
    width: fit-content;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.badge span {
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--primary);
}

.hero-title {
    font-family: var(--font-family-2);
    font-size: 60px;
    font-weight: 700;
    line-height: 63px;
    letter-spacing: -1.5px;
    color: var(--foreground);
}

.hero-description {
    font-size: 18px;
    line-height: 28px;
    color: var(--muted-foreground);
    max-width: 576px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 16px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat strong {
    font-family: var(--font-family-2);
    font-size: 20px;
    font-weight: 700;
    color: var(--foreground);
}

.stat span {
    font-size: 14px;
    color: var(--muted-foreground);
}

.hero-image {
    position: relative;
}

.dashboard-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(12px);
}

.dashboard-card img {
    display: block;
    width: 100%;
    height: auto;
}

.stat-card {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 17px;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.stat-card-roas {
    bottom: -24px;
    left: -24px;
    width: fit-content;
}

.stat-card-leads {
    top: -24px;
    right: -25px;
}

.stat-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--muted-foreground);
    margin-bottom: 4px;
}

.stat-value {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.stat-value span:first-child {
    font-family: var(--font-family-2);
    font-size: 24px;
    font-weight: 700;
    color: var(--foreground);
}

.stat-change {
    font-family: var(--font-family-2);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
}

.stat-value-large {
    font-family: var(--font-family-2);
    font-size: 24px;
    font-weight: 700;
    color: var(--foreground);
}

/* ============================================
   TRUSTED BY SECTION
   ============================================ */
.trusted-by {
    padding: 112px 80px;
    border-top: 1px solid var(--input);
    border-bottom: 1px solid var(--input);
    background: var(--muted);
}

.trusted-label {
    text-align: center;
    font-family: var(--font-family-1);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-bottom: 32px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    justify-items: center;
    align-items: center;
    opacity: 0.7;
    padding: 40px 0;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px;
        padding: 30px 0;
    }
}

.brand-name {
    font-family: var(--font-family-2);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.45px;
    color: rgba(8, 28, 68, 0.6);
}

.brand-logo {
    height: 110px;
    width: 300px;
    object-fit: contain;
    object-position: center;
    filter: opacity(0.7);
    transition: all 0.3s ease;
    display: block;
}

.brand-logo:hover {
    filter: opacity(1);
}

@media (max-width: 1024px) {
    .brand-logo {
        height: 88px;
        width: 240px;
    }
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 20px 0;
    }

    .brand-logo {
        height: 66px;
        width: 180px;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 112px 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--input);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-icon {
    width: 44px;
    height: 44px;
    background: var(--foreground);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
}

.service-card h3 {
    font-family: var(--font-family-2);
    font-size: 17.9px;
    font-weight: 700;
    letter-spacing: -0.36px;
    color: var(--foreground);
    margin-top: 12px;
}

.service-card p {
    font-size: 14px;
    line-height: 20px;
    color: var(--muted-foreground);
}

.service-link {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--primary);
}

/* ============================================
   WHY GAINLYTIX SECTION
   ============================================ */
.why-gainlytix {
    padding: 112px 80px;
    background: var(--muted);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto;
}

.why-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-text h2 {
    font-family: var(--font-family-2);
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -0.72px;
    color: var(--foreground);
}

.quote {
    background: var(--white);
    border-left: 4px solid var(--accent);
    border-radius: 22px;
    padding: 24px 24px 24px 28px;
    font-family: var(--font-family-2);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--foreground);
    margin: 0;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    background: var(--white);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}

.feature-check {
    width: 32px;
    height: 32px;
    background: rgba(167, 234, 26, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    color: var(--foreground);
    font-weight: 600;
    margin-top: 2px;
}

.feature-item span {
    font-family: var(--font-family-1);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--foreground);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    padding: 112px 80px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-40) 50%, transparent 100%);
    z-index: 0;
}

.process-step {
    background: var(--white);
    border: 1px solid var(--input);
    border-radius: 22px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--foreground);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-2);
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

.process-step h3 {
    font-family: var(--font-family-2);
    font-size: 17.9px;
    font-weight: 700;
    letter-spacing: -0.36px;
    color: var(--foreground);
    margin-top: 8px;
}

.process-step p {
    font-size: 14px;
    line-height: 20px;
    color: var(--muted-foreground);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    padding: 80px;
    background: var(--foreground);
    color: var(--white);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-family: var(--font-family-2);
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    background: linear-gradient(120deg, var(--accent), #b5ff04);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    font-family: var(--font-family-1);
    font-size: 14px;
    line-height: 20px;
    color: var(--white-70);
}

/* ============================================
   CASE STUDIES SECTION
   ============================================ */
.case-studies {
    padding: 112px 80px;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.case-card {
    background: var(--white);
    border: 1px solid var(--input);
    border-radius: 16px;
    overflow: hidden;
}

.case-header {
    background: linear-gradient(157.5deg, var(--foreground) 0%, var(--primary) 100%);
    padding: 24px;
    color: var(--white);
    font-family: var(--font-family-2);
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    height: 160px;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.case-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(45, 112, 244, 0.12) 2.0833%, rgba(45, 112, 244, 0) 2.0833%),
        linear-gradient(90deg, rgba(45, 112, 244, 0.12) 2.0833%, rgba(45, 112, 244, 0) 2.0833%);
    opacity: 0.3;
}

.case-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.case-tag {
    font-family: var(--font-family-1);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--primary);
}

.case-card h3 {
    font-family: var(--font-family-2);
    font-size: 17.9px;
    font-weight: 700;
    color: var(--foreground);
    margin-top: 0;
}

.case-card p {
    font-size: 14px;
    line-height: 20px;
    color: var(--muted-foreground);
}

.case-link {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: 14px;
    color: var(--foreground);
    text-decoration: none;
    margin-top: 8px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: 112px 80px;
    background: var(--muted);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border-radius: 22px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.testimonial-card p {
    font-family: var(--font-family-2);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--foreground);
    margin: 0;
}

.testimonial-card p::before {
    content: '"';
    font-size: 48px;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}

.testimonial-author {
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: 14px;
    color: var(--muted-foreground);
    padding-top: 16px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: 96px 272px;
    margin: 48px 112px;
    background: var(--foreground);
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -96px;
    right: -96px;
    width: 256px;
    height: 256px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(32px);
    opacity: 0.3;
    z-index: 0;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -96px;
    left: -96px;
    width: 256px;
    height: 256px;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(32px);
    opacity: 0.2;
    z-index: 0;
}

.cta > * {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-family: var(--font-family-2);
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: -0.96px;
    color: var(--white);
    margin-bottom: 16px;
}

.cta p {
    font-size: 18px;
    line-height: 28px;
    color: var(--white-70);
    margin-bottom: 16px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-deep);
    color: var(--white);
    padding-top: 80px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 64px 80px 0;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer-logo span {
    font-family: var(--font-family-2);
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
}

.footer-column p {
    font-size: 14px;
    line-height: 20px;
    color: var(--white-60);
    margin: 0;
}

.footer-column h4 {
    font-family: var(--font-family-2);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column ul li a {
    font-size: 14px;
    color: var(--white-70);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--white-15);
    border-radius: 50%;
    color: var(--white-70);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: var(--white-50);
    color: var(--white);
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    overflow: hidden;
    height: 38px;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    padding: 9px 16px;
    font-size: 14px;
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    background: var(--accent);
    border: none;
    color: var(--foreground);
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: 14px;
    padding: 0 16px;
    cursor: pointer;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid,
    .why-content {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .case-studies-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .hero,
    .services,
    .process {
        padding: 56px 16px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 40px;
        letter-spacing: -0.72px;
    }

    .nav {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

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

    .process-grid {
        grid-template-columns: 1fr;
    }

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

    .cta {
        padding: 48px 24px;
        margin: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
