﻿/* ============================================
   VetBot Landing Page â€” Design System v4
   Silent Power Â· Precision Â· Control Â· Elegance
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* --- RESET --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #030305;
    --bg-secondary: #0a0a0f;
    --bg-card: rgba(12, 12, 20, 0.55);
    --bg-card-hover: rgba(16, 16, 28, 0.7);
    --accent: #6366f1;
    --accent-glow: rgba(99, 102, 241, 0.18);
    --accent-light: #818cf8;
    --accent-dim: rgba(99, 102, 241, 0.08);
    --accent-border: rgba(99, 102, 241, 0.15);
    --gold: #fbbf24;
    --gold-text: #f59e0b;
    --gold-dim: rgba(251, 191, 36, 0.08);
    --gold-border: rgba(251, 191, 36, 0.15);
    --green: #4ade80;
    --red: #f87171;
    --cyan: #22d3ee;
    --text-white: #f4f4f5;
    --text-gray: #a1a1aa;
    --text-dim: #52525b;
    --border: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(99, 102, 241, 0.2);
    --section-pad: 100px;
    --container-width: 1120px;
    --sidenav-width: 64px;
    --ease-out-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   SCROLL REVEAL â€” Calm & Controlled
   5-10px upward, 600ms, ease-out
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.6s var(--ease-out-smooth),
        transform 0.6s var(--ease-out-smooth);
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 {
    transition-delay: 0.08s;
}

.reveal-d2 {
    transition-delay: 0.15s;
}

.reveal-d3 {
    transition-delay: 0.22s;
}

.reveal-d4 {
    transition-delay: 0.30s;
}

.reveal-d5 {
    transition-delay: 0.38s;
}

.reveal-d6 {
    transition-delay: 0.45s;
}

/* ============================================
   BUTTON SYSTEM â€” Soft Glow + Press-in
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    background: linear-gradient(135deg, var(--accent) 0%, #4f46e5 100%);
    color: white;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
    /* Soft inner glow */
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 2px 8px rgba(99, 102, 241, 0.15),
        0 1px 3px rgba(0, 0, 0, 0.3);
    /* Smooth hover transition 400ms */
    transition: box-shadow 0.4s var(--ease-out-smooth),
        transform 0.25s var(--ease-out-smooth),
        background 0.4s var(--ease-out-smooth);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out-smooth);
}

.btn-primary:hover {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 4px 20px rgba(99, 102, 241, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

.btn-primary:hover::after {
    opacity: 1;
}

/* Click: gentle press-in, no aggressive scale */
.btn-primary:active {
    transform: translateY(1px);
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.2),
        0 1px 4px rgba(99, 102, 241, 0.15);
    transition-duration: 0.1s;
}

/* Download button loading states */
.btn-primary.loading {
    pointer-events: none;
    min-width: 220px;
    justify-content: center;
}

.btn-primary .btn-text {
    transition: opacity 0.3s;
    position: relative;
    z-index: 1;
}

.btn-primary .btn-loader {
    display: none;
    position: relative;
    z-index: 1;
}

.btn-primary.loading .btn-text {
    display: none;
}

.btn-primary.loading .btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary .progress-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    width: 0;
    transition: width 1.8s var(--ease-out-smooth);
    border-radius: 0 0 12px 12px;
}

.btn-primary.loading .progress-line {
    width: 100%;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: transparent;
    color: var(--text-gray);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 1px 3px rgba(0, 0, 0, 0.2);
    transition: color 0.35s var(--ease-out-smooth),
        border-color 0.35s var(--ease-out-smooth),
        background 0.35s var(--ease-out-smooth),
        box-shadow 0.35s var(--ease-out-smooth),
        transform 0.25s var(--ease-out-smooth);
}

.btn-outline:hover {
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 2px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

.btn-outline:active {
    transform: translateY(1px);
    transition-duration: 0.1s;
}

/* ============================================
   BUTTON SHINE EFFECT — Hover Sweep (All Buttons)
   ============================================ */
.btn-primary,
.btn-outline,
.btn-price,
.topbar-cta,
.mobile-download-btn {
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-outline::before,
.btn-price::before,
.topbar-cta::before,
.mobile-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg,
            transparent 40%,
            rgba(255, 255, 255, 0.18) 45%,
            rgba(255, 255, 255, 0.25) 50%,
            rgba(255, 255, 255, 0.18) 55%,
            transparent 60%);
    transform: translateX(-100%) skewX(-12deg);
    transition: none;
    pointer-events: none;
    z-index: 2;
}

.btn-primary:hover::before,
.btn-outline:hover::before,
.btn-price:hover::before,
.topbar-cta:hover::before,
.mobile-download-btn:hover::before {
    transform: translateX(100%) skewX(-12deg);
    transition: transform 0.7s ease-in-out;
}

/* ============================================
   SIDE NAVIGATION â€” Floating Pill Style
   ============================================ */
.sidenav {
    position: fixed;
    left: 12px;
    top: 12px;
    bottom: 12px;
    width: var(--sidenav-width);
    background: rgba(10, 10, 18, 0.82);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.03);
    transition: width 0.5s var(--ease-out-expo),
        background 0.4s var(--ease-out-smooth),
        border-radius 0.4s var(--ease-out-smooth);
}

