/* ================================================================
   Landing Page — landing.css
   ================================================================ */

/* ── Base ─────────────────────────────────────────────────────── */
.landing-body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #fff;
    color: #111827;
    overflow-x: hidden;
}

/* ── Shared section helpers ───────────────────────────────────── */
section { padding: 5rem 0; }

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4f46e5;
    background: #ede9fe;
    padding: 0.25rem 0.85rem;
    border-radius: 20px;
    margin-bottom: 0.85rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 900;
    color: #111827;
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.section-desc {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* ════════════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════════════ */
.landing-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1.5px solid #f3f4f6;
}

.landing-nav-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 64px;
}

.landing-nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 800;
    color: #111827;
    text-decoration: none;
    letter-spacing: -0.3px;
    flex-shrink: 0;
}

.landing-nav-brand i {
    font-size: 1.2rem;
    color: #4f46e5;
}

.landing-nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    margin-left: 1rem;
}

.landing-nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.15s;
}

.landing-nav-links a:hover { color: #111827; }

.landing-nav-auth {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-left: auto;
}

.btn-nav-login {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    transition: background 0.15s;
}

.btn-nav-login:hover { background: #f3f4f6; color: #111827; }

.btn-nav-register {
    display: inline-flex;
    align-items: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    padding: 0.45rem 1rem;
    border-radius: 9px;
    transition: opacity 0.15s;
    white-space: nowrap;
}

.btn-nav-register:hover { opacity: 0.88; color: #fff; }

/* Hamburger */
.landing-nav-hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: #374151;
    cursor: pointer;
    margin-left: auto;
    padding: 0.25rem;
}

/* Mobile menu */
.landing-nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    border-top: 1px solid #f3f4f6;
    background: #fff;
}

.landing-nav-mobile.open { display: flex; }

.landing-nav-mobile a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f9fafb;
}

