/* =============================================
   CLOUDVAULT — Premium Cloud Storage
   Soft Professional Blue Theme | Urbanist Headings
   ============================================= */

/* ---------- ROOT VARIABLES ---------- */
:root {
    /* Soft Professional Blue Palette (de-saturated, gentler) */
    --primary-50:  #f2f7fe;
    --primary-100: #e0eafa;
    --primary-200: #c5d7f0;
    --primary-300: #9fbbe1;
    --primary-400: #7a9ed1;   /* main soft blue */
    --primary-500: #5f86bf;   /* primary action */
    --primary-600: #4a6fa5;
    --primary-700: #3c5b8a;
    --primary-800: #2e476f;
    --primary-900: #1f2f4d;

    /* Neutrals */
    --neutral-0:   #ffffff;
    --neutral-50:  #fafbfc;
    --neutral-100: #f4f7fa;
    --neutral-200: #e6ebf3;
    --neutral-300: #cbd5e1;
    --neutral-400: #94a3b8;
    --neutral-500: #64748b;
    --neutral-600: #576682;
    --neutral-700: #3d4a63;
    --neutral-800: #1c2940;
    --neutral-900: #0f172a;

    /* Soft accents (muted, not vibrant) */
    --soft-green:  #7aaf8e;
    --soft-amber:  #d4b27a;
    --soft-purple: #9f91c4;
    --soft-rose:   #d08a8a;

    /* Off-white gradients */
    --gradient-offwhite: linear-gradient(180deg, #fafbfd 0%, #f4f7fc 50%, #fafbfd 100%);
    --gradient-offwhite-soft: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
    --gradient-offwhite-warm: linear-gradient(135deg, #fdfdfb 0%, #f5f8fc 100%);
    --gradient-blue-soft: linear-gradient(135deg, #f2f7fe 0%, #e8f0fb 100%);

    /* Semantic */
    --bg-body: #fafbfd;
    --text-primary: #1c2940;
    --text-secondary: #576682;
    --text-muted: #8c99b2;
    --border-light: #e6ebf3;
    --border-soft: #eef2f7;

    /* Typography */
    --font-display: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

    /* Shadows (softer, more diffuse) */
    --shadow-xs: 0 1px 2px rgba(28, 41, 64, 0.04);
    --shadow-sm: 0 2px 6px rgba(28, 41, 64, 0.05);
    --shadow-md: 0 8px 20px rgba(28, 41, 64, 0.06);
    --shadow-lg: 0 20px 40px rgba(46, 71, 111, 0.08);
    --shadow-xl: 0 32px 64px rgba(46, 71, 111, 0.12);
    --shadow-blue: 0 8px 24px rgba(122, 158, 209, 0.22);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 36px;
}

/* ---------- BASE ---------- */
* { box-sizing: border-box; }

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-body);
    line-height: 1.65;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: all 0.25s ease; }

::selection {
    background: var(--primary-200);
    color: var(--primary-900);
}

/* ---------- TYPOGRAPHY UTILITIES ---------- */
.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--primary-600);
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    padding: 0.4rem 0.95rem;
    background: var(--primary-50);
    border-radius: 100px;
    border: 1px solid var(--primary-100);
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.25);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.7rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.section-title em {
    font-style: normal;
    color: var(--primary-500);
    font-feature-settings: 'liga', 'dlig';
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 400;
}

.text-center .section-sub { margin-left: auto; margin-right: auto; }

.section-head { margin-bottom: 4rem; }

.text-gradient {
    background: linear-gradient(135deg, var(--primary-400) 0%, var(--primary-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.link-custom {
    color: var(--primary-600);
    font-weight: 500;
    border-bottom: 1px solid var(--primary-200);
}
.link-custom:hover { color: var(--primary-700); border-color: var(--primary-500); }

/* ---------- BUTTONS ---------- */
.btn-primary-custom {
    background: var(--primary-500);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.005em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-blue);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary-custom:hover {
    background: var(--primary-600);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(122, 158, 209, 0.32);
    color: #fff;
}
.btn-primary-custom.btn-lg { padding: 1rem 2rem; font-size: 1.2rem; }

.btn-outline-custom {
    background: transparent;
    color: var(--primary-700);
    border: 1.5px solid var(--primary-200);
    border-radius: 100px;
    padding: 0.85rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}
.btn-outline-custom:hover {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: #fff;
    transform: translateY(-1px);
}

.btn-light-custom {
    background: #fff;
    color: var(--primary-700);
    border-radius: 100px;
    padding: 1rem 1.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}
.btn-light-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
    color: var(--primary-800);
    background-color: #fff;
}

.btn-ghost-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 100px;
    padding: 1rem 1.7rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
}
.btn-ghost-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}

