/* ==================== DESIGN TOKENS ==================== */
:root {
    /* Emerald / Malachite palette */
    --white: #ffffff;
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;
    --emerald-electric: #00ff88;

    --ink: #0f172a;
    --ink-light: #334155;
    --ink-muted: #64748b;
    --ink-faint: #94a3b8;

    --bg-primary: #ffffff;
    --bg-subtle: #f8faf9;
    --bg-muted: #f0fdf4;

    --glass-border: rgba(6, 78, 59, 0.1);
    --glass-border-hover: rgba(6, 78, 59, 0.2);
    --stratum-shadow: rgba(6, 78, 59, 0.08);
    --accent-glow: rgba(16, 185, 129, 0.15);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing */
    --section-gap: clamp(100px, 12vw, 160px);
    --container-max: 1400px;
    --container-padding: 5%;

    /* Motion */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s var(--ease-out);
    --transition-slow: 0.6s var(--ease-out);
}

/* ==================== RESET ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

/* ==================== BACKGROUND EFFECTS ==================== */
.vitric-grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.stratum-bg {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60vw;
    height: 120vh;
    background: radial-gradient(circle at 50% 50%, var(--emerald-100) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

/* Oscillation background lines */
.oscillation-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
    pointer-events: none;
}

.line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--emerald-500), transparent);
    animation: move-vertical 8s infinite ease-in-out;
}

@keyframes move-vertical {

    0%,
    100% {
        transform: translateY(0vh) scaleX(0.8);
        opacity: 0;
    }

    50% {
        transform: translateY(100vh) scaleX(1.2);
        opacity: 1;
    }
}

/* ==================== SKIP NAV ==================== */
.skip-nav {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--emerald-600);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    z-index: 9999;
    font-size: 0.85rem;
}

.skip-nav:focus {
    top: 16px;
}

/* ==================== CONTAINER ==================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ==================== TYPOGRAPHY ==================== */
.eyebrow,
.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--emerald-500);
    margin-bottom: 1.5rem;
}

.section-title-lg {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--emerald-900);
}

.text-muted {
    color: var(--ink-muted);
}

.section-header {
    margin-bottom: 64px;
}

.h1-alt {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--emerald-900);
    display: block;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 0;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover::after {
    left: 100%;
}

.btn-primary {
    background: var(--emerald-500);
    color: #fff;
}

.btn-primary:hover {
    background: var(--emerald-900);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px var(--stratum-shadow);
}

.btn-outline {
    background: transparent;
    color: var(--emerald-900);
    border: 1.5px solid var(--glass-border);
}

.btn-outline:hover {
    border-color: var(--emerald-500);
    background: var(--emerald-50);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 0.9rem;
}

.btn-nav {
    padding: 10px 22px;
    font-size: 0.78rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-900));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    flex-shrink: 0;
}

.logo-mark {
    font-size: 1.3rem;
    color: var(--emerald-500);
    line-height: 1;
}

.logo-text {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--emerald-900);
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink-muted);
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover {
    color: var(--emerald-900);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--emerald-500);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-version {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--ink-faint);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--emerald-900);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem var(--container-padding) 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 120vh;
    background: radial-gradient(circle at 50% 50%, var(--emerald-100) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--emerald-500);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s 0.1s forwards;
}

.eyebrow-line {
    width: 32px;
    height: 1.5px;
    background: var(--emerald-500);
}

.hero-title {
    font-family: var(--font-sans);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--emerald-900);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.7s 0.2s forwards;
}

.title-accent {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--emerald-900);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.12rem);
    color: var(--ink-light);
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s 0.35s forwards;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s 0.5s forwards;
}

.hero-trust {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
    opacity: 0;
    animation: fadeUp 0.7s 0.6s forwards;
}

.trust-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ink-faint);
    display: block;
    margin-bottom: 8px;
}

.trust-names {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink-muted);
    letter-spacing: 0.03em;
}

/* Hero Right — Metric Cards */
.hero-right {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.6s forwards;
}

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

.metric-card {
    background: var(--white);
    border: 1px solid var(--glass-border);
    padding: 28px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--emerald-100);
    transition: var(--transition);
}

.metric-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateX(-4px);
    box-shadow: 0 8px 30px var(--stratum-shadow);
}

.metric-card:hover::before {
    background: var(--emerald-500);
}

.metric-card.accent {
    border-color: var(--glass-border-hover);
    background: linear-gradient(135deg, var(--emerald-50) 0%, var(--white) 100%);
}

.metric-card.accent::before {
    background: var(--emerald-500);
}

