/* ============================================================
   SMARTNOTA LANDING — DARK PREMIUM
   ============================================================ */

:root {
    --bg: #05060f;
    --bg-soft: #0a0c1d;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-2: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.09);
    --border-strong: rgba(255, 255, 255, 0.16);
    --text: #f1f2ff;
    --muted: #9aa3c7;
    --muted-2: #6b7399;
    --brand: #635bff;
    --brand-2: #8b5cf6;
    --accent: #22d3ee;
    --success: #34d399;
    --warning: #fbbf24;
    --danger: #f87171;
    --grad-brand: linear-gradient(135deg, #635bff 0%, #8b5cf6 55%, #a78bfa 100%);
    --grad-text: linear-gradient(120deg, #c7d2fe 0%, #a78bfa 40%, #818cf8 100%);
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-sm: 13px;
    --font-display: 'Sora', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

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

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

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

::selection {
    background: rgba(99, 91, 255, 0.45);
    color: #ffffff;
}

.landing-container {
    width: min(1180px, 100% - 48px);
    margin-inline: auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 24px;
    border-radius: 999px;
    background: var(--grad-brand);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(99, 91, 255, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 16px 40px rgba(99, 91, 255, 0.45);
    color: #ffffff;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 24px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(139, 92, 246, 0.55);
    background: rgba(99, 91, 255, 0.12);
}

.btn-large {
    padding: 16px 32px;
    font-size: 15px;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 999px;
    background: #ffffff;
    color: #17133a;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 18px 44px rgba(10, 8, 40, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 54px rgba(10, 8, 40, 0.55);
    color: #17133a;
}

/* ============================================================
   NAVBAR
   ============================================================ */

.landing-navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
    border-bottom: 1px solid transparent;
}

.landing-navbar.scrolled {
    background: rgba(6, 7, 20, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom-color: var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 76px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--text);
}

.brand img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 10px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.2s ease;
}

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

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

.nav-login {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    transition: color 0.2s ease;
}

.nav-login:hover {
    color: var(--text);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    font-size: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.mobile-nav {
    display: none;
}

@media (max-width: 960px) {

    .desktop-nav,
    .nav-actions {
        display: none;
    }

    .mobile-menu-button {
        display: inline-flex;
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 4px;
        max-height: 0;
        overflow: hidden;
        padding: 0 24px;
        background: rgba(8, 9, 24, 0.97);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid transparent;
        transition: max-height 0.4s ease, padding 0.4s ease;
    }

    .mobile-nav.active {
        max-height: 480px;
        padding: 14px 24px 22px;
        border-bottom-color: var(--border);
    }

    .mobile-nav a {
        padding: 12px 14px;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 500;
        color: var(--muted);
        transition: background 0.2s ease, color 0.2s ease;
    }

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

/* ============================================================
   HERO
   ============================================================ */

.hero-section {
    position: relative;
    padding: 172px 0 110px;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 255, 0.05) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 35%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 35%, transparent 78%);
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
}

.hero-glow-one {
    width: 620px;
    height: 620px;
    top: -220px;
    left: -140px;
    background: radial-gradient(circle, rgba(99, 91, 255, 0.32), transparent 65%);
}

.hero-glow-two {
    width: 520px;
    height: 520px;
    top: 40px;
    right: -160px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.22), transparent 65%);
}

.hero-glow-three {
    width: 420px;
    height: 420px;
    bottom: -180px;
    left: 38%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.10), transparent 65%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 64px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid rgba(139, 92, 246, 0.35);
    background: rgba(99, 91, 255, 0.10);
    color: #c7d2fe;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 26px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55);
    }

    70% {
        box-shadow: 0 0 0 9px rgba(52, 211, 153, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
    }
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(38px, 4.6vw, 62px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-content h1 span {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 17px;
    line-height: 1.75;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--muted);
}

.trust-item i {
    color: var(--success);
    font-size: 15px;
}

/* ---- Hero visual / dashboard mockup ---- */

.hero-visual {
    position: relative;
}

.dashboard-glow {
    position: absolute;
    inset: 8% -6% auto -6%;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(99, 91, 255, 0.28), transparent 68%);
    filter: blur(46px);
    pointer-events: none;
}

