/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink-950: #0a0f1a;
  --ink-900: #0f1623;
  --ink-800: #161f30;
  --ink-700: #1f2b40;
  --brand-300: #8ecdff;
  --brand-400: #59b0ff;
  --brand-500: #338fff;
  --brand-600: #1c70f5;
  --brand-700: #1559e1;
  --slate-200: #cbd5e1;
  --slate-300: #94a3b8;
  --slate-400: #64748b;
  --slate-500: #475569;
  --emerald-400: #34d399;
  --radius: 16px;
  --radius-sm: 12px;
  --maxw: 1200px;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Sora', 'Inter', system-ui, sans-serif;

  /* ===== Theme tokens (dark = default) ===== */
  --bg: var(--ink-950);
  --bg-alt: rgba(15, 22, 35, .4);
  --surface: rgba(255, 255, 255, .03);
  --surface-2: rgba(255, 255, 255, .05);
  --surface-hover: rgba(255, 255, 255, .05);
  --border: rgba(255, 255, 255, .1);
  --heading: #ffffff;
  --text: var(--slate-200);
  --text-dim: var(--slate-400);
  --text-dimmer: var(--slate-500);
  --input-bg: rgba(22, 31, 48, .6);
  --scrollbar-track: var(--ink-950);
  --scrollbar-thumb: var(--ink-700);
  --scrollbar-thumb-hover: #2a3a55;
}

/* ===== Light theme ===== */
:root[data-theme="light"] {
  --bg: #f6f8fb;
  --bg-alt: #eef2f7;
  --surface: rgba(15, 23, 42, .035);
  --surface-2: rgba(15, 23, 42, .015);
  --surface-hover: rgba(15, 23, 42, .06);
  --border: rgba(15, 23, 42, .1);
  --heading: #0f1623;
  --text: #334155;
  --text-dim: #64748b;
  --text-dimmer: #94a3b8;
  --input-bg: #ffffff;
  --scrollbar-track: #eef2f7;
  --scrollbar-thumb: #cbd5e1;
  --scrollbar-thumb-hover: #94a3b8;
}

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color .25s ease, color .25s ease;
}

*, *::before, *::after { transition: background-color .2s ease, border-color .2s ease, color .2s ease; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

::selection { background: rgba(51,143,255,.3); color: #fff; }

/* ===== Layout ===== */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .container { padding: 0 32px; } }

.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
@media (min-width: 640px) { .section { padding: 128px 0; } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px; white-space: nowrap;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-primary { background: linear-gradient(135deg, var(--brand-500), var(--brand-600)); color: #fff; box-shadow: 0 8px 24px -8px rgba(51,143,255,.5); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.05); color: #fff; border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); }
.btn-outline { background: rgba(255,255,255,.05); color: #fff; border: 1px solid rgba(255,255,255,.15); }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-white { background: #fff; color: var(--brand-700); font-weight: 700; }
.btn-white:hover { transform: translateY(-2px); }
.btn-outline-light { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.btn-outline-light:hover { background: rgba(255,255,255,.2); }
.btn-mt { margin-top: 20px; }
.btn:disabled { opacity: .7; cursor: not-allowed; transform: none !important; }

/* ===== Navbar ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: all .3s ease; padding: 20px 0; }
.navbar.scrolled { background: rgba(10,15,26,.85); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,.08); padding: 12px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, var(--brand-500), var(--brand-700)); box-shadow: 0 6px 16px -4px rgba(51,143,255,.4); color: #fff; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: #fff; letter-spacing: -.02em; }
.brand-sub { font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: .2em; color: var(--slate-400); margin-top: 2px; }
.accent { color: var(--brand-400); }

.nav-links { display: none; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--slate-300); transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-call { display: flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,.1); color: #fff !important; font-weight: 600; }
.nav-call:hover { border-color: rgba(89,176,255,.5); background: rgba(255,255,255,.05); }
.nav-cta { padding: 9px 18px !important; border-radius: 10px; background: linear-gradient(135deg, var(--brand-500), var(--brand-600)); color: #fff !important; box-shadow: 0 6px 18px -6px rgba(51,143,255,.5); }
.nav-cta:hover { transform: translateY(-1px); color: #fff; }

.nav-toggle { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 10px; border: 1px solid rgba(255,255,255,.1); color: #fff; }

/* Theme toggle sits on the navbar/mobile menu, which stay dark regardless
   of the site-wide theme, so its colors are intentionally fixed too. */
.theme-toggle { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,.1); color: #fff; background: rgba(255,255,255,.05); flex-shrink: 0; }
.theme-toggle:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); }
.theme-toggle-mobile { width: 100%; margin-top: 8px; }

.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 16px; margin: 12px 16px 0; border-radius: 16px; border: 1px solid rgba(255,255,255,.1); background: rgba(15,22,35,.95); backdrop-filter: blur(20px); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 14px; border-radius: 10px; font-size: 15px; font-weight: 500; color: var(--slate-200); }
.mobile-menu a:hover { background: rgba(255,255,255,.05); color: #fff; }
.mobile-menu-actions { display: flex; gap: 8px; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.1); }
.mobile-menu-actions .btn { flex: 1; }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 120px 0 80px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,15,26,.82) 0%, rgba(10,15,26,.86) 60%, rgba(10,15,26,1) 100%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 56px 56px; -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 75%); mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 75%); }

