/* ===================== DESIGN TOKENS ===================== */
:root {
  --primary: #0d9488;
  --primary-dark: #0f766e;
  --primary-light: #99f6e4;
  --primary-subtle: rgba(13,148,136,.08);
  --primary-glow: rgba(13,148,136,.18);

  --ink: #0c1222;
  --ink-light: #1e293b;
  --muted: #64748b;
  --subtle: #94a3b8;
  --surface: #f8fafb;
  --surface-alt: #ffffff;
  --border: rgba(15,23,42,.07);
  --border-strong: rgba(15,23,42,.12);

  --shadow-sm: 0 1px 3px rgba(15,23,42,.04);
  --shadow: 0 4px 20px rgba(15,23,42,.06);
  --shadow-lg: 0 12px 40px rgba(15,23,42,.10);
  --shadow-glow: 0 0 40px rgba(13,148,136,.12);

  --radius: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.4,0,.2,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  background: var(--surface);
  color: var(--ink);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
p { margin: 0; }
h1,h2,h3,h4 { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
  width: min(1140px, calc(100% - 40px));
  margin: auto;
}
.muted { color: var(--muted); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.anim-up {
  animation: fadeUp .8s var(--ease) both;
}
.anim-delay-1 { animation-delay: .15s; }
.anim-delay-2 { animation-delay: .3s; }

/* Hover lift for cards */
.hoverable {
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.hoverable:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ===================== TOPBAR ===================== */
.topbar {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow .3s var(--ease);
}
.topbar.scrolled {
  box-shadow: 0 2px 20px rgba(15,23,42,.08);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo { height: 42px; width: auto; }
.brand-text { line-height: 1.15; }
.brand-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.brand-tag {
  font-size: 12px;
  color: var(--muted);
  margin-top: 1px;
  letter-spacing: .02em;
}

/* NAV */
.nav-toggle {
  display: none;
  border: 1px solid var(--border-strong);
  background: var(--surface-alt);
  padding: 8px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--ink);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-menu a:hover {
  color: var(--ink);
  background: var(--primary-subtle);
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
  line-height: 1.4;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(13,148,136,.3);
}
.btn-ghost {
  border-color: var(--border-strong);
  background: var(--surface-alt);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-full { width: 100%; }

/* ===================== HERO ===================== */
.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 75% 20%, rgba(13,148,136,.10), transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(13,148,136,.06), transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 13px;
  color: var(--primary-dark);
  background: var(--primary-subtle);
  border: 1px solid var(--primary-glow);
  margin-bottom: 20px;
}
.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 18px;
  color: var(--ink);
}
.hero-sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-sub strong { color: var(--ink); }
.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.hero-hl {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-light);
}
.hero-hl svg { color: var(--primary); flex-shrink: 0; }
.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* Hero Preview Card */
.hero-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.hero-card-top {
  background: #0c1424;
  color: #fff;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.window-dots { display: flex; gap: 6px; }
.wdot { width: 11px; height: 11px; border-radius: 50%; }
.wdot-r { background: #ef4444; }
.wdot-y { background: #f59e0b; }
.wdot-g { background: #22c55e; }
.hero-card-title { font-weight: 600; font-size: 13px; opacity: .85; }
.hero-card-body { padding: 18px; }
.mini-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mini-kpi {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}
.mini-kpi.accent {
  background: var(--primary-subtle);
  border-color: var(--primary-glow);
}
.kpi-label { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.kpi-value { font-weight: 700; font-size: 18px; margin-top: 4px; }
.kpi-value span { font-size: 13px; color: var(--muted); font-weight: 500; }
.mini-panel {
  margin-top: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}
.mini-panel-title { font-weight: 700; font-size: 12px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.mini-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 7px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--surface-alt);
  font-weight: 600;
  font-size: 12px;
  color: var(--primary-dark);
  transition: background .2s, border-color .2s;
}
.chip:hover { background: var(--primary-subtle); border-color: var(--primary-glow); }
.mini-table {
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.mini-table-row {
  display: grid;
  grid-template-columns: 1.3fr .7fr .8fr;
  padding: 10px 14px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  align-items: center;
}
.mini-table-row.header {
  background: var(--surface);
  border-top: none;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
}
.badge {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 11px;
  width: fit-content;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
}
.badge.ok { background: rgba(16,185,129,.1); border-color: rgba(16,185,129,.2); color: #047857; }
.badge.warn { background: rgba(245,158,11,.1); border-color: rgba(245,158,11,.2); color: #b45309; }

/* ===================== STRIP ===================== */
.strip {
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface-alt);
}
.strip-inner {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.strip-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-light);
}
.strip-item svg { color: var(--primary); flex-shrink: 0; }

/* ===================== SECTIONS ===================== */
.section { padding: 88px 0; }
.section.alt {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-head { text-align: center; margin-bottom: 48px; max-width: 680px; margin-left: auto; margin-right: auto; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
  margin-bottom: 10px;
}
.section-label.light { color: var(--primary-light); }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.section-head h2 em { font-style: normal; color: var(--primary); }
.section-head p { color: var(--muted); font-size: 16px; line-height: 1.7; }

/* ===================== CARDS (product) ===================== */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  background: var(--primary-subtle);
  color: var(--primary);
  margin-bottom: 18px;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.card p { color: var(--muted); font-size: 14px; line-height: 1.65; }

/* ===================== DARK SECTION (What is EMR) ===================== */
.section-dark {
  background: #0c1424;
  color: #e2e8f0;
  padding: 88px 0;
}
.section-dark h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 16px;
  color: #fff;
}
.section-dark h2 em { font-style: normal; color: var(--primary-light); }
.section-dark p { color: #94a3b8; font-size: 16px; line-height: 1.7; }
.section-dark strong { color: #e2e8f0; }
/* (What is EMR section removed) */

/* ===================== FEATURES MEGA (combined section) ===================== */
.features-mega {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.feat-icon {
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  background: var(--primary-subtle);
  border: 1px solid var(--primary-glow);
  color: var(--primary);
  margin-bottom: 16px;
}
.feat-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary);
  background: var(--primary-subtle);
  border: 1px solid var(--primary-glow);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}
.feat-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.feat-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ===================== SLIDER (Operation Screens) ===================== */
.slider {
  position: relative;
}
.slider-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.slider-track {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.slide {
  flex-shrink: 0;
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-alt);
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.slide:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.slide img {
  width: 100%;
  height: 200px;
  display: block;
  object-fit: cover;
  object-position: top left;
  background: #e2e8f0;
  transition: transform .4s var(--ease);
}
.slide:hover img { transform: scale(1.04); }
.slide-cap {
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border);
  background: var(--surface-alt);
}
.slide-cap strong { font-size: 14px; }
.slide-cap span { color: var(--muted); font-size: 12px; }

/* Arrows */
.slider-arrow {
  position: absolute;
  top: calc(50% - 24px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--surface-alt);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all .2s var(--ease);
  z-index: 2;
}
.slider-arrow:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(13,148,136,.3);
}
.slider-prev { left: -22px; }
.slider-next { right: -22px; }

/* Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all .25s var(--ease);
}
.slider-dot.active {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.2);
}

@media (max-width: 1024px) {
  .slider-prev { left: -18px; }
  .slider-next { right: -18px; }
}
@media (max-width: 640px) {
  .slider-prev { left: 6px; }
  .slider-next { right: 6px; }
  .slider-arrow { width: 38px; height: 38px; }
  .slide img { height: 180px; }
}

/* ===================== MEDHIRE PH PROMO ===================== */
.medhire-promo {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: center;
}
.medhire-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary-light);
  margin-bottom: 16px;
}
.medhire-badge svg { flex-shrink: 0; }
.medhire-content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.medhire-content h2 span { color: var(--primary-light); }
.medhire-sub {
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 24px;
}
.medhire-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.medhire-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #cbd5e1;
}
.medhire-feat svg { color: var(--primary-light); flex-shrink: 0; }
.btn-medhire {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  border: 1.5px solid rgba(255,255,255,.15);
  cursor: pointer;
  transition: all .3s var(--ease);
  text-decoration: none;
}
.btn-medhire:hover {
  background: linear-gradient(135deg, #0f766e, #115e59);
  box-shadow: 0 6px 24px rgba(13,148,136,.35);
  transform: translateY(-2px);
}

/* MedHire visual cards */
.medhire-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.medhire-card {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.medhire-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
}
.medhire-card-seeker { background: rgba(13,148,136,.12); border-color: rgba(13,148,136,.2); }
.medhire-card-employer { background: rgba(124,58,237,.12); border-color: rgba(124,58,237,.2); }
.mc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.mc-icon-teal { background: rgba(13,148,136,.25); color: #5eead4; }
.mc-icon-purple { background: rgba(124,58,237,.25); color: #c4b5fd; }
.medhire-card strong {
  display: block;
  color: #fff;
  font-size: 16px;
  margin-bottom: 6px;
}
.medhire-card p {
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 820px) {
  .medhire-promo { grid-template-columns: 1fr; gap: 32px; }
  .medhire-visual { flex-direction: row; }
  .medhire-card { flex: 1; }
}
@media (max-width: 640px) {
  .medhire-content h2 { font-size: 26px; }
  .medhire-sub { font-size: 14px; }
  .medhire-features { grid-template-columns: 1fr; }
  .medhire-feat { font-size: 13px; }
  .medhire-visual { flex-direction: column; }
  .medhire-card { padding: 20px; }
  .btn-medhire { width: 100%; justify-content: center; font-size: 14px; padding: 13px 24px; }
}

/* ===================== BOOKING APP SECTION ===================== */
.booking-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.booking-phone {
  width: 260px;
  background: #f1f5f9;
  border-radius: 32px;
  border: 4px solid #d1d5db;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,.04);
  position: relative;
}
.booking-phone-notch {
  width: 90px;
  height: 22px;
  background: #d1d5db;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.booking-phone img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -4px;
}
.booking-hero-text h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.25;
}
.booking-hero-text p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 20px;
}
.booking-hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.booking-hl {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-light);
}
.booking-hl svg { color: var(--primary); flex-shrink: 0; }

.booking-flow { margin-bottom: 48px; }
.booking-flow-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--ink);
}
.booking-flow-title svg { color: var(--primary); flex-shrink: 0; }

.booking-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.booking-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: relative;
}
.booking-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(13,148,136,.25);
}
.booking-step-content strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}
.booking-step-content p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.booking-reception { margin-top: 8px; }
.booking-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.booking-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.booking-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.booking-info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--primary-subtle);
  border: 1px solid var(--primary-glow);
  color: var(--primary);
  margin-bottom: 16px;
}
.booking-info-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.booking-info-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .booking-steps { grid-template-columns: repeat(2, 1fr); }
  .booking-cards-row { grid-template-columns: repeat(2, 1fr); }
  .booking-hero { gap: 32px; }
  .booking-phone { width: 220px; }
}
@media (max-width: 640px) {
  .booking-hero { grid-template-columns: 1fr; gap: 24px; justify-items: center; text-align: center; }
  .booking-phone { width: 200px; }
  .booking-hero-text h3 { font-size: 20px; }
  .booking-hero-text p { font-size: 14px; }
  .booking-hero-highlights { align-items: center; }
  .booking-steps { grid-template-columns: 1fr; gap: 12px; }
  .booking-cards-row { grid-template-columns: 1fr; gap: 12px; }
  .booking-step { padding: 20px 18px; }
  .booking-info-card { padding: 22px 18px; }
  .booking-flow-title { font-size: 18px; justify-content: center; }
  .booking-flow { margin-bottom: 36px; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12,18,34,.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
  animation: fadeIn .2s ease;
}
.lightbox[aria-hidden="false"] { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 1100px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0c1424;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  border-radius: 10px;
  padding: 8px;
  cursor: pointer;
  transition: background .2s;
  display: flex;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-inner img { width: 100%; height: auto; }

/* ===================== WORKFLOW ===================== */
.workflow-track {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.wf-line {
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-glow), var(--primary), var(--primary-glow));
  border-radius: 2px;
}
.wf-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.wf-dot {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  margin: 0 auto 16px;
  box-shadow: 0 0 0 6px var(--surface), 0 0 20px rgba(13,148,136,.3);
}
.wf-step h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.wf-step p { color: var(--muted); font-size: 13px; max-width: 180px; margin: 0 auto; }

/* ===================== SECURITY (dark) ===================== */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.security-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: background .3s;
}
.security-card:hover { background: rgba(255,255,255,.07); }
.security-icon {
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: rgba(13,148,136,.15);
  border: 1px solid rgba(13,148,136,.25);
  color: var(--primary-light);
  margin: 0 auto 18px;
}
.security-card h3 { color: #fff; font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.security-card p { color: #94a3b8; font-size: 14px; line-height: 1.65; }

/* ===================== TESTIMONIALS ===================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--primary-glow);
  line-height: 1;
  margin-bottom: -10px;
}
.testimonial-text { color: var(--ink-light); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-subtle);
  border: 1px solid var(--primary-glow);
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonial-author strong { display: block; font-size: 14px; }
.testimonial-author span { font-size: 12px; color: var(--muted); }

/* ===================== PRICING ===================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  position: relative;
}
.badge-top {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 12px;
}
.pricing-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.price-amt {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  margin: 14px 0 20px;
}
.price-amt span { font-size: 14px; color: var(--muted); font-weight: 500; }
.pricing-card ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; text-align: left; }
.pricing-card li {
  color: var(--muted);
  font-size: 14px;
  padding-left: 22px;
  position: relative;
}
.pricing-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

/* ===================== FAQ ===================== */
.faq {
  max-width: 740px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-alt);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .3s;
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  color: var(--muted);
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item p { padding: 0 22px 18px; color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ===================== CONTACT ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.contact-sub { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 24px; }
.contact-sub strong { color: var(--ink); }
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-mini {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.contact-mini h4 { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.contact-mini li {
  color: var(--muted);
  font-size: 13px;
  padding: 3px 0 3px 18px;
  position: relative;
}
.contact-mini li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  opacity: .6;
}

/* Form */
.form-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
.form-label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-light);
  margin-bottom: 6px;
}
.form-card label {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.form-card input, .form-card textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border-strong);
  border-radius: 11px;
  font: inherit;
  font-size: 14px;
  background: var(--surface);
  transition: border-color .2s, box-shadow .2s;
}
.form-card input:focus, .form-card textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-note { margin-top: 12px; color: var(--muted); font-size: 13px; text-align: center; }
.form-disclaimer { font-size: 11px; color: var(--subtle); margin-top: 8px; text-align: center; }

