﻿:root {
    --navy-deep: #0A1628;
    --navy-mid: #122240;
    --navy-light: #1E3A5F;
    --gold: #D4A853;
    --gold-light: #E8C776;
    --gold-glow: rgba(212, 168, 83, 0.15);
    --gold-dark: #B8923F;
    --white: #FFFFFF;
    --slate: #64748B;
    --slate-light: #94A3B8;
    --off-white: #FAF9F7;
    --warm-white: #F5F3EF;
    --success: #10B981;
    --border: rgba(255, 255, 255, 0.1);
    --border-light: rgba(10, 22, 40, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--navy-deep);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
}

    nav .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--navy-deep);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

    .logo span {
        color: var(--gold);
    }

    .logo img {
        height: 36px;
        width: auto;
        display: block;
    }

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--navy-deep);
    line-height: 1;
    display: flex;
    align-items: center;
}

    .logo-text span {
        color: var(--gold);
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

    .nav-links a {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--slate);
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .nav-links a:hover {
            color: var(--navy-deep);
        }

.nav-cta {
    background: var(--navy-deep);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

    .nav-cta:hover {
        background: var(--navy-mid);
        transform: translateY(-1px);
    }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 80%;
        height: 150%;
        background: radial-gradient(ellipse at center, var(--gold-glow) 0%, transparent 70%);
        pointer-events: none;
    }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--slate);
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    animation: fadeInUp 0.6s ease-out;
}

    .hero-badge::before {
        content: '';
        width: 8px;
        height: 8px;
        background: var(--gold);
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(0.9);
    }
}

.hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.75rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--navy-deep);
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

    .hero h1 em {
        font-style: italic;
        color: var(--gold);
    }

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--slate);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy-deep);
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(212, 168, 83, 0.35);
}

    .btn-primary:hover {
        background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(212, 168, 83, 0.45);
    }

    .btn-primary svg {
        stroke: var(--navy-deep);
    }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--navy-deep);
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

    .btn-secondary:hover {
        background: var(--off-white);
        border-color: var(--slate-light);
    }

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-card {
    background: var(--navy-deep);
    border-radius: 16px;
    padding: 32px;
    color: var(--white);
    box-shadow: 0 25px 50px rgba(10, 26, 47, 0.25);
    position: relative;
    overflow: hidden;
}

    .hero-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    }

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.card-dots {
    display: flex;
    gap: 6px;
}

.card-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--slate);
}

    .card-dot:nth-child(1) {
        background: #FF5F57;
    }

    .card-dot:nth-child(2) {
        background: #FEBC2E;
    }

    .card-dot:nth-child(3) {
        background: #28C840;
    }

.card-title {
    font-size: 0.75rem;
    color: var(--slate-light);
    margin-left: auto;
    font-weight: 500;
}

.card-content {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.8125rem;
    line-height: 1.8;
    color: var(--slate-light);
}

    .card-content .highlight {
        color: var(--gold-light);
    }

    .card-content .success {
        color: var(--success);
    }

    .card-content h4 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 0.875rem;
        color: var(--white);
        font-weight: 600;
        margin-bottom: 12px;
    }

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(10, 22, 40, 0.15);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-deep);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--gold-glow);
}

    .floating-badge.top-right {
        top: -20px;
        right: -20px;
        animation: float 3s ease-in-out infinite;
        border-left: 3px solid var(--gold);
    }

    .floating-badge.bottom-left {
        bottom: -20px;
        left: -20px;
        animation: float 3s ease-in-out infinite 0.5s;
        border-left: 3px solid var(--gold);
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Sub-Hero Credibility */
.sub-hero {
    padding: 32px 0;
    background: var(--navy-deep);
    text-align: center;
}

.sub-hero-text {
    font-size: 1rem;
    color: var(--slate-light);
    max-width: 700px;
    margin: 0 auto;
}

    .sub-hero-text strong {
        color: var(--gold-light);
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logos Section */
.logos {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-light);
}

.logos-label {
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--slate-light);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
    flex-wrap: wrap;
    opacity: 0.5;
}

.logo-placeholder {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate);
    letter-spacing: -0.02em;
}

/* How It Works */
.how-it-works {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.section-label {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--navy-deep);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--slate);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step {
    text-align: center;
    padding: 48px 32px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
}

    .step:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(10, 26, 47, 0.08);
        border-color: var(--gold);
    }