.sidenav:hover {
    width: 196px;
    background: rgba(10, 10, 18, 0.95);
    border-radius: 20px;
}

.sidenav-logo {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 6px;
    flex-shrink: 0;
    overflow: hidden;
}

.sidenav-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: auto;
}

.sidenav-brand {
    font-size: 9px;
    font-weight: 800;
    color: var(--accent-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.35s var(--ease-out-smooth);
}

.sidenav:hover .sidenav-brand {
    opacity: 1;
}

.sidenav-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
    padding: 0 8px;
    list-style: none;
    overflow: hidden;
}

.sidenav-links li {
    width: 100%;
}

.sidenav-links a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--text-dim);
    transition: color 0.35s var(--ease-out-smooth),
        background 0.35s var(--ease-out-smooth);
    overflow: hidden;
    white-space: nowrap;
}

.sidenav-links a:hover {
    color: var(--text-gray);
    background: rgba(255, 255, 255, 0.03);
}

.sidenav-links a.active {
    color: var(--accent-light);
    background: var(--accent-dim);
}

.sidenav-links .nav-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidenav-links .nav-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sidenav-links .nav-label {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    opacity: 0;
    transition: opacity 0.35s var(--ease-out-smooth);
}

.sidenav:hover .nav-label {
    opacity: 1;
}

.sidenav-footer {
    margin-top: auto;
    padding: 0 8px;
    width: 100%;
}

.sidenav-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 11px;
    background: linear-gradient(135deg, var(--accent), #4f46e5);
    color: white;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: visible;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 2px 8px rgba(99, 102, 241, 0.15);
    transition: box-shadow 0.4s var(--ease-out-smooth),
        transform 0.25s var(--ease-out-smooth);
}

.sidenav-download:hover {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 6px 24px rgba(99, 102, 241, 0.25);
    transform: translateY(-1px);
}

.sidenav-download:active {
    transform: translateY(1px);
    transition-duration: 0.1s;
}

.sidenav-download .dl-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.sidenav-download .dl-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sidenav-download .dl-text {
    opacity: 0;
    max-width: 0;
    margin-left: 0;
    overflow: hidden;
    transition: opacity 0.35s var(--ease-out-smooth),
        max-width 0.35s var(--ease-out-smooth),
        margin-left 0.35s var(--ease-out-smooth);
}

.sidenav:hover .dl-text {
    opacity: 1;
    max-width: 120px;
    margin-left: 10px;
}

/* Main content offset */
.main-content {
    margin-left: var(--sidenav-width);
    transition: margin-left 0.4s var(--ease-out-smooth);
}

/* ============================================
   RIGHT SOCIAL BAR â€” Floating Vertical Stack
   ============================================ */
.social-bar {
    position: fixed;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 6px;
    background: rgba(10, 10, 18, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.social-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    color: var(--text-dim);
    transition: color 0.3s var(--ease-out-smooth),
        background 0.3s var(--ease-out-smooth);
}

.social-bar a:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.06);
}

.social-bar a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ============================================
   SHOWCASE (VIDEO)
   ============================================ */
#showcase {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s var(--ease-out-smooth);
}

.video-wrapper:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    filter: blur(40px);
}

/* ============================================
   BACKGROUND CANVAS (Hero Only)
   ============================================ */
#bgCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
    mix-blend-mode: screen;
}

/* Smooth Fade Out for Hero Section */
.hero {
    position: relative;
    /* Create a fade at the bottom using mask-image */
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
    position: fixed;
    top: 0;
    left: var(--sidenav-width);
    right: 0;
    height: 52px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    transition: background 0.5s var(--ease-out-smooth),
        backdrop-filter 0.5s,
        border-color 0.5s;
    border-bottom: 1px solid transparent;
}

.topbar.scrolled {
    background: rgba(3, 3, 5, 0.82);
    backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 11px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    border-radius: 6px;
    font-size: 9.5px;
    font-weight: 700;
    color: var(--accent-light);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.topbar-badge .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-light);
    animation: softPulse 3s ease infinite;
}

@keyframes softPulse {

    0%,
    100% {
        opacity: 0.9;
    }

    50% {
        opacity: 0.4;
    }
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar-cta {
    padding: 7px 18px;
    background: linear-gradient(135deg, var(--accent), #4f46e5);
    color: white;
    border-radius: 8px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 2px 6px rgba(99, 102, 241, 0.15);
    transition: box-shadow 0.4s var(--ease-out-smooth),
        transform 0.25s var(--ease-out-smooth);
}

.topbar-cta:hover {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 4px 16px rgba(99, 102, 241, 0.28);
    transform: translateY(-1px);
}

.topbar-cta:active {
    transform: translateY(1px);
    transition-duration: 0.1s;
}

/* ============================================
   GOLD BADGE (Minimal)
   ============================================ */
.badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 13px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    color: var(--gold-text);
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.badge-gold.large {
    padding: 7px 18px;
    font-size: 10.5px;
    border-radius: 8px;
}

.badge-gold .badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold-text);
    animation: softPulse 3s ease infinite;
}

