/* ===========================================================
   MilesX — Design tokens (light theme, from logo palette)
   Palette:  Off-white #F6F8FC · White #FFFFFF · Tint #EEF2FA · Navy #08214D
             Blue #022ADE · Blue-bright #2A4CFF · Green #12805C
   Type:     Display "Sora"  Body "Inter"  Mono "IBM Plex Mono"
=========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@600;700;800&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root {
  --bg: #F6F8FC;
  --white: #FFFFFF;
  --bg-tint: #EEF2FA;
  --bg-tint-2: #E4EAF7;
  --navy: #08214D;
  --navy-soft: #5B6B85;
  --line: #E1E6F0;
  --line-strong: #C9D2E4;

  --blue: #022ADE;
  --blue-bright: #2A4CFF;
  --blue-tint: #E9EDFF;
  --green: #12805C;
  --green-bright: #16A374;
  --green-tint: #E6F5EF;
  --rose: #B3261E;
  --rose-tint: #FBEAE9;

  --font-display: 'Sora', 'Inter', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --radius: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

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

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--blue);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.015em;
  color: var(--navy);
}
h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.65rem, 3vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0; }
.lede { font-size: 1.08rem; color: var(--navy-soft); line-height: 1.6; }

.section { padding: 84px 0; background: var(--bg); }
.section--tight { padding: 52px 0; }
.section--paper { background: var(--bg-tint); }
.section--paper .lede { color: var(--navy-soft); }

.divider {
  border: none;
  border-top: 1px dashed var(--line-strong);
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 6px 16px -6px rgba(2,42,222,0.45);
}
.btn-primary::after { content: "→"; font-weight: 400; transition: transform 0.15s ease; }
.btn-primary:hover::after { transform: translateX(2px); }
.btn-primary:hover { background: var(--blue-bright); }
.btn-outline {
  border-color: var(--line-strong);
  color: var(--navy);
  background: var(--white);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-runway { background: var(--green); color: #fff; }
.btn-runway:hover { background: var(--green-bright); }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ---------- Header ---------- */
.site-header {
  position: relative;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.5));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -36px;
  height: 36px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.18);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent);
  mask-image: linear-gradient(to bottom, black, transparent);
  pointer-events: none;
}
.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 132px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 112px;
  width: auto;
  display: block;
}
.footer-grid .logo-img { height: 100px; }
.admin-sidebar .logo-img { height: 54px; }
.admin-login .logo-img { height: 74px; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy-soft);
  transition: color 0.15s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: var(--white); border: 1px solid var(--line-strong); color: var(--navy); padding: 8px 10px; border-radius: var(--radius); }

.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-item .chevron { width: 13px; height: 13px; transition: transform 0.15s ease; }
.nav-item:hover .chevron, .nav-item:focus-within .chevron { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -14px;
  margin-top: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 24px 54px -20px rgba(8,33,77,0.32);
  padding: 10px;
  min-width: 270px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 100;
}
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 0.88rem;
  color: var(--navy-soft);
  font-weight: 500;
}
.nav-dropdown a:hover { background: var(--bg-tint); color: var(--blue); }
.nav-dropdown__viewall {
  margin-top: 6px;
  border-top: 1px solid var(--line);
  padding-top: 14px !important;
  font-weight: 700 !important;
  color: var(--blue) !important;
}
@media (max-width: 920px) {
  .nav-dropdown { display: none; }
}

