/* ==========================================================================
   V2: Premium SaaS / Figma-style Agency Template
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Syne:wght@700;800&display=swap');

:root {
    /* Core Colors */
    --bg-main: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-card: #FFFFFF;
    --bg-dark: #0F172A;

    --text-main: #0F172A;
    --text-muted: #64748B;
    --text-light: #F8FAFC;

    --border-light: #E2E8F0;
    --border-dark: #1E293B;

    /* Brand Colors */
    --primary: #D4EE00;
    /* Stacko Yellow */
    --primary-hover: #C5DD00;
    --primary-dark: #8CA000;
    --accent: #2563EB;
    /* Premium Blue for abstract accents if needed */

    /* Typography */
    --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-logo: 'Syne', sans-serif;

    /* Layout & Spacing */
    --max-w: 1200px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-pill: 9999px;

    /* Shadows & Glassmorphism */
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Global Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.04em;
    color: var(--text-main);
}

.text-gradient {
    background: linear-gradient(135deg, #0F172A 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary-dark {
    color: #8CA000;
}

.bg-dark .text-gradient {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 48px 0;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

.bg-dark {
    background-color: var(--bg-dark) !important;
    color: var(--text-light);
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
    color: var(--text-light);
}

.bg-dark .section-desc {
    color: #94A3B8;
}

/* BG Dark Specific Overrides */
.bg-dark .trust-title,
.bg-dark .trust-stat p,
.bg-dark .footer-desc,
.bg-dark .footer-links a,
.bg-dark .contact-link,
.bg-dark .contact-link i {
    color: #94A3B8;
}

.bg-dark .trust-stat h3,
.bg-dark .footer-links h4,
.bg-dark .footer-contact h4 {
    color: var(--text-light);
}

.bg-dark .feature-card.fc-highlight {
    background: rgba(212, 238, 0, 0.1) !important;
    border-color: var(--primary) !important;
}

.bg-dark .fc-highlight .fc-icon {
    background: var(--primary);
    color: var(--bg-dark);
}

.bg-dark .feature-card h3 {
    color: var(--text-main);
}

.bg-dark .feature-card p {
    color: var(--text-muted);
}

.bg-dark.footer,
.bg-dark .footer-bottom {
    border-color: rgba(255, 255, 255, 0.1);
}

.bg-dark .socials a {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.bg-dark .socials a:hover {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
}

.section-header {
    max-width: 700px;
    margin-bottom: 48px;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.75rem);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.text-yellow {
    color: var(--primary);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: #0F172A;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(212, 238, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: #0F172A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 238, 0, 0.4);
}

.btn-secondary {
    background-color: var(--bg-dark);
    color: var(--bg-main);
}

.btn-secondary:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-main);
    border: 1px solid var(--border-light);
}

.btn-glass:hover {
    background: var(--bg-main);
    border-color: #CBD5E1;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--text-main);
    background-color: var(--bg-light);
}

.btn-dark-outline {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-dark-outline:hover {
    border-color: var(--text-light);
    background-color: #000;
}

.btn-xl {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 100;
    transition: all 0.3s ease;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-dark);
}

.navbar.scrolled {
    padding: 16px 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-dark);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: var(--font-logo);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    color: var(--text-light);
}

.brand-sub {
    font-family: var(--font-logo);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.02em;
    color: #94A3B8;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.9375rem;
    color: #94A3B8;
}

.nav-links a:hover {
    color: var(--text-light);
}

.nav-actions {
    display: flex;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
}

.cta-box p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-next-steps {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 40px auto;
    background: rgba(0, 0, 0, 0.2);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-next-steps strong {
    display: block;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8125rem;
    margin-bottom: 12px;
}

.cta-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 0.9375rem;
}

.cta-list li i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 2px;
}

.cta-list li:last-child {
    margin-bottom: 0;
}