.metric-value {
    display: block;
    font-family: var(--font-sans);
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--emerald-900);
    line-height: 1;
    margin-bottom: 6px;
}

.metric-card.accent .metric-value {
    color: var(--emerald-600);
}

.metric-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--ink-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== LOGOS MARQUEE ==================== */
.logos {
    padding: 48px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
    background: var(--bg-subtle);
}

.logos-scroll {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.logos-track {
    display: flex;
    gap: 0;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.logo-item {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink-faint);
    white-space: nowrap;
    letter-spacing: 0.02em;
    padding: 0 16px;
    transition: color 0.3s;
}

.logo-item:hover {
    color: var(--emerald-600);
}

.logo-divider {
    color: var(--ink-faint);
    opacity: 0.3;
    padding: 0 4px;
    font-weight: 300;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

/* ==================== PAIN SECTION ==================== */
.pain-section {
    padding: var(--section-gap) 0;
}

.pain-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.pain-left {
    position: sticky;
    top: 120px;
}

.pain-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pain-item {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--glass-border);
    opacity: 0;
    transform: translateY(20px);
}

.pain-item.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s var(--ease-out);
}

.pain-number {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--emerald-500);
    min-width: 28px;
}

.pain-item p {
    font-size: 1.05rem;
    color: var(--ink-light);
    line-height: 1.6;
}

/* ==================== SERVICES ==================== */
.services {
    padding: var(--section-gap) 0;
    position: relative;
    background: var(--bg-subtle);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--glass-border);
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    position: relative;
    transition: all 0.4s var(--ease-out);
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), background 0.3s var(--ease-out), box-shadow 0.3s;
}

.service-card:hover {
    background: var(--emerald-50);
    box-shadow: inset 0 -3px 0 var(--emerald-500);
}

.service-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 24px;
    opacity: 0.85;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-title {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--emerald-900);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.88rem;
    color: var(--ink-muted);
    line-height: 1.7;
    flex: 1;
}

.service-arrow {
    display: inline-block;
    margin-top: 20px;
    font-size: 1.1rem;
    color: var(--ink-faint);
    transition: var(--transition);
}

.service-card:hover .service-arrow {
    color: var(--emerald-600);
    transform: translateX(6px);
}

/* ==================== PROCESS ==================== */
.process {
    padding: var(--section-gap) 0;
}

.process-timeline {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: flex;
    gap: 32px;
    opacity: 0;
    transform: translateY(30px);
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s var(--ease-out);
}

.step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4px;
}

.step-num {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--emerald-600);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--emerald-200);
    border-radius: 50%;
    background: var(--emerald-50);
    flex-shrink: 0;
}

.step-line {
    width: 1px;
    flex: 1;
    background: var(--emerald-100);
    margin: 8px 0;
    min-height: 40px;
}

.step-content {
    padding-bottom: 48px;
}

.step-title {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--emerald-900);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.step-desc {
    font-size: 0.92rem;
    color: var(--ink-muted);
    line-height: 1.75;
}

/* ==================== SOCIAL PROOF ==================== */
.proof {
    padding: var(--section-gap) 0;
    background: var(--bg-subtle);
}

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

.proof-card {
    background: var(--white);
    border: 1px solid var(--glass-border);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.proof-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}

.proof-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 8px 30px var(--stratum-shadow);
    transform: translateY(-4px);
}

.proof-card.featured {
    border-color: var(--emerald-200);
    background: linear-gradient(180deg, var(--emerald-50) 0%, var(--white) 40%);
}

.proof-text {
    font-size: 1rem;
    color: var(--ink);
    line-height: 1.75;
    margin-bottom: 28px;
    font-style: italic;
    font-weight: 400;
}

.proof-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-initial {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--emerald-50);
    color: var(--emerald-600);
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--emerald-100);
}

.author-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--emerald-900);
}

.author-company {
    font-size: 0.78rem;
    color: var(--ink-muted);
    font-family: var(--font-mono);
}

/* ==================== FAQ ==================== */
.faq {
    padding: var(--section-gap) 0;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.faq-left {
    position: sticky;
    top: 120px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--emerald-900);
    text-align: left;
    transition: color 0.2s;
    gap: 16px;
}

.faq-question:hover {
    color: var(--emerald-600);
}

.faq-icon {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--ink-faint);
    transition: transform 0.3s var(--ease-out), color 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--emerald-500);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 22px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--ink-muted);
    line-height: 1.75;
    max-width: 520px;
}

/* ==================== CTA ==================== */
.cta-section {
    padding: var(--section-gap) 0;
}

