:root {
  --bg: #faf6ef;
  --bg-alt: #f3ecdf;
  --bg-deep: #ebe2d1;
  --surface: #ffffff;
  --ink: #0e1b26;
  --ink-2: #253342;
  --muted: #647384;
  --primary: #134e3a;
  --primary-2: #0a3628;
  --primary-soft: #e4efe9;
  --accent: #b3823a;
  --accent-2: #8f6725;
  --accent-soft: #f5e8cf;
  --border: #e4d9c8;
  --border-strong: #d4c5ad;
  --shadow-sm: 0 1px 2px rgba(14, 27, 38, 0.04), 0 4px 12px rgba(14, 27, 38, 0.04);
  --shadow-md: 0 4px 8px rgba(14, 27, 38, 0.05), 0 16px 40px -12px rgba(14, 27, 38, 0.12);
  --shadow-lg: 0 10px 20px rgba(14, 27, 38, 0.06), 0 30px 80px -20px rgba(14, 27, 38, 0.18);
  --radius: 14px;
  --radius-lg: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.05 0 0 0 0 0.05 0 0 0 0 0.05 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent-2); }
img { max-width: 100%; display: block; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 100;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}
.skip-link:focus { left: 12px; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 80;
}
h1 { font-size: clamp(42px, 5.2vw, 68px); line-height: 1.04; font-weight: 500; margin: 0 0 24px; }
h2 { font-size: clamp(32px, 3.8vw, 48px); line-height: 1.1; margin: 0 0 18px; font-weight: 500; }
h3 { font-size: 22px; line-height: 1.25; margin: 0 0 10px; font-weight: 600; }
h4 { font-size: 17px; line-height: 1.35; margin: 0 0 6px; font-weight: 600; font-family: 'Inter', sans-serif; letter-spacing: -0.01em; }
h1 em, h2 em {
  font-style: italic;
  font-variation-settings: "opsz" 144;
  color: var(--primary);
  font-weight: 500;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}
.eyebrow::before {
  content: ""; width: 24px; height: 1.5px; background: var(--accent);
}

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 239, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(228, 217, 200, 0.6);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: flex; align-items: center; gap: 10px;
}
.logo:hover { color: var(--ink); }
.logo-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-soft); font-weight: 700; font-size: 15px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 4px 10px rgba(19, 78, 58, 0.3);
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--ink-2); font-size: 14.5px; font-weight: 500;
}
.nav-links a:hover { color: var(--primary); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 8px 24px -6px rgba(14, 27, 38, 0.35);
}
.btn-primary:hover {
  background: var(--primary); color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px -8px rgba(19, 78, 58, 0.5);
}
.btn-accent {
  background: var(--accent); color: #fff;
  box-shadow: 0 8px 22px -6px rgba(179, 130, 58, 0.5);
}
.btn-accent:hover { background: var(--accent-2); transform: translateY(-1px); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(14,27,38,0.03); color: var(--ink); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn .arr { transition: transform 0.2s ease; }
.btn:hover .arr { transform: translateX(3px); }

.hero {
  position: relative;
  padding: 100px 0 110px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 800px 500px at 85% 15%, rgba(179, 130, 58, 0.10), transparent 60%),
    radial-gradient(ellipse 700px 600px at 15% 80%, rgba(19, 78, 58, 0.08), transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.4;
  background-image:
    linear-gradient(to right, rgba(14,27,38,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14,27,38,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.0); }
}
.hero p.lead {
  font-size: 19px;
  color: var(--ink-2);
  margin: 0 0 36px;
  max-width: 560px;
  line-height: 1.6;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 44px;
  display: flex; gap: 36px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-meta .item { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .num {
  font-family: 'Fraunces', serif;
  font-size: 28px; font-weight: 600;
  color: var(--primary);
  font-variation-settings: "opsz" 144;
}
.hero-meta .label { font-size: 13px; color: var(--muted); }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 460px;
  margin-left: auto;
}
.hero-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 16px;
}
.hero-card.call {
  top: 0; left: 0; right: 15%;
  transform: rotate(-2deg);
  z-index: 3;
  animation: float1 8s ease-in-out infinite;
}
.hero-card.booking {
  top: 32%; right: 0; left: 25%;
  transform: rotate(2deg);
  z-index: 2;
  animation: float2 9s ease-in-out infinite;
}
.hero-card.review {
  bottom: 0; left: 10%; right: 25%;
  transform: rotate(-1deg);
  z-index: 4;
  animation: float3 7s ease-in-out infinite;
}
@keyframes float1 { 0%,100% { transform: rotate(-2deg) translateY(0); } 50% { transform: rotate(-2deg) translateY(-8px); } }
@keyframes float2 { 0%,100% { transform: rotate(2deg) translateY(0); } 50% { transform: rotate(2deg) translateY(-10px); } }
@keyframes float3 { 0%,100% { transform: rotate(-1deg) translateY(0); } 50% { transform: rotate(-1deg) translateY(-6px); } }

.card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.card-head .ic {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-soft); color: var(--primary);
}
.card-head .card-title { font-size: 13px; font-weight: 600; color: var(--ink); }
.card-head .tt { font-size: 12px; color: var(--muted); font-weight: 500; letter-spacing: 0.02em; }
.card-body { font-size: 14px; color: var(--ink); line-height: 1.45; }
.card-body strong { color: var(--primary); font-weight: 600; }
.stars { color: var(--accent); letter-spacing: 2px; font-size: 14px; }

