/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --surface: #f5f6f8;
  --card: #ffffff;
  --border: #e5e7eb;
  --text: #111827;
  --muted: #6b7280;
  --accent: #111827;
  --accent-hover: #374151;
  --radius: 14px;
  --shadow: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 28px rgba(0,0,0,0.11);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

@media (max-width: 700px) {
  body { padding-bottom: 82px; }
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── STICKY MOBILE BAR ── */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 0.65rem 1rem;
  gap: 0.65rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
  transition: opacity 0.3s;
}

@media (max-width: 700px) {
  .sticky-bar { display: flex; }
}

.sticky-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.8rem;
  border-radius: 10px;
  text-decoration: none;
}

.sticky-book {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.8rem;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  text-decoration: none;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.25rem;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--accent);
  color: #fff;
  padding: 0.45rem 0.95rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-hover); }

@media (max-width: 600px) {
  .nav-link { display: none; }
  .nav-cta { font-size: 0.82rem; padding: 0.42rem 0.75rem; }
}

/* ── HERO ── */
.hero {
  padding: 5.5rem 1.25rem 4.5rem;
  text-align: center;
  background: var(--bg);
}

.hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.hero-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--muted);
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--text); background: var(--surface); }

.btn-lg { font-size: 1.05rem; padding: 1rem 2.1rem; }

/* ── SECTIONS ── */
.section { padding: 5rem 0; }
.bg-light { background: var(--surface); }

.section h2 {
  font-size: clamp(1.65rem, 4vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.price-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.price-card--featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.price-card--urgent { border-color: #f59e0b; }

.card-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.22rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 0.85rem;
  align-self: flex-start;
}

.card-badge--urgent { background: #f59e0b; color: #000; }

.price-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.price-amount {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  margin: 0.4rem 0 0.6rem;
  letter-spacing: -0.04em;
  color: var(--text);
}

.price-desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.price-duration {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.price-features {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}

.price-features li {
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.price-features li::before {
  content: "✓";
  color: #16a34a;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.btn-book {
  display: block;
  text-align: center;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.95rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-top: auto;
}
.btn-book:hover { background: var(--accent-hover); transform: translateY(-1px); }

.btn-book--urgent { background: #f59e0b; color: #000; }
.btn-book--urgent:hover { background: #d97706; color: #000; transform: translateY(-1px); }

.card-policy {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.65rem;
  line-height: 1.5;
}

.policy-box {
  background: #fff8f0;
  border: 1px solid #fcd9a0;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.policy-box p {
  font-size: 0.85rem;
  color: #92400e;
  line-height: 1.65;
}

/* ── URGENCY STRIP ── */
.urgency-strip {
  background: #fffbeb;
  border-top: 1px solid #fde68a;
  border-bottom: 1px solid #fde68a;
  padding: 1.35rem 0;
}

.urgency-strip p {
  font-size: 0.97rem;
  color: #78350f;
  text-align: center;
  line-height: 1.65;
}

/* ── BOOKING FORM ── */
.form-container { max-width: 580px; }

.form-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
}

.form-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--border);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-step--active .step-num {
  background: var(--accent);
  color: #fff;
}

.step-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.form-step--active .step-label { color: var(--text); }

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 0.75rem;
}

.book-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 0.25rem;
}

.form-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
  margin-top: 0.25rem;
}

.book-form > .form-section-label:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.optional-label {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.req { color: #dc2626; }

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 1rem;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group input[type="date"] { cursor: pointer; }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--text); }

.form-group input.error,
.form-group textarea.error,
.form-group select.error { border-color: #dc2626; }

.form-group textarea { resize: vertical; min-height: 90px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}

.field-helper {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: -0.5rem;
}

.scheduling-fields {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.sameday-note-text {
  font-size: 0.9rem;
  color: #78350f;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  line-height: 1.55;
}

.form-checkbox-group { padding: 0.25rem 0; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  cursor: pointer;
  accent-color: var(--accent);
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

.checkbox-label.error input[type="checkbox"] { outline: 2px solid #dc2626; }

.form-policy-reminder {
  background: #fff8f0;
  border: 1px solid #fcd9a0;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-policy-reminder p {
  font-size: 0.8rem;
  color: #92400e;
  line-height: 1.6;
}

.form-error-msg {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: #dc2626;
  line-height: 1.55;
}
.form-error-msg.visible { display: block; }

.btn-submit {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1.1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
  transition: background 0.2s, opacity 0.2s;
}
.btn-submit:hover { background: var(--accent-hover); }
.btn-submit:disabled { opacity: 0.55; cursor: default; }
.btn-submit.loading { opacity: 0.7; pointer-events: none; }
.btn-submit.loading::after { content: " ..."; }

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.55;
}

.form-redirecting {
  display: none;
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem;
  gap: 0.6rem;
}
.form-redirecting.visible { display: flex; }

.redirecting-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }

.form-redirecting strong {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
}

.form-redirecting p { color: var(--muted); font-size: 0.95rem; }

/* ── TRUST ── */
.trust-section { padding: 3.5rem 0; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.trust-icon { font-size: 2rem; display: block; margin-bottom: 0.6rem; }

.trust-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--text);
}

.trust-item span { font-size: 0.85rem; color: var(--muted); }

@media (max-width: 560px) {
  .trust-grid { grid-template-columns: 1fr; gap: 1rem; text-align: left; }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem 1.25rem;
  }
  .trust-icon { font-size: 1.5rem; margin-bottom: 0; flex-shrink: 0; }
}

/* ── FOOTER ── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: 2.5rem 1.25rem;
  text-align: center;
}

.footer-inner { max-width: 1040px; margin: 0 auto; }

.footer-inner > strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-policy {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.footer-policy p { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.65; }

.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }

.footer-seo {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.2);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
}
.footer-seo strong { color: rgba(255,255,255,0.2); font-weight: 500; }

/* ── MOBILE ── */
@media (max-width: 700px) {
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .section { padding: 3.5rem 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { padding: 1.6rem; }
  .trust-section { padding: 2.5rem 1.25rem; }
}