/* ===================== FOOTER ===================== */
.footer {
  background: #0c1424;
  color: #e2e8f0;
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.footer-brand { margin-bottom: 14px; }
.footer .brand-title { color: #fff; }
.footer .brand-tag { color: rgba(255,255,255,.5); }
.footer .brand-logo { height: 36px; }
.footer-copy { color: rgba(255,255,255,.45); font-size: 13px; }
.footer-product { color: rgba(255,255,255,.35); font-size: 12px; margin-top: 4px; }
.footer-right {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-right a {
  color: rgba(255,255,255,.6);
  font-weight: 500;
  font-size: 14px;
  transition: color .2s;
}
.footer-right a:hover { color: #fff; }

/* ===================== FLOATING CTA ===================== */
.float-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 28px rgba(13,148,136,.35);
  transition: all .3s var(--ease);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  z-index: 90;
}
.float-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float-cta:hover {
  background: var(--primary-dark);
  box-shadow: 0 12px 36px rgba(13,148,136,.45);
  transform: translateY(-2px);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .cards-3, .features-mega,
  .pricing-grid, .security-grid, .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .workflow-track { grid-template-columns: repeat(2,1fr); gap: 28px 16px; }
  .wf-line { display: none; }
}

@media (max-width: 820px) {
  .container { width: calc(100% - 32px); }
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 65px;
    left: 12px;
    right: 12px;
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: var(--shadow-lg);
    gap: 4px;
    z-index: 200;
  }
  .nav-toggle[aria-expanded="true"] + .nav-menu { display: flex; }
  .nav-menu a { padding: 12px 14px; font-size: 15px; border-radius: 10px; }
  .nav-menu .btn { text-align: center; margin-top: 4px; }
  .brand-tag { display: none; }
  .brand-logo { height: 36px; }
  .brand-title { font-size: 18px; }

  /* Hero mobile */
  .hero { padding: 48px 0 36px; }
  .hero h1 { font-size: clamp(30px, 7vw, 42px); margin-bottom: 14px; }
  .hero-sub { font-size: 15px; line-height: 1.65; }
  .hero-card { margin: 0 -4px; }

  /* Section heads */
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: clamp(24px, 5vw, 32px); }
  .section-head p { font-size: 15px; }

  /* Features grid to 1 col on smaller tablets */
  .features-mega { grid-template-columns: 1fr; gap: 14px; }
  .feat-card { padding: 24px 20px; }
  .feat-card h3 { font-size: 16px; }
  .feat-card p { font-size: 13px; }
}

@media (max-width: 640px) {
  .container { width: calc(100% - 24px); }

  /* Sections */
  .section { padding: 52px 0; }
  .section-dark { padding: 52px 0; }
  .hero { padding: 36px 0 28px; }

  /* Hero */
  .hero h1 { font-size: 28px; line-height: 1.12; }
  .hero-sub { font-size: 14px; line-height: 1.6; }
  .pill { font-size: 12px; padding: 6px 12px; margin-bottom: 14px; }
  .hero-highlights { gap: 8px; margin-top: 18px; }
  .hero-hl { font-size: 13px; gap: 8px; }
  .hero-hl svg { width: 16px; height: 16px; }
  .hero-cta { gap: 10px; margin-top: 22px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .btn-lg { padding: 13px 22px; font-size: 14px; }

  /* Hero preview card */
  .hero-card { margin: 0 -6px; border-radius: 16px; }
  .hero-card-body { padding: 14px; }
  .mini-row { gap: 8px; }
  .mini-kpi { padding: 10px; }
  .kpi-value { font-size: 16px; }
  .kpi-value span { font-size: 12px; }
  .mini-panel { margin-top: 10px; padding: 10px; }
  .chip { font-size: 11px; padding: 5px 10px; }
  .mini-table { margin-top: 10px; }
  .mini-table-row { padding: 8px 10px; font-size: 12px; }

  /* Strip */
  .strip { padding: 12px 0; }
  .strip-inner { gap: 6px; }
  .strip-item { padding: 6px 10px; font-size: 11px; gap: 5px; }
  .strip-item svg { width: 13px; height: 13px; }

  /* Grids to single column */
  .cards-3, .features-mega,
  .pricing-grid, .security-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .features-mega { gap: 12px; }
  .feat-card { padding: 20px 18px; }
  .feat-icon { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 12px; }
  .feat-icon svg { width: 24px; height: 24px; }
  .feat-badge { font-size: 10px; padding: 3px 8px; margin-bottom: 8px; }
  .feat-card h3 { font-size: 16px; margin-bottom: 6px; }
  .feat-card p { font-size: 13px; line-height: 1.6; }

  /* Workflow */
  .workflow-track { grid-template-columns: 1fr; gap: 16px; }
  .wf-step { padding: 20px; }
  .wf-dot { width: 36px; height: 36px; font-size: 15px; }
  .wf-step h3 { font-size: 16px; }
  .wf-step p { font-size: 13px; }

  /* Security cards */
  .security-grid { gap: 12px; }
  .security-card { padding: 22px 18px; }
  .security-card h3 { font-size: 16px; }
  .security-card p { font-size: 13px; }

  /* Testimonials */
  .testimonials-grid { gap: 12px; }
  .testimonial-card { padding: 22px 18px; }
  .testimonial-text { font-size: 14px; }
  .testimonial-quote { font-size: 48px; }

  /* Pricing */
  .pricing-grid { gap: 12px; }
  .pricing-card { padding: 28px 20px; }
  .price-amt { font-size: clamp(28px, 6vw, 34px); }
  .pricing-card li { font-size: 13px; }

  /* FAQ */
  .faq-item summary { padding: 16px 14px; font-size: 14px; }
  .faq-item p { padding: 0 14px 16px; font-size: 13px; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-info h2 { font-size: 24px; }
  .contact-sub { font-size: 14px; }
  .contact-mini { padding: 16px; }
  .contact-mini h4 { font-size: 14px; }
  .contact-mini li { font-size: 13px; }
  .form-card { padding: 22px 18px; }
  .form-label { font-size: 13px; }
  .form-card input, .form-card textarea { font-size: 14px; padding: 11px 14px; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-right { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .footer-right a { font-size: 13px; }

  /* Floating CTA */
  .float-cta span { display: none; }
  .float-cta { padding: 14px; border-radius: 50%; }
}
