﻿/* ══════════════════════════════════════════════
   AQUAFLOW — MAIN PAGE CSS — FULLY RESPONSIVE
   Breakpoints: 1200 | 1024 | 900 | 768 | 600 | 480 | 360
   ══════════════════════════════════════════════ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --ink: #03070f;
    --deep: #060d1a;
    --card: #0b1628;
    --glass: rgba(11, 22, 40, 0.7);
    --blue: #0ea5e9;
    --cyan: #22d3ee;
    --gold: #f59e0b;
    --white: #f0f6ff;
    --muted: #6b8098;
    --border: rgba(14, 165, 233, 0.15);
    --glow: 0 0 40px rgba(14, 165, 233, 0.25);
    --r: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--ink);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
}

/* ── CUSTOM CURSOR (desktop only) ── */
#cursor {
    width: 12px;
    height: 12px;
    background: var(--blue);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: screen;
}

#cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(14,165,233,0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%,-50%);
    transition: all 0.15s ease;
}

/* ── NOISE TEXTURE ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

/* ══════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    background: rgba(3,7,15,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: padding 0.3s;
}

.nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: none;
    z-index: 101;
}

    .nav-logo span {
        color: var(--blue);
    }

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.6;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

    .nav-links a {
        color: var(--muted);
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        letter-spacing: 0.3px;
        transition: color 0.2s;
        cursor: none;
    }

        .nav-links a:hover {
            color: var(--white);
        }

.nav-cta {
    background: var(--blue) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s !important;
}

    .nav-cta:hover {
        background: #0284c7 !important;
        transform: translateY(-1px);
    }

/* ── HAMBURGER ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    gap: 5px;
    z-index: 101;
    transition: border-color 0.2s;
}

    .hamburger:hover {
        border-color: rgba(14,165,233,0.4);
    }

    .hamburger span {
        width: 20px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: all 0.3s ease;
        display: block;
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(3,7,15,0.98);
    backdrop-filter: blur(20px);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .mobile-nav.open {
        display: flex;
        opacity: 1;
    }

    .mobile-nav a {
        font-family: 'Syne', sans-serif;
        font-size: 28px;
        font-weight: 700;
        color: var(--muted);
        text-decoration: none;
        padding: 12px 24px;
        border-radius: 12px;
        transition: color 0.2s, background 0.2s;
        width: 280px;
        text-align: center;
    }

        .mobile-nav a:hover {
            color: var(--white);
            background: rgba(14,165,233,0.08);
        }

    .mobile-nav .mobile-cta {
        background: var(--blue);
        color: #fff !important;
        margin-top: 8px;
        font-size: 18px;
    }

        .mobile-nav .mobile-cta:hover {
            background: #0284c7;
        }

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 24px;
    color: var(--muted);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
}

/* Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14,165,233,0.2), transparent 70%);
    top: 5%;
    left: -10%;
    animation: float-orb 8s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34,211,238,0.12), transparent 70%);
    top: 20%;
    right: -5%;
    animation: float-orb 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(245,158,11,0.06), transparent 70%);
    bottom: 10%;
    left: 20%;
    animation: float-orb 12s ease-in-out infinite;
}

@keyframes float-orb {
    0%,100% {
        transform: translate(0,0) scale(1);
    }

    33% {
        transform: translate(30px,-20px) scale(1.05);
    }

    66% {
        transform: translate(-20px,20px) scale(0.95);
    }
}

/* Grid pattern */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(14,165,233,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(14,165,233,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14,165,233,0.1);
    border: 1px solid rgba(14,165,233,0.3);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--cyan);
    margin-bottom: 32px;
    animation: fade-up 0.6s ease both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

.hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(36px, 7vw, 88px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -2.5px;
    color: var(--white);
    max-width: 900px;
    animation: fade-up 0.7s 0.1s ease both;
}

    .hero h1 .accent {
        color: var(--blue);
    }

    .hero h1 .thin {
        font-weight: 400;
        color: var(--muted);
    }

.hero-sub {
    max-width: 540px;
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.7;
    color: var(--muted);
    margin: 24px auto 0;
    font-weight: 300;
    animation: fade-up 0.7s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
    animation: fade-up 0.7s 0.3s ease both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

    .btn-primary:hover {
        background: #0284c7;
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(14,165,233,0.4);
    }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--border);
    cursor: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    white-space: nowrap;
}

    .btn-ghost:hover {
        background: rgba(14,165,233,0.06);
        border-color: rgba(14,165,233,0.4);
        transform: translateY(-2px);
    }

/* Metrics */
.hero-metrics {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 64px;
    animation: fade-up 0.7s 0.4s ease both;
}

.metric {
    text-align: center;
}

.metric-val {
    font-family: 'Syne', sans-serif;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
}

    .metric-val span {
        color: var(--blue);
    }