.cta-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-microtext {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    background: radial-gradient(circle at 80% -20%, rgba(212, 238, 0, 0.15) 0%, rgba(255, 255, 255, 0) 60%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.glass-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
}

.badge-dark {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-dark);
}

.hero-title {
    font-size: clamp(2rem, 3vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    width: 100%;
}

.hero-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    width: 100%;
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-md);
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    bottom: -24px;
    left: -32px;
    animation-delay: 0s;
}

.float-2 {
    top: 32px;
    right: -32px;
    animation-delay: -3s;
}

.float-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-dark);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.float-text strong {
    display: block;
    font-size: 1rem;
    color: var(--text-main);
}

.float-text span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ==========================================================================
   Proof Strip Section
   ========================================================================== */
.proof-strip {
    padding: 56px 0;
    /* Reduced from 80px */
    background: #FFFFFF;
    position: relative;
    border-bottom: 1px solid var(--border-light);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .proof-grid {
        grid-template-columns: 1fr;
    }
}

.proof-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.proof-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #CBD5E1;
}

.proof-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-dark);
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.proof-metric {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.proof-title {
    font-size: 1.125rem;
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 12px;
}

.proof-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   Trust Section (Legacy)
   ========================================================================== */
.trust-section {
    padding: 40px 0;
    border-block: 1px solid var(--border-light);
    text-align: center;
}

.trust-title {
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 4px;
}

.trust-stat p {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1rem;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px 24px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #CBD5E1;
}

.feature-card.fc-highlight {
    background: var(--bg-dark) !important;
    border-color: var(--bg-dark);
    color: var(--text-light);
}

.feature-card.fc-highlight h3 {
    color: var(--text-light);
}

.feature-card.fc-highlight p {
    color: #94A3B8;
}

.hero {
    position: relative;
    padding: 100px 0 60px;
    background-color: var(--bg-main);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.fc-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 12px;
}

.fc-highlight .fc-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* ==========================================================================
   Productized Systems Section
   ========================================================================== */
.system-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .system-grid {
        grid-template-columns: 1fr;
    }
}

.system-card {
    background: #FFFFFF;
    /* High contrast white box */
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.system-card:hover {
    transform: translateY(-4px);
    border-color: #CBD5E1;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.sys-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.sys-header h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 8px;
}

.sys-headline {
    color: var(--text-muted);
    /* Replaced neon yellow with a dark muted gray for legibility on white */
    font-weight: 500;
    font-style: italic;
    font-size: 1.125rem;
    letter-spacing: -0.01em;
}

.sys-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.sys-block strong {
    display: block;
    color: var(--text-main);
    /* Dark gray/black for high contrast on white */
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    font-weight: 700;
}

.sys-block p {
    color: var(--text-muted);
    line-height: 1.6;
}

.sys-features ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sys-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-main);
    font-weight: 500;
    font-size: 1rem;
}

.sys-features i {
    color: var(--bg-dark);
    /* Changed from neon yellow to dark navy for contrast */
    font-size: 1.25rem;
    margin-top: 2px;
}

.system-card .fc-icon {
    background: var(--bg-dark);
    /* Dark box behind the yellow icon */
    color: var(--primary);
    /* Neon yellow icon inside dark box */
    border: none;
}

.sys-footer {
    margin-top: 24px;
    padding: 12px 20px;
    background: var(--bg-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sys-footer p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.4;
}

.sys-footer strong {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8125rem;
    margin-right: 8px;
}

.sys-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.875rem;
    background: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* On card hover, light up the button */
.system-card:hover .sys-btn {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-dark);
}

/* ==========================================================================
   How the Growth System Works (Process) Section
   ========================================================================== */
.flow-container {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}

.flow-step {
    flex: 1;
    position: relative;
    padding: 24px;
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.flow-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: #CBD5E1;
}

.flow-icon-wrapper {
    position: relative;
    margin-bottom: 16px;
    z-index: 2;
}