.cta-block {
    background: var(--emerald-900);
    padding: clamp(48px, 8vw, 80px) clamp(32px, 6vw, 64px);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.cta-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.cta-block::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    max-width: 560px;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-sans);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    color: var(--white);
}

.cta-desc {
    font-size: 1rem;
    color: var(--emerald-200);
    line-height: 1.75;
    margin-bottom: 32px;
}

.cta-section .btn-primary {
    background: var(--emerald-electric);
    color: var(--emerald-900);
}

.cta-section .btn-primary:hover {
    background: var(--white);
    color: var(--emerald-900);
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--ink-muted);
    line-height: 1.7;
    max-width: 280px;
}

.footer-address {
    margin-top: 20px;
}

.footer-address p {
    font-size: 0.82rem;
    color: var(--ink-faint);
    line-height: 1.7;
    margin-bottom: 4px;
}

.footer-address a {
    color: var(--emerald-600);
    transition: color 0.2s;
}

.footer-address a:hover {
    color: var(--emerald-500);
}

.footer-heading {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--emerald-600);
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.footer-links a {
    font-size: 0.85rem;
    color: var(--ink-muted);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--emerald-600);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--ink-faint);
    letter-spacing: 0.5px;
}

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

.footer-legal-links a {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--ink-faint);
    transition: color 0.2s;
    letter-spacing: 0.5px;
}

.footer-legal-links a:hover {
    color: var(--emerald-600);
}

/* ==================== COOKIE BANNER ==================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--white);
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 -8px 30px var(--stratum-shadow);
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text {
    font-size: 0.85rem;
    color: var(--ink-muted);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--emerald-600);
    font-weight: 600;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* ==================== ABOUT PAGE ==================== */
.about-page {
    padding: 140px 0 80px;
}

.about-hero {
    max-width: 700px;
    margin-bottom: 80px;
}

.about-hero .section-title-lg {
    margin-bottom: 24px;
}

.about-intro {
    font-size: 1.1rem;
    color: var(--ink-muted);
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 80px;
}

.about-block {
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.about-block:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 8px 30px var(--stratum-shadow);
}

.about-block h2 {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--emerald-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.about-block p,
.about-block li {
    font-size: 0.92rem;
    color: var(--ink-muted);
    line-height: 1.75;
}

.about-block ul {
    padding-left: 0;
}

.about-block li {
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
}

.about-block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    background: var(--emerald-500);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.about-contact {
    border-top: 1px solid var(--glass-border);
    padding-top: 64px;
}

.about-contact h2 {
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--emerald-900);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

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

.contact-item {
    padding: 32px;
    background: var(--emerald-50);
    border: 1px solid var(--glass-border);
}

.contact-item h3 {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--emerald-600);
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-item p {
    font-size: 0.92rem;
    color: var(--ink-light);
    line-height: 1.7;
}

.contact-item a {
    color: var(--emerald-600);
    font-weight: 600;
}

/* ==================== LEGAL PAGES ==================== */
.legal-page {
    padding: 140px 0 80px;
}

.legal-content {
    max-width: 720px;
}

.legal-content h1 {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--emerald-900);
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.legal-updated {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--ink-faint);
    margin-bottom: 48px;
    letter-spacing: 0.5px;
}

.legal-content section {
    margin-bottom: 40px;
}

.legal-content h2 {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--emerald-900);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.legal-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal-content p {
    font-size: 0.92rem;
    color: var(--ink-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content ul {
    padding-left: 0;
    margin-bottom: 12px;
}

.legal-content li {
    font-size: 0.92rem;
    color: var(--ink-muted);
    line-height: 1.8;
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.legal-content li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--emerald-500);
    border-radius: 50%;
}

.legal-content a {
    color: var(--emerald-600);
    font-weight: 600;
    transition: color 0.2s;
}

.legal-content a:hover {
    color: var(--emerald-500);
}

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

    .hero-right {
        order: -1;
    }

    .hero-metrics {
        flex-direction: row;
        gap: 12px;
    }

    .metric-card {
        padding: 20px 24px;
    }

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

    .pain-layout,
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pain-left,
    .faq-left {
        position: static;
    }

    .proof-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

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

    .contact-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 120px var(--container-padding) 60px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-metrics {
        flex-direction: column;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .btn-lg {
        padding: 15px 28px;
        font-size: 0.85rem;
    }

    .section-title-lg {
        font-size: clamp(1.6rem, 7vw, 2rem);
    }

    .cta-block {
        padding: 40px 24px;
    }
}