.step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold-glow) 0%, rgba(30, 144, 255, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.75rem;
}

.step-number {
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--navy-deep);
}

.step p {
    color: var(--slate);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* What is swarmLine */
.what-is {
    padding: 120px 0;
    background: var(--off-white);
}

.what-is-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.what-is-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

    .what-is-content .section-title em {
        font-family: 'Fraunces', serif;
        font-style: italic;
        color: var(--gold);
    }

.what-is-content .section-label {
    text-align: left;
}

.what-is-desc {
    font-size: 1.0625rem;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 16px;
}

.specialist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.specialist {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy-deep);
    transition: all 0.2s ease;
}

    .specialist:hover {
        border-color: var(--gold);
        transform: translateX(4px);
    }

/* Live Swarm Demo */
.live-swarm {
    padding: 120px 0;
    background: var(--navy-deep);
}

    .live-swarm .section-label {
        color: var(--gold-light);
    }

    .live-swarm .section-title {
        color: var(--white);
    }

    .live-swarm .section-subtitle {
        color: var(--slate-light);
    }

.swarm-demo {
    margin-top: 48px;
}

.swarm-card {
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.swarm-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px 40px;
    border-bottom: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.2);
}

.swarm-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--slate-light);
    margin-bottom: 8px;
    display: block;
}

.swarm-title {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    max-width: 500px;
}

.swarm-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #10B981;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.swarm-body {
    padding: 32px 40px;
}

.swarm-description {
    font-size: 1rem;
    color: var(--slate-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.agent-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.agent-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--slate-light);
    transition: all 0.3s ease;
}

    .agent-pill.active {
        background: var(--gold-glow);
        border-color: var(--gold);
        color: var(--gold-light);
    }

.swarm-progress {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 100px;
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 0.8125rem;
    color: var(--slate-light);
}

.swarm-footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.2);
}

.swarm-stat {
    padding: 24px 32px;
    text-align: center;
    border-right: 1px solid var(--border);
}

    .swarm-stat:last-child {
        border-right: none;
    }

    .swarm-stat .stat-label {
        font-size: 0.6875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--slate-light);
        margin-bottom: 6px;
        display: block;
    }

    .swarm-stat .stat-value {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--white);
    }

        .swarm-stat .stat-value.highlight {
            color: var(--gold-light);
        }

/* Why Different */
.why-different {
    padding: 120px 0;
    background: var(--navy-deep);
    color: var(--white);
}

    .why-different .section-label {
        color: var(--gold-light);
    }

    .why-different .section-title {
        color: var(--white);
    }

    .why-different .section-subtitle {
        color: var(--slate-light);
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.feature {
    padding: 40px;
    background: var(--navy-mid);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

    .feature:hover {
        border-color: var(--gold);
        transform: translateY(-2px);
    }

.feature-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature p {
    color: var(--slate-light);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* DIY Comparison Section */
.diy-comparison {
    padding: 120px 0;
    background: var(--off-white);
}

.diy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.diy-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(10, 26, 47, 0.06);
}

.diy-manual {
    border: 1px solid var(--border-light);
}

.diy-swarmline {
    border: 2px solid var(--gold);
    box-shadow: 0 8px 40px rgba(30, 144, 255, 0.15);
}

.diy-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-light);
}

.diy-manual .diy-header {
    background: #FEF2F2;
}

.diy-swarmline .diy-header {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.08) 0%, rgba(30, 144, 255, 0.02) 100%);
}

.diy-icon {
    font-size: 1.5rem;
}

.diy-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--navy-deep);
}

.diy-time {
    margin-left: auto;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 100px;
}

.diy-manual .diy-time {
    background: #FEE2E2;
    color: #DC2626;
}

.diy-swarmline .diy-time {
    background: var(--gold-glow);
    color: var(--gold);
}

.diy-flow {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--off-white);
    border-radius: 10px;
    font-size: 0.875rem;
    color: var(--slate);
}