.dashboard-card {
    position: relative;
    border: 1px solid var(--border-strong);
    border-radius: 24px;
    background: linear-gradient(165deg, rgba(23, 25, 54, 0.92), rgba(11, 13, 32, 0.94));
    box-shadow: 0 40px 90px rgba(3, 4, 16, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.07);
    padding: 24px;
    backdrop-filter: blur(14px);
}

.dashboard-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 18px;
}

.dashboard-topbar strong {
    display: block;
    font-family: var(--font-display);
    font-size: 15.5px;
}

.dashboard-topbar span {
    font-size: 12.5px;
    color: var(--muted-2);
}

.dashboard-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-brand);
    color: #fff;
    font-size: 17px;
    box-shadow: 0 8px 20px rgba(99, 91, 255, 0.4);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
}

.mini-stat {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    padding: 14px 16px;
}

.mini-stat span {
    display: block;
    font-size: 11.5px;
    color: var(--muted-2);
    margin-bottom: 5px;
}

.mini-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 19px;
    letter-spacing: -0.02em;
}

.mini-stat small {
    font-size: 11.5px;
    font-weight: 700;
}

.mini-stat small.positive {
    color: var(--success);
}

.dashboard-chart {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    padding: 16px;
    margin-bottom: 14px;
}

.chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.chart-header strong {
    font-size: 13px;
}

.chart-header span {
    font-size: 11.5px;
    color: var(--muted-2);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 9px;
    height: 108px;
}

.chart-bars span {
    flex: 1;
    border-radius: 7px 7px 3px 3px;
    background: linear-gradient(180deg, #8b5cf6, rgba(99, 91, 255, 0.28));
    height: calc(var(--h, 40) * 1%);
    transform-origin: bottom;
    animation: bar-grow 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) backwards;
}

.chart-bars span:nth-child(1) { animation-delay: 0.15s; }
.chart-bars span:nth-child(2) { animation-delay: 0.25s; }
.chart-bars span:nth-child(3) { animation-delay: 0.35s; }
.chart-bars span:nth-child(4) { animation-delay: 0.45s; }
.chart-bars span:nth-child(5) { animation-delay: 0.55s; }
.chart-bars span:nth-child(6) { animation-delay: 0.65s; }
.chart-bars span:nth-child(7) { animation-delay: 0.75s; background: linear-gradient(180deg, #a78bfa, #635bff); }

@keyframes bar-grow {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}

.dashboard-invoice {
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid rgba(52, 211, 153, 0.25);
    border-radius: var(--radius-sm);
    background: rgba(52, 211, 153, 0.07);
    padding: 13px 16px;
}

.invoice-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(52, 211, 153, 0.16);
    color: var(--success);
    font-size: 17px;
}

.dashboard-invoice div:nth-child(2) {
    flex: 1;
    min-width: 0;
}

.dashboard-invoice strong {
    display: block;
    font-size: 13.5px;
}

.dashboard-invoice span {
    font-size: 11.5px;
    color: var(--muted-2);
}

.dashboard-invoice b {
    font-family: var(--font-display);
    font-size: 14.5px;
    color: var(--success);
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    border-radius: 16px;
    border: 1px solid var(--border-strong);
    background: rgba(15, 17, 40, 0.88);
    backdrop-filter: blur(14px);
    box-shadow: 0 22px 50px rgba(3, 4, 16, 0.55);
    animation: float-y 5.5s ease-in-out infinite;
}

.floating-card strong {
    display: block;
    font-size: 13px;
}

.floating-card span {
    font-size: 11.5px;
    color: var(--muted-2);
}

.floating-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 91, 255, 0.18);
    color: #a5b4fc;
    font-size: 16px;
}

.floating-icon.success {
    background: rgba(52, 211, 153, 0.16);
    color: var(--success);
}

.floating-order {
    top: -24px;
    right: -14px;
}