/* Yellow Box Badge â€” Solid gold label (like "UP TO 6 SLOTS") */
.feature-card .yellow-badge {
    margin-top: 12px;
}

.yellow-badge {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2px 14px 14px;
    background: var(--gold);
    color: #0a0a0f;
    border-radius: 2px 2px 6px 6px;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.2);
}

/* ============================================
   HERO â€” Soft Fade-in + Slow Particles
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background:
        radial-gradient(ellipse 500px 350px at 30% 25%, rgba(99, 102, 241, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 400px 250px at 70% 55%, rgba(99, 102, 241, 0.04) 0%, transparent 70%);
    animation: heroGlow 30s ease infinite;
}

@keyframes heroGlow {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(1.5%, -1.5%);
    }

    66% {
        transform: translate(-1%, 1%);
    }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.008) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.008) 1px, transparent 1px);
    background-size: 64px 64px;
    z-index: 1;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black 0%, transparent 100%);
}

/* Particles â€” Very slow, low opacity, abstract */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: var(--accent-light);
    opacity: 0;
    animation: particleDrift linear infinite;
}

.particle:nth-child(1) {
    left: 12%;
    top: 22%;
    animation-duration: 18s;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 28%;
    top: 58%;
    animation-duration: 22s;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 48%;
    top: 32%;
    animation-duration: 20s;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 68%;
    top: 48%;
    animation-duration: 24s;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    left: 82%;
    top: 28%;
    animation-duration: 19s;
    animation-delay: 5s;
}

.particle:nth-child(6) {
    left: 38%;
    top: 72%;
    animation-duration: 21s;
    animation-delay: 3s;
}

@keyframes particleDrift {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    15% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.12;
        transform: translateY(-50px);
    }

    85% {
        opacity: 0.2;
    }

    100% {
        opacity: 0;
        transform: translateY(-100px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero h1 {
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2.5px;
    margin-bottom: 20px;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--accent-light) 0%, #a78bfa 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
    opacity: 0;
    animation: heroSubtitleIn 0.7s var(--ease-out-smooth) 0.15s forwards;
}

@keyframes heroSubtitleIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-desc {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--text-gray);
    max-width: 580px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-indicator span {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
}

.scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(82, 82, 91, 0.4), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    width: 1px;
    height: 12px;
    background: var(--accent-light);
    opacity: 0.5;
    animation: scrollPulse 2.5s ease infinite;
}

@keyframes scrollPulse {
    0% {
        top: -12px;
        opacity: 0;
    }

    40% {
        opacity: 0.5;
    }

    100% {
        top: 36px;
        opacity: 0;
    }
}

/* ============================================
   SECTION SHARED
   ============================================ */
section {
    padding: var(--section-pad) 0;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 800;
    color: var(--accent-light);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-label::before {
    content: '';
    width: 16px;
    height: 1.5px;
    background: var(--accent);
    opacity: 0.6;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    letter-spacing: -1.2px;
    line-height: 1.12;
    margin-bottom: 14px;
}

.section-desc {
    font-size: 15px;
    color: var(--text-gray);
    max-width: 520px;
    line-height: 1.7;
}

.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ============================================
   FEATURES â€” Light Border Glow + Soft Lift
   ============================================ */
.feature-category {
    margin-top: 56px;
}

.feature-category+.feature-category {
    margin-top: 44px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.category-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.category-icon.indigo {
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
}

.category-icon.indigo svg {
    stroke: var(--accent-light);
}

.category-icon.green {
    background: rgba(74, 222, 128, 0.07);
    border: 1px solid rgba(74, 222, 128, 0.12);
}

.category-icon.green svg {
    stroke: var(--green);
}

.category-icon.red {
    background: rgba(248, 113, 113, 0.07);
    border: 1px solid rgba(248, 113, 113, 0.12);
}

.category-icon.red svg {
    stroke: var(--red);
}

.category-icon.cyan {
    background: rgba(34, 211, 238, 0.07);
    border: 1px solid rgba(34, 211, 238, 0.12);
}

.category-icon.cyan svg {
    stroke: var(--cyan);
}

.category-icon.purple {
    background: rgba(167, 139, 250, 0.07);
    border: 1px solid rgba(167, 139, 250, 0.12);
}

.category-icon.purple svg {
    stroke: #a78bfa;
}

.category-icon.amber {
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
}

.category-icon.amber svg {
    stroke: var(--gold-text);
}

.category-title {
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.category-title span {
    color: var(--text-dim);
    font-weight: 500;
    margin-left: 8px;
    font-size: 11.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

/* Feature card: light border glow, soft hover lift (3px max) */
.feature-card {
    padding: 24px 22px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    /* Hardware accelerated */
    transition: transform 0.5s var(--ease-out-smooth),
        border-color 0.5s var(--ease-out-smooth),
        box-shadow 0.5s var(--ease-out-smooth),
        background 0.5s var(--ease-out-smooth);
    will-change: transform;
}

/* Light top-border glow */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-border), transparent);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out-smooth);
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card .f-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
}

.feature-card .f-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--accent-light);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.15px;
}

.feature-card p {
    font-size: 12.5px;
    color: var(--text-gray);
    line-height: 1.65;
}

