/* ============================================================
   LANDING PAGE - DapurKonten.id  |  Futuristic Dark Theme
   ============================================================ */

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

:root {
    --primary:    #ef4444;
    --primary-dk: #dc2626;
    --accent:     #38bdf8;
    --accent-dk:  #0ea5e9;
    --text:       #f1f5f9;
    --muted:      #94a3b8;
    --bg:         #060b18;
    --bg-alt:     #0b1526;
    --bg-card:    #101c30;
    --border:     rgba(255,255,255,0.07);
    --radius:     16px;
    --green:      #10b981;
    --glow-red:   rgba(239,68,68,0.35);
    --glow-blue:  rgba(56,189,248,0.35);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── GRID BACKGROUND ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(56,189,248,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56,189,248,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

/* ── KEYFRAMES ── */
@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.05); }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-12px); }
}
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes slide-right {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
@keyframes border-glow {
    0%, 100% { border-color: rgba(56,189,248,0.3); }
    50%       { border-color: rgba(239,68,68,0.5); }
}
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(6,11,24,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(56,189,248,0.12);
    padding: 0 5%;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow 0.3s, background 0.3s;
}

.navbar.scrolled {
    background: rgba(6,11,24,0.97);
    box-shadow: 0 4px 40px rgba(0,0,0,0.5), 0 1px 0 rgba(56,189,248,0.15);
}

.nav-logo {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}
.nav-logo span { color: var(--primary); text-shadow: 0 0 16px rgba(239,68,68,0.5); }

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

.nav-links a:not(.btn) {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s;
}
.nav-links a:not(.btn):hover { color: #fff; }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.22s;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transition: left 0.5s;
    pointer-events: none;
}
.btn:hover::before { left: 140%; }

.btn-ghost {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.75);
    border: 1.5px solid rgba(255,255,255,0.12);
    box-shadow:
        0 4px 0 rgba(0,0,0,0.35),
        0 6px 16px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.22);
    transform: translateY(-2px);
    box-shadow:
        0 6px 0 rgba(0,0,0,0.35),
        0 10px 20px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-ghost:active {
    transform: translateY(2px);
    box-shadow:
        0 1px 0 rgba(0,0,0,0.35),
        0 2px 6px rgba(0,0,0,0.2),
        inset 0 2px 4px rgba(0,0,0,0.2);
}

