/* ==================================================================
   Smart Booking website -- premium dark-glass design system
   ================================================================== */
:root {
    --primary: #16a34a;
    --primary-dark: #0f7a38;
    --neon: #39e67a;
    --accent-blue: #2e86de;
    --accent-orange: #ff7a45;
    --accent-yellow: #ffd23f;
    --gold: #f3c650;
    --dark: #060910;
    --card: #121826;
    --card-alt: #1b2333;
    --border: #26304533;
    --text-muted: #9aa8bc;

    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-bg-strong: rgba(255, 255, 255, 0.09);
    --glass-border: rgba(255, 255, 255, 0.11);
    --glass-blur: 22px;

    --grad-brand: linear-gradient(135deg, #39e67a 0%, #2e86de 60%, #8b5cf6 100%);
    --grad-cta: linear-gradient(135deg, #22c55e 0%, #16a34a 55%, #0f7a38 100%);

    --bs-body-bg: var(--dark);
    --bs-body-color: #f1f5f9;
    --bs-border-color: var(--border);
    --bs-link-color: var(--neon);
    --bs-link-hover-color: var(--neon);
    --bs-secondary-color: var(--text-muted);
}

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
    font-family: "Hind Siliguri", "Segoe UI", Roboto, sans-serif;
    background: var(--dark);
    color: #f1f5f9;
    min-height: 100vh;
    position: relative;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6, .navbar-brand, .btn {
    font-family: "Outfit", "Hind Siliguri", "Segoe UI", sans-serif;
    letter-spacing: -0.01em;
}
.text-muted { color: var(--text-muted) !important; }

/* ---------- ambient backdrop ---------- */
.bg-blobs { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.bg-blobs::after {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 75%);
}
.bg-blobs span { position: absolute; display: block; border-radius: 50%; filter: blur(110px); opacity: 0.30; animation: drift 22s ease-in-out infinite alternate; }
.bg-blobs .blob-green { width: 560px; height: 560px; top: -200px; left: -180px; background: var(--neon); }
.bg-blobs .blob-blue { width: 500px; height: 500px; top: 10%; right: -200px; background: var(--accent-blue); animation-delay: -6s; }
.bg-blobs .blob-orange { width: 520px; height: 520px; bottom: -220px; right: 6%; background: var(--accent-orange); opacity: 0.20; animation-delay: -12s; }
@keyframes drift { to { transform: translate(40px, 30px) scale(1.08); } }

.glass {
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(var(--glass-blur));
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

/* ---------- navbar: floating glass bar ---------- */
.navbar {
    background: rgba(8, 12, 20, 0.55) !important;
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    backdrop-filter: blur(20px) saturate(140%);
    border-bottom: 1px solid var(--glass-border);
    padding: .7rem 0;
    transition: background .25s, box-shadow .25s;
}
.navbar.scrolled { background: rgba(6, 9, 16, 0.85) !important; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45); }
.navbar-brand { font-weight: 700; font-size: 1.25rem; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent !important; -webkit-text-fill-color: transparent; }
.navbar-brand .brand-icon { -webkit-text-fill-color: initial; }
.nav-link { color: #d6dfec !important; font-weight: 500; position: relative; padding: .5rem .8rem !important; }
.nav-link::after { content: ''; position: absolute; left: .8rem; right: .8rem; bottom: .2rem; height: 2px; background: var(--neon); transform: scaleX(0); transform-origin: left; transition: transform .25s; border-radius: 2px; }
.nav-link:hover, .nav-link.active { color: #fff !important; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.brand-icon { width: 26px; height: 26px; vertical-align: middle; margin-right: 4px; }

/* ---------- buttons ---------- */
.btn { border-radius: 14px; font-weight: 600; transition: transform .2s, box-shadow .2s, background .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--grad-cta); border: 0; box-shadow: 0 10px 30px -8px rgba(34, 197, 94, 0.6), inset 0 1px 0 rgba(255,255,255,.25); }
.btn-primary:hover { background: var(--grad-cta); filter: brightness(1.08); box-shadow: 0 14px 36px -8px rgba(34, 197, 94, 0.75), inset 0 1px 0 rgba(255,255,255,.25); }
.btn-outline-primary { color: var(--neon); border: 1px solid rgba(57, 230, 122, 0.55); background: rgba(57, 230, 122, 0.07); }
.btn-outline-primary:hover { background: var(--neon); color: #04150b; border-color: var(--neon); }
.btn-outline-light { background: var(--glass-bg); -webkit-backdrop-filter: blur(var(--glass-blur)); backdrop-filter: blur(var(--glass-blur)); border: 1px solid var(--glass-border); color: #fff; }
.btn-outline-light:hover { color: #05070c; background: #fff; }
.btn-lg { padding: .85rem 1.7rem; font-size: 1.05rem; }

/* ---------- hero ---------- */
.hero { position: relative; color: #fff; padding: 5.5rem 0 4.5rem; }
.hero .badge-soft {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(57, 230, 122, 0.1); color: var(--neon);
    border: 1px solid rgba(57, 230, 122, 0.3); border-radius: 999px; font-weight: 500;
}
.hero .badge-soft::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 12px var(--neon); animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: .35; transform: scale(.8); } }
.hero h1 { font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.7rem); line-height: 1.12; }
.text-gradient { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.hero .lead { color: #b9c5d6 !important; font-size: 1.15rem; max-width: 34rem; }

.hero-stats { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2.5rem; }
.hero-stats .stat { border-left: 2px solid rgba(57, 230, 122, .5); padding-left: .9rem; }
.hero-stats .num { font-family: "Outfit", sans-serif; font-size: 1.9rem; font-weight: 800; line-height: 1; color: #fff; }
.hero-stats .lbl { font-size: .85rem; color: var(--text-muted); }

/* phone mockup */
.hero-visual { position: relative; display: flex; justify-content: center; padding: 1rem 0; }
.hero-visual::before { content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(57,230,122,.35), rgba(46,134,222,.18) 55%, transparent 70%); filter: blur(30px); top: 50%; left: 50%; transform: translate(-50%, -50%); }
.phone {
    position: relative; width: 290px; border-radius: 42px; padding: 11px;
    background: linear-gradient(145deg, #2a3446, #0d1320);
    box-shadow: 0 40px 80px -20px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.12), inset 0 0 0 2px rgba(255,255,255,.04);
    transform: rotate(-4deg);
    animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 50% { transform: rotate(-4deg) translateY(-14px); } }
.phone-screen { border-radius: 32px; overflow: hidden; background: linear-gradient(180deg, #0c1424, #0a1a1a); padding: 1.1rem .95rem 1rem; min-height: 520px; }
.phone-notch { width: 90px; height: 22px; border-radius: 0 0 16px 16px; background: #05080e; margin: -1.1rem auto .8rem; }
.ph-head { display: flex; justify-content: space-between; align-items: center; font-size: .78rem; color: #cbd6e6; margin-bottom: .7rem; }
.ph-head b { color: var(--neon); font-family: "Outfit", sans-serif; }
.ph-search { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: .5rem .7rem; font-size: .72rem; color: #8fa0b8; margin-bottom: .7rem; }
.ph-chips { display: flex; gap: .4rem; margin-bottom: .8rem; }
.ph-chips span { font-size: .68rem; padding: .25rem .6rem; border-radius: 999px; background: rgba(255,255,255,.07); color: #b6c3d6; }
.ph-chips span.on { background: rgba(57,230,122,.18); color: var(--neon); border: 1px solid rgba(57,230,122,.4); }
.ph-card { border-radius: 18px; overflow: hidden; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); margin-bottom: .7rem; }
.ph-img { height: 110px; background: linear-gradient(135deg, #14532d, #1d4ed8 70%); position: relative; }
.ph-img.g2 { background: linear-gradient(135deg, #7c2d12, #14532d); }
.ph-img::after { content: '⚽'; position: absolute; right: 12px; bottom: 6px; font-size: 2rem; opacity: .9; }
.ph-body { padding: .6rem .7rem .7rem; }
.ph-body b { font-size: .82rem; }
.ph-body small { display: block; color: #93a4bc; font-size: .68rem; }
.ph-slots { display: flex; gap: .35rem; margin-top: .45rem; flex-wrap: wrap; }
.ph-slots span { font-size: .64rem; padding: .22rem .5rem; border-radius: 8px; border: 1px solid rgba(57,230,122,.55); color: var(--neon); background: rgba(57,230,122,.08); }
.ph-slots span.x { border-color: rgba(255,255,255,.15); color: #6f7f96; text-decoration: line-through; background: transparent; }
.ph-btn { margin-top: .6rem; text-align: center; padding: .5rem; border-radius: 12px; background: var(--grad-cta); font-weight: 700; font-size: .8rem; }

.float-card {
    position: absolute; z-index: 3; display: flex; align-items: center; gap: .6rem;
    background: rgba(16, 24, 40, 0.78); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border); border-radius: 16px; padding: .65rem .9rem; font-size: .82rem;
    box-shadow: 0 20px 40px -12px rgba(0,0,0,.6); animation: floaty2 6s ease-in-out infinite;
}
.float-card .ico { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; }
.float-card small { display: block; color: var(--text-muted); font-size: .7rem; }
.fc-1 { top: 60px; left: -10px; }
.fc-1 .ico { background: rgba(57,230,122,.18); }
.fc-2 { bottom: 90px; right: -14px; animation-delay: -3s; }
.fc-2 .ico { background: rgba(255,210,63,.18); }
.fc-3 { bottom: 10px; left: 10px; animation-delay: -1.5s; }
.fc-3 .ico { background: rgba(46,134,222,.2); }
@keyframes floaty2 { 50% { transform: translateY(-12px); } }

/* ---------- sections ---------- */
.section { padding: 5rem 0; position: relative; }
.section-alt { background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.008)); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.eyebrow { display: inline-block; font-family: "Outfit", sans-serif; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; font-size: .75rem; color: var(--neon); margin-bottom: .7rem; }
.section-title { font-weight: 800; font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.section-sub { color: var(--text-muted); max-width: 40rem; margin: .6rem auto 0; }

/* sports ticker */
.ticker { border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); background: rgba(255,255,255,.02); overflow: hidden; padding: 1rem 0; }
.ticker-track { display: flex; gap: 1rem; width: max-content; animation: marquee 32s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: .55rem; padding: .5rem 1.1rem; border-radius: 999px; background: var(--glass-bg); border: 1px solid var(--glass-border); white-space: nowrap; font-weight: 500; color: #dbe5f3; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* cards */
.icon-circle { width: 60px; height: 60px; border-radius: 18px; background: linear-gradient(135deg, rgba(57,230,122,.18), rgba(46,134,222,.16)); border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; box-shadow: 0 10px 30px -10px rgba(57,230,122,.4); }
.icon-circle img { width: 34px; height: 34px; }
.step-num { width: 44px; height: 44px; border-radius: 14px; background: var(--grad-cta); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: "Outfit", "Hind Siliguri", sans-serif; flex-shrink: 0; box-shadow: 0 10px 24px -6px rgba(34,197,94,.55); }

.card { background: var(--glass-bg); -webkit-backdrop-filter: blur(var(--glass-blur)); backdrop-filter: blur(var(--glass-blur)); border: 1px solid var(--glass-border); border-radius: 22px; }

.feature-card, .contact-card {
    position: relative; overflow: hidden;
    background: var(--glass-bg); -webkit-backdrop-filter: blur(var(--glass-blur)); backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border); border-radius: 22px; padding: 1.9rem 1.5rem; height: 100%;
    transition: transform .3s, border-color .3s, background .3s, box-shadow .3s;
}
.feature-card::before, .contact-card::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit; opacity: 0; transition: opacity .3s;
    background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(57,230,122,.14), transparent 45%);
}
.feature-card:hover, .contact-card:hover { transform: translateY(-6px); border-color: rgba(57,230,122,.4); background: var(--glass-bg-strong); box-shadow: 0 24px 50px -20px rgba(57,230,122,.35); }
.feature-card:hover::before, .contact-card:hover::before { opacity: 1; }
.feature-card > *, .contact-card > * { position: relative; }

/* timeline */
.timeline { position: relative; }
@media (min-width: 768px) {
    .timeline::before { content: ''; position: absolute; top: 3.25rem; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, transparent, var(--neon), var(--accent-blue), var(--accent-orange), transparent); opacity: .45; }
}

/* AI showcase */
.ai-chat { border-radius: 26px; padding: 1.4rem; background: linear-gradient(160deg, rgba(139,92,246,.12), rgba(46,134,222,.1) 60%, rgba(57,230,122,.08)); border: 1px solid var(--glass-border); box-shadow: 0 40px 80px -30px rgba(0,0,0,.6); }
.ai-bubble { max-width: 88%; padding: .75rem 1rem; border-radius: 18px; font-size: .95rem; margin-bottom: .7rem; white-space: pre-wrap; }
.ai-bubble.me { margin-left: auto; background: var(--grad-cta); border-bottom-right-radius: 5px; }
.ai-bubble.bot { background: rgba(255,255,255,.08); border: 1px solid var(--glass-border); border-bottom-left-radius: 5px; }
.ai-result { display: flex; align-items: center; gap: .8rem; background: rgba(255,255,255,.06); border: 1px solid var(--glass-border); border-radius: 16px; padding: .7rem; margin-top: .55rem; }
.ai-result .thumb { width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0; background: linear-gradient(135deg, #14532d, #1d4ed8); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; overflow: hidden; }
.ai-result .thumb img { width: 100%; height: 100%; object-fit: cover; }
.ai-result .chips span { display: inline-block; font-size: .72rem; padding: .18rem .55rem; margin: .2rem .25rem 0 0; border-radius: 999px; border: 1px solid rgba(57,230,122,.55); color: var(--neon); background: rgba(57,230,122,.08); }
.ai-chat-scroll { max-height: 360px; overflow-y: auto; scroll-behavior: smooth; padding-right: .3rem; }
.ai-chat-scroll::-webkit-scrollbar { width: 5px; }
.ai-chat-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 999px; }
.ai-chips { display: flex; gap: .5rem; overflow-x: auto; padding: .7rem 0 .2rem; }
.ai-chip { flex-shrink: 0; cursor: pointer; border: 1px solid rgba(57,230,122,.5); color: var(--neon); background: rgba(57,230,122,.08); border-radius: 999px; padding: .35rem .9rem; font-size: .78rem; white-space: nowrap; transition: transform .15s, background .15s; }
.ai-chip:hover { background: rgba(57,230,122,.2); transform: translateY(-1px); }
.ai-input-row { display: flex; gap: .6rem; align-items: center; background: rgba(255,255,255,.06); border: 1px solid var(--glass-border); border-radius: 999px; padding: .35rem .35rem .35rem 1rem; margin-top: .3rem; }
.ai-input-row input { flex: 1; min-width: 0; background: transparent; border: 0; outline: 0; color: var(--bs-body-color); font-size: .92rem; }
.ai-input-row input::placeholder { color: var(--text-muted); }
.ai-input-row button { flex-shrink: 0; border-radius: 999px; }
.ai-dots span { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--neon); margin: 0 2px; animation: aiDot 1s infinite ease-in-out; }
.ai-dots span:nth-child(2) { animation-delay: .17s; }
.ai-dots span:nth-child(3) { animation-delay: .34s; }
@keyframes aiDot { 0%, 80%, 100% { opacity: .25; transform: scale(.8); } 40% { opacity: 1; transform: scale(1.15); } }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 2rem; margin-bottom: .8rem; color: #cfd9e8; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 1.35rem; height: 1.35rem; border-radius: 50%; background: rgba(57,230,122,.18); color: var(--neon); font-size: .8rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }

/* venues */
.venue-card { background: var(--glass-bg); -webkit-backdrop-filter: blur(var(--glass-blur)); backdrop-filter: blur(var(--glass-blur)); border: 1px solid var(--glass-border); border-radius: 22px; overflow: hidden; transition: transform .3s, border-color .3s, box-shadow .3s; }
.venue-card:hover { transform: translateY(-6px); border-color: rgba(57,230,122,.4); box-shadow: 0 28px 50px -22px rgba(57,230,122,.4); }
.venue-media { position: relative; overflow: hidden; height: 200px; }
.venue-media img, .venue-media .cover-fallback { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.venue-card:hover .venue-media img { transform: scale(1.08); }
.venue-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(6,9,16,.75)); }
.venue-card .cover-fallback { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #14532d, #1e3a8a); font-size: 3rem; }
.venue-rating { position: absolute; z-index: 2; top: 12px; left: 12px; background: rgba(6,9,16,.7); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); border-radius: 999px; padding: .25rem .7rem; font-size: .8rem; color: #ffd23f; font-weight: 600; }
.venue-price { position: absolute; z-index: 2; bottom: 12px; right: 12px; background: var(--grad-cta); border-radius: 12px; padding: .3rem .75rem; font-size: .85rem; font-weight: 700; box-shadow: 0 8px 20px -6px rgba(34,197,94,.6); }
.venue-featured { position: absolute; z-index: 2; top: 12px; right: 12px; background: linear-gradient(135deg, #fff1b8, #e8b647 55%, #b8862b); color: #2b1d05; font-size: .7rem; font-weight: 800; letter-spacing: .06em; border-radius: 999px; padding: .25rem .65rem; }

/* CTA banner */
.cta-banner { position: relative; overflow: hidden; border-radius: 30px; padding: 3.2rem; border: 1px solid var(--glass-border); background: linear-gradient(135deg, rgba(34,197,94,.22), rgba(46,134,222,.2) 55%, rgba(139,92,246,.2)); }
.cta-banner::before { content: ''; position: absolute; width: 480px; height: 480px; right: -120px; top: -160px; border-radius: 50%; background: radial-gradient(circle, rgba(243,198,80,.28), transparent 65%); }
.cta-banner > * { position: relative; }
.mini-dash { background: rgba(6,9,16,.65); border: 1px solid var(--glass-border); border-radius: 22px; padding: 1.2rem; box-shadow: 0 30px 60px -24px rgba(0,0,0,.7); }
.mini-dash .row-x { display: flex; justify-content: space-between; font-size: .78rem; color: var(--text-muted); margin-bottom: .6rem; }
.bars { display: flex; align-items: flex-end; gap: .45rem; height: 120px; margin-top: .8rem; }
.bars span { flex: 1; border-radius: 6px 6px 2px 2px; background: linear-gradient(180deg, var(--neon), rgba(46,134,222,.6)); animation: grow 1.4s ease-out both; }
@keyframes grow { from { height: 0 !important; } }
.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
.kpis div { background: rgba(255,255,255,.05); border-radius: 12px; padding: .55rem .6rem; text-align: center; }
.kpis b { display: block; font-family: "Outfit", sans-serif; font-size: 1.15rem; }
.kpis small { color: var(--text-muted); font-size: .68rem; }

/* pricing extras */
.page-hero { padding: 4.5rem 0 1rem; text-align: center; }
.page-hero h1 { font-weight: 800; font-size: clamp(2rem, 4.4vw, 3.1rem); }
.plan-card { background: var(--glass-bg); -webkit-backdrop-filter: blur(var(--glass-blur)); backdrop-filter: blur(var(--glass-blur)); border: 1px solid var(--glass-border); border-radius: 26px; transition: transform .3s, border-color .3s, box-shadow .3s; }
.plan-card:hover { transform: translateY(-8px); border-color: rgba(57,230,122,.45); box-shadow: 0 28px 60px -24px rgba(57,230,122,.4); }
.plan-card.featured { border-color: var(--neon); box-shadow: 0 0 50px rgba(57,230,122,.18); }
.plan-price { font-family: "Outfit", sans-serif; font-size: 2.6rem; font-weight: 800; color: var(--neon); line-height: 1.1; }
.plan-card .plan-tick { color: var(--neon); }
.faq .accordion-item { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 18px !important; margin-bottom: .8rem; overflow: hidden; }
.faq .accordion-button { background: transparent; color: #f1f5f9; font-weight: 600; box-shadow: none; }
.faq .accordion-button:not(.collapsed) { color: var(--neon); background: rgba(57,230,122,.06); }
.faq .accordion-button::after { filter: invert(1); }
.faq .accordion-body { color: var(--text-muted); }

/* contact */
.contact-card { text-align: center; }
.contact-card a { color: inherit; text-decoration: none; }

/* footer */
footer { position: relative; background: rgba(5, 7, 12, 0.85); -webkit-backdrop-filter: blur(var(--glass-blur)); backdrop-filter: blur(var(--glass-blur)); color: #94a3b8; padding: 3.5rem 0 2rem; margin-top: 2rem; }
footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--neon), var(--accent-blue), var(--accent-orange), transparent); }
footer a { color: #94a3b8; text-decoration: none; transition: color .2s; }
footer a:hover { color: var(--neon); }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
}
@media (max-width: 767px) {
    .hero { padding: 3.5rem 0 2.5rem; }
    .cta-banner { padding: 2rem 1.4rem; }
    .float-card { display: none; }
}

/* ------------------------------------------------------------------
   "Premium Gold" plan: golden metallic border, warm dark glass, moving
   sheen, gold text/bullets and a gold call-to-action.
   ------------------------------------------------------------------ */
.plan-gold {
    position: relative;
    overflow: hidden;
    border: 2px solid transparent !important;
    background:
        linear-gradient(160deg, #2c2210 0%, #15110a 55%, #201809 100%) padding-box,
        linear-gradient(135deg, #fff1b8 0%, #e8b647 28%, #a87722 52%, #f6d77a 78%, #c9962f 100%) border-box !important;
    box-shadow: 0 0 0 1px rgba(246, 215, 122, 0.18), 0 22px 60px -14px rgba(232, 182, 71, 0.5);
    transform: translateY(-6px);
    transition: transform .25s, box-shadow .25s;
}
.plan-gold:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 0 1px rgba(246, 215, 122, 0.35), 0 28px 70px -12px rgba(232, 182, 71, 0.65);
}
.plan-gold.border-success { border-color: transparent !important; box-shadow: 0 0 0 3px rgba(246, 215, 122, 0.55), 0 22px 60px -14px rgba(232, 182, 71, 0.6); }
.plan-gold::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -70%;
    width: 38%;
    height: 220%;
    background: linear-gradient(90deg, transparent, rgba(255, 236, 170, 0.22), transparent);
    transform: rotate(20deg);
    animation: goldSheen 5.5s ease-in-out infinite;
    pointer-events: none;
}
.plan-gold::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 0%, rgba(246, 215, 122, 0.22), transparent 55%);
    pointer-events: none;
}
@keyframes goldSheen { 0%, 55% { left: -70%; } 100% { left: 140%; } }

.plan-gold > *, .plan-gold .card-body { position: relative; z-index: 1; }
.plan-gold h4, .plan-gold h5, .plan-gold .plan-price, .plan-gold .text-success {
    background: linear-gradient(90deg, #fff3c4 0%, #f3c650 45%, #d9a63c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
}
.plan-gold .text-muted { color: rgba(255, 233, 170, 0.7) !important; }
.plan-gold li { color: #fbeec4; }
.plan-gold li .gold-tick { color: #f3c650; margin-right: 4px; }

.plan-gold-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fff1b8, #e8b647 55%, #b8862b);
    color: #2b1d05;
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .08em;
    border-radius: 999px;
    padding: .28rem .8rem;
    box-shadow: 0 4px 14px rgba(232, 182, 71, 0.45);
}
.btn-gold {
    background: linear-gradient(135deg, #fbe79a 0%, #e0ac3e 55%, #b8862b 100%);
    color: #2b1d05 !important;
    font-weight: 700;
    border: 0;
    box-shadow: 0 8px 22px -6px rgba(232, 182, 71, 0.65);
}
.btn-gold:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-gold:disabled { opacity: .6; }
/* ------------------------------------------------------------------
   "Premium" plan: same rich treatment as Premium Gold, in royal violet.
   ------------------------------------------------------------------ */
.plan-premium {
    position: relative;
    overflow: hidden;
    border: 2px solid transparent !important;
    background:
        linear-gradient(160deg, #1f1538 0%, #0f0b1d 55%, #181031 100%) padding-box,
        linear-gradient(135deg, #efe6ff 0%, #a78bfa 28%, #6d28d9 52%, #c4b5fd 78%, #7c3aed 100%) border-box !important;
    box-shadow: 0 0 0 1px rgba(196, 181, 253, 0.18), 0 22px 60px -14px rgba(139, 92, 246, 0.5);
    transform: translateY(-3px);
    transition: transform .25s, box-shadow .25s;
}
.plan-premium:hover {
    transform: translateY(-9px);
    box-shadow: 0 0 0 1px rgba(196, 181, 253, 0.35), 0 28px 70px -12px rgba(139, 92, 246, 0.65);
}
.plan-premium.border-success { border-color: transparent !important; box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.6), 0 22px 60px -14px rgba(139, 92, 246, 0.6); }
.plan-premium::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -70%;
    width: 38%;
    height: 220%;
    background: linear-gradient(90deg, transparent, rgba(221, 208, 255, 0.2), transparent);
    transform: rotate(20deg);
    animation: goldSheen 6.5s ease-in-out infinite;
    pointer-events: none;
}
.plan-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 0%, rgba(167, 139, 250, 0.24), transparent 55%);
    pointer-events: none;
}
.plan-premium > *, .plan-premium .card-body { position: relative; z-index: 1; }
.plan-premium h4, .plan-premium h5, .plan-premium .plan-price, .plan-premium .text-success {
    background: linear-gradient(90deg, #f3ecff 0%, #b79cff 45%, #8b5cf6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
}
.plan-premium .text-muted { color: rgba(228, 216, 255, 0.72) !important; }
.plan-premium li { color: #ece4ff; }
.plan-premium li .premium-tick { color: #b79cff; margin-right: 4px; }

.plan-premium-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f1e9ff, #a78bfa 55%, #6d28d9);
    color: #1b0d3f;
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .08em;
    border-radius: 999px;
    padding: .28rem .8rem;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.5);
}
.btn-premium {
    background: linear-gradient(135deg, #c4b5fd 0%, #8b5cf6 55%, #6d28d9 100%);
    color: #fff !important;
    font-weight: 700;
    border: 0;
    box-shadow: 0 8px 22px -6px rgba(139, 92, 246, 0.7);
}
.btn-premium:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-premium:disabled { opacity: .6; }
/* ------------------------------------------------------------------
   "Basic" plan: same rich treatment as Premium / Premium Gold, in emerald.
   ------------------------------------------------------------------ */
.plan-basic {
    position: relative;
    overflow: hidden;
    border: 2px solid transparent !important;
    background:
        linear-gradient(160deg, #0e2a1f 0%, #08130e 55%, #0c2119 100%) padding-box,
        linear-gradient(135deg, #d5fbe8 0%, #34d399 28%, #059669 52%, #6ee7b7 78%, #10b981 100%) border-box !important;
    box-shadow: 0 0 0 1px rgba(110, 231, 183, 0.16), 0 22px 60px -14px rgba(16, 185, 129, 0.45);
    transition: transform .25s, box-shadow .25s;
}
.plan-basic:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 0 1px rgba(110, 231, 183, 0.35), 0 28px 70px -12px rgba(16, 185, 129, 0.6);
}
.plan-basic.border-success { border-color: transparent !important; box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.6), 0 22px 60px -14px rgba(16, 185, 129, 0.6); }
.plan-basic::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -70%;
    width: 38%;
    height: 220%;
    background: linear-gradient(90deg, transparent, rgba(200, 255, 226, 0.18), transparent);
    transform: rotate(20deg);
    animation: goldSheen 7.5s ease-in-out infinite;
    pointer-events: none;
}
.plan-basic::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 0%, rgba(52, 211, 153, 0.22), transparent 55%);
    pointer-events: none;
}
.plan-basic > *, .plan-basic .card-body { position: relative; z-index: 1; }
.plan-basic h4, .plan-basic h5, .plan-basic .plan-price, .plan-basic .text-success {
    background: linear-gradient(90deg, #eafff4 0%, #6ee7b7 45%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
}
.plan-basic .text-muted { color: rgba(214, 255, 232, 0.72) !important; }
.plan-basic li { color: #e6fff1; }
.plan-basic li .basic-tick { color: #6ee7b7; margin-right: 4px; }

.plan-basic-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d5fbe8, #34d399 55%, #059669);
    color: #04231a;
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .08em;
    border-radius: 999px;
    padding: .28rem .8rem;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.45);
}
.btn-basic {
    background: linear-gradient(135deg, #6ee7b7 0%, #10b981 55%, #047857 100%);
    color: #fff !important;
    font-weight: 700;
    border: 0;
    box-shadow: 0 8px 22px -6px rgba(16, 185, 129, 0.65);
}
.btn-basic:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-basic:disabled { opacity: .6; }

/* ------------------------------------------------------------------
   Premium gold "shine" touch for the site's main call-to-action
   buttons -- same moving-sheen technique as the Premium Gold plan
   card, applied to a button instead of a card.
   ------------------------------------------------------------------ */
.btn-shine { position: relative; overflow: hidden; isolation: isolate; }
.btn-shine::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -70%;
    width: 38%;
    height: 220%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: rotate(20deg);
    animation: goldSheen 4.5s ease-in-out infinite;
    pointer-events: none;
}
.btn-shine.btn-primary::before { background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent); }
.btn-shine > * { position: relative; z-index: 1; }

/* Gold-accented eyebrow badge, reused wherever we want the "premium"
   feel outside a plan card (nav brand, section eyebrows). */
.eyebrow-gold {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: #2b1d05;
    background: linear-gradient(135deg, #fff1b8, #e8b647 55%, #b8862b);
    font-weight: 700;
    letter-spacing: .06em;
    border-radius: 999px;
    padding: .3rem .9rem;
    box-shadow: 0 6px 18px -4px rgba(232, 182, 71, 0.55);
}

/* ------------------------------------------------------------------
   App showcase -- real screenshots in a clean device frame, each
   with a short caption underneath explaining what that screen does.
   ------------------------------------------------------------------ */
.app-shot-frame {
    position: relative;
    border-radius: 32px;
    padding: 10px;
    background: linear-gradient(160deg, #232c3d, #0d1320);
    box-shadow: 0 30px 60px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.1), inset 0 0 0 2px rgba(255,255,255,.04);
    transition: transform .3s, box-shadow .3s;
}
.app-shot-frame:hover { transform: translateY(-8px); box-shadow: 0 40px 80px -18px rgba(57,230,122,.35), 0 0 0 1px rgba(255,255,255,.16); }
.app-shot-frame img { width: 100%; border-radius: 24px; display: block; }
.app-shot-notch { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 70px; height: 16px; border-radius: 0 0 12px 12px; background: #05080e; z-index: 2; }
.app-shot-caption { margin-top: 1.1rem; }
.app-shot-caption .num { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; background: var(--grad-brand); color: #fff; font-size: .78rem; font-weight: 800; margin-right: .5rem; flex-shrink: 0; }
.app-shot-caption h6 { display: flex; align-items: center; margin-bottom: .35rem; }

/* Compact "everything the app can do" checklist grid. */
.app-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem 1.4rem; }
@media (min-width: 768px) { .app-feature-grid { grid-template-columns: repeat(3, 1fr); } }
.app-feature-item { display: flex; align-items: flex-start; gap: .65rem; }
.app-feature-item .ico-dot {
    flex-shrink: 0; width: 34px; height: 34px; border-radius: 11px; display: flex; align-items: center; justify-content: center;
    font-size: 1rem; background: var(--glass-bg); border: 1px solid var(--glass-border);
}
.app-feature-item b { display: block; font-size: .92rem; }
.app-feature-item span { display: block; color: var(--text-muted); font-size: .78rem; line-height: 1.4; }