.feature-tag {
    display: inline-block;
    margin-top: 10px;
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.feature-tag.ai {
    background: var(--accent-dim);
    color: var(--accent-light);
}

.feature-tag.core {
    background: rgba(74, 222, 128, 0.08);
    color: var(--green);
}

.feature-tag.safety {
    background: var(--gold-dim);
    color: var(--gold-text);
}

.feature-tag.ui {
    background: rgba(34, 211, 238, 0.08);
    color: var(--cyan);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(16.66% + 28px);
    right: calc(16.66% + 28px);
    height: 1px;
    background: linear-gradient(90deg, var(--accent-border), var(--accent-border));
    opacity: 0.4;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 52px;
    height: 52px;
    margin: 0 auto 22px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    background: var(--bg-card);
    border: 1px solid var(--accent-border);
    color: var(--accent-light);
    position: relative;
    z-index: 1;
}

.step h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.65;
    max-width: 260px;
    margin: 0 auto;
}

/* ============================================
   PRICING â€” USD / IDR Tabs
   ============================================ */
.currency-toggle-wrap {
    text-align: center;
    margin-top: 28px;
}

.currency-toggle {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 3px;
    gap: 0;
}

.currency-btn {
    padding: 8px 26px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: 0.5px;
    transition: all 0.35s var(--ease-out-smooth);
}

.currency-btn.active {
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    color: var(--accent-light);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pricing-set {
    display: none;
    margin-top: 28px;
}

.pricing-set.active {
    display: block;
}

.pricing-grid {
    display: grid;
    gap: 14px;
}

.pricing-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.pricing-section-label {
    font-size: 9.5px;
    font-weight: 800;
    color: var(--text-dim);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin: 22px 0 10px;
    padding-left: 4px;
}

.pricing-section-label:first-child {
    margin-top: 0;
}

.price-card {
    padding: 26px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s var(--ease-out-smooth),
        border-color 0.4s var(--ease-out-smooth),
        box-shadow 0.5s var(--ease-out-smooth);
    will-change: transform;
}

.price-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.price-card.popular {
    border-color: var(--accent-border);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.06) 0%, var(--bg-card) 100%);
}

.price-card.popular::before {
    content: attr(data-badge);
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    padding: 3px 12px;
    background: var(--gold);
    color: #0a0a0f;
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: 1.2px;
    border-radius: 5px;
    white-space: nowrap;
}

.price-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.price-amount {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 2px;
    color: var(--text-white);
}

.price-amount .currency-sym {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-gray);
    vertical-align: top;
    margin-right: 2px;
}

.price-original {
    font-size: 12px;
    color: var(--text-dim);
    text-decoration: line-through;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 2px;
}

.price-period {
    font-size: 11px;
    color: var(--text-dim);
    margin-bottom: 18px;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 22px;
    flex: 1;
}

.price-features li {
    padding: 5px 0;
    font-size: 11.5px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-features li::before {
    content: '✓';
    /* Fixed check icon */
    color: var(--accent-light);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.price-discount {
    display: none;
}

.btn-price {
    display: block;
    width: 100%;
    padding: 11px;
    border-radius: 9px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border: 1px solid var(--border);
    color: var(--text-gray);
    background: transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
    transition: all 0.35s var(--ease-out-smooth);
}

.btn-price:hover {
    color: var(--accent-light);
    border-color: var(--accent-border);
    background: var(--accent-dim);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.btn-price:active {
    transform: translateY(1px);
    transition-duration: 0.1s;
}

/* Discount Banner â€” Matches VetBot Activation Wizard */
.discount-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    margin-bottom: 24px;
    background: rgba(251, 191, 36, 0.04);
    border: 1.5px solid var(--gold);
    border-radius: 12px;
    position: relative;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    background: var(--gold);
    color: #0a0a0f;
    border-radius: 5px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.discount-info {
    flex: 1;
    min-width: 0;
}

.discount-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.discount-subtitle {
    font-size: 11px;
    color: var(--text-gray);
    margin-top: 1px;
}

.discount-percent {
    font-size: 22px;
    font-weight: 900;
    color: var(--gold);
    flex-shrink: 0;
    letter-spacing: -0.5px;
}

.price-card.popular .btn-price {
    background: linear-gradient(135deg, var(--accent), #4f46e5);
    border-color: transparent;
    color: white;
    font-weight: 700;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 2px 8px rgba(99, 102, 241, 0.15);
}

.price-card.popular .btn-price:hover {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 6px 24px rgba(99, 102, 241, 0.25);
}

/* ============================================
   SECURITY
   ============================================ */
.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 56px;
}

.security-item {
    padding: 24px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: border-color 0.4s var(--ease-out-smooth),
        transform 0.5s var(--ease-out-smooth),
        box-shadow 0.5s var(--ease-out-smooth);
    will-change: transform;
}

.security-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.security-item .s-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
}

.security-item .s-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--accent-light);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.security-item h4 {
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 6px;
}

.security-item p {
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 680px;
    margin: 56px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    text-align: left;
    transition: color 0.35s var(--ease-out-smooth);
}

.faq-question:hover {
    color: var(--accent-light);
}

.faq-icon {
    font-size: 16px;
    color: var(--text-dim);
    transition: transform 0.4s var(--ease-out-smooth),
        color 0.35s var(--ease-out-smooth);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out-smooth), padding 0.4s;
}