@media (max-width: 920px) {
  .main-nav { position: fixed; top: 132px; left: 0; right: 0; bottom: 0; background: var(--white); flex-direction: column; align-items: flex-start; padding: 28px 24px; gap: 4px; display: none; overflow-y: auto; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-toggle { display: inline-flex; }
  .header-actions .btn-outline { display: none; }
}

/* ---------- Bold hero band ---------- */
.hero-band {
  background: linear-gradient(135deg, var(--blue) 0%, #1530A8 100%);
  position: relative;
  overflow: hidden;
  padding: 64px 0 72px;
}
.hero-band .container { position: relative; z-index: 1; }
.hero-band h1 { color: #fff; }
.hero-band .lede { color: rgba(255,255,255,0.82); }
.hero-band .eyebrow { color: #BFD0FF; }
.hero-band .eyebrow::before { background: #BFD0FF; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: start;
  margin-top: 32px;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; } }

.trust-pill--dark {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 8px 18px 8px 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 22px;
}
.trust-pill--dark .stars { color: #4ADE80; letter-spacing: 1px; }

.hero-stats { display: flex; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.hero-stats .stat { display: flex; align-items: center; gap: 12px; }
.hero-stats .stat .icon-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.hero-stats .stat .icon-circle svg { width: 20px; height: 20px; }
.hero-stats .stat b { font-family: var(--font-mono); font-size: 1.25rem; display: block; color: #fff; }
.hero-stats .stat span { font-size: 0.74rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------- Quote panel (floating white card) ---------- */
.quote-panel {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 36px 28px;
  box-shadow: 0 30px 60px -20px rgba(3,10,40,0.35);
}
.quote-panel__title { font-size: 1.55rem; font-weight: 800; color: var(--navy); font-family: var(--font-display); }
.quote-panel__subtitle { font-size: 1rem; color: var(--navy-soft); margin-top: 6px; }

.quote-form { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.name-row, .phone-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.phone-row { grid-template-columns: 128px 1fr; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--navy-soft); text-transform: uppercase; letter-spacing: 0.05em; }
.field input, .field select, .field textarea {
  border: 1px solid var(--line-strong);
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--navy);
  font-size: 1.05rem;
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: #93A0B8; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--blue); outline-offset: 1px; }
.field-plain { display: flex; flex-direction: column; }

/* ---------- Phone country-code picker (real flag images) ---------- */
.phone-code-picker { position: relative; height: 100%; }
.phone-code-picker__trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--line-strong);
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 10px;
  cursor: pointer;
  color: var(--navy);
  font-size: 1.02rem;
  font-family: inherit;
}
.phone-code-picker__trigger:hover { border-color: var(--blue); }
.phone-code-picker__trigger img { border-radius: 2px; flex-shrink: 0; display: block; }
.phone-code-picker__trigger svg { width: 14px; height: 14px; margin-left: auto; color: var(--navy-soft); flex-shrink: 0; }
.phone-code-picker__panel {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 300px;
  max-height: 320px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 24px 54px -20px rgba(8,33,77,0.32);
  padding: 6px;
  z-index: 60;
}
.phone-code-picker__panel.open { display: block; }
.phone-code-picker__option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 10px;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--navy);
  text-align: left;
}
.phone-code-picker__option:hover { background: var(--bg-tint); }
.phone-code-picker__option img { border-radius: 2px; flex-shrink: 0; }
.phone-code-picker__option-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.phone-code-picker__option-dial { color: var(--navy-soft); font-family: var(--font-mono); font-size: 0.85rem; flex-shrink: 0; }

.direction-toggle { display: flex; background: #fff; border: 1px solid var(--line-strong); border-radius: var(--radius); overflow: hidden; }
.direction-toggle button {
  flex: 1; padding: 11px; border: none; background: transparent; color: var(--navy); font-weight: 600; font-size: 0.9rem;
}
.direction-toggle button.active { background: var(--navy); color: var(--white); }
.estimate-box {
  background: var(--green-tint);
  border: 1px dashed var(--green);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 0.94rem;
  color: #0d5f45;
  display: none;
}
.estimate-box.show { display: block; }
.form-note { font-size: 0.76rem; color: var(--navy-soft); text-align: center; }
.phone-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--green);
  font-weight: 600;
  text-align: center;
  margin-top: -4px;
}
.phone-hint.show { display: flex; }
.phone-hint svg { width: 15px; height: 15px; flex-shrink: 0; }
.form-success, .form-error {
  padding: 14px; border-radius: var(--radius); font-size: 0.92rem; display: none;
}
.form-success { background: var(--green-tint); border: 1px solid var(--green); color: #0d5f45; }
.form-error { background: var(--rose-tint); border: 1px solid var(--rose); color: #7a241d; }
.form-success.show, .form-error.show { display: block; }

.secure-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.secure-row .secure-item { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--navy-soft); }
.secure-row .secure-item svg { width: 18px; height: 18px; color: var(--green); }
.secure-row img { height: 22px; width: auto; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 1px 2px rgba(8,33,77,0.04), 0 16px 32px -20px rgba(8,33,77,0.16);
}
.card--paper { background: var(--bg-tint); border-color: var(--line); box-shadow: none; }
.step-card { position: relative; padding-bottom: 40px; overflow: visible; }
.step-card .num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px -4px rgba(8,33,77,0.4);
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-tint);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.icon-badge svg { width: 26px; height: 26px; }
.icon-badge--green { background: var(--green-tint); color: var(--green); }
.icon-badge--navy { background: var(--bg-tint-2); color: var(--navy); }

.program-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.program-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 16px 30px -20px rgba(2,42,222,0.35); }
.program-card__top { display: flex; align-items: center; justify-content: space-between; }
.program-card__rate { font-family: var(--font-mono); color: var(--blue); font-size: 0.95rem; font-weight: 600; }
.program-card__cat { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--navy-soft); }
.program-card__summary { color: var(--navy-soft); font-size: 0.9rem; line-height: 1.5; }