.floating-payment {
    bottom: -22px;
    left: -18px;
    animation-delay: 1.4s;
}

@keyframes float-y {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-11px);
    }
}

/* ---- Hero stats strip ---- */

.hero-stats-strip {
    position: relative;
    margin-top: 86px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-strip-item {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    padding: 20px 24px;
    backdrop-filter: blur(8px);
}

.stat-strip-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 91, 255, 0.14);
    color: #a5b4fc;
    font-size: 20px;
}

.stat-strip-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.stat-strip-item span {
    font-size: 13px;
    color: var(--muted);
}

/* ============================================================
   SECTIONS GENERAL
   ============================================================ */

.section {
    position: relative;
    padding: 104px 0;
}

.section-white {
    background: var(--bg);
}

.section-soft {
    background: var(--bg-soft);
    border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.section-heading {
    max-width: 640px;
}

.section-heading.centered {
    margin: 0 auto 60px;
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: #a5b4fc;
    margin-bottom: 16px;
}

.section-label.light {
    color: rgba(255, 255, 255, 0.85);
}

.section-heading h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.6vw, 44px);
    line-height: 1.14;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

.section-heading h2 span {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-heading p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
}

.section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #a5b4fc;
    white-space: nowrap;
    transition: gap 0.25s ease, color 0.25s ease;
}

.section-link:hover {
    gap: 12px;
    color: #c7d2fe;
}

/* ============================================================
   ABOUT
   ============================================================ */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-panel {
    position: relative;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(23, 25, 54, 0.85), rgba(11, 13, 32, 0.92));
    padding: 44px 36px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    overflow: hidden;
}

.about-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 0%, rgba(99, 91, 255, 0.22), transparent 55%);
    pointer-events: none;
}

.about-tile {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    padding: 22px 18px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-tile:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.45);
}

.about-tile i {
    font-size: 26px;
    display: block;
    margin-bottom: 10px;
}

.about-tile.purple i { color: #a5b4fc; }
.about-tile.cyan i { color: var(--accent); }
.about-tile.green i { color: var(--success); }
.about-tile.orange i { color: #fb923c; }

.about-tile strong {
    display: block;
    font-size: 13.5px;
}

.about-floating {
    position: absolute;
    bottom: -26px;
    right: -14px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 20px;
    border-radius: 16px;
    border: 1px solid var(--border-strong);
    background: rgba(15, 17, 40, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 22px 50px rgba(3, 4, 16, 0.55);
    animation: float-y 6s ease-in-out infinite;
}

.about-floating-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-brand);
    color: #fff;
    font-size: 18px;
}

.about-floating strong {
    display: block;
    font-size: 13.5px;
}

.about-floating span {
    font-size: 12px;
    color: var(--muted-2);
}

.about-point {
    display: flex;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    margin-bottom: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.about-point:last-child {
    margin-bottom: 0;
}

.about-point:hover {
    transform: translateX(6px);
    border-color: rgba(139, 92, 246, 0.4);
    background: var(--surface-2);
}

.about-point-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 91, 255, 0.14);
    color: #a5b4fc;
    font-size: 20px;
}

.about-point h3 {
    font-family: var(--font-display);
    font-size: 16.5px;
    font-weight: 700;
    margin-bottom: 7px;
}

.about-point p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
}

/* ============================================================
   FEATURES
   ============================================================ */

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

.feature-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    padding: 30px 28px;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-7px);
    border-color: rgba(139, 92, 246, 0.4);
    background: var(--surface-2);
    box-shadow: 0 26px 60px rgba(3, 4, 16, 0.5);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    margin-bottom: 22px;
    transition: transform 0.35s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.08) rotate(-4deg);
}