.faq-item.open .faq-answer {
    max-height: 280px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ============================================
   CTA / DOWNLOAD
   ============================================ */
.cta-section {
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 500px 250px at 50% 50%, var(--accent-dim), transparent);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 28px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    font-size: 11px;
    color: var(--text-dim);
}

.footer-links {
    display: flex;
    gap: 18px;
}

.footer-links a {
    font-size: 11px;
    color: var(--text-dim);
    transition: color 0.35s var(--ease-out-smooth);
}

.footer-links a:hover {
    color: var(--accent-light);
}

/* ============================================
   MOBILE MENU â€” Floating Glass Panel
   ============================================ */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    justify-content: flex-end;
    align-items: stretch;
    opacity: 0;
    transition: opacity 0.35s var(--ease-out-smooth);
}

.mobile-menu-overlay.open {
    display: flex;
    opacity: 1;
}

.mobile-menu-panel {
    width: min(320px, 85vw);
    height: 100%;
    background: rgba(10, 10, 18, 0.96);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px 0 0 24px;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.03);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease-out-expo);
    overflow: hidden;
}

.mobile-menu-overlay.open .mobile-menu-panel {
    transform: translateX(0);
}

/* Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-logo {
    border-radius: 8px;
    flex-shrink: 0;
}

.mobile-brand-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.3px;
}

.mobile-brand-version {
    font-size: 10px;
    font-weight: 600;
    color: var(--accent-light);
    letter-spacing: 0.5px;
    margin-top: 1px;
}

.mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    color: var(--text-gray);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.3s, background 0.3s;
}

.mobile-close:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.08);
}

/* Nav Links */
.mobile-nav-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 16px 14px;
    gap: 2px;
    overflow-y: auto;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 0.2px;
    transition: color 0.35s var(--ease-out-smooth),
        background 0.35s var(--ease-out-smooth);
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
    color: var(--accent-light);
    background: var(--accent-dim);
}

.mobile-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s;
}

.mobile-nav-links a:hover .mobile-nav-icon,
.mobile-nav-links a:active .mobile-nav-icon {
    background: var(--accent-dim);
    border-color: var(--accent-border);
}

.mobile-nav-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Footer CTA */
.mobile-menu-footer {
    padding: 16px 18px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--accent) 0%, #4f46e5 100%);
    color: white;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 4px 16px rgba(99, 102, 241, 0.2);
    transition: box-shadow 0.4s var(--ease-out-smooth),
        transform 0.25s var(--ease-out-smooth);
}

.mobile-download-btn:active {
    transform: translateY(1px);
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.2),
        0 1px 4px rgba(99, 102, 241, 0.15);
}

.mobile-hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 6px;
    color: var(--text-gray);
    transition: color 0.3s var(--ease-out-smooth);
}

.mobile-hamburger:hover {
    color: var(--text-white);
}

.mobile-hamburger svg {
    display: block;
}

