/* =========================================================
   Happy Paws Portugal — Mockup styles
   Pre-build static review. To be reimplemented in Tailwind during M1.
   ========================================================= */

:root {
  /* Brand palette */
  --teal: #0EA5A5;
  --teal-dark: #0B7E7E;
  --coral: #FF7A59;
  --coral-dark: #E85F3D;
  --sun: #FFD66B;
  --cream: #FFF8EE;
  --sand: #FBEFD9;
  --navy: #102A43;
  --slate: #486581;
  --muted: #8A99AE;
  --white: #FFFFFF;

  /* Type */
  --font-sans: "Poppins", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Poppins", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-w: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(16, 42, 67, 0.06);
  --shadow-md: 0 8px 24px rgba(16, 42, 67, 0.10);
  --shadow-lg: 0 24px 48px rgba(16, 42, 67, 0.16);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { color: var(--coral-dark); }
button { font: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(255, 122, 89, 0.35);
}
.btn-primary:hover {
  background: var(--coral-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(255, 122, 89, 0.45);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-ghost {
  color: var(--navy);
  padding: 10px 18px;
}
.btn-ghost:hover { color: var(--coral-dark); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 238, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(16, 42, 67, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--navy);
}
.brand-mark {
  width: 72px;
  height: 72px;
  display: block;
  object-fit: contain;
}
footer .brand-mark { width: 128px; height: 128px; margin-bottom: 8px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--coral-dark); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  display: inline-flex;
  background: rgba(16, 42, 67, 0.06);
  border-radius: 999px;
  padding: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}
.lang-toggle a {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--slate);
}
.lang-toggle a.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.menu-btn { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 214, 107, 0.35), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(14, 165, 165, 0.25), transparent 55%),
    var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--white);
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--coral); }
.hero p.lead {
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  font-size: 0.9rem;
  color: var(--slate);
  flex-wrap: wrap;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-trust .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
}

.hero-image {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 420px;
  background: transparent;
  display: grid;
  place-items: center;
}
.hero-image > img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 36px rgba(16, 42, 67, 0.18));
}

.hero-badge {
  position: absolute;
  background: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
}
.hero-badge.top { top: 24px; left: -20px; }
.hero-badge.bot { bottom: 30px; right: -20px; }
.hero-badge .emoji {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--sand);
  display: grid; place-items: center;
  font-size: 1.1rem;
}

/* ---------- Section base ---------- */
section { padding: 90px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head .eyebrow {
  display: inline-block;
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-head p { color: var(--slate); font-size: 1.05rem; }

/* ---------- Services ---------- */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(16, 42, 67, 0.04);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--teal);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.service-card:nth-child(2) .service-icon { background: var(--coral); }
.service-card:nth-child(3) .service-icon { background: var(--sun); color: var(--navy); }
.service-card:nth-child(4) .service-icon { background: var(--navy); }

.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--slate); font-size: 0.95rem; margin-bottom: 16px; }
.service-card .price {
  display: inline-block;
  font-weight: 700;
  color: var(--teal-dark);
  font-size: 1rem;
}

/* ---------- About ---------- */
.about { background: var(--sand); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  position: relative;
  aspect-ratio: 5 / 6;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #FFD66B, #0EA5A5);
  box-shadow: var(--shadow-lg);
}
.about-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}
.about li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--navy);
}
.about li::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ---------- Gallery ---------- */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease;
  background: linear-gradient(135deg, #0EA5A5, #FFD66B);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item span {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(16, 42, 67, 0.78);
  color: var(--white);
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 999px;
  z-index: 1;
}
.gallery-item.tall { grid-row: span 2; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--cream); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial .stars { color: var(--sun); font-size: 1.05rem; letter-spacing: 0.1em; }
.testimonial blockquote {
  margin: 0;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.65;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--slate);
  font-weight: 600;
}
.testimonial cite::before { content: "— "; }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 214, 107, 0.25), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 122, 89, 0.25), transparent 40%);
  pointer-events: none;
}
.cta-strip .container { position: relative; }
.cta-strip h2 { color: var(--white); margin-bottom: 12px; }
.cta-strip p { color: rgba(255, 255, 255, 0.9); margin-bottom: 28px; font-size: 1.1rem; }
.cta-strip .btn-primary { background: var(--coral); }
.cta-strip .btn-secondary { background: transparent; color: var(--white); border-color: var(--white); }
.cta-strip .btn-secondary:hover { background: var(--white); color: var(--navy); }

