/*
Theme Name: BizLogic Pro Theme
Theme URI: https://bizlogicpro.com
Author: Antigravity IDE
Description: Custom WordPress Theme generated from static HTML. Includes Settings Page for Webhooks.
Version: 1.0.1
Text Domain: bizlogic
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Caveat:wght@400;500;600&display=swap');

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  --orange:        #F05435;
  --orange-light:  #FFF1EE;
  --orange-hover:  #D94527;
  --carbon:        #111111;
  --slate:         #4A4A4D;
  --slate-light:   #88888E;
  --border:        #E5E5E8;
  --canvas:        #FAFAFC;
  --white:         #FFFFFF;
  --emerald:       #10B981;

  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-hand: 'Caveat', cursive;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background-color: var(--canvas);
  color: var(--carbon);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--carbon);
}

.h1 {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.18;
}

.h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* Dual-weight headline: intro words gray, focal words black */
.headline-muted  { font-weight: 500; color: var(--slate-light); }
.headline-bold   { font-weight: 800; color: var(--carbon); }

.body-lg  { font-size: 1rem;   font-weight: 400; color: var(--slate); line-height: 1.65; }
.body-sm  { font-size: 0.875rem; color: var(--slate); line-height: 1.55; }
.caption  { font-size: 0.75rem; font-weight: 600; color: var(--slate-light); letter-spacing: 0.04em; text-transform: uppercase; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.btn-dark {
  background: var(--carbon) !important;
  color: var(--white) !important;
}
.btn-dark:hover {
  background: var(--orange);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.btn-orange {
  background: var(--orange) !important;
  color: var(--white) !important;
}
.btn-orange:hover {
  background: var(--orange-hover);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -6px rgba(240,84,53,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--carbon);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--carbon);
  color: var(--carbon) !important;
  background: rgba(0,0,0,0.03);
}

.btn-white {
  background: var(--white);
  color: var(--carbon);
}
.btn-white:hover {
  background: var(--orange-light);
  color: var(--orange) !important;
}

/* ── Cards (Squircles) ───────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px -8px rgba(0,0,0,0.07);
}

.card-dark {
  background: var(--carbon);
  color: var(--white);
  border: none;
}

.card-orange {
  background: var(--orange);
  color: var(--white);
  border: none;
}

.card-canvas {
  background: var(--canvas);
  border: 1px solid var(--border);
}

/* ── Status Pill ─────────────────────────────────────────── */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 9999px;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--carbon);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  position: relative;
  flex-shrink: 0;
}
.status-dot::after {
  content: '';
  position: absolute;
  top: -3px; left: -3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(16,185,129,0.2);
  animation: pulse-ring 1.8s ease-out infinite;
}

@keyframes pulse-ring {
  0%   { opacity: 1; transform: scale(0.7); }
  80%, 100% { opacity: 0; transform: scale(1.4); }
}

/* ── Pill Tag ────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--orange-light);
  color: var(--orange);
}

.tag-dark {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

/* ── Blueprint Grid Marks ────────────────────────────────── */
.blueprint-mark {
  position: absolute;
  color: var(--border);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(250,250,252,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-wrap svg, .logo-wrap img { height: 32px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  padding: 7px 14px;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  transition: all 0.18s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--carbon);
  background: rgba(0,0,0,0.05);
}

/* Dev nav bar */
.dev-bar {
  background: var(--carbon);
  padding: 7px 0;
  font-size: 0.78rem;
}
.dev-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.dev-label { color: var(--orange); font-weight: 700; font-size: 0.78rem; }
.dev-tabs  { display: flex; gap: 6px; flex-wrap: wrap; }
.dev-tab {
  padding: 3px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.18s ease;
}
.dev-tab:hover, .dev-tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* ── Hero ────────────────────────────────────────────────── */
.hero { padding: 80px 0 60px; }

.hero-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

/* ── Grid Layouts ────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ── Portfolio / Work Cards ──────────────────────────────── */
.work-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -10px rgba(0,0,0,0.08);
}

