/* ═══════════════════════════════════════════════════════════════
   NewStock PRO — Landing Page CSS
   Tokens, layout, components. Sin TailwindCSS.
═══════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
    /* Surfaces */
    --bg-base:        #080b14;
    --bg-raised:      #0d1220;
    --bg-card:        #111827;
    --bg-card-hover:  #161f30;
    --bg-input:       #0d1525;

    /* Text */
    --text-primary:   #f0f4ff;
    --text-secondary: #94a3b8;
    --text-muted:     #4b5e7a;
    --text-link:      #60a5fa;

    /* Brand */
    --accent:         #3b82f6;
    --accent-light:   #60a5fa;
    --accent-glow:    rgba(59, 130, 246, 0.25);
    --accent-2:       #6366f1;

    /* Semantic */
    --success:        #22c55e;
    --danger:         #f87171;
    --warning:        #fbbf24;

    /* Borders */
    --border-subtle:  rgba(255,255,255,0.06);
    --border-default: rgba(255,255,255,0.10);
    --border-strong:  rgba(255,255,255,0.18);
    --border-accent:  rgba(59,130,246,0.40);

    /* Radius */
    --r-sm:   6px;
    --r-md:   12px;
    --r-lg:   20px;
    --r-xl:   28px;
    --r-full: 999px;

    /* Spacing base: 4px */
    --sp-1: 4px;
    --sp-2: 8px;
    --sp-3: 12px;
    --sp-4: 16px;
    --sp-5: 20px;
    --sp-6: 24px;
    --sp-8: 32px;
    --sp-10: 40px;
    --sp-12: 48px;
    --sp-16: 64px;
    --sp-20: 80px;

    /* Typography */
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;

    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --t-fast:   150ms;
    --t-base:   240ms;
    --t-slow:   400ms;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

/* ── Utilities ──────────────────────────────────────────────── */
.section-inner {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 var(--sp-6);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: var(--sp-3);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: var(--sp-4);
    text-align: center;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
}

.section-header {
    margin-bottom: var(--sp-12);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════ */
.land-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(8, 11, 20, 0.70);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    transition: background var(--t-base) var(--ease-out),
                box-shadow var(--t-base) var(--ease-out);
}

.land-nav.scrolled {
    background: rgba(8, 11, 20, 0.92);
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: var(--sp-4) var(--sp-6);
    display: flex;
    align-items: center;
    gap: var(--sp-8);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    transition: opacity var(--t-fast);
}

.nav-logo:hover { opacity: 0.85; }

.logo-mark {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 4px 8px;
    border-radius: var(--r-sm);
    letter-spacing: 0.04em;
}

.logo-text { letter-spacing: -0.01em; }
.logo-text sup {
    font-size: 0.6em;
    font-weight: 600;
    color: var(--accent-light);
    vertical-align: super;
    margin-left: 1px;
}

.nav-links {
    display: flex;
    gap: var(--sp-8);
    margin-left: auto;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--t-fast);
}

.nav-links a:hover { color: var(--text-primary); }

.btn-nav-login {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: 0.875rem;
    font-weight: 600;
    padding: var(--sp-2) var(--sp-5);
    background: transparent;
    border: 1px solid var(--border-strong);
    border-radius: var(--r-full);
    color: var(--text-primary);
    transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
    white-space: nowrap;
}

.btn-nav-login:hover {
    background: rgba(59,130,246,0.12);
    border-color: var(--border-accent);
    color: var(--accent-light);
}

.btn-nav-login svg { width: 15px; height: 15px; }

.nav-hamburger {
    display: none;
    background: none;
    border: 1px solid var(--border-default);
    color: var(--text-primary);
    border-radius: var(--r-sm);
    padding: var(--sp-2);
    cursor: pointer;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    transition: background var(--t-fast);
}

.nav-hamburger svg { width: 20px; height: 20px; }
.nav-hamburger:hover { background: var(--bg-card); }

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: var(--sp-4) var(--sp-6) var(--sp-5);
    gap: var(--sp-4);
    border-top: 1px solid var(--border-subtle);
}

.nav-mobile a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: var(--sp-2) 0;
    transition: color var(--t-fast);
}

.nav-mobile a:hover { color: var(--text-primary); }

.btn-mobile-login {
    display: inline-block;
    padding: var(--sp-3) var(--sp-5);
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff !important;
    border-radius: var(--r-full);
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    margin-top: var(--sp-2);
}

.nav-mobile.open { display: flex; }

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--sp-20)) var(--sp-6) var(--sp-20);
    overflow: hidden;
}

/* Grid background */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59,130,246,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

/* Ambient glows */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: float-a 14s ease-in-out infinite;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99,102,241,0.14) 0%, transparent 70%);
    bottom: 0;
    left: -50px;
    animation: float-b 18s ease-in-out infinite;
}