.feature-icon.purple { background: rgba(99, 91, 255, 0.15); color: #a5b4fc; }
.feature-icon.blue { background: rgba(59, 130, 246, 0.15); color: #93c5fd; }
.feature-icon.green { background: rgba(52, 211, 153, 0.14); color: var(--success); }
.feature-icon.orange { background: rgba(251, 146, 60, 0.14); color: #fdba74; }
.feature-icon.pink { background: rgba(244, 114, 182, 0.14); color: #f9a8d4; }
.feature-icon.cyan { background: rgba(34, 211, 238, 0.13); color: #67e8f9; }

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 17.5px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 20px;
}

.feature-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    font-weight: 700;
    color: #a5b4fc;
    transition: gap 0.25s ease;
}

.feature-card a:hover {
    gap: 11px;
}

/* ============================================================
   PRICING
   ============================================================ */

.sn-pricing-section {
    position: relative;
    padding: 110px 24px;
    background: var(--bg);
    overflow: hidden;
}

.sn-pricing-section::before {
    content: "";
    position: absolute;
    top: -260px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 520px;
    background: radial-gradient(ellipse, rgba(99, 91, 255, 0.16), transparent 65%);
    pointer-events: none;
}

.sn-pricing-container {
    position: relative;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.sn-pricing-heading {
    max-width: 680px;
    margin: 0 auto 60px;
    text-align: center;
}

.sn-pricing-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: #a5b4fc;
}

.sn-pricing-heading h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.8vw, 46px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 18px;
}

.sn-pricing-heading h2 span {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sn-pricing-heading p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
}

.sn-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
    align-items: stretch;
}

.sn-package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 34px 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: linear-gradient(170deg, rgba(21, 23, 50, 0.75), rgba(10, 12, 29, 0.92));
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.sn-package-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.65), transparent);
}

.sn-package-card:hover {
    transform: translateY(-9px);
    border-color: rgba(139, 92, 246, 0.45);
    box-shadow: 0 30px 70px rgba(3, 4, 16, 0.6);
}

.sn-package-premium {
    border-color: rgba(139, 92, 246, 0.5);
    background:
        radial-gradient(circle at 85% 0%, rgba(99, 91, 255, 0.22), transparent 52%),
        linear-gradient(170deg, rgba(30, 27, 66, 0.9), rgba(12, 12, 34, 0.95));
    box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.12), 0 24px 70px rgba(99, 91, 255, 0.18);
}

.sn-package-premium:hover {
    border-color: rgba(167, 139, 250, 0.7);
    box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.2), 0 34px 84px rgba(99, 91, 255, 0.28);
}

.sn-package-blue::before {
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.7), transparent);
}

.sn-package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--grad-brand);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.03em;
    box-shadow: 0 10px 26px rgba(99, 91, 255, 0.45);
}

.sn-package-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.sn-package-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(99, 91, 255, 0.15);
    color: #a5b4fc;
}

.sn-package-blue .sn-package-icon {
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
}

.sn-package-premium .sn-package-icon {
    background: var(--grad-brand);
    color: #ffffff;
    box-shadow: 0 10px 26px rgba(99, 91, 255, 0.4);
}

.sn-package-icon svg {
    width: 24px;
    height: 24px;
}

.sn-package-name-wrap h3 {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 800;
    color: var(--text);
}

.sn-package-small-label {
    display: block;
    margin-top: 5px;
    font-size: 12.5px;
    color: var(--muted-2);
}

.sn-package-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
}

.sn-package-currency {
    margin-right: 7px;
    font-size: 17px;
    font-weight: 700;
    color: var(--muted);
}

.sn-package-number {
    font-family: var(--font-display);
    font-size: clamp(40px, 4vw, 50px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text);
}

.sn-package-premium .sn-package-number {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sn-package-features {
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.sn-package-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.55;
    color: #cdd3ee;
}

.sn-feature-check {
    flex: 0 0 21px;
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    border-radius: 50%;
    background: rgba(99, 91, 255, 0.18);
    color: #a5b4fc;
}

.sn-package-blue .sn-feature-check {
    background: rgba(59, 130, 246, 0.18);
    color: #93c5fd;
}

.sn-feature-check svg {
    width: 12px;
    height: 12px;
}

.sn-package-meta {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.sn-package-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--muted);
}

.sn-package-meta-icon {
    width: 21px;
    height: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    color: var(--muted);
    flex: 0 0 21px;
}

.sn-package-meta-icon i {
    font-size: 11px;
}