@media (max-width: 1024px) {
    :root {
        --section-pad: 80px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 60px;
        --sidenav-width: 0px;
    }

    .sidenav {
        display: none;
    }

    .social-bar {
        display: none;
    }

    .main-content {
        margin-left: 0;
    }

    .topbar {
        left: 0;
    }

    .mobile-hamburger {
        display: flex;
    }

    .hero h1 {
        letter-spacing: -1.5px;
    }

    .hero-desc {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .steps::before {
        display: none;
    }

    .pricing-grid.cols-3 {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .security-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-inner {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .security-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 80px 16px 60px;
    }

    .container {
        padding: 0 16px;
    }
}

/* ============================================
   MOBILE RESPONSIVENESS OVERRIDES
   ============================================ */
@media (max-width: 768px) {

    /* 1. SOCIAL BAR — Bottom Center & Horizontal */
    .social-bar {
        position: fixed;
        left: 50%;
        bottom: 20px;
        right: auto;
        top: auto;
        transform: translateX(-50%);
        flex-direction: row;
        /* Horizontal stack */
        padding: 8px 16px;
        width: auto;
        gap: 16px;
        background: rgba(10, 10, 18, 0.85);
        /* Slightly more opaque background */
        border-radius: 50px;
        /* Pill shape */
        z-index: 9999;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .social-bar a {
        width: 44px;
        /* Larger touch target */
        height: 44px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        /* Subtle bg for visibility */
        font-size: 18px;
    }

    /* 2. LIFETIME PRICING — Force Center Alignment */
    .pricing-grid {
        /* Force margin auto to center the grid container itself if it has a max-width */
        margin-left: auto !important;
        margin-right: auto !important;
    }
}


/* ============================================
   MOBILE OVERRIDES (FORCED !IMPORTANT)
   ============================================ */
@media (max-width: 768px) {
    .social-bar {
        position: fixed !important;
        left: 50% !important;
        bottom: 24px !important;
        right: auto !important;
        top: auto !important;
        transform: translateX(-50%) !important;
        flex-direction: row !important;
        padding: 10px 20px !important;
        width: auto !important;
        height: auto !important;
        gap: 16px !important;
        background: rgba(10, 10, 18, 0.9) !important;
        border-radius: 50px !important;
        z-index: 9999 !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
    }

    .social-bar a {
        width: 44px !important;
        height: 44px !important;
        margin: 0 !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.08) !important;
        font-size: 18px !important;
    }

    .pricing-grid {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}


/* ============================================
   YELLOW BADGE OVERRIDES
   ============================================ */
.feature-card {
    position: relative;
    overflow: visible !important;
}

/* Yellow Badge - Top Right Outline */
.yellow-badge {
    position: absolute !important;
    top: -12px !important;
    right: -10px !important;
    border-radius: 6px !important;
    z-index: 10 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4) !important;
}

@media (max-width: 768px) {
    .yellow-badge {
        font-size: 9px !important;
        padding: 4px 8px !important;
    }
}


/* ============================================
   YELLOW BADGE - HANGING TAG STYLE
   ============================================ */
.yellow-badge {
    position: absolute !important;
    top: 0 !important;
    right: 24px !important;
    /* Spaced from right edge */
    border-radius: 0 0 8px 8px !important;
    /* Top sharp, Bottom rounded */
    padding: 6px 14px !important;
    z-index: 10 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
}

@media (max-width: 768px) {
    .yellow-badge {
        font-size: 9px !important;
        padding: 4px 10px !important;
        right: 16px !important;
    }
}


/* ============================================
   YELLOW BADGE - EXACT OUTLINE ATTACHMENT
   ============================================ */
.yellow-badge {
    top: -1px !important;
    /* Overlap the 1px border exactly */
    right: 24px !important;
    border-radius: 0 0 6px 6px !important;
    /* Sharp top, rounded bottom */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25) !important;
}

@media (max-width: 768px) {
    .yellow-badge {
        right: 16px !important;
        padding: 4px 10px !important;
    }
}


/* ============================================
   YELLOW BADGE - FINAL ALIGNMENT ADJUSTMENT
   ============================================ */
.yellow-badge {
    top: -2.5px !important;
    /* Move up slightly to align perfectly with outline border */
    right: 24px !important;
    border-radius: 0 0 6px 6px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}


/* ============================================
   FINAL FORCED BADGE STYLE (HANGING TAG)
   ============================================ */
/* Reset previous conflicting rules */
.yellow-badge {
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin: 0 !important;
    transform: none !important;
}

/* Apply correct Hanging Tag logic */
.feature-card .yellow-badge {
    position: absolute !important;
    top: -3px !important;
    /* Overlap top border */
    right: 24px !important;
    border-radius: 0 0 6px 6px !important;
    padding: 2px 14px 16px !important;
    z-index: 100 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
    background: var(--gold) !important;
    color: #000 !important;
    font-weight: 800 !important;
}

@media (max-width: 768px) {
    .feature-card .yellow-badge {
        right: 16px !important;
        padding: 2px 10px 12px !important;
        font-size: 10px !important;
    }
}


/* ============================================
   PRICING BADGE - HANGING TAG STYLE
   ============================================ */
/* Override existing data-badge styles to match .yellow-badge hanging style */
.price-card[data-badge]::after {
    content: attr(data-badge);
    position: absolute !important;
    top: -3px !important;
    /* Overlap top border */
    right: 24px !important;
    background: var(--gold) !important;
    color: #000 !important;
    font-size: 9.5px !important;
    font-weight: 800 !important;
    padding: 6px 14px !important;
    border-radius: 0 0 6px 6px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 100 !important;
    left: auto !important;
    /* Reset any previous centering */
    transform: none !important;
}

@media (max-width: 768px) {
    .price-card[data-badge]::after {
        right: 16px !important;
        padding: 4px 10px !important;
        font-size: 9px !important;
    }
}


/* ============================================
   PRICING BADGE - FINAL FORCED
   ============================================ */
.price-card[data-badge]::after {
    top: -3px !important;
    /* Visual latch */
    right: 24px !important;
    left: auto !important;
    transform: none !important;
    border-radius: 0 0 6px 6px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
    padding: 2px 14px 16px !important;
    background: var(--gold) !important;
    color: #000 !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    z-index: 100 !important;
}

@media (max-width: 768px) {
    .price-card[data-badge]::after {
        right: 16px !important;
        padding: 2px 10px 12px !important;
        font-size: 10px !important;
    }
}


/* ============================================
   REMOVE INTERNAL YELLOW BADGE (PRICE DISCOUNT)
   ============================================ */
.price-discount {
    display: none !important;
    /* Hide old middle yellow box */
}


/* ============================================
   REMOVE DUPLICATE POPULAR BADGE
   ============================================ */
.price-card.popular::before {
    display: none !important;
    /* Hide old pseudo-element to prevent double badge */
    content: none !important;
}


/* ============================================
   FIX MISSING SOCIAL BAR ON MOBILE
   ============================================ */
@media (max-width: 768px) {
    .social-bar {
        display: flex !important;
        /* Force show, override previous display: none */
        visibility: visible !important;
        opacity: 1 !important;
        bottom: 24px !important;
        z-index: 99999 !important;
    }
}


/* ============================================
   MOBILE SOCIAL BAR - SLEEK & BLURRED
   ============================================ */
@media (max-width: 768px) {
    .social-bar {
        padding: 6px 14px !important;
        /* More compact capsule */
        background: rgba(10, 10, 18, 0.45) !important;
        /* More transparent */
        backdrop-filter: blur(12px) !important;
        /* Glass blur effect */
        -webkit-backdrop-filter: blur(12px) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        gap: 8px !important;
        bottom: 20px !important;
        border-radius: 30px !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25) !important;
    }

    .social-bar a {
        width: 36px !important;
        /* Smaller, closer to desktop size */
        height: 36px !important;
        font-size: 14px !important;
        background: transparent !important;
        /* Clean look */
    }

    /* Active/Hover state for touch feedback */
    .social-bar a:active {
        background: rgba(255, 255, 255, 0.1) !important;
    }
}