.flow-num {
    width: 24px;
    height: 24px;
    background: var(--slate-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.diy-swarmline .flow-step.highlighted .flow-num {
    background: var(--gold);
}

.flow-step.highlighted {
    background: var(--gold-glow);
    color: var(--navy-deep);
    font-weight: 600;
}

.flow-step.auto {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding-left: 12px;
}

.flow-badge {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy-deep);
    padding: 4px 8px;
    border-radius: 4px;
    flex-shrink: 0;
}

.flow-step.faded {
    opacity: 0.5;
    font-style: italic;
}

.flow-arrow {
    text-align: center;
    color: var(--slate-light);
    font-size: 0.875rem;
    padding: 4px 0;
}

.diy-result {
    padding: 20px 32px;
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    font-size: 0.875rem;
}

    .diy-result.bad {
        background: #FEF2F2;
    }

    .diy-result.good {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.02) 100%);
    }

.result-label {
    font-weight: 700;
    color: var(--navy-deep);
    flex-shrink: 0;
}

.result-text {
    color: var(--slate);
}

.diy-result.bad .result-text {
    color: #B91C1C;
}

.diy-result.good .result-text {
    color: #047857;
}

.value-calc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.calc-box {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
}

.calc-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.calc-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calc-headline {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy-deep);
}

.calc-detail {
    font-size: 0.9375rem;
    color: var(--slate);
    line-height: 1.7;
}

    .calc-detail strong {
        color: var(--navy-deep);
    }

.diy-cta {
    text-align: center;
    margin-top: 64px;
}

.diy-cta-text {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--navy-deep);
    margin-bottom: 24px;
}

/* Deliverables */
.deliverables {
    padding: 120px 0;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.deliverable {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .deliverable:hover {
        border-color: var(--gold);
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(10, 26, 47, 0.08);
    }

.deliverable-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.deliverable h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--navy-deep);
}

.deliverable p {
    font-size: 0.875rem;
    color: var(--slate);
    margin-bottom: 20px;
    line-height: 1.7;
}

.deliverable-meta {
    display: flex;
    gap: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate-light);
}

    .deliverable-meta span {
        display: flex;
        align-items: center;
        gap: 6px;
    }

/* What's Inside */
.whats-inside {
    padding: 100px 0;
    background: var(--navy-deep);
}

    .whats-inside .section-label {
        color: var(--gold-light);
    }

    .whats-inside .section-title {
        color: var(--white);
    }

    .whats-inside .section-subtitle {
        color: var(--slate-light);
    }

.inside-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.inside-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: var(--navy-mid);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
    transition: all 0.2s ease;
}

    .inside-item:hover {
        border-color: var(--gold);
        transform: translateY(-2px);
    }

.inside-icon {
    font-size: 1.5rem;
}

.inside-text {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.4;
}

.inside-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 1.125rem;
    color: var(--slate-light);
}

    .inside-footer strong {
        color: var(--white);
    }

/* Pricing */
.pricing {
    padding: 120px 0;
    background: var(--off-white);
}

.pricing-anchor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 24px 40px;
    background: var(--navy-deep);
    border-radius: 16px;
    margin-bottom: 48px;
}

.anchor-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 0.9375rem;
}

    .anchor-item strong {
        color: var(--gold-light);
    }

.anchor-icon {
    font-size: 1.25rem;
}

.anchor-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.price-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

    .price-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(10, 26, 47, 0.08);
    }

    .price-card.featured {
        border: 2px solid var(--gold);
        position: relative;
        box-shadow: 0 20px 40px rgba(30, 144, 255, 0.15);
    }

        .price-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            color: var(--navy-deep);
            padding: 6px 20px;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 700;
        }

.price-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 4px;
}

.price-desc {
    font-size: 0.8125rem;
    color: var(--slate);
    margin-bottom: 20px;
}

.price-amount {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--navy-deep);
    margin-bottom: 4px;
    letter-spacing: -0.03em;
}

.price-unit {
    font-size: 0.8125rem;
    color: var(--slate-light);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price-savings {
    background: #ECFDF5;
    color: #047857;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 700;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    flex-grow: 1;
}

    .price-features li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.8125rem;
        color: var(--slate);
    }

        .price-features li::before {
            content: '✓';
            color: var(--gold);
            font-weight: 700;
            flex-shrink: 0;
        }

.price-cta {
    width: 100%;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
    border: 1px solid var(--border-light);
    background: var(--white);
    color: var(--navy-deep);
    cursor: pointer;
}

    .price-cta:hover {
        background: var(--off-white);
        border-color: var(--slate-light);
    }

.price-card.featured .price-cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy-deep);
    border-color: var(--gold);
    font-weight: 700;
}

    .price-card.featured .price-cta:hover {
        background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
        box-shadow: 0 4px 14px rgba(212, 168, 83, 0.4);
    }

