:root {
  --navy: #0b1b33;
  --navy-2: #13294b;
  --navy-3: #1d3a66;
  --blue: #0f9afc;
  --blue-dark: #035ee0;
  --blue-light: #25aefc;
  --amber: #f4a259;
  --amber-dark: #c8702a;
  --rose: #e76f6f;
  --ink: #16202e;
  --muted: #5a6577;
  --bg: #ffffff;
  --cream: #faf6ef;
  --border: #e7e3dc;
  --border-cool: #e4e8ee;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(11, 27, 51, 0.06), 0 2px 8px rgba(11, 27, 51, 0.04);
  --shadow: 0 2px 4px rgba(11, 27, 51, 0.04), 0 12px 32px rgba(11, 27, 51, 0.08);
  --shadow-lg: 0 4px 8px rgba(11, 27, 51, 0.05), 0 30px 60px -12px rgba(11, 27, 51, 0.22);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection { background: rgba(15, 154, 252, 0.25); }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { margin: 0 0 16px; color: var(--navy); }
h1, h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
h1 em, h2 em { font-style: italic; color: var(--blue-dark); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; }
p { margin: 0 0 12px; color: var(--muted); }

a { color: var(--blue-dark); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

svg use { pointer-events: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: var(--border-cool);
  box-shadow: 0 6px 24px rgba(11, 27, 51, 0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo:hover { text-decoration: none; }
.logo img { display: block; height: 36px; width: auto; }
.site-footer .logo img { height: 40px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav a {
  position: relative;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.94rem;
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.site-nav a:hover { text-decoration: none; }
.site-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600 !important;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--navy-3); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: 0.97rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-icon { width: 18px; height: 18px; transition: transform 0.2s var(--ease); }
.btn:hover .btn-icon { transform: translateX(3px); }
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 8px 20px -6px rgba(11, 27, 51, 0.5);
}
.btn-primary:hover { background: var(--navy-3); box-shadow: 0 12px 28px -8px rgba(11, 27, 51, 0.55); }
.btn-accent {
  background: linear-gradient(135deg, #036ef8, #0350d1);
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(15, 154, 252, 0.6);
}
.btn-accent:hover { box-shadow: 0 16px 36px -8px rgba(15, 154, 252, 0.75); }
.btn-ghost { background: rgba(255, 255, 255, 0.7); color: var(--navy); border-color: #d5dae2; }
.btn-ghost:hover { border-color: var(--navy); background: #fff; }
.btn-block { display: flex; width: 100%; }

/* ---------- Shared bits ---------- */
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 14px;
}
.eyebrow.eyebrow-light { color: var(--blue-light); font-size: 0.74rem; }

.section { position: relative; padding: 112px 0; }
.section-cream { background: var(--cream); }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-sub { font-size: 1.1rem; max-width: 560px; margin: 0; }
.fine-print { font-size: 0.82rem; margin: 28px 0 0; text-align: center; color: #8a93a2; }

.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(15, 154, 252, 0.14), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(244, 162, 89, 0.12), transparent 60%),
    linear-gradient(180deg, #fbfaf7 0%, #ffffff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 27, 51, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 27, 51, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 60% 30%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 60% 30%, #000 20%, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  margin-bottom: 22px;
}
.hero-sub { font-size: 1.15rem; max-width: 540px; line-height: 1.65; }
.hero-sub strong { color: var(--navy); font-weight: 700; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 32px 0 28px; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy-2);
}
.hero-badges li { display: inline-flex; align-items: center; gap: 7px; }
.hero-badges svg {
  width: 18px; height: 18px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(15, 154, 252, 0.16);
  color: var(--blue-dark);
}

/* Hero visual */
.hero-visual { position: relative; padding: 24px 40px 48px 0; }
.browser {
  position: relative;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(11, 27, 51, 0.06);
  overflow: hidden;
  transform: perspective(1600px) rotateY(-6deg) rotateX(2deg);
  transform-origin: left center;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
  background: #f3f4f7;
  border-bottom: 1px solid #e6e8ed;
}
.browser-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; }
.browser-bar .dot:nth-child(2) { background: #febc2e; }
.browser-bar .dot:nth-child(3) { background: #28c840; }
.browser-url {
  flex: 1;
  margin-left: 14px;
  padding: 4px 12px;
  border-radius: 6px;
  background: #fff;
  font-size: 0.72rem;
  color: #7a8394;
  text-align: center;
  max-width: 220px;
}

/* Mock site (bakery) */
.mock { font-family: var(--sans); }
.mock-bakery { background: #fffaf3; padding: 16px 20px 22px; }
.mock-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.mock-logo { font-family: var(--serif); font-weight: 700; font-size: 0.95rem; color: #5b2e1a; }
.mock-links { display: flex; gap: 10px; }
.mock-links i { display: block; width: 32px; height: 6px; border-radius: 3px; background: #e7d6c4; }
.mock-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}
.mock-kicker {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c0643a;
  font-weight: 700;
  margin-bottom: 6px;
}
.mock-title {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.1;
  font-weight: 600;
  color: #3b1d10;
  margin-bottom: 12px;
}
.mock-btn {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #c0643a;
  color: #fff;
  font-size: 0.66rem;
  font-weight: 600;
}
.mock-photo {
  aspect-ratio: 4 / 3.4;
  border-radius: 10px;
  background:
    radial-gradient(circle at 35% 40%, #f7d7a8 0 18%, transparent 19%),
    radial-gradient(circle at 62% 58%, #e8b073 0 22%, transparent 23%),
    radial-gradient(circle at 40% 72%, #d9965a 0 14%, transparent 15%),
    linear-gradient(135deg, #f2c79a, #c77d4a);
}
.mock-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mock-cards div {
  padding: 8px 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #f0e3d3;
  font-size: 0.62rem;
  line-height: 1.35;
}
.mock-cards b { display: block; color: #3b1d10; font-size: 0.66rem; }
.mock-cards span { color: #8a6a55; }

.phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 148px;
  padding: 8px;
  border-radius: 26px;
  background: var(--navy);
  box-shadow: var(--shadow-lg);
  transform: rotate(4deg);
}
.phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  width: 40px; height: 6px;
  margin-left: -20px;
  border-radius: 4px;
  background: #000;
  z-index: 2;
}
.mock-phone {
  border-radius: 19px;
  padding: 26px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-phone .mock-logo { font-size: 0.72rem; }
.mock-phone .mock-photo { aspect-ratio: 4 / 3; border-radius: 8px; }
.mock-phone .mock-title { font-size: 0.9rem; margin: 2px 0 0; }
.mock-phone .mock-btn { align-self: flex-start; font-size: 0.56rem; }
.mock-line { display: block; height: 5px; border-radius: 3px; background: #efe1d0; }
.mock-line.short { width: 60%; }

.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(11, 27, 51, 0.05);
  font-size: 0.78rem;
  line-height: 1.3;
  animation: float 6s ease-in-out infinite;
}
.float-chip b { display: block; color: var(--navy); font-weight: 600; }
.float-chip span { color: var(--muted); }
.chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: rgba(244, 162, 89, 0.18);
  color: var(--amber-dark);
  font-size: 1rem;
  flex-shrink: 0;
}
.chip-icon-green { background: rgba(34, 197, 94, 0.15); color: #16a34a; }
.chip-icon svg { width: 18px; height: 18px; }
.chip-a { top: 0; right: 10px; }
.chip-b { bottom: 20px; left: -28px; animation-delay: -3s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Trust bar */
.trust-bar {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  padding: 0;
  margin: 64px 0 0;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border-cool);
  box-shadow: var(--shadow);
}
.trust-bar li {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-bar li + li { border-left: 1px solid var(--border-cool); }
.trust-bar b {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.trust-bar span { font-size: 0.88rem; color: var(--muted); }

/* ---------- Services ---------- */
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-cool);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.card p { margin: 0; font-size: 0.95rem; }
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  margin-bottom: 22px;
}
.card-icon svg {
  width: 24px; height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ic-blue { background: rgba(15, 154, 252, 0.14); color: var(--blue-dark); }
.ic-amber { background: rgba(244, 162, 89, 0.18); color: var(--amber-dark); }
.ic-navy { background: rgba(29, 58, 102, 0.1); color: var(--navy-3); }
.ic-rose { background: rgba(231, 111, 111, 0.14); color: #c24848; }

/* ---------- Showcase ---------- */
.showcase { margin: 0; }
.showcase-frame {
  padding: 14px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.showcase:hover .showcase-frame { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.showcase figcaption { padding: 18px 6px 0; }
.showcase figcaption b { display: block; color: var(--navy); font-size: 1.02rem; }
.showcase figcaption span { font-size: 0.9rem; color: var(--muted); }

.mini {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3.1;
  display: flex;
  flex-direction: column;
  font-family: var(--sans);
}
.mini-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-size: 0.72rem;
}
.mini-nav i { width: 60px; height: 6px; border-radius: 3px; background: currentColor; opacity: 0.25; }
.mini-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  padding: 0 16px;
}
.mini-hero span { font-size: 1.3rem; line-height: 1.12; max-width: 85%; }
.mini-hero em {
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}
.mini-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 14px 16px 16px; }
.mini-row i { height: 34px; border-radius: 8px; }

.mini-cafe { background: linear-gradient(160deg, #e6f4f4, #cfe8ea); color: #134e5e; }
.mini-cafe .mini-hero span { font-family: var(--serif); font-weight: 600; }
.mini-cafe .mini-hero em { background: #134e5e; color: #fff; }
.mini-cafe .mini-row i { background: rgba(255, 255, 255, 0.75); }

.mini-green { background: #13301f; color: #e7f5e9; }
.mini-green .mini-nav b { color: #a3e635; }
.mini-green .mini-hero span { font-weight: 800; letter-spacing: -0.02em; }
.mini-green .mini-hero em { background: #a3e635; color: #13301f; }
.mini-green .mini-row i { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.1); }

.mini-salon { background: linear-gradient(170deg, #f8ece6, #efd9cf); color: #6b3a3a; }
.mini-salon .mini-nav b { font-family: var(--serif); font-style: italic; font-size: 0.85rem; }
.mini-salon .mini-hero span { font-family: var(--serif); font-style: italic; font-weight: 500; }
.mini-salon .mini-hero em { background: transparent; border: 1px solid #6b3a3a; color: #6b3a3a; }
.mini-salon .mini-row i { background: rgba(255, 255, 255, 0.6); }

/* ---------- Comparison ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  align-items: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}
.compare-col {
  position: relative;
  padding: 36px 32px;
  background: var(--cream);
  border: 1px solid var(--border);
}
.compare-col:first-child { border-radius: var(--radius) 0 0 var(--radius); border-right: none; }
.compare-col:last-child { border-radius: 0 var(--radius) var(--radius) 0; border-left: none; }
.compare-us {
  z-index: 1;
  padding: 48px 36px;
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.compare-tag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.compare-label { font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.compare-price {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 22px;
}
.compare-us .compare-price { font-size: 2.6rem; color: var(--blue-dark); }
.compare-price span {
  display: block;
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}
.compare ul { list-style: none; padding: 0; margin: 0; }
.compare li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.93rem;
  color: var(--ink);
}
.compare li svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--blue-dark); }
.compare li svg.no { color: #b4bcc8; }
.compare-col:not(.compare-us) li { color: var(--muted); }

/* ---------- Pricing ---------- */
.section-dark {
  overflow: hidden;
  background: var(--navy);
  color: #c9d3e3;
}
.section-dark h2 { color: #fff; }
.section-dark h2 em { color: var(--blue-light); }
.pricing-copy p { color: #aab6c9; }
.pricing-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 80% 50%, rgba(15, 154, 252, 0.22), transparent 70%),
    radial-gradient(500px 300px at 10% 0%, rgba(244, 162, 89, 0.1), transparent 70%);
  pointer-events: none;
}
.pricing-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.pricing-copy > p { font-size: 1.1rem; max-width: 460px; }
.pricing-note {
  margin-top: 32px;
  padding: 20px 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 480px;
}
.pricing-note p { margin: 0; font-size: 0.92rem; }
.pricing-note b { color: #fff; font-weight: 600; }
.pricing-note .footnote { margin-top: 12px; font-size: 0.8rem; color: #8d9ab0; }

.pricing-card {
  position: relative;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.pricing-header { padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--border-cool); }
.pricing-name {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin: 0 0 8px;
}
.pricing-price {
  display: flex;
  align-items: flex-start;
  font-family: var(--serif);
  font-size: 4.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 0;
}
.pricing-price sup { font-size: 1.8rem; margin: 8px 4px 0 0; top: 0; }
.pricing-price span {
  align-self: flex-end;
  margin: 0 0 8px 10px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--muted);
}
.pricing-name { display: flex; align-items: center; gap: 10px; }
.pricing-badge {
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(244, 162, 89, 0.18);
  color: var(--amber-dark);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}
.pricing-was s {
  margin-right: 6px;
  color: #8a93a2;
  text-decoration-thickness: 1.5px;
}
.pricing-features { list-style: none; padding: 0; margin: 0 0 30px; }
.pricing-features li {
  display: flex;
  gap: 12px;
  padding: 7px 0;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.45;
}
.pricing-features svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(15, 154, 252, 0.15);
  color: var(--blue-dark);
}
.pricing-sub { text-align: center; font-size: 0.88rem; margin: 16px 0 0; color: var(--muted) !important; }

/* ---------- Process ---------- */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 2px;
  background: repeating-linear-gradient(90deg, #cfd6e0 0 8px, transparent 8px 16px);
}
.step {
  position: relative;
  text-align: center;
  padding: 0 12px;
}
.step-num {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  box-shadow: 0 0 0 8px #fff, var(--shadow);
}
.step:nth-child(2) .step-num { border-color: var(--blue); color: var(--blue-dark); }
.step:nth-child(3) .step-num { background: var(--navy); color: #fff; border-color: var(--navy); }
.step-time {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber-dark);
  margin-bottom: 8px;
}
.step h3 { font-size: 1.2rem; }
.step p:last-child { font-size: 0.96rem; max-width: 320px; margin: 0 auto; }

/* ---------- FAQ ---------- */
.faq-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.faq-inner .section-head { position: sticky; top: 110px; margin-bottom: 0; }
.faq-list details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.faq-list details:hover { border-color: #d6d0c5; }
.faq-list details[open] { box-shadow: var(--shadow); border-color: transparent; }
.faq-list summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 20px 60px 20px 24px;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "";
  position: absolute;
  right: 20px; top: 50%;
  width: 28px; height: 28px;
  margin-top: -14px;
  border-radius: 50%;
  background:
    linear-gradient(var(--navy), var(--navy)) center / 11px 1.8px no-repeat,
    linear-gradient(var(--navy), var(--navy)) center / 1.8px 11px no-repeat,
    var(--cream);
  transition: transform 0.3s var(--ease), background-color 0.3s ease;
}
.faq-list details[open] summary::after {
  transform: rotate(45deg);
  background-color: rgba(15, 154, 252, 0.18);
}
.faq-list details p { padding: 0 24px 22px; margin: 0; }
.faq-list details p.footnote { margin-top: -10px; font-size: 0.82rem; color: #7a8394; }

/* ---------- Contact ---------- */
.contact-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  padding: 64px;
  border-radius: 32px;
  background:
    radial-gradient(500px 300px at 0% 0%, rgba(15, 154, 252, 0.22), transparent 70%),
    radial-gradient(400px 300px at 100% 100%, rgba(244, 162, 89, 0.14), transparent 70%),
    var(--navy);
  box-shadow: var(--shadow-lg);
}
.contact-copy h2 { color: #fff; }
.contact-copy h2 em { color: var(--blue-light); }
.contact-copy p { color: #aab6c9; font-size: 1.08rem; }
.contact-points { list-style: none; padding: 0; margin: 26px 0 30px; }
.contact-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  color: #e3e9f2;
  font-weight: 500;
}
.contact-points svg {
  width: 22px; height: 22px;
  padding: 4px;
  border-radius: 50%;
  background: rgba(37, 174, 252, 0.2);
  color: var(--blue-light);
}
.contact-email { font-size: 0.95rem !important; margin: 0; }
.contact-email a { color: var(--blue-light); font-weight: 600; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.45);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
}
.contact-form input,
.contact-form textarea {
  font: inherit;
  font-weight: 400;
  font-size: 0.97rem;
  padding: 12px 14px;
  border: 1.5px solid var(--border-cool);
  border-radius: 10px;
  background: #fafbfc;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form input:hover,
.contact-form textarea:hover { border-color: #cfd6e0; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(15, 154, 252, 0.16);
}
.form-note { font-size: 0.88rem; margin: 0; min-height: 1.2em; text-align: center; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 64px 0 32px;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { max-width: 320px; margin: 14px 0 0; font-size: 0.92rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center; }
.footer-links a { color: var(--navy); font-weight: 500; font-size: 0.94rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  font-size: 0.85rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--muted); }

/* ---------- Reveal on scroll ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

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

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { gap: 40px; }
  .pricing-inner { gap: 48px; }
  .contact-panel { padding: 48px; gap: 40px; }
}

@media (max-width: 900px) {
  .section { padding: 84px 0; }
  .hero { padding-top: 48px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; margin: 0 auto; width: 100%; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .trust-bar li:nth-child(3) { border-left: none; }
  .trust-bar li:nth-child(n+3) { border-top: 1px solid var(--border-cool); }
  .grid-3 { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .compare { grid-template-columns: 1fr; gap: 16px; max-width: 460px; }
  .compare-col,
  .compare-col:first-child,
  .compare-col:last-child { border: 1px solid var(--border); border-radius: var(--radius); }
  .compare-us { order: -1; border: 2px solid var(--blue); }
  .pricing-inner,
  .faq-inner,
  .contact-panel { grid-template-columns: 1fr; }
  .faq-inner { gap: 40px; }
  .faq-inner .section-head { position: static; }
  .timeline { grid-template-columns: 1fr; gap: 40px; max-width: 460px; margin: 0 auto; }
  .timeline::before { display: none; }
  .step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 27px; top: 64px; bottom: -32px;
    width: 2px;
    background: repeating-linear-gradient(180deg, #cfd6e0 0 8px, transparent 8px 16px);
  }
  .step { text-align: left; padding: 0 0 0 80px; }
  .step-num { position: absolute; left: 0; top: 0; margin: 0; }
  .step p:last-child { margin: 0; }
}

@media (max-width: 720px) {
  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border-cool);
    box-shadow: 0 20px 30px rgba(11, 27, 51, 0.08);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid var(--border-cool); }
  .site-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; margin-top: 14px; border-bottom: none !important; }
  .nav-toggle { display: flex; }
  .site-header { background: rgba(255, 255, 255, 0.92); }
}

@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .section { padding: 72px 0; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-visual { padding: 16px 24px 40px 0; }
  .phone { width: 116px; }
  .chip-a { right: 0; top: -8px; }
  .chip-b { left: -4px; bottom: 8px; }
  .float-chip { font-size: 0.7rem; }
  .trust-bar li { padding: 18px 16px; }
  .trust-bar b { font-size: 1.45rem; }
  .compare-col, .compare-us { padding: 32px 24px; }
  .pricing-card { padding: 28px 22px; }
  .pricing-price { font-size: 3.6rem; }
  .contact-panel { padding: 36px 20px; border-radius: 24px; }
  .contact-form { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }
}