.btn-primary {
    background: linear-gradient(180deg, #f87171 0%, #ef4444 40%, #dc2626 100%);
    color: #fff;
    box-shadow:
        0 5px 0 #991b1b,
        0 8px 24px rgba(239,68,68,0.45),
        inset 0 1px 0 rgba(255,255,255,0.28),
        inset 0 -1px 0 rgba(0,0,0,0.15);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.btn-primary:hover {
    background: linear-gradient(180deg, #fca5a5 0%, #f87171 40%, #ef4444 100%);
    transform: translateY(-3px);
    box-shadow:
        0 8px 0 #991b1b,
        0 14px 32px rgba(239,68,68,0.55),
        inset 0 1px 0 rgba(255,255,255,0.32),
        inset 0 -1px 0 rgba(0,0,0,0.12);
}
.btn-primary:active {
    transform: translateY(3px);
    box-shadow:
        0 2px 0 #991b1b,
        0 4px 12px rgba(239,68,68,0.35),
        inset 0 2px 6px rgba(0,0,0,0.2);
}

.btn-large { padding: 14px 30px; font-size: 16px; font-weight: 700; }

.btn-outline {
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 100%);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.2);
    box-shadow:
        0 4px 0 rgba(0,0,0,0.4),
        0 6px 16px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-outline:hover {
    background: linear-gradient(180deg, rgba(56,189,248,0.15) 0%, rgba(56,189,248,0.06) 100%);
    border-color: rgba(56,189,248,0.5);
    color: #fff;
    transform: translateY(-2px);
    box-shadow:
        0 6px 0 rgba(0,0,0,0.4),
        0 10px 24px rgba(56,189,248,0.18),
        inset 0 1px 0 rgba(56,189,248,0.2);
}
.btn-outline:active {
    transform: translateY(2px);
    box-shadow:
        0 1px 0 rgba(0,0,0,0.4),
        0 2px 8px rgba(0,0,0,0.2),
        inset 0 2px 4px rgba(0,0,0,0.2);
}

.btn-cta-white {
    background: linear-gradient(180deg, #ffffff 0%, #f1f1f1 100%);
    color: var(--primary);
    font-weight: 700;
    text-shadow: none;
    box-shadow:
        0 5px 0 #c0c0c0,
        0 8px 20px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,1),
        inset 0 -1px 0 rgba(0,0,0,0.06);
}
.btn-cta-white:hover {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    color: var(--primary-dk);
    transform: translateY(-3px);
    box-shadow:
        0 8px 0 #b0b0b0,
        0 14px 28px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,1);
}
.btn-cta-white:active {
    transform: translateY(3px);
    box-shadow:
        0 2px 0 #c0c0c0,
        0 4px 10px rgba(0,0,0,0.25),
        inset 0 2px 5px rgba(0,0,0,0.1);
}

/* Hamburger */
.hamburger {
    display: none;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 18px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   SECTION BASE
   ============================================================ */
section {
    padding: 96px 5%;
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(56,189,248,0.08);
    border: 1px solid rgba(56,189,248,0.2);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.75;
    margin: 0 auto;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding-top: 130px;
    padding-bottom: 80px;
    background: var(--bg);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Glowing orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    animation: pulse-glow 6s ease-in-out infinite;
}
.hero-orb-1 {
    width: 600px; height: 600px;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(56,189,248,0.1) 0%, transparent 70%);
    animation-delay: 0s;
}
.hero-orb-2 {
    width: 400px; height: 400px;
    top: 100px; right: -100px;
    background: radial-gradient(circle, rgba(239,68,68,0.08) 0%, transparent 70%);
    animation-delay: 2s;
}
.hero-orb-3 {
    width: 300px; height: 300px;
    bottom: 0; left: -80px;
    background: radial-gradient(circle, rgba(56,189,248,0.06) 0%, transparent 70%);
    animation-delay: 4s;
}

/* Scanline bottom border */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(56,189,248,0.4) 30%, rgba(239,68,68,0.4) 70%, transparent 100%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(56,189,248,0.22);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
    box-shadow: 0 0 24px rgba(56,189,248,0.08);
    position: relative;
    overflow: hidden;
}
.hero-badge::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56,189,248,0.1), transparent);
    animation: slide-right 3s ease infinite;
}
.hero-badge span { color: #4ade80; font-weight: 800; }

.hero h1 {
    font-size: clamp(34px, 5.5vw, 70px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.08;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #e0f2fe 40%, var(--accent) 65%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.hero-sub {
    font-size: clamp(15px, 1.8vw, 19px);
    color: rgba(255,255,255,0.5);
    max-width: 520px;
    margin: 0 auto 44px;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

/* Hero form */
.hero-form {
    display: inline-flex;
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(56,189,248,0.2);
    border-radius: 100px;
    padding: 6px 6px 6px 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(56,189,248,0.05);
    gap: 8px;
    align-items: center;
    max-width: 480px;
    width: 100%;
    margin-bottom: 16px;
    transition: border-color 0.25s, box-shadow 0.25s;
    position: relative;
    z-index: 1;
}
.hero-form:focus-within {
    border-color: rgba(56,189,248,0.5);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 24px rgba(56,189,248,0.12);
}
.hero-form .prefix {
    font-size: 14px;
    font-weight: 600;
    color: rgba(56,189,248,0.7);
    white-space: nowrap;
}
.hero-form input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: transparent;
    min-width: 0;
}
.hero-form input::placeholder { color: rgba(255,255,255,0.22); font-weight: 400; }

/* Phone mockup wrapper */
.hero-mockup-wrap {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    animation: float 5s ease-in-out infinite;
}

.hero-phone-outer {
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 40px;
    padding: 14px;
    box-shadow:
        0 50px 120px rgba(0,0,0,0.6),
        0 0 0 1px rgba(56,189,248,0.08),
        inset 0 1px 0 rgba(255,255,255,0.08);
    position: relative;
}
.hero-phone-outer::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 41px;
    background: linear-gradient(135deg, rgba(56,189,248,0.25), transparent 50%, rgba(239,68,68,0.2));
    z-index: -1;
    animation: border-glow 4s ease-in-out infinite;
}

.hero-phone-inner {
    background: linear-gradient(160deg, #0f1f35, #151a2e);
    border-radius: 28px;
    width: 240px;
    padding: 28px 18px;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.hero-phone-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(56,189,248,0.06), transparent);
    pointer-events: none;
}

.phone-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 4px 16px rgba(56,189,248,0.3);
}
.phone-name {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 2px;
}
.phone-bio {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    margin-bottom: 18px;
    line-height: 1.5;
}
.phone-link {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 9px 12px;
    margin-bottom: 7px;
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s, border-color 0.2s;
}
.phone-link:last-of-type { margin-bottom: 14px; }
.phone-link:hover { background: rgba(56,189,248,0.08); border-color: rgba(56,189,248,0.2); }
.phone-credit {
    color: rgba(255,255,255,0.3);
    font-size: 9px;
    letter-spacing: 0.5px;
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.social-proof {
    padding: 48px 5%;
    background: var(--bg-alt);
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.social-proof-label {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.creators-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.creators-scroll::-webkit-scrollbar { display: none; }

.creator-card {
    flex-shrink: 0;
    background: var(--bg-card);
    border-radius: 14px;
    padding: 18px;
    width: 150px;
    text-align: center;
    border: 1px solid var(--border);
    transition: border-color 0.2s, transform 0.2s;
}
.creator-card:hover { border-color: rgba(56,189,248,0.25); transform: translateY(-2px); }

.creator-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 12px rgba(56,189,248,0.2);
}
.creator-name { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.creator-cat  { font-size: 10px; color: var(--muted); }

/* ============================================================
   FEATURES
   ============================================================ */
.features { background: var(--bg); }
.features-header { text-align: center; margin-bottom: 60px; }

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

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(56,189,248,0.4), transparent);
    transform: scaleX(0);
    transition: transform 0.35s;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(56,189,248,0.25);
    box-shadow: 0 16px 48px rgba(56,189,248,0.07), 0 0 0 1px rgba(56,189,248,0.05);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon-wrap {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(56,189,248,0.08);
    border: 1px solid rgba(56,189,248,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    transition: background 0.2s, box-shadow 0.2s;
}
.feature-card:hover .feature-icon-wrap {
    background: rgba(56,189,248,0.14);
    box-shadow: 0 0 20px rgba(56,189,248,0.15);
}
/* Keep backward compat for old .feature-icon */
.feature-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

.feature-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.feature-desc  { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* ============================================================
   THEMES PREVIEW
   ============================================================ */
.themes {
    background: linear-gradient(135deg, #08112a 0%, #0f1f3d 45%, #1a0a0a 100%);
    color: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.themes::before {
    content: '';
    position: absolute;
    top: -120px; left: -120px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(56,189,248,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.themes::after {
    content: '';
    position: absolute;
    bottom: -120px; right: -120px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(239,68,68,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.themes-header { text-align: center; margin-bottom: 52px; }
.themes-header .section-subtitle { color: rgba(255,255,255,0.6); margin: 0 auto; }

.themes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
    z-index: 1;
}

.theme-preview-card {
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 22px 14px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
    cursor: pointer;
}
.theme-preview-card:hover {
    transform: translateY(-4px);
    border-color: rgba(56,189,248,0.35);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.theme-mock {
    width: 100%;
    height: 110px;
    border-radius: 10px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
}
.theme-mock-circle { width: 28px; height: 28px; border-radius: 50%; margin-bottom: 4px; }
.theme-mock-btn { width: 80%; height: 12px; border-radius: 6px; }
.theme-preview-name { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.8); }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 48px 5%;
    position: relative;
    z-index: 1;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.stat-number {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--bg-alt); }
.pricing-header { text-align: center; margin-bottom: 56px; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 22px;
    padding: 36px 28px;
    border: 1px solid var(--border);
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(56,189,248,0.3), transparent);
    transform: scaleX(0);
    transition: transform 0.35s;
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 56px rgba(0,0,0,0.35);
}
.pricing-card:hover::before { transform: scaleX(1); }

.pricing-card.featured {
    border-color: rgba(239,68,68,0.35);
    box-shadow: 0 8px 48px rgba(239,68,68,0.1);
    background: linear-gradient(160deg, #200d18, #12192c);
}
.pricing-card.featured::before {
    background: linear-gradient(90deg, transparent, rgba(239,68,68,0.6), transparent);
    transform: scaleX(1);
}

.pricing-badge-featured {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dk));
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(239,68,68,0.4);
}

.pricing-plan { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 14px; }
.pricing-price { font-size: 40px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px; }
.pricing-period { font-size: 13px; color: var(--muted); margin-bottom: 28px; }

.pricing-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 11px; }
.pricing-features li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.75);
}
.pricing-features li::before {
    content: '✓';
    width: 18px; height: 18px;
    background: rgba(56,189,248,0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 11px;
    flex-shrink: 0;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 13px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.22s;
    cursor: pointer;
    border: none;
}
.pricing-btn-primary {
    background: linear-gradient(180deg, #f87171 0%, #ef4444 40%, #dc2626 100%);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow:
        0 5px 0 #991b1b,
        0 8px 22px rgba(239,68,68,0.4),
        inset 0 1px 0 rgba(255,255,255,0.28),
        inset 0 -1px 0 rgba(0,0,0,0.12);
}
.pricing-btn-primary:hover {
    background: linear-gradient(180deg, #fca5a5 0%, #f87171 40%, #ef4444 100%);
    transform: translateY(-3px);
    box-shadow:
        0 8px 0 #991b1b,
        0 14px 28px rgba(239,68,68,0.5),
        inset 0 1px 0 rgba(255,255,255,0.3);
}
.pricing-btn-primary:active {
    transform: translateY(3px);
    box-shadow: 0 2px 0 #991b1b, 0 4px 10px rgba(239,68,68,0.3), inset 0 2px 5px rgba(0,0,0,0.2);
}
.pricing-btn-outline {
    background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1.5px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.6);
    box-shadow:
        0 4px 0 rgba(0,0,0,0.4),
        0 6px 14px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.06);
    transition: all 0.22s;
}
.pricing-btn-outline:hover {
    background: linear-gradient(180deg, #f87171 0%, #ef4444 40%, #dc2626 100%);
    border-color: transparent;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    transform: translateY(-3px);
    box-shadow:
        0 8px 0 #991b1b,
        0 14px 28px rgba(239,68,68,0.5),
        inset 0 1px 0 rgba(255,255,255,0.28),
        inset 0 -1px 0 rgba(0,0,0,0.12);
}
.pricing-btn-outline:active {
    transform: translateY(3px);
    box-shadow:
        0 2px 0 #991b1b,
        0 4px 10px rgba(239,68,68,0.3),
        inset 0 2px 5px rgba(0,0,0,0.2);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg); }
.testimonials-header { text-align: center; margin-bottom: 52px; }

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

.testimonial-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--border);
    transition: border-color 0.25s, transform 0.25s;
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px; right: 20px;
    font-size: 72px;
    color: rgba(56,189,248,0.06);
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-card:hover { border-color: rgba(56,189,248,0.2); transform: translateY(-3px); }

.testimonial-stars { color: #fbbf24; font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text  { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 13px; color: #fff; }
.testimonial-role { font-size: 11px; color: var(--muted); }

/* ============================================================
   CTA BOTTOM
   ============================================================ */
.cta-bottom {
    background: linear-gradient(135deg, #0d0020 0%, #1a0008 40%, #001828 100%);
    color: #fff;
    text-align: center;
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    z-index: 1;
}
.cta-bottom::before {
    content: '';
    position: absolute;
    top: -40%; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(239,68,68,0.07) 0%, rgba(56,189,248,0.04) 50%, transparent 70%);
    pointer-events: none;
}
.cta-bottom::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(239,68,68,0.3), rgba(56,189,248,0.3), transparent);
}

.cta-bottom h2 {
    font-size: clamp(26px, 3.8vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}
.cta-bottom p {
    font-size: 17px;
    opacity: 0.75;
    max-width: 460px;
    margin: 0 auto 44px;
    position: relative;
    z-index: 1;
}
.cta-form {
    display: inline-flex;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: 100px;
    padding: 6px 6px 6px 20px;
    gap: 8px;
    align-items: center;
    max-width: 420px;
    width: 100%;
    backdrop-filter: blur(8px);
    transition: border-color 0.25s, box-shadow 0.25s;
    position: relative;
    z-index: 1;
}
.cta-form:focus-within {
    border-color: rgba(239,68,68,0.5);
    box-shadow: 0 0 24px rgba(239,68,68,0.12);
}
.cta-form .prefix { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.7); white-space: nowrap; }
.cta-form input  { flex: 1; border: none; outline: none; font-size: 15px; font-weight: 600; color: #fff; background: transparent; min-width: 0; }
.cta-form input::placeholder { color: rgba(255,255,255,0.4); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: #03060f;
    color: rgba(255,255,255,0.45);
    padding: 64px 5% 32px;
    border-top: 1px solid rgba(56,189,248,0.07);
    position: relative;
    z-index: 1;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand {
    font-size: 21px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    display: block;
    text-decoration: none;
    letter-spacing: -0.5px;
}
.footer-brand span { color: var(--primary); text-shadow: 0 0 12px rgba(239,68,68,0.4); }
.footer-brand-desc { font-size: 14px; line-height: 1.75; }
.footer-col h4 { color: rgba(255,255,255,0.8); font-size: 13px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 18px; text-transform: uppercase; }
.footer-col a { display: block; color: rgba(255,255,255,0.45); text-decoration: none; font-size: 14px; margin-bottom: 11px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .features-grid     { grid-template-columns: repeat(2, 1fr); }
    .themes-grid       { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top        { grid-template-columns: 1fr 1fr; gap: 36px; }
    .stats-grid        { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 768px) {
    /* Navbar */
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 68px 0 0;
        background: rgba(6,11,24,0.98);
        backdrop-filter: blur(20px);
        padding: 32px 5%;
        gap: 6px;
        border-top: 1px solid rgba(56,189,248,0.12);
        z-index: 999;
        overflow-y: auto;
    }
    .nav-links.open a:not(.btn) {
        padding: 14px 0;
        font-size: 17px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .hamburger { display: flex; }

    /* Sections */
    section { padding: 64px 5%; }

    /* Hero */
    .hero { padding-top: 110px; padding-bottom: 60px; }
    .hero h1 { letter-spacing: -1px; }
    .hero-form {
        flex-direction: column;
        border-radius: 18px;
        padding: 14px;
        gap: 10px;
        max-width: 100%;
    }
    .hero-form .prefix { display: none; }
    .hero-form input { width: 100%; text-align: center; }
    .hero-form .btn { width: 100%; justify-content: center; }
    .hero-mockup-wrap { margin-top: 40px; }

    /* Grids */
    .features-grid    { grid-template-columns: 1fr; }
    .themes-grid      { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid     { grid-template-columns: 1fr; max-width: 400px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-top       { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom    { flex-direction: column; gap: 14px; text-align: center; }
    .stats-grid       { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    /* CTA */
    .cta-form {
        flex-direction: column;
        border-radius: 18px;
        padding: 14px;
        gap: 10px;
        max-width: 100%;
    }
    .cta-form .prefix { display: none; }
    .cta-form input { text-align: center; }
    .cta-form .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .themes-grid   { grid-template-columns: 1fr 1fr; }
    .stats-grid    { grid-template-columns: 1fr 1fr; }
    .hero-phone-inner { width: 210px; }
    .nav-logo { font-size: 19px; }
    .pricing-grid { max-width: 100%; }
}
