@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@400;500;600;700&family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --slate-950: #020617;
    --slate-900: #0F172A;
    --slate-800: #1E293B;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748B;
    --slate-400: #94A3B8;
    --slate-300: #CBD5E1;
    --slate-200: #E2E8F0;
    --slate-100: #F1F5F9;
    --slate-50: #F8FAFC;

    --amber: #F59E0B;
    --amber-light: #FCD34D;
    --amber-dark: #D97706;
    --amber-glow: rgba(245, 158, 11, 0.15);

    --violet: #8B5CF6;
    --violet-light: #A78BFA;
    --violet-glow: rgba(139, 92, 246, 0.12);

    --cyan: #06B6D4;
    --emerald: #10B981;
    --rose: #F43F5E;

    --glass-bg: rgba(30, 41, 59, 0.5);
    --glass-border: rgba(148, 163, 184, 0.12);
    --glass-border-hover: rgba(245, 158, 11, 0.25);

    --font-display: 'Cormorant', Georgia, serif;
    --font-body: 'IBM Plex Sans', system-ui, sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--slate-300);
    background: var(--slate-950);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--amber);
    color: var(--slate-950);
}

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

/* =========================================
   AMBIENT GLOW ORBS
   ========================================= */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    opacity: 0.4;
    will-change: transform;
}

/* =========================================
   HEADER / HERO
   ========================================= */
.header {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--slate-950);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.header .glow-orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--amber-glow), transparent 70%);
    top: -200px; right: -100px;
}

.header .glow-orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--violet-glow), transparent 70%);
    bottom: -150px; left: -100px;
}

/* Noise grain overlay */
.header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.logo {
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.logo-img {
    height: 52px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 1;
}

.logo span {
    color: var(--amber);
    font-weight: 700;
}

.header h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--slate-50);
    letter-spacing: -1px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
}

.header .subtitle {
    font-size: 19px;
    margin-bottom: 48px;
    color: var(--slate-400);
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    opacity: 0;
}

.hero-cta-wrap {
    opacity: 0;
}

/* =========================================
   BUTTONS
   ========================================= */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
    color: var(--slate-950);
    padding: 18px 44px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 0 0 0 var(--amber-glow), 0 8px 32px rgba(245, 158, 11, 0.2);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-out-expo);
}

.cta-button:hover::before { transform: translateX(100%); }

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px var(--amber-glow), 0 16px 48px rgba(245, 158, 11, 0.3);
}

.cta-button:active {
    transform: translateY(-1px) scale(0.98);
}

/* Secondary CTA */
.cta-button--secondary {
    background: transparent;
    color: var(--amber);
    border: 1.5px solid rgba(245, 158, 11, 0.3);
    box-shadow: none;
}

.cta-button--secondary:hover {
    background: var(--amber-glow);
    border-color: var(--amber);
    box-shadow: 0 0 30px var(--amber-glow);
}

/* =========================================
   LEAD FORM
   ========================================= */
.lead-form-section {
    padding: 0 0 20px;
    background: transparent;
    position: relative;
    z-index: 5;
}

.lead-form-card {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 44px 40px;
    max-width: 920px;
    margin: -80px auto 0;
    position: relative;
    z-index: 3;
}

.lead-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 40px; right: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

.lead-form-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--slate-50);
    text-align: left;
}

.lead-form-subtitle {
    font-size: 15px;
    color: var(--slate-400);
    margin-bottom: 32px;
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px 24px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-field label {
    font-size: 12px;
    font-weight: 600;
    color: var(--slate-300);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-field input,
.form-field select,
.form-field textarea {
    border-radius: 12px;
    border: 1.5px solid var(--glass-border);
    padding: 14px 16px;
    font-size: 15px;
    font-family: var(--font-body);
    background: rgba(15, 23, 42, 0.6);
    color: var(--slate-200);
    transition: all 0.3s var(--ease-out-expo);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--slate-600);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--amber);
    box-shadow: 0 0 0 4px var(--amber-glow);
    background: rgba(15, 23, 42, 0.9);
}

.form-field select { cursor: pointer; }
.form-field textarea { min-height: 88px; resize: vertical; }
.form-helper { font-size: 12px; color: var(--slate-500); }

.form-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.form-note { font-size: 12px; color: var(--slate-500); }

/* =========================================
   SECTION COMMONS
   ========================================= */
.section-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--amber);
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--amber);
    opacity: 0.4;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: var(--slate-50);
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 17px;
    color: var(--slate-400);
    margin-bottom: 64px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* =========================================
   PROBLEM SECTION
   ========================================= */
.problem-section {
    padding: 120px 0;
    background: var(--slate-900);
    position: relative;
    overflow: hidden;
}

.problem-section .glow-orb {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.06), transparent 70%);
    top: 50%; right: -100px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.problem-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    padding: 36px 32px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: linear-gradient(180deg, var(--rose), transparent);
    opacity: 0.6;
}

.problem-card:hover {
    transform: translateY(-4px);
    border-color: rgba(244, 63, 94, 0.2);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.problem-card .card-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--rose);
}

.problem-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--slate-100);
    font-weight: 600;
}

.problem-card p {
    color: var(--slate-400);
    line-height: 1.8;
    font-size: 15px;
}

/* Cost warning box */
.cost-box {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    padding: 40px 36px;
    border-radius: 20px;
    border: 1px solid rgba(245, 158, 11, 0.15);
    position: relative;
    overflow: hidden;
}

.cost-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

.cost-box h3 {
    font-family: var(--font-display);
    font-size: 26px;
    margin-bottom: 24px;
    color: var(--amber);
    font-weight: 600;
}