.btn-light-on-dark {
    background: #fff;
    color: var(--primary-700);
    border-radius: 100px;
    padding: 0.85rem 1.5rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
    transition: all 0.3s ease;
}
.btn-light-on-dark:hover {
    background: var(--neutral-50);
    color: var(--primary-800);
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}
.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-light);
    border-radius: 100px;
    padding: 0.85rem 1.5rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.25s ease;
}
.btn-ghost:hover {
    border-color: var(--primary-400);
    color: var(--primary-600);
    background: var(--primary-50);
}
.btn-ghost.btn-lg { padding: 1rem 1.7rem; }

.play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: var(--primary-500);
    color: #fff;
    border-radius: 50%;
    font-size: 0.7rem;
    box-shadow: 0 4px 10px rgba(91, 141, 239, 0.3);
}
.btn-ghost-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 100px;
    padding: 1rem 1.7rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
}
.btn-ghost-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}
/* ---------- ANNOUNCEMENT BAR ---------- */
.announcement-bar {
    background: linear-gradient(90deg, var(--primary-700) 0%, var(--primary-600) 100%);
    color: #fff;
    padding: 0.7rem 0;
    font-size: 0.85rem;
}
.announce-tag {
    background: #fff;
    color: var(--primary-700);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.18rem 0.55rem;
    border-radius: 4px;
    letter-spacing: 0.04em;
}
.announce-text { color: rgba(255,255,255,0.92); }
.announce-link {
    color: #fff;
    font-weight: 600;
    margin-left: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 1px;
}
.announce-link:hover { color: #fff; border-color: #fff; }

/* ---------- NAVIGATION ---------- */
.main-nav {
    background: rgba(250, 251, 253, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    padding: 0.7rem 0;
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, 0.92);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.45rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    max-width: 210px;
}

.brand-name {
    background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-icon { display: flex; }

.main-nav .nav-link {
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.2s ease;
}

.main-nav .nav-link:hover { color: var(--primary-600); }

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: var(--primary-500);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}
.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after { width: 60%; }
.main-nav .nav-link.active { color: var(--primary-700); font-weight: 600; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-signin {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
}
.nav-signin:hover { color: var(--primary-600); }

.navbar-toggler {
    border: 1px solid var(--border-light);
    padding: 0.4rem 0.7rem;
    border-radius: 10px;
    color: var(--primary-600);
    font-size: 1.4rem;
    line-height: 1;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px var(--primary-100); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
    background: var(--gradient-offwhite-warm);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}
.hero-blob-1 {
    width: 600px; height: 600px;
    top: -200px; right: -150px;
    background: radial-gradient(circle, var(--primary-100) 0%, transparent 70%);
}
.hero-blob-2 {
    width: 500px; height: 500px;
    bottom: -100px; left: -200px;
    background: radial-gradient(circle, #e0eaf5 0%, transparent 70%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(122, 158, 209, 0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(122, 158, 209, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
}

.hero-container { position: relative; z-index: 1; padding-bottom: 4rem; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #fff;
    border: 1px solid var(--border-light);
    padding: 0.55rem 1.1rem;
    border-radius: 100px;
    font-size: 0.83rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-xs);
}

.badge-pulse {
    width: 8px; height: 8px;
    background: var(--primary-500);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(122, 175, 142, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(122, 175, 142, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(122, 175, 142, 0); }
    100% { box-shadow: 0 0 0 0 rgba(122, 175, 142, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 1.75rem;
}
.hero-title .title-italic {
    color: var(--primary-500);
    background: linear-gradient(135deg, var(--primary-400), var(--primary-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.12rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 2.5rem;
}

.btn-watch {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--text-primary);
    font-weight: 500;
}
.btn-watch:hover { color: var(--primary-700); }
.btn-watch:hover .watch-circle {
    background: var(--primary-500);
    color: #fff;
    transform: scale(1.08);
}

.watch-circle {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--border-light);
    color: var(--primary-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.btn-watch span small {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.2;
}
.btn-watch span strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.2;
}

/* Hero Meta Strip */
.hero-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .55rem 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
    flex-wrap: wrap;
    max-width: 560px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.meta-item i { color: var(--primary-500); font-size: 1.05rem; }

.meta-divider {
    width: 4px; height: 4px;
    background: var(--border-light);
    border-radius: 50%;
}

/* HERO VISUAL */
.hero-visual {
    position: relative;
    padding: 1rem 0;
}

.visual-decor {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 95%; height: 95%;
    background: radial-gradient(circle, rgba(122, 158, 209, 0.18) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.hero-dashboard {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    background: #fff;
    transform: perspective(1500px) rotateY(-3deg) rotateX(3deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: dashboard-float 6s ease-in-out infinite;
}

.hero-dashboard:hover {
    transform: perspective(1500px) rotateY(0deg) rotateX(0deg) scale(1.01);
}

.dashboard-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

@keyframes dashboard-float {
    0%, 100% { transform: perspective(1500px) rotateY(-3deg) rotateX(3deg) translateY(0); }
    50% { transform: perspective(1500px) rotateY(-3deg) rotateX(3deg) translateY(-8px); }
}

/* Floating mockups */
.float-mockup {
    position: absolute;
    z-index: 3;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: #fff;
    border: 1px solid var(--border-light);
}

.float-mockup img {
    display: block;
    width: 100%;
    height: auto;
}

.float-analytics {
    top: 5%;
    left: -8%;
    width: 200px;
    animation: floaty 5s ease-in-out infinite;
}

.float-upload {
    bottom: -5%;
    right: 5%;
    width: 240px;
    animation: floaty 6s ease-in-out infinite reverse;
    animation-delay: 1s;
}

@keyframes floaty {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

/* Pill badges */
.pill-badge {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    background: #fff;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.pill-badge i { color: var(--primary-500); font-size: 0.9rem; }

.pill-secure {
    top: 3%;
    right: 50%;
    animation: floaty 4s ease-in-out infinite;
}

.pill-sync {
    bottom: 40%;
    left: -3%;
    animation: floaty 5s ease-in-out infinite reverse;
    animation-delay: 0.5s;
}

.dot-pulse {
    width: 7px; height: 7px;
    background: var(--primary-500);
    border-radius: 50%;
    animation: pulse 1.8s infinite;
}

/* ---- HERO MARQUEE ---- */
.hero-marquee {
    margin-top: 2rem;
    overflow: hidden;
    background: var(--primary-50);
    border-top: 1px solid var(--primary-100);
    border-bottom: 1px solid var(--primary-100);
    padding: 1rem 0;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    animation: scroll-x 30s linear infinite;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--primary-600);
    letter-spacing: 0.08em;
    font-weight: 500;
}
.marquee-track .dot { color: var(--primary-300); font-size: 0.8rem; }

@keyframes scroll-x {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* LOGO STRIP */
.logo-strip {
    background: rgba(255, 255, 255, 0.5);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 2.25rem 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.logo-strip-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    font-weight: 500;
}

.logo-strip-logos {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-secondary);
    opacity: 0.7;
    transition: opacity 0.25s ease;
    letter-spacing: -0.01em;
}
.brand-logo:hover { opacity: 1; color: var(--primary-700); }
.brand-logo i { font-size: 1.15rem; }

/* =============================================
   FEATURES SECTION (Bento Grid)
   ============================================= */
.features-section {
    padding: 5rem 0;
    background: var(--gradient-offwhite);
}

.features-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 1.5rem;
}

.bento-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-200);
    box-shadow: var(--shadow-xl);
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(122, 158, 209, 0.04) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.bento-card:hover::before { opacity: 1; }

.bento-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--primary-600);
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    padding: 0.25rem 0.7rem;
    background: var(--primary-50);
    border-radius: 6px;
    border: 1px solid var(--primary-100);
    width: fit-content;
}

.bento-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.85rem;
    letter-spacing: -0.015em;
    line-height: 1.25;
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.bento-link {
    color: var(--primary-700);
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.25s ease;
    margin-top: auto;
}
.bento-link:hover {
    color: var(--primary-800);
    gap: 0.7rem;
}

/* LARGE bento card (with image) */
.bento-large {
    grid-column: span 2;
    flex-direction: row;
    min-height: 380px;
}

.bento-large .bento-content {
    padding: 2.5rem;
    flex: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--gradient-offwhite-soft);
}

.bento-large .bento-image {
    flex: 1;
    background: var(--gradient-blue-soft);
    padding: 1.75rem 1.75rem 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.bento-large .bento-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    box-shadow: 0 -8px 24px rgba(46, 71, 111, 0.1);
    transform: translateY(8%);
    transition: transform 0.5s ease;
}
.bento-large:hover .bento-image img {
    transform: translateY(4%);
}

.bento-reverse { flex-direction: row-reverse; }

/* SMALL bento card */
.bento-small {
    grid-column: span 1;
    padding: 2rem;
    background: #fff;
}

.bento-small.bento-accent {
    background: var(--gradient-blue-soft);
    border-color: var(--primary-100);
}

.small-icon-wrap {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 18px rgba(122, 158, 209, 0.25);
    transition: transform 0.3s ease;
}

.bento-small:hover .small-icon-wrap {
    transform: rotate(-6deg) scale(1.05);
}

.small-checks {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
}
.small-checks li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.small-checks i {
    color: var(--primary-500);
    font-size: 1rem;
}

/* Search mockup widget */
.search-mockup {
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    box-shadow: var(--shadow-xs);
}
.search-mockup i { color: var(--primary-500); }
.search-mockup span { flex: 1; }
.search-mockup kbd {
    background: var(--neutral-100);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 0.15rem 0.45rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-secondary);
    box-shadow: 0 1px 0 var(--border-light);
}

/* Speed bar widget */
.speed-bar-wrap {
    margin-top: 1.25rem;
}
.speed-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}
.speed-label span { color: var(--text-muted); }
.speed-label strong { color: var(--primary-700); font-weight: 700; }
.speed-bar {
    height: 6px;
    background: var(--primary-50);
    border-radius: 100px;
    overflow: hidden;
}
.speed-bar span {
    display: block;
    height: 100%;
    width: 88%;
    background: linear-gradient(90deg, var(--primary-400), var(--primary-600));
    border-radius: 100px;
    animation: speed-pulse 2s ease-in-out infinite;
}
@keyframes speed-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* WIDE bento card (activity log) */
.bento-wide {
    grid-column: span 2;
    flex-direction: row;
    min-height: 320px;
}
.bento-wide .bento-image {
    flex: 1;
    background: var(--gradient-blue-soft);
    padding: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.bento-wide .bento-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    filter: drop-shadow(var(--shadow-md));
    transition: transform 0.4s ease;
}
.bento-wide:hover .bento-image img {
    transform: scale(1.02);
}
.bento-wide .bento-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--gradient-offwhite-soft);
}

/* =============================================
   NETWORK SECTION
   ============================================= */
.network-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fafbfd 0%, #f4f7fc 100%);
    position: relative;
    overflow: hidden;
}
@media (min-width:992px){
    .network-section .top-area{
        margin-bottom: -5rem;
    }
}
.network-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-200), transparent);
}

