/* ================================================================
   GRILL DOCTOR — Stylesheet
   Dark/fiery palette · Bebas Neue + Inter · Mobile-first
   ================================================================ */

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

:root {
  /* Palette */
  --bg:          #ffffff;
  --bg-soft:     #fafaf8;
  --bg-alt:      #f4f1ec;
  --bg-dark:     #0a0a0a;
  --bg-darker:   #050505;
  --ink:         #14110f;
  --ink-2:       #4a443f;
  --ink-3:       #8a8278;
  --line:        #e8e3dc;
  --line-dark:   #1f1d1b;
  --card:        #ffffff;
  --card-dark:   #161412;

  --fire:        #ff5722;
  --fire-2:      #ff7a3d;
  --ember:       #ffb800;
  --coal:        #1a1714;

  /* Type */
  --display: 'Bebas Neue', 'Anton', Impact, sans-serif;
  --sans:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container: 1200px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Shadows */
  --sh-1: 0 1px 2px rgba(20, 17, 15, .06), 0 1px 3px rgba(20, 17, 15, .04);
  --sh-2: 0 4px 16px rgba(20, 17, 15, .08), 0 2px 4px rgba(20, 17, 15, .04);
  --sh-3: 0 24px 48px -12px rgba(20, 17, 15, .18);
  --sh-fire: 0 12px 40px -8px rgba(255, 87, 34, .45);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

.section { padding: 100px 0; position: relative; }
.section--alt { background: var(--bg-soft); }
.section--dark {
  background: var(--bg-dark);
  color: #f5f1ec;
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(255, 87, 34, .22), transparent 60%),
    radial-gradient(700px 500px at 0% 110%, rgba(255, 184, 0, .12), transparent 60%);
  pointer-events: none;
}
.section--dark > .container { position: relative; }

.section--book {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0d07 60%, #2a0e04 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section--book::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 600px at 90% 100%, rgba(255, 87, 34, .35), transparent 60%),
    radial-gradient(600px 400px at 0% 0%, rgba(255, 184, 0, .12), transparent 60%);
  pointer-events: none;
}
.section--book > .container { position: relative; }

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section__head--left { text-align: left; margin-left: 0; max-width: 100%; margin-bottom: 48px; }
.section__head--light { color: #fff; }

.kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fire);
  background: rgba(255, 87, 34, .08);
  border: 1px solid rgba(255, 87, 34, .25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.kicker--light {
  color: var(--ember);
  background: rgba(255, 184, 0, .1);
  border-color: rgba(255, 184, 0, .3);
}

.section__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section__sub {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 620px;
  margin: 0 auto;
}
.section__sub--light { color: rgba(255, 255, 255, .78); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 12px var(--ember);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .55; transform: scale(.85); }
}

.ic {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: none;
}

/* --- 3. BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn--primary {
  background: linear-gradient(135deg, var(--fire) 0%, var(--fire-2) 100%);
  color: #fff;
  box-shadow: var(--sh-fire);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px -8px rgba(255, 87, 34, .6);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.section--dark .btn--ghost,
.section--book .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .25);
}
.section--dark .btn--ghost:hover,
.section--book .btn--ghost:hover {
  background: #fff;
  color: var(--ink);
}

.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--block { width: 100%; }

/* --- 4. TOPBAR & NAV --- */
.topbar {
  background: #0a0a0a;
  color: #d8d4ce;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .7);
}
.topbar__item .ic { width: 14px; height: 14px; }
.topbar__cta {
  color: var(--ember);
  font-weight: 600;
}
.topbar__cta:hover { color: #fff; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.nav.is-scrolled {
  border-color: var(--line);
  box-shadow: var(--sh-1);
  background: rgba(255, 255, 255, .92);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 76px;
}
.brand__logo {
  height: 60px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  flex: 1;
  justify-content: center;
}
.nav__links a {
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: var(--fire);
  transition: width .25s ease;
}
.nav__links a:hover { color: var(--fire); }
.nav__links a:hover::after { width: 100%; }

