/* home.css - Premium Landing Page Styles for NaRotaApp v2 */

:root {
    --bg-deep: #0B0E14;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --card-border: rgba(255, 255, 255, 0.07);
    --card-border-hover: rgba(0, 210, 255, 0.4);
    --glass-blur: 20px;
    --neon-blue: #00D2FF;
    --neon-purple: #8B5CF6;
    --neon-green: #00FF7A;
    --navbar-height: 75px;
    --glow-blue: rgba(0, 210, 255, 0.2);
    --glow-purple: rgba(139, 92, 246, 0.2);
}

/* ──────────────── RESET & BASE ──────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background: var(--bg-deep);
    color: #fff;
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* ──────────────── BACKGROUND AMBIENCE ──────────────── */
.home-ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.home-ambient::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.07) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    border-radius: 50%;
    animation: drift1 20s ease-in-out infinite alternate;
}

.home-ambient::after {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    bottom: -200px;
    right: -150px;
    border-radius: 50%;
    animation: drift2 25s ease-in-out infinite alternate;
}

@keyframes drift1 {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(80px, 50px) scale(1.1);
    }
}

@keyframes drift2 {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(-60px, -40px) scale(1.1);
    }
}

/* ──────────────── NAVBAR ──────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 1000;
    background: rgba(11, 14, 20, 0.6);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

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

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #fff;
}

.btn-nav-premium {
    background: transparent;
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    padding: 9px 22px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-nav-premium:hover {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.35);
}

/* ──────────────── SCROLL CONTAINER ──────────────── */
.snap-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    position: relative;
    z-index: 1;
}

/* ──────────────── SECTION BASE ──────────────── */
.landing-section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    padding: var(--navbar-height) 8% 0;
    position: relative;
    overflow: hidden;
}

.section-content {
    max-width: 1200px;
    width: 100%;
    z-index: 2;
    position: relative;
}

.section-content.split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

.section-content.split.reverse {
    grid-template-columns: 1fr 1.1fr;
}

.section-content.centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ──────────────── TYPOGRAPHY ──────────────── */
.eyebrow {
    display: inline-block;
    color: var(--neon-blue);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 16px;
    padding: 5px 14px;
    border: 1px solid rgba(0, 210, 255, 0.25);
    border-radius: 50px;
    background: rgba(0, 210, 255, 0.06);
}

h1 {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 22px;
    color: #fff;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 18px;
    color: #fff;
    letter-spacing: -0.02em;
}

h1 span,
h2 span {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 30px;
}

.max-600 {
    max-width: 600px;
}

/* ──────────────── BADGE PREMIUM ──────────────── */
.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 210, 255, 0.08);
    border: 1px solid rgba(0, 210, 255, 0.3);
    color: var(--neon-blue);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.1);
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--neon-blue);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-blue);
    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.7);
    }
}

/* ──────────────── HERO BUTTONS ──────────────── */
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.main-cta {
    background: linear-gradient(135deg, #00D2FF, #0099FF);
    color: #000;
    font-size: 1rem;
    font-weight: 800;
    padding: 16px 34px !important;
    border-radius: 10px !important;
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.35), 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.main-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(0, 210, 255, 0.55), 0 12px 30px rgba(0, 0, 0, 0.3) !important;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    padding: 16px 28px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.05);
}

/* ──────────────── HERO TRUST ──────────────── */
.hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

.trust-item ion-icon {
    color: var(--neon-blue);
    font-size: 1rem;
}

/* ──────────────── HERO DASHBOARD CARD ──────────────── */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-mock {
    width: 100%;
    max-width: 460px;
    background: rgba(15, 20, 30, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 28px;
    backdrop-filter: blur(20px);
    box-shadow:
        0 0 60px rgba(0, 210, 255, 0.1),
        0 40px 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    animation: float-card 8s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.dashboard-mock::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    opacity: 0.6;
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-18px) rotate(1deg);
    }
}

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

.dash-header-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.dash-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: var(--neon-green);
    font-weight: 600;
}

.dash-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-green);
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.dash-profit-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
}

.dash-profit-value {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 6px;
}

.dash-profit-subtitle {
    font-size: 0.78rem;
    color: var(--neon-green);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 24px;
    font-weight: 600;
}

/* Mini line chart */
.dash-chart {
    width: 100%;
    height: 80px;
    margin-bottom: 22px;
    position: relative;
    overflow: hidden;
}

.dash-chart svg {
    width: 100%;
    height: 100%;
}

/* Bottom stats row */
.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.dash-stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.dash-stat-item .stat-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    display: block;
}

.dash-stat-item .stat-lbl {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 3px;
    display: block;
}

/* Floating badge on top of card */
.dash-float-badge {
    position: absolute;
    top: -14px;
    right: 28px;
    background: linear-gradient(135deg, #00FF7A, #00C853);
    color: #000;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0, 255, 122, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ──────────────── FEATURE / TEXT BLOCKS ──────────────── */
.text-block {
    position: relative;
}

.feature-item-glass {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(var(--glass-blur));
    padding: 22px;
    border-radius: 18px;
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 28px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.feature-item-glass:hover {
    border-color: rgba(0, 210, 255, 0.3);
    background: rgba(0, 210, 255, 0.04);
}

.icon-box {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.15), rgba(139, 92, 246, 0.15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-blue);
    font-size: 1.6rem;
    flex-shrink: 0;
    border: 1px solid rgba(0, 210, 255, 0.15);
}

.feature-item-glass h4 {
    color: #fff;
    margin-bottom: 4px;
    font-size: 1rem;
}

.feature-item-glass p {
    margin-bottom: 0;
    font-size: 0.88rem;
}

/* Image containers */
.glass-container {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(var(--glass-blur));
    padding: 10px;
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 210, 255, 0.05);
}

.feature-img {
    width: 100%;
    border-radius: 20px;
}

.premium-list {
    list-style: none;
    padding: 0;
}

.premium-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 18px;
    font-weight: 500;
}