.metric-label {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.metric-sep {
    width: 1px;
    background: var(--border);
    height: 48px;
    align-self: center;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════════════════════
   DASHBOARD PREVIEW
   ══════════════════════════════════════════════ */
.preview-wrap {
    position: relative;
    max-width: 1100px;
    width: 100%;
    margin: 80px auto 0;
    padding: 0 0;
    animation: fade-up 0.8s 0.5s ease both;
}

.preview-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--blue), var(--cyan), var(--gold));
    border-radius: 20px;
    filter: blur(1px);
    z-index: -1;
    opacity: 0.5;
}

.preview-card {
    background: var(--card);
    border-radius: 18px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.preview-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--border);
}

.preview-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.d1 {
    background: #ff5f57;
}

.d2 {
    background: #febc2e;
}

.d3 {
    background: #28c840;
}

.preview-url {
    flex: 1;
    height: 28px;
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 12px;
    color: var(--muted);
    font-family: monospace;
    max-width: 300px;
    margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;
}

.preview-body {
    padding: 24px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
    min-height: 380px;
}

/* Sidebar */
.preview-sidebar {
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    cursor: default;
}

    .sidebar-item.active {
        background: rgba(14,165,233,0.12);
        color: var(--blue);
        border: 1px solid rgba(14,165,233,0.2);
    }

.si-icon {
    font-size: 16px;
}

/* Dashboard Content */
.preview-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.stat-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    min-width: 0;
}

.stat-box-label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stat-box-val {
    font-family: 'Syne', sans-serif;
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 700;
    margin-top: 6px;
}

    .stat-box-val.blue {
        color: var(--blue);
    }

    .stat-box-val.cyan {
        color: var(--cyan);
    }

    .stat-box-val.gold {
        color: var(--gold);
    }

    .stat-box-val.green {
        color: #4ade80;
    }

.stat-trend {
    font-size: 11px;
    color: #4ade80;
    margin-top: 4px;
}

.trend-red {
    color: #f87171;
}

.preview-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    flex: 1;
}

.chart-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    min-width: 0;
}

.chart-title {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 12px;
    font-weight: 500;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
}

.bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: rgba(14,165,233,0.3);
    transition: background 0.3s;
    animation: grow-bar 1.2s ease both;
}

    .bar:nth-child(3) {
        background: rgba(14,165,233,0.7);
    }

    .bar:hover {
        background: var(--blue);
    }

@keyframes grow-bar {
    from {
        transform: scaleY(0);
        transform-origin: bottom;
    }

    to {
        transform: scaleY(1);
        transform-origin: bottom;
    }
}

.bar:nth-child(1) {
    animation-delay: 0.5s;
}

.bar:nth-child(2) {
    animation-delay: 0.6s;
}

.bar:nth-child(3) {
    animation-delay: 0.7s;
}

.bar:nth-child(4) {
    animation-delay: 0.8s;
}

.bar:nth-child(5) {
    animation-delay: 0.9s;
}

.bar:nth-child(6) {
    animation-delay: 1.0s;
}

.bar:nth-child(7) {
    animation-delay: 1.1s;
}

.delivery-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.delivery-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.delivery-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.delivery-name {
    color: var(--white);
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.delivery-status {
    padding: 3px 8px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.s-delivered {
    background: rgba(74,222,128,0.15);
    color: #4ade80;
}

.s-pending {
    background: rgba(251,191,36,0.15);
    color: #fbbf24;
}

.s-transit {
    background: rgba(14,165,233,0.15);
    color: var(--blue);
}

/* ══════════════════════════════════════════════
   SECTIONS — COMMON
   ══════════════════════════════════════════════ */
section {
    padding: 100px 60px;
    position: relative;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

    .section-tag::before {
        content: '';
        width: 20px;
        height: 2px;
        background: var(--blue);
        border-radius: 2px;
        flex-shrink: 0;
    }

h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    max-width: 600px;
}

.section-sub {
    color: var(--muted);
    font-size: clamp(14px, 1.5vw, 16px);
    max-width: 480px;
    line-height: 1.7;
    margin-top: 16px;
}

/* ══════════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.feat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}

    .feat-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(14,165,233,0.05), transparent 60%);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .feat-card:hover {
        border-color: rgba(14,165,233,0.4);
        transform: translateY(-4px);
    }

        .feat-card:hover::before {
            opacity: 1;
        }

.feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feat-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feat-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

.feat-tag {
    display: inline-block;
    margin-top: 16px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════ */
.how-bg {
    background: linear-gradient(180deg, var(--ink) 0%, #060e1f 50%, var(--ink) 100%);
}

.steps-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 64px;
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

    .step:last-child {
        border-bottom: none;
    }

.step-num {
    font-family: 'Syne', sans-serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    color: rgba(14,165,233,0.2);
    line-height: 1;
}

.step-body h3 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;
    margin-bottom: 10px;
}

.step-body p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
}

/* ══════════════════════════════════════════════
   MODULES
   ══════════════════════════════════════════════ */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 64px;
}