.network-card {
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.network-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.75rem;
    background: var(--neutral-50);
    border-bottom: 1px solid var(--border-light);
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

.status-left { display: flex; align-items: center; gap: 0.6rem; }
.status-pulse {
    width: 8px; height: 8px;
    background: var(--primary-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.status-text { color: var(--text-secondary); font-weight: 500; }
.utc-clock { color: var(--primary-600); font-weight: 500; }

.network-map {
    padding: 2rem;
    background: #fafbff;
}
.map-svg { width: 100%; height: auto; max-height: 420px; }

.net-line { animation: dash-flow 4s linear infinite; }
@keyframes dash-flow { to { stroke-dashoffset: -16; } }

.net-node circle:nth-child(1) {
    animation: node-pulse 2.5s ease-in-out infinite;
}
@keyframes node-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.network-logs {
    padding: 1.25rem 1.75rem;
    background: var(--neutral-900);
    color: #94a3b8;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    border-top: 1px solid var(--border-light);
}

.log-entry {
    display: flex;
    gap: 0.75rem;
    padding: 0.3rem 0;
    align-items: center;
}
.log-time { color: var(--primary-400); font-weight: 500; }
.log-arrow { color: var(--primary-400); }
.log-msg { color: #cbd5e1; }

.network-stats { margin-top: 1.5rem; }
.net-stat {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}
.net-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-200);
}

.net-stat-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary-700);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.net-stat-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* =============================================
   HOW IT WORKS SECTION (Vertical Timeline)
   ============================================= */
.how-section {
    padding: 5rem 0;
    background: var(--gradient-offwhite);
    position: relative;
    overflow: hidden;
}

.how-section::before {
    content: '';
    position: absolute;
    top: 10%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--primary-50) 0%, transparent 70%);
    filter: blur(60px);
    opacity: 0.6;
    pointer-events: none;
}

