/* ===== Design tokens ===== */
:root {
  --cream: #f8f5f0;
  --cream-alt: #f1ebe1;
  --ink: #141412;
  --ink-muted: #6e6b64;
  --coral: #ff6b35;
  --coral-dark: #e85a26;
  --coral-tint: #ffd9c7;
  --line: rgba(20, 20, 18, 0.1);
  --card-bg: #ffffff;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --font-head: "Cabinet Grotesk", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
  --container-w: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

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

.container-narrow { max-width: 760px; }

/* ===== Background grid ===== */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(20, 20, 18, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20, 20, 18, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 55% at 50% 0%, black 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 55% at 50% 0%, black 40%, transparent 90%);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 999px;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-primary {
  background: var(--coral);
  color: #fff;
  padding: 6px 6px 6px 20px;
}
.btn-primary .btn-icon {
  background: rgba(255, 255, 255, 0.25);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.btn-primary .btn-icon .icon { stroke-width: 2.4; }
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 12px 24px;
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(20, 20, 18, 0.03); }

.btn-lg { padding: 8px 8px 8px 26px; font-size: 16px; }
.btn-lg.btn-ghost { padding: 15px 28px; }
.btn-sm { padding: 5px 5px 5px 16px; font-size: 14px; }
.btn-md { padding: 6px 6px 6px 20px; font-size: 15px; }
.btn-block { width: 100%; justify-content: center; padding: 16px 8px 16px 28px; font-size: 16px; }

/* ===== Nav ===== */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}
.nav-wrap.scrolled {
  background: rgba(248, 245, 240, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  color: var(--ink);
}
.logo-svg { height: 24px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-muted);
}
.nav-links a:hover { color: var(--ink); }

/* ===== Hero ===== */
.hero {
  text-align: center;
  padding: 72px 24px 40px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 28px;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #25d366; box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.25); }

.hero-title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 900px;
  margin: 0 auto;
}

.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-word.in { opacity: 1; transform: none; }

.brand-word {
  position: relative;
  display: inline-block;
  color: var(--coral);
  font-weight: 700;
}

.brand-logo-inline {
  height: 0.78em;
  width: auto;
  display: inline-block;
  vertical-align: -0.08em;
  overflow: visible;
}

.logo-glow-halo {
  opacity: 0.55;
  animation: logo-glow-pulse 3s ease-in-out infinite;
}

@keyframes logo-glow-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.85; }
}

.brand-swash {
  position: absolute;
  left: 0;
  bottom: -0.16em;
  width: 100%;
  height: 0.24em;
  overflow: visible;
}
.brand-swash path {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 640;
  stroke-dashoffset: 640;
  animation: draw-swash 1.8s cubic-bezier(0.65, 0, 0.35, 1) 0.5s infinite alternate;
}

@keyframes draw-swash {
  to { stroke-dashoffset: 0; }
}