.trust-bar {
  padding: 44px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.trust-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.trust-label {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.trust-logos {
  display: flex; gap: 44px; flex-wrap: wrap; align-items: center;
  font-family: 'Fraunces', serif; font-size: 20px; color: var(--ink-2);
  font-weight: 500; letter-spacing: -0.01em; opacity: 0.75;
}
.trust-logos span { display: inline-flex; align-items: center; gap: 8px; }

section { padding: 112px 0; position: relative; }
section.tight { padding: 88px 0; }
.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-head p { color: var(--ink-2); font-size: 18px; margin: 12px 0 0; }
.section-head .eyebrow { margin-bottom: 18px; }

.stats-section { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid var(--border);
}
.stat {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  position: relative;
}
.stat .big {
  font-family: 'Fraunces', serif;
  font-size: 52px; line-height: 1; font-weight: 500;
  color: var(--primary);
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.stat .big small { font-size: 24px; color: var(--accent); margin-left: 2px; }
.stat h3 { font-family: 'Inter', sans-serif; font-size: 15px; margin: 0 0 6px; font-weight: 600; }
.stat p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.5; }

.niche-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.niche {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}
.niche::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 240px; height: 240px;
  background: radial-gradient(circle, var(--primary-soft), transparent 65%);
  opacity: 0.6;
  transform: translate(35%, -35%);
  transition: transform 0.4s ease;
}
.niche:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.niche:hover::before { transform: translate(30%, -30%); }
.niche-icon {
  width: 54px; height: 54px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px -6px rgba(19, 78, 58, 0.4);
  position: relative; z-index: 1;
}
.niche h3 { font-size: 24px; margin-bottom: 6px; position: relative; z-index: 1; }
.niche .tag { font-size: 14px; color: var(--muted); margin-bottom: 22px; position: relative; z-index: 1; }
.niche ul { margin: 0; padding: 0; list-style: none; position: relative; z-index: 1; }
.niche li {
  padding: 8px 0;
  border-top: 1px solid var(--border);
  font-size: 14.5px; color: var(--ink-2);
  display: flex; align-items: flex-start; gap: 10px;
}
.niche li::before {
  content: ""; flex-shrink: 0; margin-top: 8px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
}

.services-section { background: var(--bg-alt); }
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.svc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.25s ease;
  position: relative;
}
.svc:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.svc-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent-2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.svc h4 { font-size: 16.5px; margin-bottom: 6px; letter-spacing: -0.01em; }
.svc p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}
.steps-grid::before {
  content: "";
  position: absolute; top: 28px; left: 8%; right: 8%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--border-strong) 0, var(--border-strong) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 600; color: var(--primary);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.step h4 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); margin: 0; max-width: 240px; margin-left: auto; margin-right: auto; }