.mod-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: border-color 0.2s, transform 0.2s;
}

    .mod-card:hover {
        border-color: rgba(14,165,233,0.3);
        transform: translateY(-2px);
    }

.mod-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(14,165,233,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mod-text h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.mod-text p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════ */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.testi-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 32px;
}

.stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 15px;
    color: var(--white);
    line-height: 1.7;
    font-weight: 300;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

.testi-name {
    font-size: 14px;
    font-weight: 600;
}

.testi-role {
    font-size: 12px;
    color: var(--muted);
}

/* ══════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
    align-items: start;
}

.price-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 36px;
    position: relative;
}

    .price-card.popular {
        border-color: var(--blue);
        transform: scale(1.04);
    }

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: #fff;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.price-plan {
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-val {
    font-family: 'Syne', sans-serif;
    font-size: 44px;
    font-weight: 800;
    margin: 12px 0 4px;
}

    .price-val sup {
        font-size: 20px;
        font-weight: 600;
        vertical-align: top;
        margin-top: 12px;
        display: inline-block;
    }

.price-period {
    color: var(--muted);
    font-size: 13px;
}

.price-desc {
    color: var(--muted);
    font-size: 13px;
    margin-top: 8px;
}

.price-sep {
    height: 1px;
    background: var(--border);
    margin: 24px 0;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .price-features li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 14px;
    }

.check {
    color: #4ade80;
    flex-shrink: 0;
}

.cross {
    color: #475569;
    flex-shrink: 0;
}

.price-btn {
    display: block;
    text-align: center;
    margin-top: 32px;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: none;
}

.price-btn-outline {
    border: 1px solid var(--border);
    color: var(--white);
}

    .price-btn-outline:hover {
        border-color: var(--blue);
        background: rgba(14,165,233,0.08);
    }

.price-btn-filled {
    background: var(--blue);
    color: #fff;
}

    .price-btn-filled:hover {
        background: #0284c7;
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(14,165,233,0.35);
    }

/* ══════════════════════════════════════════════
   REGISTER CTA
   ══════════════════════════════════════════════ */
.register-section {
    text-align: center;
    padding: 100px 24px;
    position: relative;
}

    .register-section::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 600px;
        height: 400px;
        background: radial-gradient(ellipse, rgba(14,165,233,0.12), transparent 70%);
        pointer-events: none;
    }

.cta-label {
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
}

.cta-sub {
    color: var(--muted);
    font-size: clamp(15px, 1.8vw, 18px);
    margin: 20px auto 0;
    max-width: 420px;
    line-height: 1.6;
}