.sn-package-meta-icon.success {
    background: rgba(52, 211, 153, 0.15);
    color: var(--success);
}

.sn-package-meta-icon.danger {
    background: rgba(248, 113, 113, 0.14);
    color: var(--danger);
}

.sn-package-action {
    margin-top: auto;
    padding-top: 28px;
}

.sn-package-button {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--border-strong);
    border-radius: 15px;
    background: var(--surface);
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.sn-package-button:hover {
    transform: translateY(-2px);
    border-color: rgba(139, 92, 246, 0.6);
    background: rgba(99, 91, 255, 0.16);
    box-shadow: 0 14px 32px rgba(99, 91, 255, 0.25);
}

.sn-package-premium .sn-package-button {
    border-color: transparent;
    background: var(--grad-brand);
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(99, 91, 255, 0.4);
}

.sn-package-premium .sn-package-button:hover {
    filter: brightness(1.1);
    box-shadow: 0 18px 40px rgba(99, 91, 255, 0.5);
}

.sn-package-arrow {
    font-size: 18px;
    transition: transform 0.25s ease;
}

.sn-package-button:hover .sn-package-arrow {
    transform: translateX(4px);
}

.sn-package-empty {
    grid-column: 1 / -1;
    padding: 70px 30px;
    text-align: center;
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius-lg);
    background: var(--surface);
}

.sn-package-empty-icon {
    margin-bottom: 12px;
    font-size: 28px;
    color: #a5b4fc;
}

.sn-package-empty h3 {
    margin-bottom: 8px;
    font-size: 20px;
    color: var(--text);
}

.sn-package-empty p {
    color: var(--muted);
    font-size: 14px;
}

/* ============================================================
   NEWS
   ============================================================ */

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

.news-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.news-card:hover {
    transform: translateY(-7px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 26px 60px rgba(3, 4, 16, 0.5);
}

.news-image {
    position: relative;
    aspect-ratio: 16 / 9.5;
    overflow: hidden;
    background: var(--bg-soft);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.06);
}

.news-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: rgba(165, 180, 252, 0.35);
    background:
        radial-gradient(circle at 30% 20%, rgba(99, 91, 255, 0.14), transparent 55%),
        var(--bg-soft);
}

.news-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}

.news-label {
    align-self: flex-start;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(99, 91, 255, 0.14);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #a5b4fc;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.news-body h3 {
    font-family: var(--font-display);
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-body p {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-read {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    font-weight: 700;
    color: #a5b4fc;
    transition: gap 0.25s ease;
}

.news-read:hover {
    gap: 11px;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 60px 30px;
    text-align: center;
    color: var(--muted);
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius-lg);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.sn-testimonials {
    position: relative;
    padding: 104px 0;
    background: var(--bg-soft);
    border-block: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.sn-testimonials .container {
    width: min(1180px, 100% - 48px);
    margin: 0 auto;
}

.sn-testimonials-heading {
    max-width: 640px;
    margin: 0 auto 54px;
    text-align: center;
}

.sn-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: #a5b4fc;
    margin-bottom: 16px;
}

.sn-testimonials-heading h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.6vw, 44px);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.sn-testimonials-heading p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.sn-testimonial-stage {
    position: relative;
    overflow: hidden;
    padding: 26px 0 10px;
    cursor: grab;
    touch-action: pan-y;
}

.sn-testimonial-stage.dragging {
    cursor: grabbing;
}

.sn-testimonial-track {
    display: flex;
    gap: 22px;
    will-change: transform;
}

.sn-testimonial-card {
    flex: 0 0 min(480px, 82vw);
    user-select: none;
}

.sn-testimonial-card-inner {
    height: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: linear-gradient(170deg, rgba(21, 23, 50, 0.7), rgba(10, 12, 29, 0.9));
    padding: 30px;
    text-align: center;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
    opacity: 0.45;
    transform: scale(0.94);
}

.sn-testimonial-card.active .sn-testimonial-card-inner {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 26px 64px rgba(99, 91, 255, 0.16);
}

.sn-testimonial-photo {
    width: 74px;
    height: 74px;
    margin: 0 auto 16px;
    border-radius: 50%;
    padding: 3px;
    background: var(--grad-brand);
}

.sn-testimonial-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-soft);
    pointer-events: none;
}