.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, top .3s;
}
.nav__burger span:nth-child(1) { top: 13px; }
.nav__burger span:nth-child(2) { top: 19px; }
.nav__burger span:nth-child(3) { top: 25px; }
.nav__burger.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: #fff;
  border-top: 1px solid var(--line);
}
.nav__mobile a {
  padding: 12px 4px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.nav__mobile a:last-child { border-bottom: 0; margin-top: 8px; }

/* --- 5. HERO --- */
.hero {
  position: relative;
  background: var(--bg-dark);
  color: #fff;
  padding: 80px 0 120px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 700px at 75% 20%, rgba(255, 87, 34, .25), transparent 60%),
    radial-gradient(900px 600px at 0% 80%, rgba(255, 184, 0, .15), transparent 65%),
    linear-gradient(180deg, #0a0a0a 0%, #14090a 60%, #0a0a0a 100%);
  z-index: -2;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 87, 34, .15) 0, transparent 1.5px),
    radial-gradient(circle at 70% 80%, rgba(255, 184, 0, .12) 0, transparent 1.5px),
    radial-gradient(circle at 40% 90%, rgba(255, 87, 34, .1) 0, transparent 2px);
  background-size: 200px 200px;
  opacity: .6;
  z-index: -1;
}
.hero__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  right: -200px;
  top: -100px;
  background: radial-gradient(circle, rgba(255, 87, 34, .35) 0%, transparent 60%);
  filter: blur(40px);
  z-index: -1;
  animation: glowFloat 12s ease-in-out infinite alternate;
}
@keyframes glowFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, 30px) scale(1.08); }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: .96;
  letter-spacing: -.5px;
  margin: 8px 0 24px;
}
.hero__title .line { display: block; }
.hero__title em {
  font-style: normal;
  color: var(--fire-2);
  font-family: var(--display);
  position: relative;
}
.hero__title .fire {
  background: linear-gradient(180deg, #ffd54a 0%, #ff7a3d 50%, #ff3a14 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}
.hero__title .fire::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--fire), transparent);
  filter: blur(4px);
  opacity: .6;
}