/* ---------- Testimonials ---------- */
.testimonial { background: var(--bg-tint); border: 1px solid var(--line); color: var(--navy); border-radius: 18px; padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.testimonial__stars { color: var(--blue); letter-spacing: 2px; }
.testimonial__quote { font-family: var(--font-body); font-weight: 500; font-size: 1.02rem; line-height: 1.5; color: var(--navy); }
.testimonial__who { font-size: 0.82rem; color: var(--navy-soft); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  padding: 20px 0; cursor: pointer; font-weight: 600; font-size: 1.02rem;
  display: flex; align-items: center; justify-content: space-between; list-style: none;
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--font-mono); font-size: 1.3rem; color: var(--blue); }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding-bottom: 20px; color: var(--navy-soft); line-height: 1.6; max-width: 68ch; }

/* ---------- Blog ---------- */
.blog-card { display: flex; flex-direction: column; gap: 10px; }
.blog-card .cat { font-family: var(--font-mono); font-size: 0.72rem; color: var(--blue); text-transform: uppercase; letter-spacing: 0.08em; }
.blog-card h3 { font-size: 1.15rem; }
.blog-card .meta { font-size: 0.8rem; color: var(--navy-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #C9D3E8; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: #7C93C4; margin-bottom: 16px; font-family: var(--font-mono); }
.footer-grid a, .footer-grid p { color: #C9D3E8; font-size: 0.9rem; display: block; margin-bottom: 10px; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.8rem; color: #90A2C7; flex-wrap: wrap; gap: 12px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Misc page bits ---------- */
.page-hero { padding: 60px 0 46px; }

/* ---------- Hero decoration ---------- */
.hero-decor { position: relative; }
.hero-decor::before, .hero-decor::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}
.hero-decor::before {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--blue-tint) 0%, transparent 70%);
  top: -140px; right: -80px;
}
.hero-decor::after {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--green-tint) 0%, transparent 70%);
  bottom: -120px; left: -60px;
}
.hero-decor > .container { position: relative; z-index: 1; }

.trust-pill {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px 8px 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 22px;
  box-shadow: 0 1px 2px rgba(8,33,77,0.04), 0 10px 20px -14px rgba(8,33,77,0.18);
}
.trust-pill .avatars { display: flex; flex-shrink: 0; }
.trust-pill .avatars span {
  width: 27px; height: 27px; border-radius: 50%;
  background: var(--blue); color: #fff;
  border: 2px solid var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 700;
  margin-left: -9px;
  box-shadow: 0 1px 3px rgba(8,33,77,0.2);
}
.trust-pill .avatars span:nth-child(2) { background: var(--green); }
.trust-pill .avatars span:nth-child(3) { background: var(--navy); }
.trust-pill .avatars span:first-child { margin-left: 0; }

.program-card__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--blue-tint); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.program-card__icon svg { width: 20px; height: 20px; }

.testimonial__quote-mark { color: var(--blue-tint); width: 32px; height: 32px; }
.badge-row { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; margin-top: 8px; }
.badge-row .badge { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--navy-soft); }
.badge-row .badge::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-tint);
  border: 1px solid var(--green);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2312805C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 11px 11px;
  background-repeat: no-repeat;
  background-position: center;
}
.badge-row .badge b { color: var(--blue); font-family: var(--font-mono); }
.hero-band .badge-row .badge { color: rgba(255,255,255,0.82); }
.hero-band .badge-row .badge b { color: #fff; }

.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-chip {
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line-strong); font-size: 0.85rem; background: var(--white); color: var(--navy-soft);
}
.filter-chip.active { background: var(--blue); color: var(--white); border-color: var(--blue); font-weight: 600; }