.landing-nav-mobile-auth {
    display: flex;
    gap: 0.65rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════ */
.hero-section {
    padding: 5rem 0 4rem;
    background: linear-gradient(160deg, #fafafe 0%, #f0f0ff 50%, #fafafe 100%);
    position: relative;
    overflow: hidden;
}

/* Background orbs */
.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.35;
}

.orb-1 {
    width: 500px; height: 500px;
    background: #c4b5fd;
    top: -150px; right: -100px;
}

.orb-2 {
    width: 300px; height: 300px;
    background: #a5b4fc;
    bottom: -80px; left: -80px;
}

.orb-3 {
    width: 200px; height: 200px;
    background: #818cf8;
    top: 40%; left: 40%;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

/* Left copy */
.hero-copy { flex: 1; max-width: 520px; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #4f46e5;
    background: #ede9fe;
    border: 1.5px solid #c4b5fd;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    margin-bottom: 1.25rem;
}

.hero-eyebrow-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #4f46e5;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: #111827;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
}

.hero-title-accent {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* CTA buttons */
.hero-cta-row {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: opacity 0.15s, transform 0.1s;
    box-shadow: 0 4px 20px rgba(79,70,229,0.35);
}

.btn-hero-primary:hover {
    opacity: 0.9; transform: translateY(-1px); color: #fff;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #374151;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: border-color 0.15s, color 0.15s;
}

.btn-hero-secondary:hover {
    border-color: #4f46e5; color: #4f46e5;
}

/* Trust row */
.hero-trust-row {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hero-trust-row span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    color: #9ca3af;
    font-weight: 500;
}

.hero-trust-row i { color: #059669; font-size: 0.75rem; }

/* Right visual */
.hero-visual {
    flex: 1;
    max-width: 480px;
    position: relative;
}

/* Dashboard preview card */
.hero-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(79,70,229,0.15),
                0 4px 16px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1.5px solid #f3f4f6;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.75rem 1rem;
    background: #f9fafb;
    border-bottom: 1px solid #f3f4f6;
}

.hero-card-dot {
    width: 10px; height: 10px; border-radius: 50%;
}

.hero-card-dot.red   { background: #ef4444; }
.hero-card-dot.amber { background: #f59e0b; }
.hero-card-dot.green { background: #22c55e; }

.hero-card-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: #6b7280;
}

.hero-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: #059669;
    background: #d1fae5;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
}

.hero-card-badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #059669;
    animation: pulse-dot 1.5s infinite;
}

/* Stat row */
.hero-card-stats {
    display: flex;
    align-items: center;
    padding: 1.25rem 1rem;
    gap: 0;
}

.hero-stat {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.hero-stat-divider {
    width: 1px; height: 40px;
    background: #f3f4f6; flex-shrink: 0;
}

.hero-stat-icon {
    width: 36px; height: 36px; border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
}

.hero-stat-icon.dl   { background: #ede9fe; color: #4f46e5; }
.hero-stat-icon.ul   { background: #d1fae5; color: #059669; }
.hero-stat-icon.ping { background: #dbeafe; color: #2563eb; }

.hero-stat-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111827;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.68rem;
    color: #9ca3af;
    margin-top: 2px;
}

/* Mini chart */
.hero-chart {
    padding: 0 1rem 1rem;
}

.hero-chart-label {
    font-size: 0.68rem;
    color: #9ca3af;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.hero-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 70px;
}

.hero-chart-bar-wrap {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 100%;
}

.hero-chart-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    min-height: 4px;
}

.hero-chart-bar.dl { background: linear-gradient(180deg, #818cf8, #c4b5fd); }
.hero-chart-bar.ul { background: linear-gradient(180deg, #34d399, #a7f3d0); }

.hero-chart-days {
    display: flex;
    justify-content: space-between;
    margin-top: 0.35rem;
}

.hero-chart-days span {
    font-size: 0.6rem;
    color: #d1d5db;
    font-weight: 500;
    flex: 1;
    text-align: center;
}

/* Card footer */
.hero-card-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    background: #f9fafb;
    border-top: 1px solid #f3f4f6;
    font-size: 0.72rem;
}

.hero-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
}

.hero-status-badge.online {
    background: #d1fae5; color: #065f46;
}

.hero-status-badge .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #059669;
    animation: pulse-dot 1.5s infinite;
}

.hero-card-device { color: #6b7280; font-weight: 500; }
.hero-card-sync   { color: #9ca3af; }

/* Floating badges */
.hero-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: #fff;
    border-radius: 12px;
    padding: 0.65rem 0.9rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border: 1.5px solid #f3f4f6;
    font-size: 0.78rem;
    animation: float 4s ease-in-out infinite;
}

.badge-outage {
    bottom: -20px; left: -30px;
    animation-delay: 0s;
}

.badge-usage {
    top: 30px; right: -30px;
    animation-delay: 2s;
}

.hero-float-badge > i {
    font-size: 1.1rem;
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.badge-outage > i { background: #d1fae5; color: #059669; }
.badge-usage  > i { background: #dbeafe; color: #2563eb; }

.float-badge-title {
    font-weight: 700; color: #111827; font-size: 0.78rem;
}

.float-badge-sub {
    font-size: 0.68rem; color: #9ca3af; margin-top: 1px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* ════════════════════════════════════════════════════════════════
   PROOF STRIP
   ════════════════════════════════════════════════════════════════ */
.proof-strip {
    padding: 1.5rem 0;
    background: #f9fafb;
    border-top: 1.5px solid #f3f4f6;
    border-bottom: 1.5px solid #f3f4f6;
}

.proof-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: #6b7280;
    padding: 0.4rem 1.5rem;
}

.proof-item i { color: #4f46e5; font-size: 0.9rem; }

.proof-divider {
    width: 1.5px; height: 20px;
    background: #e5e7eb; flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════
   FEATURES
   ════════════════════════════════════════════════════════════════ */
.features-section { background: #fff; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feature-card {
    background: #f9fafb;
    border: 1.5px solid #f3f4f6;
    border-radius: 16px;
    padding: 1.5rem;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
    box-shadow: 0 8px 28px rgba(79,70,229,0.1);
    border-color: #c4b5fd;
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-bottom: 1rem;
}

.feature-icon.indigo { background: #ede9fe; color: #4f46e5; }
.feature-icon.blue   { background: #dbeafe; color: #2563eb; }
.feature-icon.green  { background: #d1fae5; color: #059669; }
.feature-icon.red    { background: #fee2e2; color: #dc2626; }
.feature-icon.amber  { background: #fef3c7; color: #d97706; }
.feature-icon.purple { background: #f3e8ff; color: #7c3aed; }

.feature-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.feature-pro-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.68rem;
    font-weight: 700;
    color: #4f46e5;
    background: #ede9fe;
    padding: 0.2rem 0.55rem;
    border-radius: 20px;
    margin-top: 0.75rem;
}

/* ════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════════════════════════════ */
.how-section {
    background: linear-gradient(160deg, #fafafe 0%, #f0f0ff 100%);
}

.how-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
}

.how-step {
    flex: 1;
    max-width: 260px;
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.how-step-num {
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%);
    width: 28px; height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
}

.how-step-icon {
    width: 72px; height: 72px; border-radius: 18px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(79,70,229,0.12);
    border: 2px solid #ede9fe;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: #4f46e5;
    margin: 0 auto 1.1rem;
}

.how-step h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.how-step p {
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.how-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 36px;
    color: #c4b5fd;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.how-cta {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════════════════════════ */
.pricing-section { background: #fff; }

.pricing-grid {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    border: 2px solid #f3f4f6;
    overflow: hidden;
    flex: 1;
    max-width: 380px;
    min-width: 280px;
    position: relative;
    transition: box-shadow 0.2s;
}

.pricing-card.free:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.pricing-card.pro {
    border-color: #4f46e5;
    box-shadow: 0 12px 40px rgba(79,70,229,0.18);
}

.pricing-popular-badge {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem;
    letter-spacing: 0.03em;
}

.pricing-card-header {
    padding: 1.75rem 2rem 1.25rem;
    border-bottom: 1.5px solid #f3f4f6;
}

.pricing-plan-name {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.pricing-card.pro .pricing-plan-name { color: #4f46e5; }

.pricing-price-row {
    display: flex;
    align-items: flex-end;
    gap: 0.15rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pricing-currency {
    font-size: 1.4rem; font-weight: 700;
    color: #111827; margin-bottom: 6px;
}

.pricing-amount {
    font-size: 3.5rem; font-weight: 900;
    color: #111827; letter-spacing: -2px;
}

.pricing-period {
    font-size: 1rem; font-weight: 500;
    color: #9ca3af; margin-bottom: 8px;
}

.pricing-plan-desc {
    font-size: 0.8rem; color: #6b7280; line-height: 1.5;
}

.pricing-features {
    padding: 1.25rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border-bottom: 1.5px solid #f3f4f6;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
}

.pricing-feature i { font-size: 0.82rem; flex-shrink: 0; }

.pricing-feature.included     { color: #374151; }
.pricing-feature.included i   { color: #059669; }
.pricing-feature.included.pro { color: #374151; }
.pricing-feature.included.pro i { color: #4f46e5; }
.pricing-feature.excluded     { color: #d1d5db; }
.pricing-feature.excluded i   { color: #e5e7eb; }

.pricing-action {
    padding: 1.5rem 2rem;
    text-align: center;
}

.btn-pricing-free {
    display: block;
    width: 100%;
    padding: 0.8rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    border: 2px solid #e5e7eb;
    color: #374151;
    background: #fff;
    transition: border-color 0.15s, color 0.15s;
}

.btn-pricing-free:hover { border-color: #4f46e5; color: #4f46e5; }

.btn-pricing-pro {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.9rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    transition: opacity 0.15s;
}

.btn-pricing-pro:hover { opacity: 0.9; color: #fff; }

.pricing-action-note {
    font-size: 0.72rem;
    color: #9ca3af;
    margin-top: 0.6rem;
    margin-bottom: 0;
}

.pricing-action-note a {
    color: #9ca3af; text-decoration: underline;
}

.pricing-trust {
    text-align: center;
    margin-top: 1.75rem;
    font-size: 0.75rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.pricing-trust i { color: #4f46e5; }
.pricing-trust a { color: #9ca3af; text-decoration: underline; }

/* ════════════════════════════════════════════════════════════════
   FINAL CTA
   ════════════════════════════════════════════════════════════════ */
.final-cta-section {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.final-cta-bg-orb {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    top: -200px; right: -100px;
    pointer-events: none;
}

.final-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 580px;
    margin: 0 auto;
}

.final-cta-icon {
    width: 72px; height: 72px;
    border-radius: 20px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: #fff;
    margin: 0 auto 1.5rem;
}

.final-cta-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.final-cta-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

/* Override primary button for dark bg */
.final-cta-section .btn-hero-primary {
    background: #fff;
    color: #4f46e5;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.final-cta-section .btn-hero-primary:hover {
    opacity: 0.92; color: #4f46e5;
}

.btn-final-secondary {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.12);
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: background 0.15s;
}

.btn-final-secondary:hover {
    background: rgba(255,255,255,0.2); color: #fff;
}

.final-cta-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.final-cta-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s;
}

.final-cta-links a:hover { color: #fff; }

.final-cta-links span {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
}

/* ════════════════════════════════════════════════════════════════
   LANDING FOOTER
   ════════════════════════════════════════════════════════════════ */
.landing-footer {
    background: #0f0f1a;
    padding: 4rem 0 0;
    color: #9ca3af;
}

.landing-footer-inner {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Brand column */
.landing-footer-brand {
    flex: 1.2;
    min-width: 200px;
}

.landing-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
}

.landing-footer-logo i {
    font-size: 1.2rem;
    color: #818cf8;
}

.landing-footer-tagline {
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.landing-footer-by {
    font-size: 0.75rem;
    color: #4b5563;
    margin: 0;
}

.landing-footer-by a {
    color: #818cf8;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.15s;
}

.landing-footer-by a:hover { opacity: 0.8; }

/* Link columns */
.landing-footer-cols {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    flex: 2;
}

.landing-footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-width: 120px;
}

.landing-footer-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 0.25rem;
}

.landing-footer-col a {
    font-size: 0.82rem;
    color: #6b7280;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.15s;
}

.landing-footer-col a:hover { color: #e5e7eb; }

.landing-footer-col a i { font-size: 0.78rem; }

/* Bottom bar */
.landing-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.25rem 0;
    font-size: 0.75rem;
    color: #4b5563;
}

.landing-footer-bottom i { color: #818cf8; }




/* ════════════════════════════════════════════════════════════════
   NAV — scroll shadow
   ════════════════════════════════════════════════════════════════ */
.landing-nav.scrolled {
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
}

/* ════════════════════════════════════════════════════════════════
   NAV — "More" dropdown
   ════════════════════════════════════════════════════════════════ */
.landing-nav-dropdown {
    position: relative;
}

.landing-nav-dropdown-btn {
    display: inline-flex; align-items: center;
    background: none; border: none; cursor: pointer;
    font-size: 0.875rem; font-weight: 500;
    color: #374151; padding: 0.25rem 0.1rem;
    transition: color 0.15s;
}

.landing-nav-dropdown-btn:hover { color: #4f46e5; }

.landing-nav-dropdown-menu {
    position: absolute; top: calc(100% + 10px); right: 0;
    min-width: 220px;
    background: #fff; border: 1.5px solid #f3f4f6;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    padding: 0.5rem;
    opacity: 0; visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
    z-index: 200;
}

.landing-nav-dropdown-menu.open {
    opacity: 1; visibility: visible; transform: translateY(0);
}

.landing-nav-dropdown-menu a {
    display: flex; align-items: center; gap: 0.65rem;
    padding: 0.55rem 0.75rem; border-radius: 9px;
    font-size: 0.82rem; font-weight: 500; color: #374151;
    text-decoration: none;
    transition: background 0.12s, color 0.12s;
}

.landing-nav-dropdown-menu a:hover {
    background: #f5f3ff; color: #4f46e5;
}

.landing-nav-dropdown-menu a i {
    font-size: 0.85rem; color: #4f46e5; flex-shrink: 0;
}

.landing-nav-dropdown-divider {
    height: 1.5px; background: #f3f4f6;
    margin: 0.35rem 0.5rem;
}

/* ════════════════════════════════════════════════════════════════
   NAV — status dot (shared: nav + footer)
   ════════════════════════════════════════════════════════════════ */
.nav-status-dot {
    display: inline-block;
    width: 8px; height: 8px; border-radius: 50%;
    flex-shrink: 0;
}

.nav-status-dot.operational {
    background: #059669;
    box-shadow: 0 0 0 2px #d1fae5;
    animation: status-pulse 2.5s infinite;
}

.nav-status-dot.degraded {
    background: #d97706;
    box-shadow: 0 0 0 2px #fef3c7;
}

.nav-status-dot.outage {
    background: #dc2626;
    box-shadow: 0 0 0 2px #fee2e2;
}

@keyframes status-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}

/* ════════════════════════════════════════════════════════════════
   NAV — mobile sections
   ════════════════════════════════════════════════════════════════ */
.landing-nav-mobile-section {
    padding: 0.5rem 0;
    border-bottom: 1.5px solid #f3f4f6;
}

.landing-nav-mobile-section:last-of-type {
    border-bottom: none;
}

.landing-nav-mobile-label {
    font-size: 0.65rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: #9ca3af; padding: 0.35rem 1rem 0.2rem;
}

/* ════════════════════════════════════════════════════════════════
   FOOTER — social buttons
   ════════════════════════════════════════════════════════════════ */
.landing-footer-social {
    display: flex; gap: 0.5rem; margin-top: 1rem;
}

.footer-social-btn {
    width: 34px; height: 34px; border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; text-decoration: none;
    transition: opacity 0.15s, transform 0.1s;
    border: 1.5px solid transparent;
}

.footer-social-btn:hover { opacity: 0.8; transform: translateY(-2px); }

.footer-social-btn.email    { background: #ede9fe; color: #4f46e5; border-color: #c4b5fd; }
.footer-social-btn.telegram { background: #dbeafe; color: #2563eb; border-color: #bfdbfe; }
.footer-social-btn.whatsapp { background: #d1fae5; color: #059669; border-color: #a7f3d0; }
.footer-social-btn.youtube  { background: #fee2e2; color: #dc2626; border-color: #fca5a5; }

/* ════════════════════════════════════════════════════════════════
   FOOTER — status pill
   ════════════════════════════════════════════════════════════════ */
.landing-footer-status {
    display: inline-flex; align-items: center; gap: 0.45rem;
    margin-top: 0.85rem;
    background: #f0fdf4; border: 1.5px solid #a7f3d0;
    border-radius: 20px; padding: 0.25rem 0.75rem;
}

.landing-footer-status a {
    font-size: 0.72rem; font-weight: 600;
    color: #065f46; text-decoration: none;
}

.landing-footer-status a:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════════════════════
   FOOTER — bottom bar
   ════════════════════════════════════════════════════════════════ */
.landing-footer-bottom {
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 1.25rem;
    border-top: 1.5px solid rgba(255,255,255,0.08);
    font-size: 0.75rem; color: rgba(255,255,255,0.45);
}

.landing-footer-bottom-right {
    display: flex; align-items: center; gap: 0.5rem;
}

.landing-footer-bottom-right a {
    color: rgba(255,255,255,0.45); text-decoration: none;
    transition: color 0.15s;
}

.landing-footer-bottom-right a:hover { color: #fff; }

.footer-bottom-divider { opacity: 0.3; }


/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-container    { flex-direction: column; text-align: center; }
    .hero-copy         { max-width: 100%; }
    .hero-visual       { max-width: 480px; margin: 0 auto; }
    .hero-cta-row      { justify-content: center; }
    .hero-trust-row    { justify-content: center; }
    .features-grid     { grid-template-columns: repeat(2, 1fr); }
    .badge-outage      { left: 0; bottom: -15px; }
    .badge-usage       { right: 0; top: 20px; }
}

@media (max-width: 768px) {
    .hero-title        { font-size: 2.2rem; }
    .section-title     { font-size: 1.6rem; }
    .final-cta-title   { font-size: 1.7rem; }
    .features-grid     { grid-template-columns: 1fr; }
    .how-steps         { flex-direction: column; align-items: center; }
    .how-connector     { transform: rotate(90deg); padding: 0; }
    .landing-nav-links { display: none; }
    .landing-nav-auth  { display: none; }
    .landing-nav-hamburger { display: block; }
    .proof-strip-inner { gap: 0.5rem; }
    .proof-divider     { display: none; }
    .proof-item        { padding: 0.4rem 0.75rem; }
    .landing-footer-cols { gap: 1.5rem; }
    .landing-footer-col  { min-width: 100px; }
}

@media (max-width: 480px) {
    .hero-section      { padding: 3rem 0 5rem; }
    .hero-title        { font-size: 1.85rem; }
    .hero-float-badge  { display: none; }
    .hero-cta-row      { flex-direction: column; }
    .btn-hero-primary,
    .btn-hero-secondary { width: 100%; justify-content: center; }
    .how-cta           { flex-direction: column; align-items: center; }
    .pricing-card-header,
    .pricing-features,
    .pricing-action    { padding-left: 1.25rem; padding-right: 1.25rem; }
    .final-cta-buttons { flex-direction: column; align-items: center; }
    .btn-final-secondary { width: 100%; justify-content: center; }
    .landing-footer-inner { flex-direction: column; gap: 2rem; }
    .landing-footer-bottom { flex-direction: column; text-align: center; }
}