.hero__sub {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .78);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero__stats li {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--fire);
  padding-left: 16px;
}
.hero__stats strong {
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: .5px;
  color: #fff;
}
.hero__stats span {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.hero__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}
.hero__ring,
.hero__ring--2 {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 87, 34, .25);
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}
.hero__ring    { width: 420px; height: 420px; animation: spin 30s linear infinite; }
.hero__ring--2 { width: 540px; height: 540px; border-color: rgba(255, 184, 0, .15); animation: spin 50s linear infinite reverse; }
.hero__ring::before,
.hero__ring::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--fire);
  box-shadow: 0 0 12px var(--fire);
  top: -4px; left: 50%;
  transform: translateX(-50%);
}
.hero__ring--2::before {
  background: var(--ember);
  box-shadow: 0 0 12px var(--ember);
  top: auto; bottom: -4px; left: 50%;
}
@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero__logo {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(255, 87, 34, .45));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* --- 6. TRUST BAR --- */
.trust {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust__ic {
  width: 32px;
  height: 32px;
  fill: var(--fire);
  flex: none;
}
.trust__item strong { display: block; font-weight: 700; font-size: 15px; color: var(--ink); }
.trust__item span   { display: block; font-size: 13px; color: var(--ink-3); }

/* --- 7. CARDS (Services) --- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fire), var(--ember));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-2);
  border-color: rgba(255, 87, 34, .35);
}
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 87, 34, .12), rgba(255, 184, 0, .08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card__icon svg { width: 24px; height: 24px; fill: var(--fire); }
.card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.card p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 18px;
}
.card__list li {
  font-size: 13.5px;
  color: var(--ink-2);
  padding: 6px 0 6px 22px;
  position: relative;
  border-top: 1px dashed var(--line);
}
.card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 12px; height: 12px;
  background: var(--ember);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/></svg>") center/contain no-repeat;
}

/* --- 8. STEPS --- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px 24px;
  position: relative;
  border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.step__num {
  font-family: var(--display);
  font-size: 56px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--fire);
  margin-bottom: 12px;
}
.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* --- 9. PRICING --- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.plan--featured {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0e0a 100%);
  color: #fff;
  border-color: transparent;
  transform: scale(1.04);
  box-shadow: var(--sh-3);
  z-index: 1;
}
.plan--featured:hover { transform: scale(1.04) translateY(-4px); }
.plan--featured::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--fire), var(--ember));
  z-index: -1;
  filter: blur(1px);
}
.plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--fire), var(--ember));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: var(--sh-fire);
}
.plan__head h3 {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.plan__head p {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 24px;
  min-height: 42px;
}
.plan--featured .plan__head p { color: rgba(255, 255, 255, .7); }

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}
.plan--featured .plan__price { border-color: rgba(255, 255, 255, .12); }
.plan__price .cur { font-size: 24px; font-weight: 600; color: var(--ink-3); }
.plan--featured .plan__price .cur { color: rgba(255, 255, 255, .6); }
.plan__price .num {
  font-family: var(--display);
  font-size: 72px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -1px;
}
.plan--featured .plan__price .num { color: #fff; }
.plan__price .per { font-size: 14px; color: var(--ink-3); margin-left: 6px; }
.plan--featured .plan__price .per { color: rgba(255, 255, 255, .55); }

.plan__list { margin-bottom: 24px; flex: 1; }
.plan__list li {
  padding: 9px 0;
  font-size: 14.5px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan--featured .plan__list li { color: rgba(255, 255, 255, .85); }
.plan__list li::before {
  content: '';
  width: 18px; height: 18px;
  flex: none;
  background: currentColor;
  color: var(--ember);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/></svg>") center/contain no-repeat;
}
.plan__note {
  font-size: 12.5px;
  color: var(--ink-3);
  text-align: center;
  margin-top: 14px;
}
.plan--featured .plan__note { color: rgba(255, 255, 255, .5); }

.pricing__foot {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-2);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pricing__foot a {
  color: var(--fire);
  font-weight: 600;
}
.pricing__foot a:hover { text-decoration: underline; }

/* --- 10. FEATURES --- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
}
.feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px -8px rgba(255, 87, 34, .6);
}
.feature__icon svg { width: 22px; height: 22px; fill: #fff; }
.feature h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.feature p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, .68);
  line-height: 1.55;
}

/* --- 11. TESTIMONIALS --- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.t {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.t:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.t::before {
  content: '“';
  position: absolute;
  top: 8px; right: 24px;
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 1;
  color: var(--fire);
  opacity: .15;
}
.t__stars { color: var(--ember); font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.t blockquote {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 20px;
}
.t figcaption {
  font-size: 13.5px;
  color: var(--ink-3);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.t figcaption strong { color: var(--ink); font-weight: 600; }

.press {
  margin-top: 64px;
  text-align: center;
}
.press > span {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
}
.press__logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  opacity: .6;
}
.press__logos span {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: .5px;
  font-style: italic;
}

/* --- 12. BOOKING --- */
.book {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.book__perks {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.book__perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .85);
  font-size: 15px;
}
.book__perks .ic {
  width: 22px; height: 22px;
  background: var(--ember);
  color: var(--ember);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/></svg>") center/contain no-repeat;
}

/* --- 13. FORMS --- */
.form {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form--contact { background: #fff; border-color: var(--line); box-shadow: var(--sh-2); }
.form--contact h3 { font-size: 22px; font-weight: 700; margin-bottom: 4px; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .78);
}
.form--contact label { color: var(--ink-2); }
.form label > span:first-child { font-size: 12px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }

.form input,
.form select,
.form textarea {
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  border-radius: 10px;
  transition: border-color .2s, background .2s, box-shadow .2s;
  width: 100%;
}
.form--contact input,
.form--contact select,
.form--contact textarea {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}
.form input::placeholder,
.form textarea::placeholder { color: rgba(255, 255, 255, .4); }
.form--contact input::placeholder,
.form--contact textarea::placeholder { color: var(--ink-3); }
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 0;
  border-color: var(--fire);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, .18);
}
.form--contact input:focus,
.form--contact select:focus,
.form--contact textarea:focus {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 87, 34, .15);
}
.form textarea { resize: vertical; min-height: 90px; }