.hero-sub {
  max-width: 560px;
  margin: 28px auto 0;
  font-size: 18px;
  color: var(--ink-muted);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* ===== Hero visual ===== */
.hero-visual {
  position: relative;
  max-width: 900px;
  margin: 72px auto 0;
  height: 700px;
}

.phone-glow {
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 480px;
  max-width: 100%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.32), rgba(37, 211, 102, 0.16) 55%, transparent 75%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.phone-mock {
  position: relative;
  z-index: 1;
  width: 280px;
  text-align: left;
  aspect-ratio: 393 / 852;
  margin: 0 auto;
  display: flex;
  background: linear-gradient(155deg, #57575a 0%, #29292b 38%, #0c0c0d 100%);
  border-radius: 56px;
  padding: 11px;
  box-shadow:
    0 45px 80px -14px rgba(20, 20, 18, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 1px 2px rgba(255, 255, 255, 0.35),
    inset 0 -1px 3px rgba(0, 0, 0, 0.5);
}
.phone-mock::before,
.phone-mock::after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, #3a3a3c, #171718, #0a0a0a);
  border-radius: 3px;
}
.phone-mock::before { left: -3px; top: 108px; width: 3px; height: 58px; }
.phone-mock::after { right: -3px; top: 150px; width: 3px; height: 84px; }

.phone-screen {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-radius: 46px;
  overflow: hidden;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.5);
}

.phone-island {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 94px;
  height: 27px;
  background: #000;
  border-radius: 16px;
  z-index: 5;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone-status {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 2px;
  background: #075e54;
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.phone-status-icons { display: flex; align-items: center; gap: 5px; }
.phone-status-icons .icon:first-child { width: 15px; height: 9px; }
.phone-status-icons .icon:last-child { width: 19px; height: 10px; }

.phone-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #075e54;
  color: #fff;
  padding: 6px 16px 14px;
}
.phone-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}
.avatar-illustration { width: 100%; height: 100%; display: block; }
.phone-header strong { display: block; font-size: 14px; }
.phone-header small { font-size: 11px; opacity: 0.75; }

.phone-body {
  flex: 1;
  min-height: 0;
  background: #e9ddd0;
  padding: 16px 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.phone-body::-webkit-scrollbar { display: none; }

.bubble {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
}
.bubble-in { background: #fff; align-self: flex-start; border-bottom-left-radius: 4px; }
.bubble-tap { display: flex; align-items: center; gap: 6px; font-weight: 600; color: #075e54; }
.bubble-tap .icon { width: 14px; height: 14px; }
.bubble-out { background: #d9fdd3; align-self: flex-end; border-bottom-right-radius: 4px; }

.bubble-card { padding: 10px; width: 200px; }
.bubble-card-img { height: 90px; border-radius: 8px; background: linear-gradient(135deg, #ffd9c7, #ff6b35); margin-bottom: 8px; }
.bubble-card strong { display: block; font-size: 13px; }
.bubble-card span { display: block; font-size: 11px; color: var(--ink-muted); margin: 2px 0 8px; }
.bubble-card-btn { text-align: center; background: #fff; border-radius: 8px; padding: 6px; font-size: 12px; font-weight: 600; color: #075e54; }

.bubble.bubble-buttons { width: 100%; max-width: 210px; padding: 10px 12px 4px; }
.bubble-buttons p { font-size: 13px; line-height: 1.4; margin-bottom: 8px; }
.bubble-btn-list { margin: 0 -12px; border-top: 1px solid rgba(0, 0, 0, 0.1); }
.bubble-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: #00a884;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.bubble-btn:first-child { border-top: none; }
.bubble-btn .icon { stroke-width: 2.3; }
.bubble-btn.tapped { background: rgba(0, 168, 132, 0.14); }

.chat-msg {
  opacity: 0;
  transform: translateY(10px) scale(0.97);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.chat-msg.show { opacity: 1; transform: none; }

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px 16px 10px 10px;
  box-shadow: 0 12px 30px rgba(20, 20, 18, 0.1);
  font-size: 13px;
  animation: float 6s ease-in-out infinite;
}
.float-card strong { display: block; font-size: 13px; }
.float-card small { color: var(--ink-muted); font-size: 11.5px; }
.fc-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--coral-tint);
  color: var(--coral-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.fc-icon .icon { stroke-width: 2; }

.fc-1 { top: 6%; left: 0%; animation-delay: 0s; }
.fc-2 { top: 38%; right: 0%; animation-delay: 1.5s; }
.fc-3 { bottom: 4%; left: 6%; animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section-alt { background: var(--cream-alt); }

.eyebrow {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--coral-dark);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  text-align: center;
  letter-spacing: -0.01em;
}

.section-sub {
  text-align: center;
  max-width: 560px;
  margin: 20px auto 0;
  color: var(--ink-muted);
  font-size: 17px;
}

/* ===== Problem grid ===== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.problem-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
}
.p-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream-alt);
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 18px;
}
.problem-card h3 { font-family: var(--font-head); font-weight: 600; font-size: 17px; margin-bottom: 8px; }
.problem-card p { color: var(--ink-muted); font-size: 14.5px; }

/* ===== Feature grid ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(20, 20, 18, 0.08);
  border-color: rgba(255, 107, 53, 0.35);
}
.f-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--coral-tint);
  color: var(--coral-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.feature-card h3 { font-family: var(--font-head); font-weight: 600; font-size: 18px; margin-bottom: 8px; }
.feature-card p { color: var(--ink-muted); font-size: 14.5px; }

.feature-more {
  text-align: center;
  margin-top: 32px;
  color: var(--ink-muted);
  font-size: 14.5px;
}

/* ===== Feature pillars ===== */
.pillars {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.pillar-group .feature-grid { margin-top: 24px; }

.pillar-head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pillar-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  color: var(--coral-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.pillar-head h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 21px;
}
.pillar-head p {
  color: var(--ink-muted);
  font-size: 14px;
  margin-top: 2px;
}

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.step-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 26px;
}
.step-num {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--coral);
  background: var(--coral-tint);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.step-card h3 { font-family: var(--font-head); font-weight: 600; font-size: 18px; margin-bottom: 8px; }
.step-card p { color: var(--ink-muted); font-size: 14.5px; }

.value-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 72px;
  flex-wrap: wrap;
  text-align: center;
}
.value-item strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 44px;
  color: var(--coral);
}
.value-item span { color: var(--ink-muted); font-size: 14.5px; }

/* ===== Pricing ===== */
.price-card {
  max-width: 480px;
  margin: 56px auto 0;
  background: var(--card-bg);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: var(--coral-tint);
  border-radius: 50%;
  opacity: 0.6;
  z-index: 0;
}
.price-card-top, .price-list, .price-card > a, .price-disclaimer { position: relative; z-index: 1; }

.price-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 14px;
}
.price-original {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.price-was {
  font-size: 18px;
  color: var(--ink-muted);
  text-decoration: line-through;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 2px;
}
.price-off-badge {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--coral);
  padding: 3px 10px;
  border-radius: 999px;
}

.price-amount {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
}
.price-currency { font-size: 32px; vertical-align: 8px; }
.price-period { font-size: 16px; font-weight: 500; color: var(--ink-muted); font-family: var(--font-body); }
.price-note { margin-top: 10px; color: var(--ink-muted); font-size: 13.5px; }

.price-specs { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.price-spec {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--coral-dark);
  background: var(--coral-tint);
  padding: 5px 12px;
  border-radius: 999px;
}

.price-list {
  margin: 30px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.price-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
}
.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-disclaimer {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--ink-muted);
  text-align: center;
  line-height: 1.5;
}

/* ===== FAQ ===== */
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 20px;
  color: var(--coral);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 14px; color: var(--ink-muted); font-size: 14.5px; }

/* ===== CTA band ===== */
.cta-band { padding: 0 0 100px; }
.cta-inner {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 72px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.cta-title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
}

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--line); padding: 36px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
  font-size: 14px;
  color: var(--ink-muted);
}
.footer-links a:hover { color: var(--ink); }
.footer-copy { width: 100%; margin-top: 20px; font-size: 13px; color: var(--ink-muted); }

/* ===== Inline CTAs ===== */
.inline-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== Sticky bottom CTA bar ===== */
.sticky-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  background: rgba(248, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(20, 20, 18, 0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-cta-bar.show { transform: translateY(0); }
.sticky-cta-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.sticky-cta-price strong {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 19px;
}
.sticky-cta-price strong span { font-size: 12px; font-weight: 500; color: var(--ink-muted); }
.sticky-cta-was {
  font-size: 13px;
  color: var(--ink-muted);
  text-decoration: line-through;
  text-decoration-color: var(--coral);
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .problem-grid, .feature-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { height: 620px; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }

  .problem-grid, .feature-grid, .steps { grid-template-columns: 1fr; }
  .value-row { gap: 40px; }
  .hero-visual { height: auto; padding-bottom: 40px; }
  .float-card { position: static; margin: 14px auto 0; width: fit-content; animation: none; }
  .fc-1, .fc-2, .fc-3 { top: auto; left: auto; right: auto; bottom: auto; }
  .price-card { padding: 34px 24px; }
  .cta-inner { padding: 56px 24px; }
}

/* ===== Thank You page ===== */
.ty-check-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ty-check-ring { position: absolute; border-radius: 50%; background: var(--coral-tint); }
.ty-check-ring-1 { width: 100px; height: 100px; opacity: 0.5; animation: ty-pulse 2.4s ease-in-out infinite; }
.ty-check-ring-2 { width: 140px; height: 140px; opacity: 0.25; animation: ty-pulse 2.4s ease-in-out infinite 0.3s; }
@keyframes ty-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 0.85; }
}
.ty-check-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--coral);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
}
.ty-check-icon .icon { width: 34px; height: 34px; stroke-width: 2; }

.ty-title { margin-bottom: 4px; }

.ty-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.ty-step {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}
.ty-step .icon { width: 15px; height: 15px; color: var(--coral); }
.ty-step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--coral-tint);
  color: var(--coral-dark);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ty-step-arrow { color: var(--ink-muted); }

.ty-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-top: 4px solid var(--coral);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(20, 20, 18, 0.06);
}
.ty-card-title { font-family: var(--font-head); font-weight: 600; font-size: 26px; margin-bottom: 10px; }
.ty-card-sub { color: var(--ink-muted); margin-bottom: 24px; }
.ty-card-note { margin-top: 14px; font-size: 13px; color: var(--ink-muted); }

.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5b; }
.btn-whatsapp .icon { width: 20px; height: 20px; }
.btn-whatsapp.btn-block { padding: 16px 28px; justify-content: center; }

.ty-note-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.ty-note-title { font-family: var(--font-head); font-weight: 600; font-size: 24px; margin-bottom: 12px; }
.ty-note-sub { color: var(--ink-muted); margin-bottom: 20px; }

.ty-back { text-align: center; padding: 48px 0 0; }
.ty-back a { color: var(--ink-muted); font-weight: 600; font-size: 14px; }
.ty-back a:hover { color: var(--ink); }