.work-img {
  width: 100% !important;
  height: 240px !important;
  object-fit: cover !important;
  object-position: top !important;
  display: block;
}

.work-body { padding: 24px; }

/* ── Stat / Number Box ───────────────────────────────────── */
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
}
.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -6px rgba(0,0,0,0.06);
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 3px 3px 0 0;
}
.stat-number {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.45;
}

/* ── Tech Logo Grid ──────────────────────────────────────── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
}
.tech-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.18s ease;
}
.tech-item:hover {
  border-color: var(--orange);
  background: var(--orange-light);
}
.tech-item img { max-width: 36px; max-height: 36px; object-fit: contain; }
.tech-item span { font-size: 0.7rem; font-weight: 600; color: var(--slate); text-align: center; }

/* ── Forms ───────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--carbon);
  margin-bottom: 7px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  color: var(--carbon);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240,84,53,0.12);
}
.form-control::placeholder { color: var(--slate-light); }
textarea.form-control { min-height: 110px; resize: vertical; border-radius: 12px; }
select.form-control { appearance: none; 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='%234A4A4D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

/* Dark form controls (for dark sections) */
.dark-section .form-control {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}
.dark-section .form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240,84,53,0.25);
}
.dark-section .form-control::placeholder { color: rgba(255,255,255,0.35); }
.dark-section .form-label { color: rgba(255,255,255,0.75); }

/* Radio option rows */
.radio-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.18s ease;
  background: var(--white);
  margin-bottom: 10px;
}
.radio-item:hover, .radio-item:has(input:checked) {
  border-color: var(--orange);
  background: var(--orange-light);
}
.radio-item input[type="radio"] { accent-color: var(--orange); width: 16px; height: 16px; }
.radio-label { font-size: 0.92rem; font-weight: 500; color: var(--carbon); }

/* ── Dark Section (Footer / Contact) ─────────────────────── */
.dark-section {
  background: var(--carbon);
  color: var(--white);
}
.dark-section h2, .dark-section h3, .dark-section h4, .dark-section p {
  color: var(--white);
}

/* ── Quiz Component ──────────────────────────────────────── */
.quiz-progress-bar {
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 36px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 4px;
  width: 16.67%;
  transition: width 0.3s ease;
}
.quiz-step { display: none; }
.quiz-step.active { display: block; }

.quiz-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  cursor: pointer;
  background: var(--white);
  transition: all 0.18s ease;
}
.quiz-option:hover, .quiz-option.selected {
  border-color: var(--orange);
  background: var(--orange-light);
}
.quiz-option-text { font-size: 0.98rem; font-weight: 500; color: var(--carbon); }
.quiz-pts { font-size: 0.75rem; font-weight: 600; color: var(--orange); }

/* ── Offer Table ─────────────────────────────────────────── */
.offer-table { width: 100%; border-collapse: collapse; border-radius: 16px; overflow: hidden; }
.offer-table th, .offer-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.offer-table th { background: var(--carbon); color: var(--white); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.offer-table td { background: var(--white); font-size: 0.92rem; }
.offer-table tbody tr:hover td { background: var(--orange-light); }
.offer-value { font-weight: 700; color: var(--orange); }

/* ── Modal ───────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(17,17,17,0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: var(--white);
  border-radius: 24px;
  padding: 36px;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: 0 24px 48px -10px rgba(0,0,0,0.2);
}
.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  font-size: 1.4rem; color: var(--slate);
  cursor: pointer; line-height: 1;
}
.modal-close:hover { color: var(--carbon); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--carbon);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ── Handwritten Annotation ──────────────────────────────── */
.handwritten {
  font-family: var(--font-hand);
  font-size: 1.05rem;
  color: var(--slate-light);
  display: inline-block;
}

/* ── Section divider ─────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* ── Utilities ───────────────────────────────────────────── */
.text-orange { color: var(--orange); }
.text-slate  { color: var(--slate); }
.text-light  { color: var(--slate-light); }
.text-center { text-align: center; }
.text-white  { color: var(--white); }
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.w-full { width: 100%; }
.relative { position: relative; }

/* ── Accordion ────────────────────────────────────────────── */
.accordion-item {
  background: var(--white) !important;
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.accordion-item.open {
  box-shadow: 0 6px 20px -6px rgba(0,0,0,0.07);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: transparent !important;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--carbon) !important;
  line-height: 1.35;
  transition: color 0.18s;
}
.accordion-trigger:hover { color: var(--orange) !important; background: transparent !important; }
.accordion-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.28s ease, background 0.18s ease;
}
.accordion-item.open .accordion-icon {
  background: var(--orange);
  border-color: var(--orange);
  transform: rotate(45deg);
}
.accordion-icon svg { width: 12px; height: 12px; }
.accordion-item.open .accordion-icon svg path { stroke: #fff; }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, padding 0.18s ease;
}
.accordion-body-inner {
  padding: 0 28px 22px;
  font-size: 0.97rem;
  color: var(--slate);
  line-height: 1.65;
}
.accordion-item.open .accordion-body {
  max-height: 400px;
}