.register-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.reg-input {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

    .reg-input:focus {
        border-color: var(--blue);
    }

    .reg-input::placeholder {
        color: var(--muted);
    }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
footer {
    border-top: 1px solid var(--border);
    padding: 48px 60px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
}

.footer-brand {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 800;
}

    .footer-brand span {
        color: var(--blue);
    }

.footer-copy {
    font-size: 13px;
    color: var(--muted);
    margin-top: 6px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

    .footer-links a {
        font-size: 13px;
        color: var(--muted);
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: var(--white);
        }

/* ══════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ══════════════════════════════════════════════
   RESPONSIVE — 1200px (large desktop)
   ══════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .preview-body {
        grid-template-columns: 180px 1fr;
    }

    .stat-box-val {
        font-size: 20px;
    }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — 1024px (tablet landscape)
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    nav {
        padding: 16px 32px;
    }

    section {
        padding: 80px 40px;
    }

    footer {
        padding: 40px 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .price-card.popular {
        transform: none;
    }

    .preview-sidebar {
        display: none;
    }

    .preview-body {
        grid-template-columns: 1fr;
    }

    .stat-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — 900px (tablet)
   ══════════════════════════════════════════════ */
@media (max-width: 900px) {
    body {
        cursor: auto;
    }

    #cursor, #cursor-ring {
        display: none;
    }

    nav {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .orb-1 {
        width: 300px;
        height: 300px;
        left: -15%;
        top: 0;
    }

    .orb-2 {
        width: 250px;
        height: 250px;
        right: -10%;
    }

    .orb-3 {
        display: none;
    }

    section {
        padding: 64px 24px;
    }

    footer {
        padding: 36px 24px;
    }

    .hero-metrics {
        gap: 24px;
        margin-top: 48px;
    }

    .metric-sep {
        height: 36px;
    }

    .preview-wrap {
        padding: 0;
        margin-top: 48px;
    }

    .preview-body {
        padding: 16px;
        min-height: auto;
    }

    .preview-sidebar {
        display: none;
    }

    .preview-body {
        grid-template-columns: 1fr;
    }

    .stat-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .preview-bottom {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }

    .testi-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }

    .price-card.popular {
        transform: none;
    }

    .step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
        padding: 28px 0;
    }

    footer {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .footer-links {
        justify-content: center;
    }

    .register-section {
        padding: 64px 20px;
    }

        .register-section::before {
            width: 90vw;
            height: 300px;
        }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — 600px (large mobile)
   ══════════════════════════════════════════════ */
@media (max-width: 600px) {
    nav {
        padding: 14px 16px;
    }

    .nav-logo {
        font-size: 18px;
    }

    .hero {
        padding: 90px 16px 60px;
    }

        .hero h1 {
            letter-spacing: -1.5px;
        }

    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 28px;
    }

    .btn-primary, .btn-ghost {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }

    .hero-metrics {
        gap: 16px;
        margin-top: 36px;
    }

    .metric-sep {
        display: none;
    }

    section {
        padding: 52px 16px;
    }

    h2 {
        letter-spacing: -1px;
    }

    .stat-box {
        padding: 12px;
    }

    .stat-box-label {
        font-size: 10px;
    }

    .stat-box-val {
        font-size: 18px;
    }

    .stat-trend {
        font-size: 10px;
    }

    .feat-card {
        padding: 24px;
    }

    .price-card {
        padding: 24px;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 28px 16px;
    }

    .footer-links {
        gap: 16px;
    }

    .cta-label {
        letter-spacing: -1px;
    }

    .step {
        grid-template-columns: 48px 1fr;
        gap: 16px;
    }

    .step-num {
        font-size: 32px;
    }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — 480px
   ══════════════════════════════════════════════ */
@media (max-width: 480px) {
    .hero {
        padding: 80px 12px 48px;
    }

    .preview-wrap {
        border-radius: 0;
    }

    .preview-card {
        border-radius: 12px;
    }

    .preview-body {
        padding: 12px;
        gap: 12px;
    }

    .preview-bar {
        padding: 10px 14px;
    }

    .preview-url {
        font-size: 10px;
    }

    .stat-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .stat-box {
        padding: 10px;
    }

    .stat-box-val {
        font-size: 16px;
    }

    .delivery-avatar {
        width: 24px;
        height: 24px;
        font-size: 8px;
    }

    .delivery-row {
        gap: 6px;
    }

    .feat-card {
        padding: 20px;
    }

    .feat-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .feat-card h3 {
        font-size: 16px;
    }

    .testi-card {
        padding: 24px;
    }

    .price-card {
        padding: 20px;
    }

    .price-val {
        font-size: 36px;
    }

    section {
        padding: 44px 12px;
    }

    footer {
        padding: 24px 12px;
    }

    .register-section {
        padding: 52px 12px;
    }

    .reg-input {
        min-width: 100%;
    }

    .register-form {
        flex-direction: column;
        align-items: center;
    }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — 360px (small mobile)
   ══════════════════════════════════════════════ */
@media (max-width: 360px) {
    .hero-badge {
        font-size: 11px;
        padding: 5px 10px;
    }

    .hero h1 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .hero-sub {
        font-size: 14px;
    }

    .btn-primary, .btn-ghost {
        padding: 12px 20px;
        font-size: 14px;
    }

    .metric-val {
        font-size: 22px;
    }

    .metric-label {
        font-size: 11px;
    }

    .stat-row {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .stat-box {
        padding: 8px;
    }

    .stat-box-val {
        font-size: 14px;
    }

    .nav-logo {
        font-size: 16px;
    }

    .logo-dot {
        width: 6px;
        height: 6px;
    }

    .price-val {
        font-size: 30px;
    }

        .price-val sup {
            font-size: 16px;
        }

    .step {
        grid-template-columns: 40px 1fr;
        gap: 12px;
    }

    .step-num {
        font-size: 28px;
    }

    .step-body h3 {
        font-size: 16px;
    }

    footer {
        padding: 20px 12px;
    }

    .footer-links {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

        .footer-links a {
            font-size: 12px;
        }

    .hamburger {
        width: 38px;
        height: 38px;
    }
}

/* ══════════════════════════════════════════════
   TOUCH — disable hover transforms on mobile
   ══════════════════════════════════════════════ */
@media (hover: none) {
    .feat-card:hover {
        transform: none;
    }

    .mod-card:hover {
        transform: none;
    }

    .btn-primary:hover {
        transform: none;
    }

    .btn-ghost:hover {
        transform: none;
    }

    .nav-cta:hover {
        transform: none;
    }
}