.comp-section { background: var(--ink); color: var(--bg); position: relative; overflow: hidden; }
.comp-section::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 80% 10%, rgba(179, 130, 58, 0.18), transparent 60%),
    radial-gradient(ellipse 600px 500px at 15% 90%, rgba(19, 78, 58, 0.35), transparent 60%);
  pointer-events: none;
}
.comp-section h2, .comp-section h3, .comp-section h4 { color: var(--bg); }
.comp-section .section-head p { color: rgba(250, 246, 239, 0.7); }
.comp-section .eyebrow { color: var(--accent-soft); }
.comp-section .eyebrow::before { background: var(--accent); }
.comp-table {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative; z-index: 1;
  backdrop-filter: blur(10px);
}
.comp-row {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  align-items: center;
}
.comp-row + .comp-row { border-top: 1px solid rgba(255,255,255,0.08); }
.comp-cell { padding: 20px 24px; font-size: 15px; }
.comp-row.head .comp-cell {
  font-family: 'Fraunces', serif; font-size: 17px; font-weight: 600;
  background: rgba(255,255,255,0.02);
  letter-spacing: -0.01em;
}
.comp-row.head .comp-cell.featured {
  background: var(--accent); color: var(--ink);
  border-radius: 8px; margin: 8px; padding: 14px 18px;
  text-align: center;
}
.comp-cell.featured { background: rgba(179, 130, 58, 0.08); }
.comp-cell.label { color: rgba(250, 246, 239, 0.95); font-weight: 500; }
.comp-cell.val { color: rgba(250, 246, 239, 0.65); text-align: center; font-size: 14px; }
.comp-cell.val.yes { color: var(--accent-soft); }
.comp-cell.val.yes::before { content: "\2713  "; color: var(--accent); font-weight: 700; }
.comp-cell.val.no { color: rgba(250, 246, 239, 0.35); }
.comp-cell.val.no::before { content: "\2212  "; }

.pricing-section { background: var(--bg); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: stretch;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  position: relative;
  display: flex; flex-direction: column;
  transition: all 0.3s ease;
}
.plan:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.plan.featured {
  background: var(--ink);
  color: var(--bg);
  border: none;
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.plan.featured::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.plan .plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  box-shadow: 0 6px 16px -4px rgba(179, 130, 58, 0.5);
}
.plan h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px; margin-bottom: 4px;
}
.plan.featured h3 { color: var(--bg); }
.plan .sub { color: var(--muted); font-size: 14.5px; margin-bottom: 24px; }
.plan.featured .sub { color: rgba(250, 246, 239, 0.6); }
.plan .price-block {
  padding: 20px 0; margin-bottom: 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.plan.featured .price-block { border-color: rgba(255,255,255,0.1); }
.plan .price-main {
  font-family: 'Fraunces', serif;
  font-size: 44px; font-weight: 600;
  color: var(--ink); letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144;
}
.plan.featured .price-main { color: var(--bg); }
.plan .price-main small { font-size: 14px; font-weight: 500; color: var(--muted); font-family: 'Inter', sans-serif; margin-left: 4px; }
.plan.featured .price-main small { color: rgba(250,246,239,0.6); }
.plan .price-sub { font-size: 14px; color: var(--muted); margin-top: 6px; }
.plan.featured .price-sub { color: rgba(250,246,239,0.65); }
.plan .price-sub b { color: var(--primary); font-weight: 600; }
.plan.featured .price-sub b { color: var(--accent-soft); }
.plan ul { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.plan li {
  padding: 10px 0;
  font-size: 14.5px;
  color: var(--ink-2);
  display: flex; gap: 12px; align-items: flex-start;
}
.plan.featured li { color: rgba(250, 246, 239, 0.85); }
.plan li svg { flex-shrink: 0; margin-top: 3px; color: var(--primary); }
.plan.featured li svg { color: var(--accent); }
.plan .plan-cta { width: 100%; }
.plan.featured .btn-ghost { border-color: rgba(255,255,255,0.25); color: var(--bg); }
.plan.featured .btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: var(--accent); color: var(--bg); }

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

.test-section { background: var(--bg-alt); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.test {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  display: flex; flex-direction: column;
  margin: 0;
}
.test .quote-mark {
  font-family: 'Fraunces', serif; font-size: 60px; color: var(--accent);
  line-height: 0.7; margin-bottom: 6px;
  font-variation-settings: "opsz" 144;
}
.test blockquote {
  font-family: 'Fraunces', serif; font-size: 19px; line-height: 1.5;
  color: var(--ink); margin: 0 0 22px;
  font-variation-settings: "opsz" 80;
  font-weight: 400;
  flex: 1;
}
.test-author { display: flex; gap: 14px; align-items: center; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 15px;
  box-shadow: 0 4px 12px -4px rgba(19, 78, 58, 0.4);
}
.test-author .name { font-size: 14px; font-weight: 600; color: var(--ink); }
.test-author .role { font-size: 13px; color: var(--muted); }

.guarantee {
  background: linear-gradient(135deg, #0a3628, var(--primary));
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(179, 130, 58, 0.3);
}
.guarantee::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(179, 130, 58, 0.2), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(179, 130, 58, 0.15), transparent 40%);
  pointer-events: none;
}
.guarantee-seal {
  width: 80px; height: 80px; margin: 0 auto 24px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  background: rgba(179, 130, 58, 0.15);
  position: relative; z-index: 1;
}
.guarantee-eyebrow {
  color: var(--accent-soft);
  justify-content: center;
  display: flex;
  margin-bottom: 14px;
}
.guarantee-eyebrow::before { background: var(--accent); }
.guarantee h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--bg);
  margin: 0 0 14px;
  position: relative; z-index: 1;
  font-weight: 500;
}
.guarantee h3 em { color: var(--accent-soft); font-style: italic; }
.guarantee p {
  color: rgba(250, 246, 239, 0.85);
  max-width: 620px; margin: 0 auto;
  font-size: 16.5px; line-height: 1.65;
  position: relative; z-index: 1;
}

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 22px 26px;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 16.5px;
  color: var(--ink);
  font-family: 'Fraunces', serif;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex-shrink: 0; margin-left: 20px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease;
  font-size: 18px; line-height: 1;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--primary); color: var(--bg); }