@keyframes float-a {
    0%, 100% { transform: translate(0, 0); }
    50%       { transform: translate(-40px, 40px); }
}
@keyframes float-b {
    0%, 100% { transform: translate(0, 0); }
    50%       { transform: translate(30px, -30px); }
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-light);
    background: rgba(59,130,246,0.10);
    border: 1px solid var(--border-accent);
    border-radius: var(--r-full);
    padding: var(--sp-2) var(--sp-4);
    margin-bottom: var(--sp-6);
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-light);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: var(--sp-6);
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto var(--sp-10);
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--sp-4);
    margin-bottom: var(--sp-16);
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-4) var(--sp-8);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--r-full);
    border: none;
    cursor: pointer;
    transition: transform var(--t-fast), box-shadow var(--t-fast), opacity var(--t-fast);
    box-shadow: 0 4px 24px rgba(59,130,246,0.40);
    text-decoration: none;
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(59,130,246,0.55);
}

.btn-primary-hero:active { transform: translateY(0); }

.btn-primary-hero svg { width: 18px; height: 18px; }

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-4) var(--sp-8);
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--r-full);
    border: 1px solid var(--border-strong);
    cursor: pointer;
    transition: background var(--t-fast), border-color var(--t-fast);
    text-decoration: none;
}

.btn-secondary-hero:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--border-accent);
}

.btn-secondary-hero svg { width: 16px; height: 16px; }

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--sp-8);
    flex-wrap: wrap;
}

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

.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--accent-light), var(--text-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-sep {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

/* ════════════════════════════════════════════════
   BENEFITS
════════════════════════════════════════════════ */
.benefits {
    padding: var(--sp-20) 0;
    background: var(--bg-raised);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--sp-5);
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-lg);
    padding: var(--sp-8);
    transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
    animation: fade-up-in 0.5s var(--ease-out) both;
}

.benefit-card:hover {
    border-color: var(--border-default);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

@keyframes fade-up-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.benefit-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--r-md);
    background: hsla(var(--icon-hue), 70%, 50%, 0.12);
    border: 1px solid hsla(var(--icon-hue), 70%, 50%, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-5);
    color: hsla(var(--icon-hue), 80%, 65%);
}

.benefit-icon-wrap svg { width: 22px; height: 22px; }

.benefit-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: var(--sp-3);
    letter-spacing: -0.01em;
}

.benefit-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ════════════════════════════════════════════════
   PLANS
════════════════════════════════════════════════ */
.plans {
    padding: var(--sp-20) 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--sp-5);
    margin-bottom: var(--sp-8);
}

/* Skeleton loading */
.plans-loading {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--sp-5);
    margin-bottom: var(--sp-8);
}

.skeleton-card {
    height: 380px;
    background: linear-gradient(
        90deg,
        var(--bg-card) 25%,
        var(--bg-card-hover) 50%,
        var(--bg-card) 75%
    );
    background-size: 200% 100%;
    border-radius: var(--r-lg);
    border: 1px solid var(--border-subtle);
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

@keyframes skeleton-shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position:  200% 0; }
}

/* Plan card */
.plan-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-lg);
    padding: var(--sp-8);
    display: flex;
    flex-direction: column;
    transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
    overflow: hidden;
}

.plan-card:hover {
    border-color: var(--border-default);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.plan-card.featured {
    border-color: var(--border-accent);
    background: linear-gradient(160deg, rgba(59,130,246,0.08), var(--bg-card));
}

.plan-card.featured:hover {
    box-shadow: 0 16px 48px rgba(59,130,246,0.25);
}

.plan-badge-featured {
    position: absolute;
    top: var(--sp-4);
    right: var(--sp-4);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    padding: 3px 10px;
    border-radius: var(--r-full);
}

.plan-slug-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-light);
    background: rgba(59,130,246,0.10);
    border: 1px solid var(--border-accent);
    padding: 2px 10px;
    border-radius: var(--r-full);
    margin-bottom: var(--sp-4);
}

.plan-name {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: var(--sp-2);
}

.plan-price {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: var(--sp-6);
    padding-bottom: var(--sp-6);
    border-bottom: 1px solid var(--border-subtle);
}

.plan-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    flex: 1;
    margin-bottom: var(--sp-8);
}

.plan-features-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.plan-features-list li svg {
    width: 16px;
    height: 16px;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-cta {
    display: block;
    text-align: center;
    padding: var(--sp-3) var(--sp-6);
    border-radius: var(--r-full);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all var(--t-fast);
    cursor: pointer;
}

.plan-cta.outline {
    border: 1px solid var(--border-strong);
    color: var(--text-primary);
    background: transparent;
}

.plan-cta.outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--border-accent);
}

.plan-cta.primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(59,130,246,0.35);
}

.plan-cta.primary:hover {
    box-shadow: 0 6px 28px rgba(59,130,246,0.5);
    transform: translateY(-1px);
}