.how-timeline {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Vertical track line */
.timeline-track {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(180deg,
        transparent 0%,
        var(--primary-200) 8%,
        var(--primary-200) 92%,
        transparent 100%);
}

.timeline-step {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    margin-bottom: 3rem;
    min-height: 200px;
}

.timeline-step:last-child { margin-bottom: 0; }

/* Card alternates left/right */
.timeline-step .timeline-card {
    grid-column: 1;
    text-align: right;
}

.timeline-step .timeline-marker { grid-column: 2; }

.timeline-step.timeline-step-right .timeline-card {
    grid-column: 3;
    text-align: left;
}

/* Marker (number circle) */
.timeline-marker {
    position: absolute;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    margin: 0 auto;
}

.marker-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--primary-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary-700);
    box-shadow: var(--shadow-md);
    z-index: 2;
    transition: all 0.4s ease;
}

.marker-ring {
    position: absolute;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-200);
    opacity: 0;
    animation: ring-expand 3s ease-out infinite;
}

@keyframes ring-expand {
    0% { transform: scale(0.85); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.timeline-step:hover .marker-num {
    background: var(--primary-500);
    color: #fff;
    border-color: var(--primary-500);
    transform: scale(1.05);
    box-shadow: var(--shadow-blue);
}

.timeline-marker-final .marker-num {
    background: var(--primary-500);
    color: #fff;
    border-color: var(--primary-500);
    box-shadow: var(--shadow-blue);
}

/* Card */
.timeline-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    position: relative;
}

.timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-200);
}