/* ---------- Footer ---------- */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 24px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
footer a { color: rgba(255, 255, 255, 0.75); }
footer a:hover { color: var(--sun); }
footer .brand { color: var(--white); margin-bottom: 14px; }
footer p { color: rgba(255, 255, 255, 0.65); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { aspect-ratio: 4 / 3; }
  .hero-badge.top, .hero-badge.bot { left: 16px; right: auto; }
  .hero-badge.bot { bottom: 16px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .hero { padding: 56px 0 72px; }
  .nav-links { display: none; }
  .menu-btn {
    display: grid;
    place-items: center;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(16, 42, 67, 0.06);
  }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item.tall { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-actions .btn-primary { display: none; }
}

/* =========================================================
   Booking page
   ========================================================= */
.booking-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 214, 107, 0.4), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(14, 165, 165, 0.25), transparent 55%),
    var(--cream);
  padding: 64px 0 32px;
  text-align: center;
}
.booking-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 8px; }
.booking-hero p { color: var(--slate); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

.booking-section { padding: 40px 0 100px; background: var(--cream); }

.steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  list-style: none;
  margin: 0 auto 40px;
  padding: 0;
  max-width: 720px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: rgba(16, 42, 67, 0.1);
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  flex: 1;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(16, 42, 67, 0.12);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.step.active { color: var(--navy); }
.step.active .step-num {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(255, 122, 89, 0.35);
}
.step.done .step-num {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.step-panel {
  display: none;
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.step-panel.active { display: block; animation: fadeIn 0.25s ease; }
.step-panel h2 { text-align: center; margin-bottom: 28px; font-size: 1.6rem; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.option-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}
.option { cursor: pointer; }
.option input { position: absolute; opacity: 0; pointer-events: none; }
.option .opt-card {
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all 0.2s ease;
  height: 100%;
}
.option:hover .opt-card { background: var(--sand); }
.option input:checked + .opt-card {
  border-color: var(--teal);
  background: rgba(14, 165, 165, 0.08);
  box-shadow: 0 4px 12px rgba(14, 165, 165, 0.12);
}
.opt-icon {
  width: 44px; height: 44px;
  background: var(--teal); color: var(--white);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.option:nth-child(2) .opt-icon { background: var(--coral); }
.option:nth-child(3) .opt-icon { background: var(--sun); color: var(--navy); }
.option:nth-child(4) .opt-icon { background: var(--navy); }
.opt-card h3 { margin: 0 0 4px; font-size: 1rem; }
.opt-card p { margin: 0 0 8px; font-size: 0.85rem; color: var(--slate); }
.opt-price { color: var(--teal-dark); font-weight: 700; font-size: 0.9rem; }

/* Calendar */
.calendar { margin-bottom: 24px; }
.cal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.cal-head h3 { margin: 0; font-size: 1rem; font-weight: 600; }
.cal-nav { display: flex; gap: 8px; }
.cal-nav button {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--cream);
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 600;
  transition: background 0.15s ease;
}
.cal-nav button:hover { background: var(--sand); }
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-dow {
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 700;
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cal-day {
  aspect-ratio: 1;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--cream);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  border: 2px solid transparent;
  color: var(--navy);
}
.cal-day:hover { background: var(--sand); }
.cal-day.muted {
  color: rgba(16, 42, 67, 0.25);
  cursor: default;
  background: transparent;
}
.cal-day.muted:hover { background: transparent; }
.cal-day.selected {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
  box-shadow: 0 4px 12px rgba(255, 122, 89, 0.4);
}

.time-slots {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.time-slot {
  padding: 14px 10px;
  border-radius: 12px;
  background: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: all 0.15s ease;
  color: var(--navy);
}
.time-slot:hover { background: var(--sand); }
.time-slot.selected {
  background: var(--white);
  border-color: var(--teal);
  color: var(--teal-dark);
  box-shadow: 0 4px 12px rgba(14, 165, 165, 0.18);
}

/* Forms */
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: span 2; }
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(16, 42, 67, 0.12);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--navy);
  transition: border-color 0.15s ease, background 0.15s ease;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(14, 165, 165, 0.12);
}
.field textarea { resize: vertical; min-height: 90px; font-family: inherit; }
.field-checkbox {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--navy);
  padding: 10px 0;
}
.field-checkbox input { width: 18px; height: 18px; accent-color: var(--teal); }

/* Summary */
.summary {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 28px;
}
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(16, 42, 67, 0.06);
  font-size: 0.95rem;
  gap: 16px;
}
.summary-row:last-child { border-bottom: 0; }
.summary-row span { color: var(--slate); }
.summary-row strong { color: var(--navy); text-align: right; }
.summary-row.total {
  font-size: 1.2rem;
  padding-top: 18px;
  margin-top: 8px;
  border-top: 2px solid rgba(16, 42, 67, 0.12);
  border-bottom: 0;
}
.summary-row.total strong { color: var(--teal-dark); }

.payment-options { margin-bottom: 0; }
.payment-options .opt-card { padding: 16px; display: flex; align-items: center; gap: 12px; }
.pay-logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--white);
  display: grid; place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
  border: 1px solid rgba(16, 42, 67, 0.08);
}
.pay-logo.mbway { background: linear-gradient(135deg, #E03A3E, #B82C2F); color: var(--white); }
.pay-logo.card  { background: linear-gradient(135deg, #1A1F71, #2E77BC); color: var(--white); font-size: 0.7rem; }
.pay-logo.mb    { background: linear-gradient(135deg, #18345C, #2E5B9C); color: var(--white); }
.payment-options strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.payment-options p { margin: 0; font-size: 0.82rem; color: var(--slate); }

.step-nav {
  display: flex; justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
}
.step-nav .btn { flex: 1; justify-content: center; max-width: 220px; }
.step-nav .back-btn { max-width: 120px; }

.success-card {
  text-align: center;
  padding: 32px 0 16px;
}
.success-icon {
  width: 96px; height: 96px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 2.6rem;
  box-shadow: 0 16px 36px rgba(14, 165, 165, 0.4);
  animation: pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pop {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.success-card h2 { margin-bottom: 12px; }
.success-card p { color: var(--slate); max-width: 420px; margin: 0 auto 24px; }

@media (max-width: 720px) {
  .step-panel { padding: 28px 20px; }
  .option-grid, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
  .step span:not(.step-num) { display: none; }
  .steps::before { left: 12%; right: 12%; }
}