.hero-content { position: relative; z-index: 1; max-width: 760px; }

.badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.05); backdrop-filter: blur(10px); font-size: 12px; font-weight: 500; color: var(--slate-200); }
.pulse-dot { position: relative; display: inline-flex; width: 8px; height: 8px; }
.pulse-dot::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--emerald-400); animation: pulse-ring 2.5s ease-out infinite; }
.pulse-dot::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--emerald-400); }
@keyframes pulse-ring { 0% { transform: scale(.9); opacity: .7; } 70%, 100% { transform: scale(1.8); opacity: 0; } }

.hero h1 { font-family: var(--font-display); font-size: clamp(2.25rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.05; letter-spacing: -.03em; color: #fff; margin: 24px 0; }
.gradient-text { background: linear-gradient(135deg, var(--brand-300), var(--brand-400), #ffd24d); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.hero p { font-size: clamp(1rem, 2.2vw, 1.25rem); color: var(--slate-300); max-width: 560px; }

.hero-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; align-items: center; } }

.hero-facts { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 48px; max-width: 640px; }
@media (min-width: 640px) { .hero-facts { grid-template-columns: repeat(3, 1fr); } }
.fact { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 14px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05); backdrop-filter: blur(10px); }
.fact svg { color: var(--brand-400); flex-shrink: 0; }
.fact p { font-size: 12px; color: var(--slate-400); margin: 0; }
.fact span { font-size: 15px; font-weight: 600; color: #fff; }

/* ===== Section heading ===== */
.section-head { max-width: 620px; margin-bottom: 56px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .22em; color: var(--brand-400); }
.eyebrow-line { display: block; width: 32px; height: 2px; background: var(--brand-400); }
.section-head h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; color: var(--heading); margin: 16px 0; }
.section-head p { font-size: 1.0625rem; color: var(--text-dim); }

/* ===== Services ===== */
.services-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

.service-card { position: relative; overflow: hidden; border-radius: 20px; border: 1px solid var(--border); background: linear-gradient(180deg, var(--surface-2), var(--surface)); transition: border-color .3s, box-shadow .3s; }
.service-card:hover { border-color: rgba(89,176,255,.4); box-shadow: 0 24px 48px -20px rgba(51,143,255,.15); }
.card-glow { position: absolute; top: -64px; right: -64px; width: 160px; height: 160px; border-radius: 50%; background: rgba(51,143,255,.1); filter: blur(48px); transition: background .3s; }
.service-card:hover .card-glow { background: rgba(51,143,255,.2); }

.card-img { height: 220px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.service-card:hover .card-img img { transform: scale(1.05); }

.card-body { padding: 28px; }
.card-icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--brand-500), var(--brand-700)); color: #fff; box-shadow: 0 8px 20px -6px rgba(51,143,255,.4); margin-bottom: 20px; }
.card-body h3 { font-family: var(--font-display); font-size: 1.375rem; font-weight: 700; color: var(--heading); }
.card-body > p { font-size: 15px; color: var(--text-dim); margin-top: 8px; }