/* Card arrow pointing to marker */
.timeline-step .timeline-card::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: #fff;
    border-right: 1px solid var(--border-light);
    border-top: 1px solid var(--border-light);
}

.timeline-step:not(.timeline-step-right) .timeline-card::before {
    right: -8px;
    transform: translateY(-50%) rotate(45deg);
}
.timeline-step.timeline-step-right .timeline-card::before {
    left: -8px;
    transform: translateY(-50%) rotate(-135deg);
    border-right: 1px solid var(--border-light);
    border-top: 1px solid var(--border-light);
}
.timeline-step.timeline-step-left .img-block{
    grid-column: 3;
}
.timeline-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-blue-soft);
    color: var(--primary-700);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    border: 1px solid var(--primary-100);
}

.timeline-step:not(.timeline-step-right) .timeline-icon {
    margin-left: auto;
}

.timeline-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.45rem;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    letter-spacing: -0.015em;
}

.timeline-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.timeline-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.timeline-step:not(.timeline-step-right) .timeline-meta {
    justify-content: flex-end;
}

.timeline-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    background: var(--neutral-50);
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    border: 1px solid var(--border-soft);
}
.timeline-meta i { color: var(--primary-500); font-size: 0.9rem; }

.timeline-card-final {
    background: linear-gradient(135deg, var(--primary-50) 0%, #fff 100%);
    border-color: var(--primary-200);
}

.timeline-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.7rem 1.3rem;
    background: var(--primary-500);
    color: #fff;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-blue);
    transition: all 0.3s ease;
}
.timeline-cta:hover {
    background: var(--primary-600);
    color: #fff;
    transform: translateY(-2px);
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
    padding: 5rem 0;
    background: var(--gradient-offwhite-warm);
}