.pricing-proof {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.proof-text {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--navy-deep);
    margin-bottom: 8px;
}

.proof-author {
    font-size: 0.875rem;
    color: var(--slate);
}

.enterprise-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 32px;
    padding: 32px 40px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
}

.enterprise-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 8px;
}

.enterprise-content p {
    font-size: 0.9375rem;
    color: var(--slate);
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.testimonial {
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
}

.testimonial-quote {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--navy-deep);
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--navy-deep);
    font-size: 0.9375rem;
}

.author-role {
    color: var(--slate);
    font-size: 0.8125rem;
}

/* Who It's For */
.who-for {
    padding: 120px 0;
    background: var(--white);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.who-card {
    padding: 32px;
    background: var(--off-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

    .who-card:hover {
        border-color: var(--gold);
        transform: translateY(-2px);
    }

.who-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.who-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 8px;
}

.who-card p {
    font-size: 0.9375rem;
    color: var(--slate);
    line-height: 1.6;
}

.who-footer {
    text-align: center;
    margin-top: 48px;
    font-size: 1.125rem;
    color: var(--slate);
    font-style: italic;
}

/* FAQ */
.faq {
    padding: 120px 0;
    background: var(--off-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.faq-item {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
}

    .faq-item h3 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 12px;
        color: var(--navy-deep);
    }

    .faq-item p {
        font-size: 0.9375rem;
        color: var(--slate);
        line-height: 1.7;
    }

/* Final CTA */
.final-cta {
    padding: 120px 0;
    background: var(--navy-deep);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .final-cta::before {
        content: '';
        position: absolute;
        top: -50%;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 200%;
        background: radial-gradient(ellipse at center, var(--gold-glow) 0%, transparent 60%);
        pointer-events: none;
    }

    .final-cta .container {
        position: relative;
        z-index: 2;
    }

    .final-cta h2 {
        font-family: 'Fraunces', serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 600;
        letter-spacing: -0.02em;
        margin-bottom: 20px;
        color: var(--white);
    }

    .final-cta p {
        font-size: 1.125rem;
        color: var(--slate-light);
        margin-bottom: 40px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

/* Footer */
footer {
    padding: 48px 0;
    background: var(--navy-deep);
    border-top: 1px solid var(--border);
}

    footer .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.footer-logo {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--white);
}

    .footer-logo span {
        color: var(--gold);
    }

.footer-text {
    font-size: 0.875rem;
    color: var(--slate-light);
}

.footer-links {
    display: flex;
    gap: 32px;
}

    .footer-links a {
        font-size: 0.875rem;
        color: var(--slate-light);
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .footer-links a:hover {
            color: var(--white);
        }

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        max-width: 500px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-anchor {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .anchor-divider {
        width: 60px;
        height: 1px;
    }

    .enterprise-callout {
        flex-direction: column;
        text-align: center;
    }

    .what-is-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .what-is-content .section-title,
    .what-is-content .section-label {
        text-align: center;
    }

    .what-is-desc {
        text-align: center;
    }

    .inside-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .who-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .swarm-footer {
        grid-template-columns: repeat(2, 1fr);
    }

    .swarm-stat {
        border-bottom: 1px solid var(--border);
    }

        .swarm-stat:nth-child(2) {
            border-right: none;
        }

        .swarm-stat:nth-child(3),
        .swarm-stat:nth-child(4) {
            border-bottom: none;
        }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .steps,
    .features-grid,
    .faq-grid,
    .testimonials-grid,
    .diy-grid,
    .value-calc,
    .who-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid,
    .deliverables-grid {
        grid-template-columns: 1fr;
    }

    .floating-badge {
        display: none;
    }

    .diy-flow {
        padding: 24px 20px;
    }

    .diy-header {
        padding: 20px;
        flex-wrap: wrap;
    }

    .diy-time {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
        text-align: center;
    }

    .specialist-grid {
        grid-template-columns: 1fr;
    }

    .inside-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .swarm-header {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }

    .swarm-body {
        padding: 24px;
    }

    .swarm-footer {
        grid-template-columns: 1fr;
    }

    .swarm-stat {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

        .swarm-stat:last-child {
            border-bottom: none;
        }

    footer .container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        order: -1;
    }
}