.check-list { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }
.check-list li::before { content: ''; flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: rgba(51,143,255,.15); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2359b0ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 14px; font-weight: 600; color: var(--brand-400); width: 100%; }
.card-link:hover { color: var(--brand-300); }
.card-link svg { transition: transform .2s; }
.card-link:hover svg { transform: translateX(3px); }

/* ===== Features ===== */
.features-grid { display: grid; gap: 24px; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

.feature { padding: 28px; border-radius: 16px; border: 1px solid var(--border); background: var(--surface); transition: border-color .3s, background .3s; }
.feature:hover { border-color: rgba(89,176,255,.4); background: var(--surface-hover); }
.feature-icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, rgba(51,143,255,.15), rgba(21,89,225,.15)); border: 1px solid rgba(89,176,255,.2); color: var(--brand-300); margin-bottom: 18px; }
.feature h3 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--heading); }
.feature p { font-size: 14px; color: var(--text-dim); margin-top: 8px; }

/* ===== Fleet ===== */
.fleet-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .fleet-grid { grid-template-columns: repeat(2, 1fr); } }

.fleet-card { overflow: hidden; border-radius: 20px; border: 1px solid var(--border); background: var(--surface); transition: border-color .3s; }
.fleet-card:hover { border-color: rgba(89,176,255,.4); }
.fleet-img { position: relative; height: 240px; overflow: hidden; }
.fleet-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.fleet-card:hover .fleet-img img { transform: scale(1.05); }
.fleet-tag { position: absolute; left: 16px; top: 16px; padding: 5px 12px; border-radius: 999px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--brand-300); background: rgba(10,15,26,.7); backdrop-filter: blur(8px); }
.fleet-body { padding: 24px; }
.fleet-body h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--heading); }
.fleet-body > p { font-size: 14px; color: var(--text-dim); margin-top: 8px; }
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip-list li { padding: 6px 12px; border-radius: 8px; font-size: 12px; font-weight: 500; color: var(--text); background: var(--surface-hover); }

/* ===== Steps ===== */
.steps-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.step { position: relative; padding: 28px; border-radius: 16px; border: 1px solid var(--border); background: var(--surface); transition: border-color .3s, background .3s; }
.step:hover { border-color: rgba(89,176,255,.4); background: var(--surface-hover); }
.step-num { position: absolute; right: 24px; top: 24px; font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--border); }
.step-icon { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, rgba(51,143,255,.15), rgba(21,89,225,.15)); border: 1px solid rgba(89,176,255,.2); color: var(--brand-300); margin-bottom: 20px; }
.step h3 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--heading); }
.step p { font-size: 14px; color: var(--text-dim); margin-top: 8px; }

/* ===== CTA band ===== */
.cta-wrap { padding: 48px 20px; }
@media (min-width: 640px) { .cta-wrap { padding: 48px 32px; } }
.cta-band { position: relative; overflow: hidden; border-radius: 28px; border: 1px solid rgba(89,176,255,.2); background: linear-gradient(135deg, var(--brand-600), var(--brand-700) 40%, var(--ink-900)); padding: 40px; }
@media (min-width: 768px) { .cta-band { padding: 64px; } }
.cta-glow { position: absolute; top: -96px; right: -96px; width: 288px; height: 288px; border-radius: 50%; background: rgba(255,255,255,.1); filter: blur(96px); }
.cta-content { position: relative; max-width: 520px; }
.cta-content h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 800; line-height: 1.15; color: #fff; }
.cta-content p { font-size: 1.0625rem; color: rgba(174,214,255,.9); margin-top: 12px; }
.cta-actions { position: relative; display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
@media (min-width: 640px) { .cta-actions { flex-direction: row; } }

/* ===== Contact ===== */
.contact-grid { display: grid; gap: 24px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card { display: flex; align-items: flex-start; gap: 16px; padding: 20px; border-radius: 16px; border: 1px solid var(--border); background: var(--surface); transition: border-color .3s, background .3s; }
a.contact-card:hover { border-color: rgba(89,176,255,.4); background: var(--surface-hover); }
.contact-icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--brand-500), var(--brand-700)); color: #fff; flex-shrink: 0; box-shadow: 0 6px 16px -4px rgba(51,143,255,.4); }
.contact-card p { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-dim); }
.contact-card span { display: flex; font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700; color: var(--heading); margin-top: 2px; word-break: break-word; }
.contact-card em { font-style: normal; font-size: 12px; color: var(--text-dimmer); margin-top: 4px; display: block; }