/* ============================================
   STATS COUNTER SECTION
   ============================================ */
.stats-section {
    padding: 60px 20px;
    position: relative;
    background: rgba(10, 10, 18, 0.4);
    border-top: none;
    border-bottom: none;
    text-align: center;
}

/* Fading horizontal border — bright center, transparent edges */
.stats-section::before,
.stats-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.4) 30%, rgba(99, 102, 241, 0.5) 50%, rgba(99, 102, 241, 0.4) 70%, transparent 100%);
}

.stats-section::before {
    top: 0;
}

.stats-section::after {
    bottom: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
}

/* Fix Stats Color by removing gradient override */
.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #818cf8;
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
    margin-bottom: 8px;
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-text-fill-color: initial;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
}

.stat-sub {
    font-size: 13px;
    color: var(--text-gray);
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.site-footer {
    background: #050508;
    border-top: none;
    padding: 60px 0 30px;
    font-size: 14px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08) 30%, rgba(255, 255, 255, 0.08) 70%, transparent);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--text-white);
}

.footer-tagline {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-links-col h4 {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links-col a {
    display: block;
    color: var(--text-gray);
    margin-bottom: 12px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: none;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05) 30%, rgba(255, 255, 255, 0.05) 70%, transparent);
}

.copyright {
    color: var(--text-gray);
    opacity: 0.7;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: var(--text-gray);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .site-footer {
        padding: 36px 0 100px;
    }

    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 20px;
    }

    .footer-brand-col {
        width: 100%;
        align-items: center;
        gap: 10px;
    }

    .footer-tagline {
        font-size: 13px;
    }

    .footer-links-col {
        width: 30%;
        text-align: center;
    }

    .footer-links-col h4 {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .footer-links-col a {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .copyright {
        font-size: 11px;
    }
}


/* ============================================
   UTILITIES
   ============================================ */
.mobile-break {
    display: none;
}

@media (max-width: 768px) {
    .mobile-break {
        display: inline;
    }
}



/* ============================================
   MOBILE & FINAL REFINEMENTS
   ============================================ */

/* 1. Mobile Menu Animation Fix */
.mobile-menu-overlay {
    display: flex !important;
    /* Always flex, hide with visibility */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s;
    z-index: 200000 !important;
    /* Above Social Bar (99999) */
}

.mobile-menu-overlay.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-panel {
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.open .mobile-menu-panel {
    transform: translateX(0);
}

/* 2. Mobile Pricing Labels */
@media (max-width: 768px) {
    .pricing-section-label {
        text-align: center !important;
        margin-top: 40px !important;
        margin-bottom: 20px !important;
        font-size: 11px !important;
        letter-spacing: 2px !important;
    }

    .pricing-section-label:first-child {
        margin-top: 0 !important;
    }
}

/* Download CTA — Brighter Soft Radial Glow (No Borders) */
.cta-section {
    position: relative;
    overflow: hidden;
    background: transparent;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    box-shadow: none;
}

@keyframes ctaGlowPulse {

    0%,
    100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.08);
    }
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 450px;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.2) 0%, rgba(99, 102, 241, 0.1) 30%, rgba(99, 102, 241, 0.03) 55%, transparent 80%);
    pointer-events: none;
    animation: ctaGlowPulse 6s ease-in-out infinite;
    z-index: 0;
}

/* Make text pop */
.cta-section .section-title {
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 28px;
    right: 62px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 18, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 14px;
    color: var(--accent-light);
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition:
        opacity 0.45s var(--ease-out-smooth),
        visibility 0.45s var(--ease-out-smooth),
        transform 0.45s var(--ease-out-expo),
        background 0.3s var(--ease-out-smooth),
        border-color 0.3s var(--ease-out-smooth),
        box-shadow 0.3s var(--ease-out-smooth);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.03);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.4);
    color: #fff;
    box-shadow:
        0 6px 28px rgba(99, 102, 241, 0.2),
        0 0 0 1px rgba(99, 102, 241, 0.1);
    transform: translateY(-3px);
}

.scroll-to-top:active {
    transform: translateY(1px);
    transition-duration: 0.1s;
}

.scroll-to-top svg {
    transition: transform 0.3s var(--ease-out-smooth);
}

.scroll-to-top:hover svg {
    transform: translateY(-2px);
}

/* Mobile: position above the social bar (social bar is at bottom ~24px) */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 90px;
        right: 16px;
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }
}