.sn-testimonial-stars {
    color: var(--warning);
    font-size: 15px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.sn-testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: #d4d9f2;
    margin-bottom: 22px;
    min-height: 82px;
}

.sn-testimonial-person strong {
    display: block;
    font-family: var(--font-display);
    font-size: 15px;
}

.sn-testimonial-person span {
    font-size: 12.5px;
    color: var(--muted-2);
}

.sn-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 30px;
}

.sn-testimonial-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
}

.sn-testimonial-dot.active {
    width: 28px;
    background: var(--grad-brand);
}

.sn-testimonials-empty {
    text-align: center;
    color: var(--muted);
    padding: 40px 0;
}

/* ============================================================
   CTA
   ============================================================ */

.cta-section {
    position: relative;
    padding: 104px 0;
    background: var(--bg);
    overflow: hidden;
}

.cta-panel {
    position: relative;
    border-radius: 32px;
    padding: 76px 40px;
    text-align: center;
    background:
        radial-gradient(circle at 20% 0%, rgba(167, 139, 250, 0.35), transparent 52%),
        radial-gradient(circle at 80% 100%, rgba(34, 211, 238, 0.18), transparent 52%),
        linear-gradient(140deg, #372aac, #1e1b4b 60%, #17133a);
    border: 1px solid rgba(167, 139, 250, 0.35);
    box-shadow: 0 40px 100px rgba(55, 42, 172, 0.35);
    overflow: hidden;
}

.cta-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.cta-decoration-one {
    width: 340px;
    height: 340px;
    top: -140px;
    right: -80px;
    background: rgba(139, 92, 246, 0.4);
}

.cta-decoration-two {
    width: 280px;
    height: 280px;
    bottom: -140px;
    left: -60px;
    background: rgba(34, 211, 238, 0.22);
}

.cta-content {
    position: relative;
    max-width: 620px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.6vw, 42px);
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(230, 232, 255, 0.78);
    margin-bottom: 34px;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    overflow: hidden;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.faq-item.active {
    border-color: rgba(139, 92, 246, 0.45);
    background: var(--surface-2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 21px 24px;
    border: none;
    background: transparent;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15.5px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-question i {
    flex: 0 0 auto;
    color: #a5b4fc;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 24px 22px;
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--muted);
}

.faq-item.active .faq-answer {
    max-height: 260px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.landing-footer {
    border-top: 1px solid var(--border);
    background: #04050c;
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 44px;
    padding-bottom: 56px;
}

.footer-brand p {
    margin: 20px 0 24px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--muted);
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--muted);
    font-size: 16px;
    transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 92, 246, 0.55);
    background: rgba(99, 91, 255, 0.14);
    color: #c7d2fe;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.footer-column a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: var(--muted);
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a:hover {
    color: #c7d2fe;
    transform: translateX(3px);
}

.footer-contact {
    display: flex;
    gap: 11px;
    padding: 6px 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--muted);
}

.footer-contact i {
    color: #a5b4fc;
    font-size: 16px;
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--muted-2);
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .chart-bars span,
    .floating-card,
    .about-floating,
    .badge-dot {
        animation: none;
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1050px) {

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 72px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-buttons,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }

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

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

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

@media (max-width: 700px) {

    .hero-section {
        padding: 138px 0 84px;
    }

    .section {
        padding: 78px 0;
    }

    .sn-pricing-section,
    .sn-testimonials,
    .cta-section {
        padding: 78px 0;
    }

    .hero-stats-strip {
        grid-template-columns: 1fr;
        margin-top: 60px;
    }

    .floating-order {
        top: -20px;
        right: 4px;
    }

    .floating-payment {
        bottom: -20px;
        left: 4px;
    }

    .feature-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

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

    .section-heading-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-panel {
        padding: 56px 24px;
        border-radius: 26px;
    }

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

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}