.plans-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.plans-note a {
    color: var(--text-link);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ════════════════════════════════════════════════
   CONTACT / LEAD FORM
════════════════════════════════════════════════ */
.contact {
    padding: var(--sp-20) 0;
    background: var(--bg-raised);
    border-top: 1px solid var(--border-subtle);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: start;
}

.contact-copy {
    position: sticky;
    top: 100px;
}

.contact-copy .section-title { text-align: left; }
.contact-copy .section-sub   { text-align: left; margin: 0 0 var(--sp-8); }

.contact-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}

.contact-perks li {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.contact-perks li svg {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}

/* Form */
.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-xl);
    padding: var(--sp-10);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.req { color: var(--accent-light); }

.form-group input {
    background: var(--bg-input);
    border: 1px solid var(--border-default);
    border-radius: var(--r-md);
    padding: var(--sp-3) var(--sp-4);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
    outline: none;
    width: 100%;
}

.form-group input::placeholder { color: var(--text-muted); }

.form-group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
    background: var(--bg-raised);
}

.form-group input.error-field {
    border-color: var(--danger);
}

.form-group input.error-field:focus {
    box-shadow: 0 0 0 3px rgba(248,113,113,0.15);
}

.field-error {
    font-size: 0.78rem;
    color: var(--danger);
    min-height: 1.2em;
    transition: opacity var(--t-fast);
}

.form-error-global {
    background: rgba(248,113,113,0.10);
    border: 1px solid rgba(248,113,113,0.30);
    border-radius: var(--r-md);
    padding: var(--sp-3) var(--sp-4);
    font-size: 0.88rem;
    color: var(--danger);
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: var(--sp-4) var(--sp-8);
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--r-full);
    border: none;
    cursor: pointer;
    transition: transform var(--t-fast), box-shadow var(--t-fast), opacity var(--t-fast);
    box-shadow: 0 4px 24px rgba(59,130,246,0.40);
    width: 100%;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(59,130,246,0.55);
}

.btn-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.btn-submit svg { width: 18px; height: 18px; }

/* Spinner */
.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-privacy {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
}

/* Form success state */
.form-success {
    text-align: center;
    padding: var(--sp-12) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-4);
}

.success-icon {
    width: 72px;
    height: 72px;
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.30);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    animation: success-pop 0.4s var(--ease-out) both;
}

.success-icon svg { width: 36px; height: 36px; }

@keyframes success-pop {
    0%   { opacity: 0; transform: scale(0.6); }
    100% { opacity: 1; transform: scale(1); }
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 800;
}

.form-success p {
    color: var(--text-secondary);
    max-width: 300px;
}

/* ════════════════════════════════════════════════
   CTA EXISTING CUSTOMERS
════════════════════════════════════════════════ */
.cta-existing {
    padding: var(--sp-10) var(--sp-6);
    background: linear-gradient(135deg,
        rgba(59,130,246,0.08) 0%,
        rgba(99,102,241,0.08) 100%);
    border-top: 1px solid var(--border-accent);
    border-bottom: 1px solid var(--border-subtle);
}

.cta-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--sp-6);
    flex-wrap: wrap;
}

.cta-lock-icon {
    width: 52px;
    height: 52px;
    background: rgba(59,130,246,0.15);
    border: 1px solid var(--border-accent);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    flex-shrink: 0;
}

.cta-lock-icon svg { width: 24px; height: 24px; }

.cta-inner > div { flex: 1; }

.cta-inner h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.cta-inner p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.btn-login-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-3) var(--sp-6);
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: var(--r-full);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
    white-space: nowrap;
    transition: background var(--t-fast), border-color var(--t-fast);
}

.btn-login-cta:hover {
    background: rgba(59,130,246,0.12);
    border-color: var(--border-accent);
    color: var(--accent-light);
}

.btn-login-cta svg { width: 16px; height: 16px; }

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.land-footer {
    padding: var(--sp-8) var(--sp-6);
    border-top: 1px solid var(--border-subtle);
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--sp-8);
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: color var(--t-fast);
}

.footer-logo:hover { color: var(--text-primary); }

.footer-copy {
    flex: 1;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
}

.footer-login-link {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color var(--t-fast);
}

.footer-login-link:hover { color: var(--accent-light); }
.footer-login-link svg { width: 15px; height: 15px; }

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .contact-inner {
        grid-template-columns: 1fr;
        gap: var(--sp-10);
    }

    .contact-copy {
        position: static;
    }
}

@media (max-width: 720px) {
    .nav-links,
    .btn-nav-login { display: none; }
    .nav-hamburger { display: flex; }

    .hero {
        padding-top: calc(72px + var(--sp-12));
        padding-bottom: var(--sp-12);
    }

    .hero-stats {
        gap: var(--sp-5);
    }

    .stat-sep { display: none; }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .cta-inner > div {
        text-align: center;
    }

    .footer-copy { text-align: left; }
}

@media (max-width: 480px) {
    .contact-form-wrap {
        padding: var(--sp-6);
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        justify-content: center;
    }
}