.contact-note { display: flex; gap: 14px; padding: 22px; border-radius: 16px; border: 1px solid rgba(89,176,255,.2); background: linear-gradient(135deg, rgba(51,143,255,.1), transparent); margin-top: auto; }
.contact-note svg { color: var(--brand-300); flex-shrink: 0; margin-top: 2px; }
.contact-note strong { color: var(--brand-300); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; }
.contact-note p { font-size: 14px; color: var(--text); margin-top: 4px; }

/* Form */
.contact-form-wrap { position: relative; }
.contact-form { display: flex; flex-direction: column; gap: 16px; padding: 28px; border-radius: 20px; border: 1px solid var(--border); background: linear-gradient(180deg, var(--surface-2), var(--surface)); }
@media (min-width: 640px) { .contact-form { padding: 36px; } }

.form-row { display: grid; gap: 16px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; }
.field label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--text-dim); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  padding: 12px 16px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--input-bg); color: var(--heading); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dimmer); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand-400); box-shadow: 0 0 0 3px rgba(51,143,255,.2); }
.field select { cursor: pointer; }
.field select option { background: var(--input-bg); color: var(--heading); }

/* Honeypot: hidden from real visitors, still present for bots to fill in */
.field-honeypot { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.form-hint { font-size: 12px; text-align: center; color: var(--text-dimmer); }

.form-error { display: none; font-size: 13px; text-align: center; color: #f87171; }
.form-error.show { display: block; }

.form-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: 48px 28px; border-radius: 20px; border: 1px solid rgba(52,211,153,.3); background: linear-gradient(180deg, rgba(52,211,153,.08), transparent); }
.form-success.show { display: flex; }
.success-icon { display: flex; align-items: center; justify-content: center; width: 72px; height: 72px; border-radius: 50%; background: rgba(52,211,153,.15); color: var(--emerald-400); }
.form-success h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--heading); margin-top: 20px; }
.form-success p { font-size: 15px; color: var(--text-dim); margin-top: 8px; max-width: 380px; }
.form-back { margin-top: 16px; font-size: 14px; font-weight: 500; color: var(--text-dimmer); transition: color .2s; }
.form-back:hover { color: var(--text); }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--border); background: var(--bg); padding-top: 48px; }
.footer-inner { display: grid; gap: 40px; }
@media (min-width: 640px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand p { font-size: 14px; color: var(--text-dim); margin-top: 16px; max-width: 340px; }
.footer-owner { font-size: 14px; color: var(--text-dimmer); margin-top: 12px; }
.footer-col h4 { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-dim); }
.footer-col a, .footer-col span { display: block; font-size: 14px; color: var(--text-dim); margin-top: 12px; transition: color .2s; }
.footer-col a:hover { color: var(--heading); }
.footer-bottom { margin-top: 40px; border-top: 1px solid var(--border); padding: 24px 0; }
.footer-bottom .container { display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center; }
@media (min-width: 640px) { .footer-bottom .container { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: 12px; color: var(--text-dimmer); }

/* ===== Mobile call bar ===== */
.mobile-callbar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: flex; gap: 10px; padding: 12px; border-top: 1px solid rgba(255,255,255,.1); background: rgba(10,15,26,.95); backdrop-filter: blur(16px); transform: translateY(100%); transition: transform .3s ease; }
.mobile-callbar.show { transform: translateY(0); }
.mobile-callbar .btn { flex: 1; }
@media (min-width: 768px) { .mobile-callbar { display: none; } }

/* Add bottom padding on mobile so call bar doesn't cover content */
@media (max-width: 767px) { body { padding-bottom: 70px; } }

/* ===== Reveal animations ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease-out, transform .7s ease-out; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--scrollbar-track); }
::-webkit-scrollbar-thumb { background: var(--scrollbar-thumb); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--scrollbar-thumb-hover); }
