/* Theme tokens */
:root {
  --primary: #4f46e5;
  --secondary: #0f172a;
  --accent: #22d3ee;
  --muted: #475569;
  --light: #f8fafc;
  --panel: #ffffff;
  --radius: 18px;
  --shadow: 0 14px 32px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--light);
  color: var(--secondary);
  line-height: 1.6;
}

/* Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { height: 70px; width: auto; display: block; }

nav { display: flex; align-items: center; gap: 16px; }
nav a {
  text-decoration: none;
  color: var(--secondary);
  font-weight: 600;
  padding: 8px 6px;
  border-radius: 10px;
  transition: 0.2s ease;
}
nav a:hover { color: var(--primary); background: rgba(79,70,229,0.08); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { width: 24px; height: 2.5px; background: var(--secondary); border-radius: 4px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,0.16); }
.btn.primary { background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; }
.btn.secondary { background: #fff; color: var(--secondary); border: 1px solid rgba(0,0,0,0.1); box-shadow: none; }
.btn.secondary:hover { color: var(--primary); border-color: rgba(79,70,229,0.35); }

/* Hero */
.hero {
  background: linear-gradient(125deg, rgba(15,23,42,0.85), rgba(15,23,42,0.6)), url('hero.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 140px 0 120px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
  position: relative;
  overflow: hidden;
  border-radius: 0;
  width: 100%;
}
.hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(34,211,238,0.25), transparent 45%); }
.hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; display: grid; gap: 24px; padding: 0 5%; }
.hero h1 { font-size: 3rem; margin: 0; letter-spacing: -0.01em; }
.lead { max-width: 760px; font-size: 1.1rem; opacity: 0.92; margin: 0; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.12); font-weight: 700; letter-spacing: 0.01em; color: #fff; border: 1px solid rgba(255,255,255,0.25);
}

/* Layout containers */
main { max-width: 1200px; margin: 0 auto; padding: 0 5% 80px; display: flex; flex-direction: column; gap: 24px; margin-top: -40px; }
section {
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 120px;
}
section::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(135deg, rgba(79,70,229,0.06), rgba(34,211,238,0.04)); opacity: 0.7; }
section > * { position: relative; z-index: 1; }

h2 {
  margin: 0 0 12px;
  font-size: 2rem;
  text-align: left;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.subtext { margin: 0 0 32px; color: var(--muted); max-width: 900px; }

.metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin: 24px 0 12px; }
.metric { background: #f8fafc; border-radius: 14px; padding: 16px; border: 1px solid rgba(0,0,0,0.04); }
.metric .value { font-weight: 800; font-size: 1.7rem; color: var(--primary); }
.metric .label { color: var(--muted); font-weight: 600; }

.three-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.card {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(10px);
}
.card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0,0,0,0.12); border-color: rgba(79,70,229,0.18); background: rgba(255,255,255,0.75); }
.card h3 { margin: 0; font-size: 1.12rem; letter-spacing: -0.01em; }
.card p { margin: 0; color: var(--muted); }

ul { color: var(--muted); padding-left: 18px; }
li { margin-bottom: 10px; }

.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.process-step {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.process-step:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,0.1); border-color: rgba(79,70,229,0.16); }
.process-step strong { color: var(--primary); letter-spacing: 0.01em; display: block; margin-bottom: 6px; font-size: 1.02rem; }

.section-pop {
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  color: #fff;
  border: none;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.section-pop::before { display: none; }
.section-pop h2 { color: #fff; }
.section-pop h2::before { background: rgba(255,255,255,0.55); }
.section-pop .subtext,
.section-pop p,
.section-pop li { color: rgba(255,255,255,0.9); }
.section-pop .btn.secondary { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.35); }
.statement { border-radius: var(--radius); }
.statement-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; align-items: center; }
.statement-points { display: grid; gap: 10px; }
.statement-pill {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.32);
  padding: 12px 14px;
  border-radius: 14px;
  color: rgba(255,255,255,0.94);
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.section-pop .card { background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.35); color: #fff; backdrop-filter: blur(10px); }
.section-pop .card p { color: rgba(255,255,255,0.9); }

/* CTA / Contact */
.cta-band {
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  color: #fff;
  padding: 48px 36px;
  border-radius: 0;
  box-shadow: 0 20px 50px rgba(79,70,229,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  width: 100%;
}
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 18px;
  align-items: start;
}