.faq-content { padding: 0 26px 22px; color: var(--ink-2); font-size: 15px; line-height: 1.65; }

.cta-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 500px 300px at 15% 10%, var(--primary-soft), transparent 60%),
    radial-gradient(ellipse 500px 300px at 85% 90%, var(--accent-soft), transparent 60%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-eyebrow { justify-content: center; display: inline-flex; margin-bottom: 16px; }
.cta-banner h2 { font-size: clamp(30px, 3.5vw, 44px); margin-bottom: 14px; }
.cta-banner p { color: var(--ink-2); max-width: 580px; margin: 0 auto 34px; font-size: 17px; }
.cta-banner .hint { color: var(--muted); font-size: 13.5px; margin-top: 20px; }
.cta-btn { font-size: 16px; padding: 16px 32px; }

footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 40px;
  color: var(--muted); font-size: 14px;
  background: var(--bg-alt);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { max-width: 340px; line-height: 1.6; margin: 0; }
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--ink-2);
  margin: 0 0 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-col a { color: var(--muted); display: block; padding: 4px 0; font-size: 14px; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 13.5px;
}

.moments-section {
  background: var(--bg);
  position: relative;
}
.moments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.moment {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.moment::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.moment:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.moment:hover::before { opacity: 1; }
.moment-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
}
.moment-time {
  color: var(--primary);
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-variation-settings: "opsz" 80;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 600;
}
.moment-tag {
  position: relative;
  padding-left: 12px;
}
.moment-tag::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
}
.moment blockquote {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  padding: 0 0 0 18px;
  border-left: 2px solid var(--accent);
  font-variation-settings: "opsz" 80;
  font-weight: 400;
  font-style: italic;
}
.moment-resolution {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-top: auto;
  padding-top: 4px;
}
.moment-resolution strong {
  color: var(--primary);
  font-weight: 600;
}
.resolution-label {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 3px 8px;
  border-radius: 999px;
  margin-right: 8px;
  vertical-align: 2px;
}