.cost-box ul { list-style: none; padding: 0; }

.cost-box li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
    font-size: 15px;
    color: var(--slate-300);
    line-height: 1.8;
}

.cost-box li:last-child { border-bottom: none; }
.cost-box li strong { color: var(--slate-100); }

/* =========================================
   SOLUTION SECTION
   ========================================= */
.solution-section {
    padding: 120px 0;
    background: var(--slate-950);
    position: relative;
    overflow: hidden;
}

.solution-section .glow-orb {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--violet-glow), transparent 70%);
    top: 30%; left: -150px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 0;
}

.benefit-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    padding: 40px 32px;
    border-radius: 20px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--amber), var(--violet));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}

.benefit-card:hover::after { transform: scaleX(1); }

.benefit-card:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--amber-glow);
    border: 1px solid rgba(245, 158, 11, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--amber);
    font-size: 24px;
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--slate-50);
}

.benefit-card p {
    color: var(--slate-400);
    line-height: 1.8;
    font-size: 15px;
}

/* =========================================
   METHODOLOGY SECTION
   ========================================= */
.methodology-section {
    padding: 120px 0;
    background: var(--slate-900);
    position: relative;
}

.timeline { margin-top: 8px; position: relative; }

/* Continuous vertical line — runs behind the number boxes */
.timeline::before {
    content: '';
    position: absolute;
    left: 30px; /* center of the 60px number circle */
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--amber), var(--violet-light), var(--amber));
    opacity: 0.35;
    z-index: 0;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    gap: 36px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.timeline-number {
    min-width: 60px; height: 60px;
    background: var(--slate-900);
    color: var(--amber);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    font-family: var(--font-display);
    flex-shrink: 0;
    border: 2px solid rgba(245, 158, 11, 0.25);
    position: relative;
    z-index: 1;
    transition: all 0.3s var(--ease-out-expo);
}

.timeline-item:hover .timeline-number {
    background: #322B25;
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 0 24px var(--amber-glow);
}

.timeline-content {
    flex: 1;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    padding: 32px 36px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s var(--ease-out-expo);
}

.timeline-content:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transform: translateX(6px);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--slate-50);
    font-weight: 600;
}

.timeline-content p {
    color: var(--slate-400);
    line-height: 1.8;
    font-size: 15px;
}

/* =========================================
   PACKAGE SECTION
   ========================================= */
.package-section {
    padding: 120px 0;
    background: var(--slate-950);
    position: relative;
    overflow: hidden;
}

.package-section .glow-orb {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--amber-glow), transparent 70%);
    top: 20%; right: -200px;
}

.package-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 52px 48px;
    max-width: 920px;
    margin: 32px auto 0;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
}

.package-header { text-align: center; margin-bottom: 32px; }

.package-name {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 10px;
}

.package-tagline {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--slate-200);
}

.package-desc {
    text-align: center;
    margin: 12px 0 28px;
}

.package-desc p {
    color: var(--slate-400);
    font-size: 15px;
    line-height: 1.7;
}

.deliverables { margin: 36px 0; }

.deliverables h4 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--amber);
    font-weight: 600;
}

.deliverable-item {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.check-icon {
    color: var(--emerald);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 3px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.deliverable-item p {
    line-height: 1.7;
    color: var(--slate-300);
    font-size: 15px;
}

.deliverable-item p strong { color: var(--slate-100); }

.bonus-section {
    background: var(--amber-glow);
    border-radius: 16px;
    padding: 32px;
    margin-top: 32px;
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.bonus-section h4 {
    font-family: var(--font-display);
    color: var(--amber);
    font-size: 22px;
    margin-bottom: 20px;
}

.bonus-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    align-items: center;
    color: var(--slate-300);
}

.bonus-item span { font-size: 20px; }

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    padding: 120px 0;
    background: var(--slate-900);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section .glow-orb {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--amber-glow), transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
    color: var(--slate-50);
    font-weight: 600;
}

.cta-section p {
    font-size: 18px;
    color: var(--slate-400);
    margin-bottom: 36px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.urgency-box {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    color: var(--slate-200);
    padding: 24px 36px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    max-width: 560px;
    margin: 32px auto;
    border: 1px solid rgba(245, 158, 11, 0.15);
    position: relative;
    overflow: hidden;
}

.urgency-box::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 3px; height: 100%;
    background: var(--amber);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--slate-950);
    color: var(--slate-500);
    padding: 48px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer p { font-size: 14px; }

/* =========================================
   REVEAL ANIMATIONS (initial state)
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    will-change: transform, opacity;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .header { min-height: auto; padding: 100px 0 120px; }
    .container { padding: 0 20px; }
    .lead-form-card { margin-top: -60px; padding: 32px 24px; }
    .problem-grid, .benefits-grid { grid-template-columns: 1fr; }
    .timeline::before { left: 24px; top: 24px; bottom: 24px; }
    .timeline-number { min-width: 48px; height: 48px; font-size: 18px; border-radius: 12px; }
    .timeline-item { gap: 20px; }
    .timeline-content { padding: 24px 20px; }
    .package-card { padding: 36px 28px; margin: 24px auto 0; }
    .problem-section, .solution-section, .methodology-section, .package-section, .cta-section { padding: 80px 0; }
    .logo { font-size: 15px; letter-spacing: 2px; }
    .section-label { font-size: 11px; }
}

@media (max-width: 480px) {
    .header { padding: 80px 0 100px; }
    .container { padding: 0 16px; }
    .price-amount { font-size: 36px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}