.contact-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  align-items: stretch;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.contact-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(79,70,229,0.06), rgba(34,211,238,0.04)); opacity: 0.8; pointer-events: none; }
.contact-card:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(0,0,0,0.1); border-color: rgba(79,70,229,0.18); }
.contact-card > * { position: relative; z-index: 1; }
.contact-card .step-tag {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 10px;
  background: rgba(79,70,229,0.12); color: var(--primary); font-weight: 700; font-size: 0.95rem; font-family: inherit; border-radius: 999px;
}
.contact-card h3 { color: var(--secondary); margin: 4px 0; }
.contact-card p { color: var(--muted); margin: 0; }

.calendar { border-radius: 14px; border: 1px solid rgba(0,0,0,0.08); overflow: hidden; background: #fff; }
.calendar-header { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; background: rgba(79,70,229,0.1); font-weight: 700; color: var(--secondary); }
.calendar-controls { display: flex; gap: 8px; }
.calendar-controls button { border: 1px solid rgba(0,0,0,0.12); background: white; cursor: pointer; border-radius: 8px; padding: 6px 10px; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; padding: 12px; }
.calendar-grid div { text-align: center; font-weight: 700; color: var(--muted); }
.day { border: 1px solid rgba(0,0,0,0.1); border-radius: 10px; padding: 10px 0; cursor: pointer; font-family: "Inter", system-ui, -apple-system, sans-serif; font-weight: 700; background: white; transition: 0.2s ease; }
.day:hover { border-color: rgba(79,70,229,0.5); }
.day.disabled { cursor: not-allowed; opacity: 0.3; border-style: dashed; }
.day.selected { background: linear-gradient(135deg, var(--primary), var(--accent)); color: white; font-family: "Inter", system-ui, -apple-system, sans-serif; font-weight: 700; border: none; box-shadow: 0 10px 24px rgba(79,70,229,0.35); }

.time-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; }
.time-slot { border: 1px solid rgba(0,0,0,0.1); border-radius: 12px; padding: 10px 12px; cursor: pointer; font-family: "Inter", system-ui, -apple-system, sans-serif; font-weight: 700; background: #fff; text-align: center; transition: 0.2s ease; }
.time-slot:hover { border-color: rgba(79,70,229,0.5); }
.time-slot.selected { background: linear-gradient(135deg, var(--primary), var(--accent)); color: white; font-family: "Inter", system-ui, -apple-system, sans-serif; font-weight: 700; border: none; box-shadow: 0 10px 24px rgba(79,70,229,0.35); }
.time-slot.disabled { cursor: not-allowed; opacity: 0.35; border-style: dashed; }

.form-row { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.field { display: flex; flex-direction: column; width: 100%; gap: 6px; }
label { font-weight: 700; color: var(--secondary); }
input, textarea { border-radius: 12px; border: 1px solid rgba(0,0,0,0.1); padding: 12px; font-family: inherit; font-size: 1rem; background: #fff; }
textarea { resize: vertical; min-height: 100px; }

.selection-summary { font-weight: 700; color: var(--secondary); }
.muted { color: var(--muted); }
.hidden { display: none; }
.step-actions { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: 12px; flex-wrap: wrap; width: 100%; }

.footer { text-align: center; padding: 24px 5% 60px; color: var(--muted); }

/* Responsive */
@media (max-width: 900px) {
  .hero h1 { font-size: 2.4rem; }
  .btn { width: 100%; text-align: center; }
}

@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 64px;
    right: 5%;
    width: 90%;
    background: rgba(255,255,255,0.97);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    flex-direction: column;
    padding: 14px;
  }
  nav.active { display: flex; }
  nav a { width: 100%; padding: 10px 6px; }
  .menu-toggle { display: flex; }
  .header-inner { padding: 12px 5%; }
  main { margin-top: -30px; padding: 0 4% 70px; }
  section { padding: 32px 24px; }
  .cta-inner { grid-template-columns: 1fr; gap: 12px; }
  .contact-grid { grid-template-columns: 1fr; gap: 12px; padding: 0; }
  .contact-card { min-height: 0; padding: 16px; }
  .step-actions { flex-direction: column; align-items: stretch; }
  .time-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
  .calendar-grid { padding: 10px; gap: 4px; }
  .calendar-controls button { padding: 6px 8px; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 0 80px; }
  .hero h1 { font-size: 1.9rem; }
  .card { padding: 18px; }
  .contact-card { padding: 14px; }
  .time-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
  .step-tag { font-size: 0.9rem; }
}
