@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

:root {
  --midnight: #0B1F3A;
  --midnight-light: #132743;
  --amber: #F59E0B;
  --amber-light: #FCD34D;
  --amber-dim: rgba(245, 158, 11, 0.12);
  --warm-white: #F8F6F1;
  --warm-white-alt: #F2EFE9;
  --text-dark: #0B1F3A;
  --text-body: #3D4F63;
  --text-muted: #7A8BA3;
  --border: rgba(11, 31, 58, 0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  line-height: 1.15;
}

/* ─── LAYOUT ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--midnight);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 0;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.hero-label span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero h1 em {
  font-style: italic;
  color: var(--amber);
}

.hero-lede {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 46ch;
  margin-bottom: 2.5rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.hero-pill svg {
  width: 14px;
  height: 14px;
  color: var(--amber);
}

/* ─── HERO VISUAL ─── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.call-widget {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2rem;
  width: 100%;
  max-width: 380px;
  backdrop-filter: blur(20px);
  position: relative;
}

.call-widget::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(245,158,11,0.3), transparent 50%);
  z-index: -1;
}

.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.widget-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

.ring-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse-ring 1.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.widget-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.call-number {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.call-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.call-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.call-meta-row:last-child { border-bottom: none; }

.call-meta-row span:last-child {
  color: var(--amber);
  font-weight: 500;
}

.booked-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(245,158,11,0.15);
  color: var(--amber);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 1rem;
}

.booked-badge svg { width: 12px; height: 12px; }

.widget-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.widget-stat {
  text-align: center;
}

.widget-stat-value {
  font-family: 'Instrument Serif', serif;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
}

.widget-stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── RECEPTION SECTION ─── */
.reception {
  background: var(--warm-white);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.section-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subheading {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 55ch;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.reception-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.reception-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reception-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(11,31,58,0.08);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--amber-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--amber);
}

.reception-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.reception-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── WORKFLOW ─── */
.workflow {
  background: var(--midnight);
  color: #fff;
}

.workflow .section-heading { color: #fff; }
.workflow .section-subheading { color: rgba(255,255,255,0.6); }
.workflow .section-label { color: var(--amber); }

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 4rem;
}

.workflow-steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 1px;
  background: linear-gradient(to right, var(--amber), rgba(245,158,11,0.3));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  color: var(--midnight);
  font-weight: 400;
}

.step h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 28ch;
  margin: 0 auto;
}

/* ─── ROI ─── */
.roi {
  background: var(--warm-white-alt);
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.roi-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.roi-value {
  font-family: 'Instrument Serif', serif;
  font-size: 3rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.roi-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.roi-detail {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  opacity: 0.7;
}

/* ─── PRICING ─── */
.pricing {
  background: var(--warm-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px var(--amber);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 0;
  right: 1.5rem;
  background: var(--amber);
  color: var(--midnight);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-family: 'Instrument Serif', serif;
  font-size: 2.5rem;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-card .price span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-card .price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-body);
}

.pricing-features li svg {
  width: 14px;
  height: 14px;
  color: var(--amber);
  flex-shrink: 0;
}

/* ─── CLOSING ─── */
.closing {
  background: var(--midnight);
  color: #fff;
  text-align: center;
  padding: 8rem 0;
}

.closing h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: #fff;
  max-width: 18ch;
  margin: 0 auto 1.5rem;
  line-height: 1.1;
}

.closing h2 em {
  font-style: italic;
  color: var(--amber);
}

.closing p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  max-width: 45ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── FOOTER ─── */
footer {
  background: #060f1a;
  color: rgba(255,255,255,0.35);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.8rem;
}

footer a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

/* ─── SITE HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11,31,58,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.site-demo-link {
  color: var(--amber);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: opacity 0.15s;
}
.site-demo-link:hover { opacity: 0.7; }

.hero { padding-top: 58px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 0;
  }

  .hero-visual { order: -1; }

  .call-widget { max-width: 320px; }

  .reception-grid,
  .workflow-steps,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .roi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-steps::before { display: none; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  section { padding: 4rem 0; }
  .roi-grid { grid-template-columns: 1fr; }
}