.form__full { width: 100%; }
.form__small {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  text-align: center;
  margin-top: 4px;
}
.form__success {
  background: linear-gradient(135deg, rgba(46, 204, 113, .15), rgba(46, 204, 113, .05));
  border: 1px solid rgba(46, 204, 113, .35);
  color: #6ee7a3;
  padding: 16px;
  border-radius: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form__success .ic { width: 22px; height: 22px; color: #6ee7a3; }

/* --- 14. FAQ --- */
.faq__container { max-width: 880px; }
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq details[open] {
  border-color: rgba(255, 87, 34, .3);
  box-shadow: var(--sh-1);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  display: flex;
  align-items: center;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq__plus {
  position: absolute;
  right: 22px;
  top: 50%;
  width: 18px; height: 18px;
  transform: translateY(-50%);
  transition: transform .25s;
}
.faq__plus::before,
.faq__plus::after {
  content: '';
  position: absolute;
  background: var(--ink-2);
  border-radius: 2px;
  transition: transform .25s, background .2s;
}
.faq__plus::before { top: 8px; left: 0; right: 0; height: 2px; }
.faq__plus::after  { left: 8px; top: 0; bottom: 0; width: 2px; }
.faq details[open] .faq__plus::after { transform: rotate(90deg); opacity: 0; }
.faq details[open] .faq__plus::before { background: var(--fire); }
.faq details[open] summary { color: var(--fire); }
.faq details > p {
  padding: 0 24px 22px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
}

/* --- 15. CONTACT --- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact__list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact__ic {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(255, 87, 34, .12), rgba(255, 184, 0, .08));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.contact__ic svg { width: 20px; height: 20px; fill: var(--fire); }
.contact__list strong { display: block; font-weight: 700; font-size: 15px; margin-bottom: 2px; }
.contact__list a {
  display: block;
  color: var(--fire);
  font-weight: 600;
  margin-bottom: 2px;
}
.contact__list a:hover { text-decoration: underline; }
.contact__list span { display: block; font-size: 13.5px; color: var(--ink-3); }

.socials {
  margin-top: 32px;
  display: flex;
  gap: 12px;
}
.socials a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2);
  transition: all .2s;
}
.socials a:hover {
  background: var(--fire);
  border-color: var(--fire);
  color: #fff;
  transform: translateY(-2px);
}
.socials svg { width: 18px; height: 18px; fill: currentColor; }

/* --- 16. FOOTER --- */
.footer {
  background: #0a0a0a;
  color: #b8b3ac;
  padding: 80px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.footer__brand img {
  width: 140px;
  margin-bottom: 16px;
}
.footer__brand p { font-size: 14px; max-width: 280px; }
.footer h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer a, .footer span {
  display: block;
  font-size: 14px;
  padding: 4px 0;
  color: #b8b3ac;
  transition: color .2s;
}
.footer a:hover { color: var(--fire-2); }
.footer__line { color: var(--ink-3); }
.footer__legal {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: #6b6660;
}
.footer__legal a { display: inline; padding: 0; }
.footer__legal a:hover { color: var(--fire-2); }

/* --- 17. FLOATING CTA --- */
.float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  color: #fff;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  box-shadow: var(--sh-fire);
  transition: transform .2s, box-shadow .2s;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.float.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float:hover { transform: translateY(-3px); box-shadow: 0 18px 50px -8px rgba(255, 87, 34, .7); }
.float svg { width: 18px; height: 18px; fill: currentColor; }

/* --- 18. ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* --- 19. RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__art { min-height: 360px; max-width: 380px; margin: 0 auto; }
  .hero__logo { max-width: 300px; }
  .hero__ring { width: 340px; height: 340px; }
  .hero__ring--2 { width: 440px; height: 440px; }

  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 20px 32px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-4px); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .book, .contact { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }

  .topbar__inner { gap: 8px; font-size: 12px; }
  .topbar__item:not(:last-child) { display: none; }

  .nav__inner { height: 64px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav__mobile.is-open { display: flex; }
  .brand__logo { height: 48px; }

  .hero { padding: 60px 0 80px; }
  .hero__title { font-size: clamp(40px, 12vw, 64px); }
  .hero__sub { font-size: 16px; }
  .hero__ctas .btn { width: 100%; }
  .hero__stats { gap: 24px; }
  .hero__stats strong { font-size: 26px; }
  .hero__art { min-height: 280px; }
  .hero__ring { width: 260px; height: 260px; }
  .hero__ring--2 { width: 340px; height: 340px; }
  .hero__logo { max-width: 220px; }

  .trust__grid { grid-template-columns: 1fr; gap: 16px; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; gap: 28px; }
  .form { padding: 24px 20px; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__legal { font-size: 11.5px; }
  .float { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 14px; }
  .plan__price .num { font-size: 60px; }
}