/* .about-lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
} */

.about-text {
    margin-bottom: 2rem;
}

.about-quote {
    background: #fff;
    border-left: 3px solid var(--primary-500);
    padding: 1.75rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    box-shadow: var(--shadow-xs);
    position: relative;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--primary-300);
    line-height: 0.5;
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: absolute;
    opacity: 0.2;
}

.about-quote blockquote {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.author-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary-400), var(--primary-700));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: var(--font-display);
}

.author-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.author-role {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.value-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-200);
}

.value-tag {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--primary-400);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.value-icon {
    width: 50px; height: 50px;
    background: var(--gradient-blue-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-700);
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    border: 1px solid var(--primary-100);
}

.value-card h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    letter-spacing: -0.015em;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 0;
}

/* =============================================
   PRICING SECTION
   ============================================= */
.pricing-section {
    padding: 5rem 0;
    background: var(--gradient-offwhite);
    position: relative;
}

.day-pass-banner {
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-500) 100%);
    border-radius: var(--radius-xl);
    padding: 2.75rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.day-pass-banner::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.day-pass-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.day-pass-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.25);
}

.day-pass-left { flex: 1; min-width: 280px; }

.day-pass-left h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.day-pass-left p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.25rem;
    line-height: 1.65;
}

.day-pass-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .55rem 1.5rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
    font-weight: 500;
}
.day-pass-features i { margin-right: 0.4rem; color: #c5d7f0; }

.day-pass-right {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.day-pass-price {
    display: flex;
    align-items: flex-start;
    gap: 0.2rem;
    color: #fff;
    font-family: var(--font-display);
}
.price-currency { font-size: 1.5rem; font-weight: 600; margin-top: 0.4rem; }
.price-amount { font-size: 4rem; font-weight: 700; line-height: 1; letter-spacing: -0.03em; }

.price-note {
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    font-family: var(--font-mono);
    margin-bottom: 0.85rem;
}

.plan-divider {
    margin: 3rem 0 2rem !important;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 1.1rem;
    position: relative;
}
.plan-divider::before, .plan-divider::after {
    content: '';
    position: absolute;
    top: 50%; width: 25%; height: 1px;
    background: var(--border-light);
}
.plan-divider::before { left: 12.5%; }
.plan-divider::after { right: 12.5%; }

.pricing-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-200);
}

.pricing-card-popular {
    border: 2px solid var(--primary-300);
    box-shadow: var(--shadow-blue);
    background: linear-gradient(180deg, var(--primary-50) 0%, #fff 30%);
    transform: scale(1.03);
}

.pricing-card-popular:hover { transform: translateY(-6px) scale(1.03); }

.pricing-card-vip {
    background: linear-gradient(180deg, #faf6ff 0%, #fff 30%);
    border-color: #e9deff;
}

.popular-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: var(--shadow-blue);
}

.plan-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.5rem;
}

.plan-icon {
    width: 36px; height: 36px;
    background: var(--primary-50);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-700);
    font-size: 1rem;
}

.pricing-card-vip .plan-icon {
    background: #f3ecff;
    color: #7a5fb5;
}

.plan-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.015em;
}

.plan-tag {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    min-height: 42px;
}

.plan-price {
    display: flex;
    align-items: flex-start;
    gap: 0.15rem;
    margin-bottom: 0.4rem;
    font-family: var(--font-display);
    color: var(--text-primary);
}
.plan-price .curr {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.6rem;
    color: var(--primary-500);
}
.plan-price .amt {
    font-size: 2.7rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.025em;
}
.plan-price .per {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 1.1rem;
    font-family: var(--font-body);
    font-weight: 400;
}