.flow-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-dark);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.step-num {
    display: inline-block;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.flow-content h3 {
    font-size: 1.125rem;
    color: var(--text-main);
    margin-bottom: 8px;
}

.flow-content p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .flow-container {
        flex-direction: column;
    }
}

/* ==========================================================================
   Results / Case Studies Section
   ========================================================================== */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cs-card {
    background: var(--bg-card);
    padding: 24px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}

.cs-metric {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 4px;
    color: var(--text-main);
}

.cs-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.cs-desc {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.875rem;
    margin: 0;
}

.cs-detail-block {
    margin-bottom: 12px;
}

.cs-detail-block:last-child {
    margin-bottom: 0;
}

.cs-detail-block strong {
    display: block;
    color: var(--text-main);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.cs-list {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    padding-left: 16px;
    margin: 0;
}

.cs-list li {
    margin-bottom: 4px;
}

.cs-list li:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   AI & Automation Section
   ========================================================================== */
.ai-section {
    position: relative;
    overflow: hidden;
}

.ai-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.ai-visual {
    width: 100%;
}

.ai-graphic {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.ai-graphic img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.bg-light .ai-graphic,
.hero .ai-graphic {
    background-color: rgba(15, 23, 42, 0.02);
    border-color: var(--border-dark);
}

.ai-desc {
    font-size: 1.125rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.ai-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ai-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.0625rem;
    color: var(--text-main);
    font-weight: 500;
}

.bg-dark .ai-list li {
    color: #F8FAFC;
}

.ai-list i {
    color: var(--primary);
    font-size: 1.25rem;
}

.res-box {
    margin-top: 24px;
    padding: 16px 20px;
    background: rgba(212, 238, 0, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
}

.res-box strong {
    color: var(--text-main);
}

.bg-dark .res-box strong {
    color: var(--text-light);
}

.res-box span {
    color: var(--text-muted);
}

.bg-dark .res-box span {
    color: #94A3B8;
}

.ai-graphic {
    position: relative;
    width: 100%;
}

.ai-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    width: 100%;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-box {
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    padding: 56px 40px;
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 238, 0, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.cta-box h2,
.cta-box p,
.cta-box .btn {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-light);
    margin-bottom: 24px;
}

.cta-box p {
    color: #94A3B8;
    font-size: 1.25rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--bg-main);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-light);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 80px;
}

.footer-logo {
    margin-bottom: 24px;
    display: inline-flex;
}

.footer-logo svg rect {
    fill: #FFFFFF;
}

.footer-logo svg circle {
    fill: #FFFFFF;
}

.footer-desc {
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 300px;
}

.socials {
    display: flex;
    gap: 16px;
}

.socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-main);
}

.socials a:hover {
    background: var(--bg-dark);
    color: var(--text-light);
    border-color: var(--bg-dark);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.125rem;
    margin-bottom: 24px;
    color: var(--text-main);
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary-dark);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 20px;
}

.contact-link i {
    color: var(--text-muted);
    font-size: 1.25rem;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    text-align: center;
    color: #94A3B8;
    font-size: 0.875rem;
}

/* ==========================================================================
   Responsive Utilities
   ========================================================================== */
@media (max-width: 1024px) {

    .hero-container,
    .ai-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .ai-list {
        align-items: center;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-main);
        padding: 24px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        z-index: 101;
        border-top: 1px solid var(--border-light);
    }

    .nav-links.active a {
        color: var(--text-main);
    }

    .nav-links.active a:hover {
        color: var(--primary-dark);
    }

    .nav-actions.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 240px);
        left: 0;
        width: 100%;
        background-color: var(--bg-main);
        padding: 0 24px 24px 24px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }

    .nav-actions.active .contact-number {
        color: var(--text-main) !important;
        margin-right: 0 !important;
        margin-bottom: 16px;
        justify-content: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 140px 0 60px;
    }

    .trust-grid {
        gap: 40px;
    }

    .process-timeline,
    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}