/* Screen-reader only — hidden visually, crawlable by search engines */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   SCROLL INDICATOR — Hero Bottom
   ============================================ */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    animation: scrollFadeIn 1.5s ease 0.8s both;
}

@keyframes scrollFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.scroll-indicator span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-light);
    opacity: 0.7;
    animation: scrollTextPulse 2.5s ease infinite;
}

@keyframes scrollTextPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.scroll-line {
    width: 1.5px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-light), transparent);
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #fff, transparent);
    animation: scrollLineDrop 2s ease-in-out infinite;
}

@keyframes scrollLineDrop {
    0% {
        top: -100%;
    }

    60% {
        top: 100%;
    }

    100% {
        top: 100%;
    }
}

/* Tablet: slightly higher */
@media (max-width: 1024px) {
    .scroll-indicator {
        bottom: 42px;
    }
}

/* Mobile: push higher so it's visible above fold */
@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 80px;
    }

    .scroll-indicator span {
        font-size: 10px;
        letter-spacing: 2.5px;
    }

    .scroll-line {
        height: 30px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .scroll-indicator {
        bottom: 100px;
    }

    .scroll-indicator span {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .scroll-line {
        height: 26px;
    }
}

/* ============================================
   DOWNLOAD OVERLAY MODAL
   ============================================ */
.dl-overlay-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.35s var(--ease-out-smooth);
}

.dl-overlay-backdrop.active {
    opacity: 1;
}

.dl-overlay-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.92);
    width: 420px;
    max-width: 90vw;
    background: rgba(10, 10, 18, 0.96);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 20px;
    padding: 40px 36px 32px;
    z-index: 10000;
    text-align: center;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(99, 102, 241, 0.08);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dl-overlay-modal.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.dl-modal-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    color: var(--accent-light);
    animation: dlIconPulse 2s ease infinite;
}

@keyframes dlIconPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.15);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(99, 102, 241, 0);
    }
}

.dl-modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    transition: color 0.4s;
}

.dl-modal-subtitle {
    font-size: 12px;
    color: var(--text-dim);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
}

.dl-progress-container {
    width: 100%;
}

.dl-progress-bar {
    position: relative;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    overflow: hidden;
}

.dl-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #6366f1, #818cf8, #a78bfa);
    border-radius: 3px;
    transition: width 0.08s linear, background 0.5s;
}

.dl-progress-glow {
    position: absolute;
    top: -4px;
    left: 0;
    height: 14px;
    width: 0%;
    background: rgba(99, 102, 241, 0.3);
    border-radius: 7px;
    filter: blur(6px);
    transition: width 0.08s linear, background 0.5s;
    pointer-events: none;
}

.dl-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
}

.dl-progress-percent {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-light);
    font-family: 'JetBrains Mono', monospace;
    transition: color 0.4s;
}

.dl-progress-status {
    font-size: 11px;
    color: var(--text-gray);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Download button active state */
.btn-primary.downloading {
    pointer-events: none;
    opacity: 0.7;
}

/* Payment Methods */
.payment-methods {
    margin-top: 40px;
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.payment-text {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
        filter: grayscale(100%) opacity(0.6);
    }

    50% {
        transform: translateY(-5px);
        filter: grayscale(0%) opacity(1) drop-shadow(0 4px 12px rgba(99, 102, 241, 0.3));
    }
}

.payment-logos img {
    height: 44px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(0) scale(1);
    cursor: pointer;
    will-change: transform, filter, opacity;
    animation: logoFloat 4s ease-in-out infinite;
}

.payment-logos img:nth-child(1) {
    animation-delay: 0s;
}

.payment-logos img:nth-child(2) {
    animation-delay: 1s;
}

.payment-logos img:nth-child(3) {
    animation-delay: 2s;
}

.payment-logos img:nth-child(4) {
    animation-delay: 3s;
}

.payment-logos img:hover {
    filter: grayscale(0%) opacity(1) drop-shadow(0 4px 12px rgba(99, 102, 241, 0.4));
    transform: translateY(-8px) scale(1.1);
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .payment-methods {
        padding: 20px 16px;
        margin-top: 32px;
    }

    .payment-logos {
        gap: 24px;
    }

    .payment-logos img {
        height: 34px;
        max-width: 110px;
    }
}
/* ============================================
   HIDDEN FEATURES TOGGLE
   ============================================ */
.hidden-card {
    display: none !important;
}

.showing-all .hidden-card {
    display: block !important;
}

.btn-show-more {
    margin: 30px auto 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-gray);
    padding: 12px 32px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 1px 3px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.35s var(--ease-out-smooth);
    width: auto;
    left: 50%;
    transform: translateX(-50%);
}

.btn-show-more:hover {
    color: var(--text-white);
    border-color: rgba(99, 102, 241, 0.4);
    background: rgba(99, 102, 241, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 4px 15px rgba(99, 102, 241, 0.2);
}

.btn-show-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.1) 45%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.1) 55%, transparent 60%);
    transform: translateX(-100%) skewX(-12deg);
    transition: transform 0.6s ease-in-out;
    pointer-events: none;
    z-index: 2;
}

.btn-show-more:hover::before {
    transform: translateX(100%) skewX(-12deg);
}