.plan-storage {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--primary-700);
    background: var(--primary-50);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.pricing-card-vip .plan-storage {
    background: #f3ecff;
    color: #7a5fb5;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.plan-features li {
    padding: 0.45rem 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.plan-features i {
    color: var(--primary-500);
    font-size: 1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
    padding: 5rem 0;
    background: var(--gradient-offwhite-warm);
}

.faq-quote-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 2.5rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xs);
    position: relative;
}

.faq-quote-card .quote-mark { font-size: 3rem; }

.faq-quote-card p {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.quote-byline {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.quote-byline strong { color: var(--text-primary); }

.faq-accordion .accordion-item {
    border: 1px solid var(--border-light);
    background: #fff;
    border-radius: var(--radius-md) !important;
    margin-bottom: 0.85rem;
    overflow: hidden;
    transition: all 0.25s ease;
}

.faq-accordion .accordion-item:hover { border-color: var(--primary-200); }

.faq-accordion .accordion-button {
    background: #fff;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    gap: 1rem;
    letter-spacing: -0.01em;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-50);
    color: var(--primary-800);
}

.faq-num {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--primary-600);
    background: var(--primary-50);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-weight: 600;
    flex-shrink: 0;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-num { background: #fff; }

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%234a6fa5' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
}

.faq-accordion .accordion-body {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 1.5rem;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    padding: 5rem 0;
    background: var(--bg-body);
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-600) 50%, var(--primary-500) 100%);
    border-radius: var(--radius-2xl);
    padding: 5rem 3rem;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    filter: blur(40px);
}
.shape-1 { width: 350px; height: 350px; top: -150px; left: -100px; }
.shape-2 { width: 280px; height: 280px; bottom: -100px; right: -80px; background: rgba(197, 215, 240, 0.18); }
.shape-3 { width: 200px; height: 200px; top: 30%; right: 20%; background: rgba(255,255,255,0.04); }

.cta-content { position: relative; z-index: 1; }

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin: 1rem 0 1.25rem;
    color: #fff;
    letter-spacing: -0.025em;
}
.cta-title em {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-200);
}