.case-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  position: relative;
  overflow: hidden;
}
.case-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 800px 500px at 85% 20%, rgba(179, 130, 58, 0.12), transparent 60%),
    radial-gradient(ellipse 700px 600px at 10% 80%, rgba(19, 78, 58, 0.08), transparent 60%);
}
.case-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}
.case-quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.case-quote .quote-mark {
  font-family: 'Fraunces', serif; font-size: 56px;
  color: var(--accent); line-height: 0.6;
  font-variation-settings: "opsz" 144;
  margin-bottom: 4px;
}
.case-quote blockquote {
  font-family: 'Fraunces', serif;
  font-size: 21px; line-height: 1.5;
  margin: 6px 0 26px;
  color: var(--ink);
  font-weight: 400;
  font-variation-settings: "opsz" 80;
}
.case-author { display: flex; gap: 14px; align-items: center; }
.case-author .avatar { width: 44px; height: 44px; }
.case-author .name { font-weight: 600; font-size: 14.5px; color: var(--ink); }
.case-author .role { font-size: 13px; color: var(--muted); }
.case-modules {
  background: var(--primary-soft);
  border: 1px solid rgba(19, 78, 58, 0.18);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 24px;
}
.module-label {
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); font-weight: 700;
  margin-bottom: 14px;
}
.module-list { display: flex; flex-direction: column; gap: 11px; }
.module-item {
  display: flex; gap: 10px; align-items: center;
  font-size: 14.5px; color: var(--ink-2);
}
.module-item svg { flex-shrink: 0; color: var(--primary); }

.case-visual { display: flex; justify-content: center; }
.mock-chat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  transform: rotate(1.5deg);
  transition: transform 0.4s ease;
}
.mock-chat:hover { transform: rotate(0); }
.mock-header {
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: var(--bg);
  display: flex; gap: 12px; align-items: center;
}
.mock-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 17px;
  font-family: 'Fraunces', serif;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
}
.mock-name { font-weight: 600; font-size: 15px; color: var(--bg); line-height: 1.2; }
.mock-status { font-size: 12px; color: rgba(250, 246, 239, 0.8); display: flex; align-items: center; gap: 7px; margin-top: 3px; }
.status-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #7afcd3;
  box-shadow: 0 0 0 2px rgba(122, 252, 211, 0.3);
}
.mock-body {
  padding: 22px 18px 18px;
  background: var(--bg);
  min-height: 280px;
  display: flex; flex-direction: column; gap: 10px;
}
.mock-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px; line-height: 1.5;
}
.mock-msg.bot {
  background: var(--surface);
  border: 1px solid var(--border);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: var(--ink);
}
.mock-msg.user {
  background: var(--primary);
  color: var(--bg);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.mock-typing {
  background: var(--surface);
  border: 1px solid var(--border);
  align-self: flex-start;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  padding: 12px 16px;
  display: flex; gap: 4px;
}
.mock-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--muted);
  animation: bounce 1.4s infinite ease-in-out both;
}
.mock-typing span:nth-child(1) { animation-delay: -0.32s; }
.mock-typing span:nth-child(2) { animation-delay: -0.16s; }
@keyframes bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.45; }
  40% { transform: scale(1); opacity: 1; }
}

.case-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.case-stat { text-align: center; }
.case-stat .stat-num {
  font-family: 'Fraunces', serif;
  font-size: 48px; line-height: 1;
  font-weight: 500;
  color: var(--primary);
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.case-stat .stat-num small {
  font-size: 22px; color: var(--accent); font-weight: 500; margin-left: 2px;
}
.case-stat .stat-label {
  font-size: 13.5px; color: var(--muted);
  max-width: 180px; margin: 0 auto; line-height: 1.45;
}

.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .hero-card.call, .hero-card.booking, .hero-card.review {
    animation: none;
  }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .niche-grid, .svc-grid, .pricing-grid, .test-grid, .steps-grid, .stat-grid, .moments-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .comp-row { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .comp-cell { padding: 14px 12px; font-size: 13.5px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .case-layout { grid-template-columns: 1fr; gap: 36px; }
  .mock-chat { transform: none; max-width: 420px; }
  .case-stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 640px) {
  .nav-links a:not(.btn) { display: none; }
  section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .hero { padding: 64px 0 80px; }
  .niche-grid, .svc-grid, .pricing-grid, .test-grid, .steps-grid, .stat-grid, .moments-grid { grid-template-columns: 1fr; }
  .niche { padding: 32px 26px; }
  .plan { padding: 32px 24px; }
  .plan.featured { transform: none; }
  .guarantee { padding: 48px 28px; }
  .cta-banner { padding: 48px 24px; }
  .comp-row { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