.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
th, td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); }
th { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy-soft); background: var(--bg-tint); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: var(--bg-tint); }
.status-pill { padding: 4px 10px; border-radius: 999px; font-size: 0.75rem; font-weight: 600; text-transform: capitalize; }
.status-new { background: var(--blue-tint); color: var(--blue); }
.status-contacted { background: #FFF3DA; color: #93650B; }
.status-offer_sent { background: #E7EBFF; color: #3546C9; }
.status-paid { background: var(--green-tint); color: var(--green); }
.status-closed { background: var(--bg-tint); color: var(--navy-soft); }

.admin-shell { min-height: 100vh; display: flex; }
.admin-sidebar { width: 220px; background: var(--navy); border-right: 1px solid rgba(255,255,255,0.08); padding: 24px 18px; }
.admin-sidebar a { display: block; padding: 10px 12px; border-radius: var(--radius); color: #B7C4E0; font-size: 0.92rem; margin-bottom: 4px; }
.admin-sidebar a.active, .admin-sidebar a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.admin-main { flex: 1; padding: 32px 40px; background: var(--bg-tint); }
.admin-login { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--bg-tint); }
.admin-login .card { width: 380px; }

.loading-text { color: var(--navy-soft); font-family: var(--font-mono); font-size: 0.85rem; padding: 20px 0; }

/* ---------- WhatsApp floating button ---------- */
.floating-actions {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.whatsapp-float {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px -6px rgba(37,211,102,0.55);
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.07); }
.whatsapp-float svg { width: 29px; height: 29px; color: #fff; }
.whatsapp-float__tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}
.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }
@media (max-width: 600px) {
  .floating-actions { bottom: 16px; right: 16px; gap: 10px; }
  .whatsapp-float { width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .whatsapp-float__tooltip { display: none; }
}

/* ---------- Scroll-to-top button ---------- */
.scroll-top {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px -6px rgba(8,33,77,0.45);
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background 0.15s ease;
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--blue); }
.scroll-top svg { width: 20px; height: 20px; color: #fff; }
@media (max-width: 600px) {
  .scroll-top { width: 42px; height: 42px; }
  .scroll-top svg { width: 18px; height: 18px; }
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
@media (max-width: 900px) { .feature-split { grid-template-columns: 1fr; } }
.feature-split__art { position: relative; }
.feature-split__art::before {
  content: "";
  position: absolute;
  top: -24px; left: -24px;
  width: 90px; height: 90px;
  background-image: radial-gradient(var(--blue-tint) 2px, transparent 2px);
  background-size: 14px 14px;
  z-index: 0;
}
.feature-split__art svg { position: relative; z-index: 1; width: 100%; height: auto; }
.feature-split__pills { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.pill-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 22px; border-radius: 999px; font-weight: 700; font-size: 0.9rem;
}
.pill-btn--solid { background: var(--blue); color: #fff; }
.pill-btn--solid:hover { background: var(--blue-bright); }
.pill-btn--tint { background: var(--blue-tint); color: var(--blue); }
.pill-btn--tint:hover { background: var(--bg-tint-2); }

.brand-strip { display: flex; flex-wrap: wrap; gap: 12px; }
.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy-soft);
  transition: color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.brand-chip:hover { color: var(--blue); border-color: var(--blue); transform: translateY(-1px); }
.brand-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.brand-chip.is-bank .dot { background: var(--green); }

.cta-strip {
  background: linear-gradient(120deg, var(--navy) 0%, #123B7A 100%);
  border-radius: 22px; padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cta-strip h2 { color: #fff; }
.cta-strip p { color: rgba(255,255,255,0.82); margin-top: 8px; }
.cta-strip .btn-primary { background: #fff; color: var(--navy); box-shadow: none; }
.cta-strip .btn-primary:hover { background: var(--bg-tint); }

@media (max-width: 900px) {
  .ticket { grid-template-columns: 1fr; }
  .ticket__stub-line { display: none; }
}