.cta-sub {
    color: rgba(255,255,255,0.85);
    font-size: 1.08rem;
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 0.85rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--neutral-900);
    color: #cbd5e1;
    padding: 5rem 0 2rem;
    position: relative;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #fff;
    margin-bottom: 1.25rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    max-width: 260px;
}
.footer-brand .brand-name {
    -webkit-text-fill-color: #fff;
    color: #fff;
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

.footer-payments {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.pay-card {
    background: rgba(255,255,255,0.06);
    color: #cbd5e1;
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-head {
    color: #fff;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
}

.footer-list, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li, .footer-contact li { margin-bottom: 0.65rem; }

.footer-list a, .footer-contact a {
    color: #94a3b8;
    font-size: 0.92rem;
    transition: color 0.2s ease;
}
.footer-list a:hover, .footer-contact a:hover { color: var(--primary-300); }

.footer-contact li {
    color: #94a3b8;
    font-size: 0.92rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}
.footer-contact i {
    color: var(--primary-300);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-socials {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.footer-socials a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-socials a:hover {
    background: var(--primary-500);
    color: #fff;
    border-color: var(--primary-500);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 3rem;
    padding-top: 1.75rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    color: #64748b;
    font-size: 0.85rem;
    font-family: var(--font-mono);
}

/* =============================================
   SCROLL TO TOP
   ============================================= */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px; height: 48px;
    background: var(--primary-500);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-blue);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-700);
    transform: translateY(-3px);
}

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */
@media (max-width: 1199px) {
    .hero-title { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
    .float-analytics { width: 170px; left: -4%; }
    .float-upload { width: 200px; right: -4%; }
}

@media (max-width: 991px) {
    .nav-actions { padding: 1rem 0; }
    .navbar-collapse {
        background: #fff;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
    }
    .main-nav .nav-link { padding: 0.6rem 0 !important; }

    .hero-section { padding-top: 3rem; }
    .hero-visual { padding: 3rem 0; max-width: 560px; margin: 0 auto; }
    .float-analytics { left: 0; }
    .float-upload { right: 0; }

    .features-section, .network-section,
    .how-section, .about-section,
    .pricing-section, .faq-section { padding: 5rem 0; }

    /* Bento grid → 2 cols */
    .features-bento { grid-template-columns: repeat(2, 1fr); }
    .bento-large, .bento-wide { grid-column: span 2; flex-direction: column; }
    .bento-large.bento-reverse { flex-direction: column; }
    .bento-large .bento-image,
    .bento-wide .bento-image {
        flex: none;
        padding: 1.5rem 1.5rem 0;
    }
    .bento-large .bento-image img { transform: translateY(0); }
    .bento-large:hover .bento-image img { transform: translateY(0) scale(1.01); }

    /* Timeline → vertical single column */
    .timeline-track { left: 40px; }
    .timeline-step,
    .timeline-step.timeline-step-right {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }
    .timeline-step .timeline-card,
    .timeline-step.timeline-step-right .timeline-card {
        grid-column: 2;
        text-align: left;
    }
    .timeline-step .timeline-marker { grid-column: 1; margin: 0; }
    .timeline-step .timeline-card::before {
        left: -8px !important;
        right: auto !important;
        transform: translateY(-50%) rotate(-135deg) !important;
    }
    .timeline-step:not(.timeline-step-right) .timeline-icon { margin-left: 0; }
    .timeline-step:not(.timeline-step-right) .timeline-meta { justify-content: flex-start; }

    .pricing-card-popular { transform: none; }
    .pricing-card-popular:hover { transform: translateY(-6px); }

    .cta-card { padding: 3.5rem 1.75rem; }
}

@media (max-width: 767px) {
    .day-pass-content { flex-direction: column; text-align: center; }
    .day-pass-features { justify-content: center; }
    .footer-bottom { justify-content: center; text-align: center; }

    .features-bento { grid-template-columns: 1fr; }
    .bento-large, .bento-wide, .bento-small { grid-column: span 1; }

    .hero-meta { gap: 0.85rem; grid-template-columns: repeat(1, 1fr); }
    .meta-divider { display: none; }
}

@media (max-width: 575px) {
    .announcement-bar { font-size: 0.78rem; }
    .announce-text { display: none; }

    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn-primary-custom { justify-content: center; }
    .btn-watch { justify-content: center; }

    .float-analytics { width: 140px; top: 2%; }
    .float-upload { width: 170px; bottom: 4%; }
    .pill-secure, .pill-sync { display: none; }

    .bento-large .bento-content, .bento-small,
    .bento-wide .bento-content { padding: 1.75rem 1.5rem; }

    .pricing-card { padding: 1.75rem 1.25rem; }

    .scroll-top { bottom: 1.25rem; right: 1.25rem; }

    .timeline-card { padding: 1.5rem; }
    .timeline-track { left: 32px; }
    .timeline-step,
    .timeline-step.timeline-step-right {
        grid-template-columns: 64px 1fr;
    }
    .timeline-marker { width: 64px; height: 64px; }
    .marker-num { width: 52px; height: 52px; font-size: 1.15rem; }
    .marker-ring { width: 68px; height: 68px; }
}


/* General Pages */
.section{
    padding: 5rem 0;
}
.hero-area {
    background: var(--neutral-200);
    background-size: cover;
    padding: 80px 0;
  }
  .hero-area h1 {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--ink);
  }
  .order-summary {
    padding: 27px !important;
    border-radius: 16px;
    background: var(--dark-text);
    border: 1px solid #d1d1d1;
  }
  
  .checkout_area select {
    padding: 12px;
    border-radius: 5px;
    box-shadow: none;
    outline: none;
    appearance: auto;
    width: 100%;
    border: var(--bs-border-width) solid var(--bs-border-color);
    margin-bottom: 15px;
    min-height: 50px;
  }
  .checkout_area .form-control {
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    box-shadow: none;
    outline: none;
  }
  
  .contact_info_section .contact_info_box {
    background: var(--grad4);
    background-color: var(--e-global-color-primary);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    display: flex;
  }