/* ── Booking Calendar ─────────────────────────────────────── */
.booking-stepper {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.booking-step-indicator {
  flex: 1;
  padding: 12px 16px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate-light);
  background: var(--canvas);
  border-right: 1px solid var(--border);
  transition: all 0.2s ease;
}
.booking-step-indicator:last-child { border-right: none; }
.booking-step-indicator.active {
  background: var(--carbon);
  color: var(--white);
}
.booking-step-indicator.done {
  background: var(--orange-light);
  color: var(--orange);
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cal-month-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--carbon);
}
.cal-nav-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.18s ease;
  flex-shrink: 0;
}
.cal-nav-btn:hover { border-color: var(--orange); color: var(--orange); }
.cal-nav-btn svg { width: 14px; height: 14px; }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}
.cal-weekday {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 0;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--carbon);
  transition: all 0.16s ease;
  border: 1.5px solid transparent;
}
.cal-day:hover:not(.disabled):not(.empty) {
  background: var(--orange-light);
  border-color: var(--orange);
  color: var(--orange);
}
.cal-day.selected {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  font-weight: 700;
}
.cal-day.today {
  font-weight: 800;
  border-color: var(--border);
}
.cal-day.disabled, .cal-day.empty {
  color: var(--border);
  cursor: default;
  pointer-events: none;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.time-slot {
  padding: 10px 8px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--carbon);
  cursor: pointer;
  transition: all 0.16s ease;
}
.time-slot:hover { border-color: var(--orange); background: var(--orange-light); color: var(--orange); }
.time-slot.selected { background: var(--orange); color: var(--white); border-color: var(--orange); }
.time-slot.unavailable {
  color: var(--border);
  text-decoration: line-through;
  cursor: default;
  pointer-events: none;
}

.booking-section { display: none; }
.booking-section.active { display: block; }

/* ── Contact Icon Row ─────────────────────────────────────── */
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-info-row:last-of-type { border-bottom: none; }
.contact-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon-wrap svg { width: 20px; height: 20px; }
.contact-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--orange);
  display: block;
}

/* ── Funnel Footer ────────────────────────────────────────── */
.funnel-footer {
  background: var(--carbon);
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.funnel-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.funnel-footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.funnel-footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.18s;
}
.funnel-footer-links a:hover { color: var(--orange); }
.funnel-footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  max-width: 740px;
  line-height: 1.55;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
  margin-top: 4px;
}
.funnel-footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ── Responsive ────────────────────────────────────────────── */
/* ── Tablet (max-width: 991px) ────────────────────────────── */
@media (max-width: 991px) {
  /* Typography */
  h1, .h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
  h2, .h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
  h3, .h3 { font-size: clamp(1.5rem, 3vw, 1.8rem); }

  /* Layout */
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  
  .section { padding: 80px 0; }
  
  /* Header */
  .header-inner { gap: 24px; }
  
  /* Hero */
  .hero { padding: 120px 0 80px; }
  .hero-cards { gap: 16px; }
  
  /* Pricing / Offer Table */
  .offer-table th, .offer-table td { padding: 10px 12px; font-size: 0.85rem; }
}