.premium-list ion-icon {
    color: var(--neon-green);
    font-size: 1.4rem;
}

.showcase-box {
    margin-top: 48px;
    position: relative;
    max-width: 900px;
    width: 100%;
}

.main-showcase {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tilt-img {
    max-width: 100%;
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transition: transform 0.5s ease;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    border-radius: 20px;
}

.tilt-img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* ──────────────── FEATURE CARDS GRID (Domine seus Números) ──────────────── */
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
    width: 100%;
}

.feat-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 22px;
    padding: 36px 28px;
    text-align: left;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.feat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 210, 255, 0.07), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.feat-card:hover {
    border-color: rgba(0, 210, 255, 0.3);
    background: rgba(0, 210, 255, 0.03);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 210, 255, 0.06);
}

.feat-card:hover::after {
    opacity: 1;
}

.feat-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.feat-icon.blue {
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.2), rgba(0, 210, 255, 0.06));
    color: var(--neon-blue);
}

.feat-icon.purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.06));
    color: var(--neon-purple);
}

.feat-icon.green {
    background: linear-gradient(135deg, rgba(0, 255, 122, 0.2), rgba(0, 255, 122, 0.06));
    color: var(--neon-green);
}

.feat-card h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.feat-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ──────────────── SECURITY SECTION ──────────────── */
.security-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 38px 28px;
    border-radius: 22px;
    transition: all 0.3s ease;
}

.security-card:hover {
    background: rgba(0, 210, 255, 0.03);
    border-color: rgba(0, 210, 255, 0.3);
    transform: translateY(-8px);
}

.security-card ion-icon {
    font-size: 2.8rem;
    color: var(--neon-blue);
    margin-bottom: 22px;
    display: block;
}

.security-card h3 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.security-card p {
    margin: 0;
    font-size: 0.92rem;
}

.feature-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    width: 100%;
}

/* ──────────────── PRICING ──────────────── */
.pricing-container-premium {
    display: flex;
    gap: 22px;
    justify-content: center;
    align-items: stretch;
    margin-top: 52px;
    width: 100%;
}

.plan-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 42px 30px;
    border-radius: 28px;
    flex: 1;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.plan-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.15);
}

.plan-card.best-value {
    border: 2px solid var(--neon-purple);
    background: rgba(139, 92, 246, 0.05);
    transform: scale(1.04);
    z-index: 5;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.18), 0 0 40px rgba(139, 92, 246, 0.08);
}

.plan-card.best-value:hover {
    transform: scale(1.07) translateY(-5px);
}

.save-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--neon-green), #00C853);
    color: #000;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 0.78rem;
    box-shadow: 0 4px 16px rgba(0, 255, 122, 0.35);
    white-space: nowrap;
}

.plan-header h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.plan-header .price {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: -1px;
}

.plan-header .price span {
    font-size: 1rem;
    opacity: 0.5;
    font-weight: 400;
}

.plan-header p {
    font-size: 0.88rem;
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 36px;
    text-align: left;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    margin-bottom: 13px;
}

.plan-features li ion-icon {
    color: var(--neon-blue);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.btn-plan-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.btn-plan-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

.w-100 {
    width: 100%;
}

.pricing-footer {
    margin-top: 36px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

/* ──────────────── FOOTER ──────────────── */
.main-footer {
    scroll-snap-align: end;
    padding: 60px 8% 40px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.88rem;
}

/* ──────────────── SCROLL DOTS ──────────────── */
.scroll-nav {
    position: fixed;
    right: 36px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.scroll-dot.active,
.scroll-dot:hover {
    background: var(--neon-blue);
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.6);
    transform: scale(1.3);
}

/* ──────────────── LINK SECTION ──────────────── */
.link-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.link-phone-wrap {
    position: relative;
}

.floating-phone {
    max-width: 280px;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.6));
    animation: float-card 7s ease-in-out infinite;
    border-radius: 28px;
}

.link-cta {
    margin-top: 10px;
}

/* ──────────────── IMAGE ZOOM MODAL ──────────────── */
.img-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.img-modal-overlay.active {
    display: flex;
}

.img-modal-close {
    position: fixed;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.img-modal-close:hover {
    opacity: 1;
}

.img-modal-content {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

/* ──────────────── RESPONSIVE ──────────────── */
@media (max-width: 1024px) {

    .section-content.split,
    .section-content.split.reverse {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .landing-section {
        min-height: unset;
        height: auto;
        padding: 120px 6% 80px;
        scroll-snap-align: none;
    }

    .snap-container {
        scroll-snap-type: none;
        overflow-y: auto;
    }

    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .dashboard-mock {
        max-width: 380px;
    }

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

    .pricing-container-premium {
        flex-direction: column;
        align-items: center;
    }

    .plan-card {
        width: 100%;
        max-width: 400px;
    }

    .plan-card.best-value {
        transform: none;
        margin: 10px 0;
    }

    .plan-card.best-value:hover {
        transform: translateY(-5px);
    }

    .scroll-nav {
        display: none;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .dashboard-mock {
        padding: 20px;
    }

    .dash-profit-value {
        font-size: 2.2rem;
    }

    .main-cta {
        font-size: 0.9rem !important;
        padding: 14px 22px !important;
    }
}

/* ──────────────── SCROLLBAR ──────────────── */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 210, 255, 0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-blue);
}