/* ── Mobile (max-width: 767px) ────────────────────────────── */
@media (max-width: 767px) {
  /* Typography */
  h1, .h1 { font-size: 2.5rem; line-height: 1.15; }
  h2, .h2 { font-size: 2rem; line-height: 1.2; }
  h3, .h3 { font-size: 1.5rem; }
  p { font-size: 1rem; }
  
  /* Layout */
  .container { padding: 0 20px; }
  .section { padding: 60px 0; }
  
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero-cards { grid-template-columns: 1fr; }
  
  /* Header */
  .nav-links { display: none; } /* Kept hidden as per original logic unless specifically requested */
  
  /* Hero */
  .hero { padding: 100px 0 60px; text-align: center; }
  .hero-label { margin-left: auto; margin-right: auto; justify-content: center; }
  .hero-cta { flex-direction: column; width: 100%; gap: 12px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-cta-info { justify-content: center; margin-top: 12px; }
  .hero-cards { margin-top: 40px; }
  
  /* General Buttons */
  .btn { width: 100%; justify-content: center; }
  
  /* Flexbox overrides for mobile */
  .flex-mobile-col { flex-direction: column !important; align-items: stretch !important; gap: 16px !important; }
  
  /* Booking Calendar */
  .cal-weekdays { gap: 2px; }
  .cal-weekday { font-size: 0.65rem; }
  .cal-grid { gap: 2px; }
  .cal-day { font-size: 0.8rem; }
  .time-slots { grid-template-columns: repeat(2, 1fr); }
  .booking-stepper { flex-direction: column; }
  .booking-step-indicator { border-right: none; border-bottom: 1px solid var(--border); }
  .booking-step-indicator:last-child { border-bottom: none; }
  
  /* Forms */
  .form-control { font-size: 16px; /* Prevents iOS zoom */ }
  
  /* Modals */
  .modal-content { padding: 24px; margin: 16px; border-radius: 16px; }
  .modal-close { top: 12px; right: 16px; }
  
  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; justify-content: center; gap: 12px; }
  .funnel-footer-links { flex-direction: column; gap: 12px; }
  .funnel-footer-inner { padding: 0 16px; }
  
  /* Contact Row */
  .contact-info-row { flex-direction: column; align-items: center; text-align: center; }
  
  /* Tech Grid */
  .tech-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  
  /* Accordion */
  .accordion-trigger { font-size: 0.95rem; padding: 18px 20px; }
  .accordion-body-inner { padding: 0 20px 18px; }
}

/* ── Small Mobile (max-width: 480px) ──────────────────────── */
@media (max-width: 480px) {
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .time-slots { grid-template-columns: 1fr; }
  .hero-avatars { display: none; /* Hide on very small screens to save space */ }
  .offer-table th, .offer-table td { padding: 8px; font-size: 0.75rem; }
}

.announcement-bar {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* --- Legal Pages Styling --- */
.policy-body { max-width: 800px; margin: 0 auto; }
.policy-body h2 { font-size: 1.3rem; font-weight: 700; color: var(--carbon); margin: 40px 0 12px; }
.policy-body p  { font-size: 0.97rem; color: var(--slate); line-height: 1.75; margin-bottom: 16px; }
.policy-body ul { margin: 12px 0 16px 24px; display: flex; flex-direction: column; gap: 8px; }
.policy-body ul li { font-size: 0.97rem; color: var(--slate); line-height: 1.65; list-style: disc; }
.policy-last-updated { font-size: 0.82rem; color: var(--slate-light); margin-bottom: 40px; }

/* --- Mobile Header Button Fix --- */
@media (max-width: 767px) {
  .site-header .btn {
    width: auto !important;
    padding: 10px 16px !important;
    font-size: 0.85rem !important;
  }
}
