﻿:root {
  --bg: #0b0b0f;
  --panel: #ffffff;
  --panel-stroke: #e5e7eb;
  --text: #0f172a;
  --muted: #475569;
  --accent: #e02121;
  --accent-2: #ffffff;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --nav-height: 72px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  color: #f5f5f5;
  background: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Manrope', 'Segoe UI', sans-serif; color: #000; }

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

.backdrop { display: none; }

.page {
  position: relative;
  z-index: 1;
  width: min(1200px, 92vw);
  margin: 0 auto 6rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  color: var(--text);
  background: linear-gradient(#ffffff 0%, #ffffff 60%, rgba(255,255,255,0) 100%);
}

.pricing-hero {
  text-align: center;
  padding: 2rem 1rem 0;
}
.pricing-hero h1 {
  margin: 0.35rem 0 0;
  font-size: clamp(2.6rem, 5.6vw, 4.8rem);
  line-height: 0.98;
}

.pricing-switch-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: -1rem;
}

.pricing-switch-label {
  color: #111827;
  font-weight: 600;
}

.pricing-switch {
  width: 72px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(224, 33, 33, 0.22);
  position: relative;
  cursor: pointer;
  transition: background 180ms ease;
}

.pricing-switch[aria-checked="true"] {
  background: rgba(224, 33, 33, 0.85);
}

.pricing-switch-knob {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
  transition: transform 180ms ease;
}

.pricing-switch[aria-checked="true"] .pricing-switch-knob {
  transform: translateX(34px);
}

.pricing-card-row {
  display: flex;
  justify-content: center;
}

.pricing-card {
  width: min(100%, 420px);
  padding: 2rem 2rem 2.2rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #ff7f78 0%, #ff6a66 100%);
  box-shadow: 0 28px 70px rgba(224, 33, 33, 0.18);
  text-align: center;
  overflow: hidden;
}

.pricing-amount.is-swiping-left {
  animation: pricingSwipeLeft 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-amount.is-swiping-right {
  animation: pricingSwipeRight 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-badge {
  margin: 0 0 0.85rem;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-card h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
}

.pricing-amount {
  margin: 1.35rem 0 1.6rem;
  color: #ffffff;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.2rem;
  flex-wrap: wrap;
}

.pricing-currency,
.pricing-suffix,
.pricing-number {
  line-height: 1;
}

.pricing-currency,
.pricing-suffix {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.pricing-number {
  font-size: clamp(3.2rem, 7vw, 4.6rem);
  letter-spacing: -0.05em;
}

.pricing-annual-note {
  margin-left: 0.45rem;
  align-self: flex-start;
  color: #ffffff;
  font-size: clamp(0.95rem, 2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.pricing-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
}

.pricing-feature-list li {
  padding: 1rem 0;
  color: #ffffff;
  font-weight: 700;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.pricing-feature-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.pricing-book-btn {
  width: 100%;
  background: #ffffff;
  color: #111827;
  border-color: #ffffff;
  box-shadow: none;
}

.pricing-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.25rem;
  align-items: start;
  margin-top: 3.5rem;
}

.pricing-links-column {
  display: grid;
  gap: 1.75rem;
}

.pricing-links-column h2 {
  margin: 0;
  padding: 1rem 1.25rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #ff7f78 0%, #ff6a66 100%);
  color: #ffffff;
  text-align: center;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.1;
  box-shadow: 0 16px 36px rgba(224, 33, 33, 0.12);
}

.pricing-link-row {
  display: block;
  padding: 1.2rem 1.25rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(224, 33, 33, 0.12);
  color: #111827;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(224, 33, 33, 0.05);
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
  position: relative;
  overflow: hidden;
}

.pricing-link-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 999px;
  background: #e02121;
}

.pricing-link-row:hover {
  transform: translateY(-1px);
  border-color: rgba(224, 33, 33, 0.28);
  box-shadow: 0 16px 32px rgba(224, 33, 33, 0.08);
}

@keyframes pricingSwipeLeft {
  0% {
    opacity: 0.55;
    transform: translateX(64px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pricingSwipeRight {
  0% {
    opacity: 0.55;
    transform: translateX(-64px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  padding: 0.85rem 4vw;
  width: 100%;
  background: #ffffff;
  color: #000000;
  border-bottom: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
  overflow: visible;
}
.nav-underline {
  height: 12px;
  background: linear-gradient(to bottom, rgba(213,217,223,0.55) 0%, rgba(0,0,0,0.05) 45%, rgba(0,0,0,0) 100%);
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -12px;
  z-index: 2;
  pointer-events: none;
}

.nav-inner {
  width: min(1200px, 92vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}

.brand {
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand img { height: 72px; width: auto; display: block; max-height: 72px; }

.nav-links { display: flex; gap: 0.75rem; align-items: center; }
.nav .btn { padding: 0.6rem 1rem; border-radius: 12px; }

.nav-links a, .drop-trigger {
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 1px solid transparent;
  background: transparent;
  color: #000000;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
}

.nav-links a:hover, .drop-trigger:hover {
  background: #f4f6fb;
  color: #000000;
  border-color: #e5e7eb;
}

.pill { border: 1px solid #e5e7eb; background: #f7f9fc; }

.dropdown { position: relative; }

.drop-trigger { cursor: pointer; display: inline-flex; align-items: center; gap: 0.3rem; }
.chevron { font-size: 0.9rem; }

.drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 150ms ease, transform 150ms ease;
  will-change: opacity, transform;
}

.drop-menu a { padding: 0.75rem 0.85rem; border-bottom: 1px solid #f1f5f9; color: #000000; }
.drop-menu a { font-family: 'Manrope', 'Segoe UI', sans-serif; }
.drop-menu a:last-child { border-bottom: none; }
.drop-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* mega menu layout */
.drop-menu.mega {
  min-width: 620px;
  padding: 1rem 1.25rem 1.25rem;
  gap: 1rem;
}
.mega-title {
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  font-weight: 700;
  color: #0f172a;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 0.6rem;
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem 1rem;
}
.mega-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: start;
  padding: 0.5rem;
  border-radius: 10px;
  transition: background 0.15s, transform 0.15s;
  text-decoration: none;
  color: inherit;
}
.mega-item:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}
.mega-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #aeb6c2;
  display: inline-block;
}
.mega-icon.globe {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><path d='M2 12h20'/><path d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/></svg>") center / 68% 68% no-repeat,
    #ffffff;
}
.mega-icon.star {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000000'><path d='M12 17.3l-5.09 3.07 1.35-5.8-4.51-3.9 5.93-.5L12 4l2.32 6.17 5.93.5-4.51 3.9 1.35 5.8z'/></svg>") center / 70% 70% no-repeat,
    #ffffff;
}
.mega-icon.phone {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><rect x='7' y='2' width='10' height='20' rx='2'/><line x1='11' y1='19' x2='13' y2='19'/></svg>") center / 68% 68% no-repeat,
    #ffffff;
}
.mega-icon.menu {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><rect x='6' y='3' width='12' height='18' rx='2'/><line x1='9' y1='7' x2='15' y2='7'/><line x1='9' y1='11' x2='15' y2='11'/><line x1='9' y1='15' x2='13' y2='15'/></svg>") center / 70% 70% no-repeat,
    #ffffff;
}
.mega-icon.meta {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><circle cx='6' cy='12' r='2'/><circle cx='18' cy='6' r='2'/><circle cx='18' cy='18' r='2'/><line x1='8' y1='12' x2='16' y2='7'/><line x1='8' y1='12' x2='16' y2='17'/></svg>") center / 70% 70% no-repeat,
    #ffffff;
}
.mega-icon.follow {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M4 5h16v14H4z'/><path d='M4 7l8 5 8-5'/><path d='M12 12l4 3'/><path d='M12 12l-4 3'/></svg>") center / 70% 70% no-repeat,
    #ffffff;
}

.mega-label { font-family: 'Manrope', 'Segoe UI', sans-serif; font-weight: 700; color: #0f172a; }
.mega-desc { font-family: 'Manrope', 'Segoe UI', sans-serif; color: #475569; font-size: 0.92rem; line-height: 1.4; }

.menu-toggle {
  display: none;
  background: #ffffff;
  color: #000000;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
  font: inherit;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.hero {
  margin-top: 3rem;
  min-height: auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  align-items: flex-start;
  justify-items: center;
  position: relative;
  isolation: isolate;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.hero::before {
  width: min(720px, 70vw);
  height: min(720px, 70vw);
  top: -7rem;
  left: 50%;
  transform: translateX(-64%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(224, 33, 33, 0.18) 0%, rgba(224, 33, 33, 0.1) 28%, rgba(224, 33, 33, 0.02) 62%, rgba(224, 33, 33, 0) 78%);
  filter: blur(8px);
}
.hero::after {
  width: min(980px, 92vw);
  height: 86%;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%) rotate(-2.2deg);
  border-radius: 42px;
  background:
    linear-gradient(115deg, transparent 0 26%, rgba(224, 33, 33, 0.06) 26.4%, transparent 27%),
    linear-gradient(115deg, transparent 0 53%, rgba(224, 33, 33, 0.05) 53.4%, transparent 54%),
    linear-gradient(115deg, transparent 0 80%, rgba(224, 33, 33, 0.045) 80.4%, transparent 81%),
    linear-gradient(25deg, transparent 0 42%, rgba(224, 33, 33, 0.04) 42.4%, transparent 43%),
    linear-gradient(135deg, rgba(255, 230, 228, 0.86), rgba(255, 244, 243, 0.3));
  border: 1px solid rgba(224, 33, 33, 0.08);
  box-shadow: 0 36px 90px rgba(224, 33, 33, 0.08);
}
.hero-copy { display: grid; gap: 1.25rem; width: 100%; }
.hero-bubble {
  width: min(1100px, 95vw);
  padding: 3rem clamp(1.5rem, 3vw, 3.5rem);
  box-shadow: var(--shadow), 0 0 0 6px rgba(0, 0, 0, 0.12), 0 10px 35px rgba(0,0,0,0.08);
  position: relative;
  overflow: visible;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.94));
}
.hero-specialty-bubble {
  width: min(1100px, 95vw);
  margin-top: 0.9rem;
  padding: 1rem 1.25rem;
}
.hero-bubble::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: #e02121;
  border-radius: 4px;
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1.75rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-logo {
  display: flex;
  justify-content: center;
}
.hero-bubble h1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 800;
}
.hero-specialty {
  margin: 0;
  color: #e02121;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
}
.hero-specialty-list {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1.5rem;
}
.hero-specialty-list li {
  position: relative;
  padding-left: 1rem;
  color: #000;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.35;
}
.hero-specialty-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #e02121;
}

@media (max-width: 640px) {
  .hero-specialty-list {
    grid-template-columns: 1fr;
  }
}
.hero-bubble .lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
}
.hero .actions .btn.primary {
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
}

.hero-figure-img {
  max-width: 100%;
  height: auto;
  max-height: 520px;
}

.hero-follow {
  width: min(1100px, 95vw);
  margin: 0.8rem auto 0;
  padding: 0 1rem;
  text-align: left;
}

.rating-row-group {
  width: min(1100px, 95vw);
  margin: 1rem auto 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.rating-card {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  border: 1px solid var(--panel-stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #ffffff;
  width: fit-content;
  max-width: 340px;
  min-width: 220px;
  gap: 0.75rem;
  position: relative;
}
.rating-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #000;
}
.rating-card::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #e02121;
  border-radius: 4px;
}
.rating-logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.rating-text {
  display: grid;
  gap: 0.2rem;
}
.rating-label {
  font-weight: 700;
}
.rating-stars {
  letter-spacing: 0.12em;
  color: #fbbf24;
  font-size: 1.05rem;
}

.follow-text {
  width: min(1100px, 95vw);
  margin: 12rem auto 0;
  padding: 0 1rem;
  font-size: clamp(2.35rem, 5.8vw, 4.8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #000;
  text-align: center;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
}

.product-list {
  width: min(1200px, 92vw);
  margin: 2rem auto 0;
  display: grid;
  gap: 2.5rem;
  padding-bottom: 11rem;
}
.product-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
}
.product-row.reverse {
  grid-template-columns: 1fr 1.05fr;
}
.product-row.reverse .product-visual { order: 2; }
.product-row.reverse .product-copy { order: 1; }

.product-visual { display: flex; justify-content: center; }
.device {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 5.8;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
  background: linear-gradient(120deg, #f3f4f6, #e2e8f0);
  position: relative;
  overflow: hidden;
}
.device-media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.device::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(224,33,33,0.18), rgba(255,255,255,0.4));
  mix-blend-mode: multiply;
}
.device::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -55%;
  width: 55%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.34), rgba(255,255,255,0));
  animation: slide 4.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  will-change: transform;
}
.demo-1::after { background: linear-gradient(135deg, rgba(224,33,33,0.18), rgba(255,255,255,0.4)); }
.demo-2::after { background: linear-gradient(135deg, rgba(0,182,122,0.16), rgba(255,255,255,0.35)); }
.demo-3::after { background: linear-gradient(135deg, rgba(59,130,246,0.18), rgba(255,255,255,0.4)); }
.demo-4::after { background: linear-gradient(135deg, rgba(255,152,0,0.16), rgba(255,255,255,0.35)); }
.demo-5::after { background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(255,255,255,0.35)); }
.demo-6::after { background: linear-gradient(135deg, rgba(34,197,94,0.18), rgba(255,255,255,0.35)); }
.demo-1 {
  padding: 1rem 1rem 0.75rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(180deg, #ff7f78 0%, #ff6a66 100%);
}
.demo-1::after {
  inset: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
}
.demo-2 {
  padding: 1rem 1rem 0.75rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(180deg, #ff7f78 0%, #ff6a66 100%);
}
.demo-2::after {
  inset: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
}
.demo-3 {
  padding: 1rem 1rem 0.9rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(180deg, #ff7f78 0%, #ff6a66 100%);
}
.demo-3::after {
  inset: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
}
.demo-4 {
  padding: 1rem 1rem 0.9rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(180deg, #ff7f78 0%, #ff6a66 100%);
}
.demo-4::after {
  inset: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
}
.demo-5 {
  padding: 1rem 1rem 0.9rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(180deg, #ff7f78 0%, #ff6a66 100%);
}
.demo-5::after {
  inset: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
}
.demo-6 {
  padding: 1rem 1rem 0.9rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(180deg, #ff7f78 0%, #ff6a66 100%);
}
.demo-6::after {
  inset: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
}
.device-overlay {
  position: absolute;
  top: 1.4rem;
  left: 1.15rem;
  right: 1.15rem;
  z-index: 2;
  display: grid;
  gap: 0.15rem;
  text-align: center;
  color: #fff8f4;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-wrap: balance;
  text-shadow: 0 8px 24px rgba(0,0,0,0.16);
}
.website-media {
  width: 88%;
  height: auto;
  max-height: 76%;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 22px;
}
.review-funnel-media {
  width: 88%;
  height: auto;
  max-height: 76%;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 22px;
}
.menus-media {
  width: 88%;
  height: auto;
  max-height: 76%;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 22px;
}
.meta-media {
  width: 88%;
  height: auto;
  max-height: 76%;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 22px;
}
.lead-followup-media {
  width: 88%;
  height: auto;
  max-height: 76%;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 22px;
}
.local-seo-media {
  width: 88%;
  height: auto;
  max-height: 76%;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 22px;
}
.mock-visual {
  position: relative;
  z-index: 1;
  width: 88%;
  max-height: 76%;
  display: grid;
  align-content: end;
}
.mock-card {
  border-radius: 20px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.14);
}
.mock-title,
.mock-line,
.mock-chip,
.mock-pill,
.mock-cta,
.search-bar,
.ranking-list span,
.stat-box,
.map-card,
.funnel-pill,
.flow-node,
.flow-link {
  display: block;
}
.mock-title {
  width: 72%;
  height: 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
}
.mock-title.short {
  width: 52%;
}
.mock-line {
  width: 100%;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.7);
}
.mock-line.medium {
  width: 80%;
}
.mock-line.short {
  width: 62%;
}
.mock-chip {
  width: 38%;
  height: 1.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.4);
}
.menus-visual {
  gap: 0.85rem;
}
.menu-board {
  padding: 1rem;
  display: grid;
  gap: 0.65rem;
}
.mock-price-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}
.mock-price-row span {
  height: 3.1rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffd0cf, #ffc0be);
}
.menu-photo {
  height: 7.4rem;
  background: linear-gradient(135deg, #ffe0dc, #ff9a92 55%, #e02121);
}
.ads-visual,
.funnel-visual,
.seo-visual {
  gap: 0.85rem;
}
.ad-card {
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
}
.mock-pill {
  width: 34%;
  height: 1.6rem;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.26);
}
.mock-cta {
  width: 42%;
  height: 2.25rem;
  border-radius: 14px;
  background: linear-gradient(90deg, #e02121, #ff7f78);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}
.stat-box {
  height: 4.2rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}
.funnel-pill {
  width: 48%;
  height: 1.7rem;
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(255,255,255,0.3);
}
.flow-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0.35rem;
}
.flow-node {
  height: 3.4rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.84);
  box-shadow: 0 10px 22px rgba(49, 46, 129, 0.16);
}
.flow-node.active {
  background: rgba(255,255,255,0.98);
}
.flow-link {
  width: 1.2rem;
  height: 0.3rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
}
.funnel-card {
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
}
.search-bar {
  width: 100%;
  height: 3rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 12px 24px rgba(20, 83, 45, 0.12);
}
.map-card {
  height: 8rem;
  border-radius: 22px;
  background:
    linear-gradient(45deg, rgba(255,255,255,0.35) 24%, transparent 24% 76%, rgba(255,255,255,0.35) 76%),
    linear-gradient(-45deg, rgba(255,255,255,0.32) 24%, transparent 24% 76%, rgba(255,255,255,0.32) 76%),
    rgba(255,255,255,0.88);
  box-shadow: 0 14px 26px rgba(20, 83, 45, 0.14);
}
.ranking-list {
  display: grid;
  gap: 0.5rem;
}
.ranking-list span {
  height: 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
}

.product-copy h3 { margin: 0 0 0.4rem; }
.product-copy p { margin: 0 0 0.75rem; color: var(--muted); }
.product-copy ul {
  margin: 0 0 1rem;
  padding: 0;
  color: #000;
  list-style: none;
}
.product-copy ul li {
  margin: 0.35rem 0;
  padding-left: 1.6rem;
  position: relative;
}
.product-copy ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18rem;
  width: 0.9rem;
  height: 0.9rem;
  background: url("images/bullet-check.png") center / contain no-repeat;
  filter: hue-rotate(-120deg) saturate(400%) brightness(0.9);
}

@keyframes slide {
  0% { transform: translateX(0); opacity: 0; }
  12% { opacity: 0.3; }
  50% { opacity: 0.55; }
  88% { opacity: 0.3; }
  100% { transform: translateX(285%); opacity: 0; }
}
.rating-row-group {
  width: min(1100px, 95vw);
  margin: 1rem auto 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.rating-card {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  border: 1px solid var(--panel-stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #ffffff;
  width: fit-content;
  max-width: 340px;
  min-width: 220px;
  gap: 0.75rem;
  position: relative;
}
.rating-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #000;
}
.rating-card::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #e02121;
  border-radius: 4px;
}
.rating-logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.rating-text {
  display: grid;
  gap: 0.2rem;
}
.rating-label {
  font-weight: 700;
}
.rating-stars {
  letter-spacing: 0.12em;
  color: #fbbf24;
  font-size: 1.05rem;
}


@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 1.25rem;
  }
  .hero-logo {
    order: -1;
    justify-content: center;
  }
  .hero-figure-img { max-height: 420px; }
}

@media (max-width: 540px) {
  .hero h1 { font-size: 2.4rem; }
}

.eyebrow { text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; color: var(--accent); font-weight: 600; }

.hero h1 { font-size: clamp(2.8rem, 4.4vw, 3.8rem); line-height: 1.05; max-width: 16ch; margin: 0; color: #000; }
.hero-figure { display: flex; justify-content: center; }
.hero-figure-img { max-width: 100%; height: auto; max-height: 520px; }

.lede { color: #000; max-width: 60ch; line-height: 1.6; }

.actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 1.25rem;
  border-radius: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.page .btn { position: relative; z-index: 3; }


.btn.primary { background: #e02121; color: #ffffff; border: 1px solid #e02121; box-shadow: 0 10px 30px rgba(224, 33, 33, 0.35); }
.btn.primary:hover { transform: translateY(-2px); }

.btn.ghost { border: 1px solid #e5e7eb; background: #ffffff; color: #000000; }
.nav .btn.ghost {
  border-color: #e02121;
  background: #e02121;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(224, 33, 33, 0.35);
}

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-top: 0.5rem; }

.stats .stat-number { display: block; font-size: 2rem; font-weight: 700; color: #000; }
.stat-label { color: #000; }

.panel-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.panel { padding: 1.5rem; border-radius: var(--radius); background: var(--panel); border: 1px solid var(--panel-stroke); box-shadow: var(--shadow); }
.panel h3 { margin: 0.35rem 0; color: #000; }
.panel p { color: #000; }

.product-hero-panel h1 {
  margin: 0.25rem 0 0;
}

.product-inline-points {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product-inline-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(224, 33, 33, 0.08);
  border: 1px solid rgba(224, 33, 33, 0.16);
  color: #000;
  font-weight: 600;
}

.product-inline-points li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #e02121;
}

.product-showcase-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: center;
}

.product-showcase-card,
.product-showcase-copy,
.product-cta-panel {
  padding: clamp(1.4rem, 2.8vw, 2rem);
}

.product-showcase-media {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
}

.product-showcase-image {
  width: min(100%, 560px);
  max-height: 420px;
  height: auto;
  object-fit: contain;
  display: block;
}

.product-showcase-copy h2,
.product-cta-panel h2 {
  margin: 0.35rem 0 0.8rem;
  color: #000;
  line-height: 1.08;
}

.product-feature-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.product-feature-list li {
  position: relative;
  padding-left: 1.2rem;
  color: #000;
}

.product-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #e02121;
}

.product-detail-grid .panel {
  padding: 1.5rem;
}

.product-bands {
  margin-top: -1rem;
}

.product-cta-panel {
  text-align: left;
}

.review-funnel-spotlight {
  margin-top: 1.5rem;
}

.review-funnel-shell {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: 34px;
  background:
    radial-gradient(circle at top center, rgba(224, 33, 33, 0.08), transparent 32%),
    linear-gradient(180deg, #fff8f8 0%, #ffffff 100%);
  border: 1px solid rgba(224, 33, 33, 0.1);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.review-funnel-header {
  text-align: center;
  margin-bottom: 1.8rem;
}

.review-funnel-header h2 {
  margin: 0.3rem 0 0;
  color: #111827;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
}

.review-funnel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  align-items: stretch;
}

.review-funnel-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.review-stat-card,
.review-demo-panel {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(224, 33, 33, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.review-stat-card {
  padding: 1.35rem 1.25rem;
  display: grid;
  gap: 0.55rem;
}

.review-stat-card strong {
  color: #e02121;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.review-stat-card p {
  margin: 0;
  color: #111827;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 18ch;
}

.review-demo-panel {
  padding: 1.35rem;
  display: grid;
  gap: 1rem;
}

.review-demo-panel h3 {
  margin: 0;
  color: #111827;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.05;
  text-align: center;
}

.review-demo-frame {
  overflow: hidden;
  border-radius: 18px;
  background: #0f172a;
  border: 6px solid #1f2940;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.18);
}

.review-demo-frame img {
  width: 100%;
  display: block;
  height: auto;
}

.review-demo-panel p {
  margin: 0;
  color: rgba(15, 23, 42, 0.82);
  line-height: 1.65;
  max-width: 62ch;
}

.review-funnel-actions {
  justify-content: center;
  margin-top: 1.35rem;
}

.website-spotlight {
  margin-top: 1.5rem;
}

.website-spotlight-shell {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: 34px;
  background:
    radial-gradient(circle at top center, rgba(224, 33, 33, 0.08), transparent 32%),
    linear-gradient(180deg, #fff8f8 0%, #ffffff 100%);
  border: 1px solid rgba(224, 33, 33, 0.1);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.website-spotlight-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.website-spotlight-header h1 {
  margin: 0;
  color: #111827;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.98;
}

.website-spotlight-header p {
  margin: 0.9rem auto 0;
  color: rgba(15, 23, 42, 0.78);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 38ch;
}

.website-spotlight-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.website-stat-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(224, 33, 33, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  padding: 1.35rem 1.25rem;
  display: grid;
  gap: 0.55rem;
}

.website-stat-card strong {
  color: #e02121;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.website-stat-card p {
  margin: 0;
  color: #111827;
  font-size: 1rem;
  line-height: 1.55;
}

.website-spotlight-actions {
  justify-content: center;
  margin-top: 1.5rem;
}

.website-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 15rem;
}

.website-features-header {
  grid-column: 1 / -1;
}

.website-features-header h2 {
  margin: 0 0 3rem;
  color: #111827;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.04;
  text-align: center;
}

.website-feature-card {
  padding: 1.45rem;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(224, 33, 33, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.website-feature-card-centered {
  grid-column: 1 / -1;
  max-width: calc(50% - 0.6rem);
  justify-self: center;
}

.website-feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.08);
  color: #000000;
  font-size: 1.9rem;
  font-weight: 700;
}

.website-feature-icon svg {
  width: 34px;
  height: 34px;
  stroke: #000000;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.website-feature-card h3 {
  margin: 0 0 0.85rem;
  color: #e02121;
  font-size: clamp(1.45rem, 2.7vw, 2.1rem);
  line-height: 1.15;
}

.website-feature-card p {
  margin: 0;
  color: #111827;
  line-height: 1.65;
}

.review-funnel-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 15rem;
}

.review-funnel-features-header {
  grid-column: 1 / -1;
}

.review-funnel-features-header h2 {
  margin: 0 0 4rem;
  color: #111827;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.04;
  text-align: center;
}

.review-feature-card {
  padding: 1.45rem;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(224, 33, 33, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.review-feature-card-centered {
  grid-column: 1 / -1;
  max-width: calc(50% - 0.6rem);
  justify-self: center;
}

.review-feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.08);
  color: #000000;
  font-size: 1.9rem;
  font-weight: 700;
}

.review-feature-card h3 {
  margin: 0 0 0.85rem;
  color: #e02121;
  font-size: clamp(1.45rem, 2.7vw, 2.1rem);
  line-height: 1.15;
}

.review-feature-card p {
  margin: 0;
  color: #111827;
  line-height: 1.65;
}

.bands { display: grid; gap: 1rem; }

.band { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; border-radius: var(--radius); background: linear-gradient(135deg, rgba(224, 33, 33, 0.12), rgba(255, 255, 255, 0.2)); border: 1px solid var(--panel-stroke); box-shadow: var(--shadow); }

.band h3 { margin: 0.2rem 0; color: #000; }
.band p { color: var(--muted); margin: 0; }

@media (max-width: 900px) {
  .product-showcase-row {
    grid-template-columns: 1fr;
  }

  .product-showcase-media {
    min-height: 320px;
  }

  .review-funnel-grid {
    grid-template-columns: 1fr;
  }

  .website-spotlight-stats {
    grid-template-columns: 1fr;
  }

  .website-features {
    grid-template-columns: 1fr;
  }

  .website-feature-card-centered {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }

  .review-funnel-features {
    grid-template-columns: 1fr;
  }

  .review-feature-card-centered {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 640px) {
  .product-showcase-card,
  .product-showcase-copy,
  .product-cta-panel,
  .product-detail-grid .panel,
  .band {
    padding: 1.2rem;
  }

  .product-showcase-media {
    min-height: 260px;
  }

  .product-inline-points {
    gap: 0.55rem;
  }

  .product-inline-points li {
    width: 100%;
    justify-content: flex-start;
  }

  .review-funnel-shell,
  .review-demo-panel,
  .review-stat-card {
    padding: 1.15rem;
  }

  .review-funnel-stats {
    grid-template-columns: 1fr;
  }

  .review-demo-frame {
    border-width: 4px;
  }
}

.faq-section {
  display: grid;
  gap: 1.25rem;
  margin-top: 13rem;
  padding-bottom: 6rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.faq-header h2 {
  margin: 0.35rem 0 0;
  color: #000;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--panel-stroke);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  display: block;
  width: 100%;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: #000;
  position: relative;
  padding: 1.1rem 2.8rem 1.1rem 1.2rem;
}

.faq-item:first-child {
  background: linear-gradient(180deg, #ff7f78 0%, #ff6a66 100%);
  border-color: rgba(224, 33, 33, 0.28);
}

.faq-item:first-child summary,
.faq-item:first-child p {
  color: #ffffff;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  width: 0.95rem;
  height: 2px;
  border-radius: 999px;
  color: #e02121;
  background: currentColor;
  transform: translateY(-50%);
  transition: transform 260ms ease, opacity 180ms ease, background 180ms ease;
}

.faq-item summary::before {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item:first-child summary::before,
.faq-item:first-child summary::after {
  color: #ffffff;
}

.faq-item.is-open summary::before {
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}

.faq-answer {
  overflow: hidden;
  overflow-y: auto;
  opacity: 0;
  padding: 0 1.2rem;
  height: 0;
  transition: height 460ms cubic-bezier(0.22, 1, 0.36, 1), opacity 280ms ease, padding 460ms cubic-bezier(0.22, 1, 0.36, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(224, 33, 33, 0.45) transparent;
}

.faq-item.is-open .faq-answer {
  opacity: 1;
  padding: 0 1.2rem 1.1rem;
}

.faq-answer::-webkit-scrollbar {
  width: 8px;
}

.faq-answer::-webkit-scrollbar-thumb {
  background: rgba(224, 33, 33, 0.45);
  border-radius: 999px;
}

.faq-item p {
  margin: 0.75rem 0 0;
  color: #000;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 320ms ease, opacity 260ms ease;
}

.faq-item.is-open p {
  transform: translateY(0);
  opacity: 1;
}

.cta { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); align-items: center; padding: 1.75rem; margin-top: 6rem; border-radius: var(--radius); background: linear-gradient(135deg, rgba(224, 33, 33, 0.12), rgba(255, 255, 255, 0.2)); border: 1px solid var(--panel-stroke); box-shadow: var(--shadow); }

.cta-form { display: grid; gap: 0.75rem; }

.cta-form label { display: grid; gap: 0.35rem; color: var(--muted); font-size: 0.95rem; }

.cta-form input { background: #ffffff; border: 1px solid var(--panel-stroke); border-radius: 12px; padding: 0.75rem 0.85rem; color: #000; }

.cta-form input:focus { outline: 2px solid var(--accent); outline-offset: 2px; }

.preprocess-cta {
  width: min(1200px, 100%);
  margin: 18rem auto 8rem;
  padding: 0 min(4vw, 2rem);
}

.preprocess-cta-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 30px;
  background: #ffffff;
  border: 2px solid rgba(224, 33, 33, 0.45);
  box-shadow: 0 26px 60px rgba(224, 33, 33, 0.08);
  overflow: hidden;
}

.preprocess-cta-copy h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 0.98;
  max-width: 11ch;
}

.preprocess-cta-copy p {
  margin: 1rem 0 1.5rem;
  color: rgba(15, 23, 42, 0.78);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 34ch;
}

.preprocess-cta-copy .btn {
  min-width: 180px;
}

.preprocess-cta-copy .btn.primary {
  background: #e02121;
  border-color: #e02121;
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(224, 33, 33, 0.28);
}

.preprocess-cta-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.preprocess-cta-logo {
  width: min(135%, 560px);
  height: auto;
  display: block;
  transform: scale(1.18) translateX(-0.4rem);
  transform-origin: center;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.16));
}

.partner-banner {
  width: min(1200px, 100%);
  margin: 10rem auto 0;
  padding: 0 0 1rem;
}

.partner-banner-inner {
  position: relative;
  overflow: hidden;
  padding: 2.75rem 0 2.2rem;
  border-radius: 34px;
  background:
    linear-gradient(180deg, #ff7f78 0%, #ff6a66 100%);
  box-shadow: 0 30px 80px rgba(224, 33, 33, 0.18);
}

.partner-banner-inner::before,
.partner-banner-inner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.partner-banner-inner::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 106, 102, 1), rgba(255, 106, 102, 0));
}

.partner-banner-inner::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 106, 102, 1), rgba(255, 106, 102, 0));
}

.partner-eyebrow {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 244, 243, 0.72);
}

.partner-banner h2 {
  margin: 0.45rem auto 1.8rem;
  max-width: 16ch;
  text-align: center;
  color: #ffffff;
  font-size: clamp(2rem, 4.8vw, 3.65rem);
  line-height: 0.98;
  font-weight: 800;
}

.partner-marquee {
  overflow: hidden;
  position: relative;
}

.partner-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  padding: 0 1rem;
  animation: partner-scroll 26s linear infinite;
}

.partner-item {
  margin: 0;
  width: clamp(220px, 22vw, 290px);
  aspect-ratio: 1.5 / 1;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.15rem;
}

.partner-item img {
  width: 98%;
  height: 82%;
  object-fit: contain;
  display: block;
  filter: saturate(0) brightness(2.2) contrast(0.98);
  opacity: 0.95;
}

.partner-item-canva img {
  width: 78%;
  height: 62%;
  filter: none;
  opacity: 1;
}

.partner-item-search-console img {
  width: 175%;
  height: 138%;
}

@keyframes partner-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 0.5rem)); }
}

.site-footer {
  width: 100%;
  margin: 0;
  padding: 0;
  color: #000000;
}

.site-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 2.25rem min(4vw, 2rem) 1.4rem;
  background: #ffffff;
  border-radius: 0;
}

.site-footer-brand img {
  height: 88px;
  width: auto;
  display: block;
}

.site-footer-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer-cta p {
  margin: 0;
  color: #0f172a;
  font-weight: 600;
}

.site-footer-divider {
  height: 1px;
  background: rgba(15, 23, 42, 0.12);
  margin: 0 min(4vw, 2rem);
  background-color: rgba(15, 23, 42, 0.12);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.3fr;
  gap: 2rem;
  padding: 2rem min(4vw, 2rem) 1.25rem;
  background: #ffffff;
  border-radius: 0;
}

.site-footer-intro {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.site-footer-intro h3 {
  margin: 0;
  color: #000000;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  max-width: 10ch;
}

.site-footer-column {
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.site-footer-column h4 {
  margin: 0;
  color: #000000;
  font-size: 1.05rem;
}

.site-footer-column a {
  color: rgba(15,23,42,0.82);
  transition: color 160ms ease;
}

.site-footer-column a:hover {
  color: #000000;
}

.site-footer-legal {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 min(4vw, 2rem) 2.4rem;
  background: #ffffff;
}

.site-footer-legal a {
  color: rgba(15, 23, 42, 0.82);
}

.site-footer-legal a:hover {
  color: #000000;
}

.legal-page {
  padding: clamp(2.5rem, 5vw, 4.5rem) min(4vw, 2rem) clamp(4rem, 8vw, 6rem);
}

.legal-shell {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.legal-hero {
  display: grid;
  gap: 0.9rem;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.96;
  color: #0f172a;
}

.legal-hero p {
  margin: 0;
  max-width: 58ch;
  color: rgba(15, 23, 42, 0.72);
  font-size: 1.05rem;
}

.legal-card {
  background: #ffffff;
  border: 1px solid rgba(224, 33, 33, 0.12);
  border-radius: 28px;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.05);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  gap: 1.5rem;
}

.legal-section {
  display: grid;
  gap: 0.7rem;
}

.legal-section h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  color: #0f172a;
}

.legal-section h3 {
  margin: 0.2rem 0 0;
  font-size: 1rem;
  color: rgba(15, 23, 42, 0.9);
}

.legal-section p,
.legal-section li {
  margin: 0;
  color: rgba(15, 23, 42, 0.82);
  line-height: 1.7;
}

.legal-section ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.process-section {
  padding: 0 min(4vw, 2rem) 2rem;
  margin-top: 17rem;
  margin-bottom: 9rem;
}

.process-panel {
  position: relative;
  padding: clamp(2rem, 4vw, 3.25rem);
  border-radius: 34px;
  background: #ffffff;
  border: 0;
  box-shadow: none;
}

.process-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 2.6rem;
}

.process-header h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.process-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.process-step {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 1rem;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.85rem;
  left: calc(50% + 2.3rem);
  width: calc(100% - 1.2rem);
  border-top: 4px dashed rgba(156, 163, 175, 0.45);
}

.process-step:nth-child(1):not(:last-child)::after {
  transform: translateY(0.15rem) rotate(6deg);
}

.process-step:nth-child(2):not(:last-child)::after {
  transform: translateY(0.15rem) rotate(-6deg);
}

.process-number {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ff5b57 0%, #e02121 100%);
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(224, 33, 33, 0.24);
}

.process-step h3 {
  margin: 0;
  color: #000000;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.2;
  height: calc(1.2em * 2.2);
  width: 100%;
  text-align: center;
}

.process-step-middle h3 {
  position: relative;
  top: 0.75rem;
}

.process-step p {
  margin: 0.8rem 0 0;
  color: rgba(15, 23, 42, 0.8);
  max-width: 30ch;
  line-height: 1.65;
}

.process-step-middle p {
  margin-top: 2rem;
}

@media (max-width: 960px) { .band { flex-direction: column; align-items: flex-start; } }

@media (max-width: 960px) {
  .preprocess-cta {
    margin: 10rem auto 6rem;
  }

  .process-section {
    margin-top: 10rem;
    margin-bottom: 6rem;
  }

  .pricing-links-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .preprocess-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .preprocess-cta-copy h2,
  .preprocess-cta-copy p {
    max-width: none;
  }

  .preprocess-cta-copy .actions {
    justify-content: center;
  }

  .process-step {
    justify-items: flex-start;
    text-align: left;
  }

  .process-step h3 {
    text-align: left;
  }

  .process-step-middle h3 {
    position: static;
    top: auto;
  }

  .process-step-middle p {
    margin-top: 0.8rem;
  }

  .process-step:not(:last-child)::after {
    top: auto;
    left: 2rem;
    bottom: -0.85rem;
    width: 0;
    height: 2.25rem;
    border-top: 0;
    border-left: 4px dashed rgba(156, 163, 175, 0.45);
    transform: none;
  }
}

@media (max-width: 760px) {
  .nav { padding: 0.85rem 5vw; }
  .nav-inner { width: 100%; flex-wrap: wrap; }
  
  .nav-links { position: absolute; top: calc(100% + 0.5rem); right: 0; flex-direction: column; background: #ffffff; padding: 0.75rem; border-radius: 14px; border: 1px solid #e5e7eb; box-shadow: var(--shadow); display: none; width: min(240px, 90vw); z-index: 20; }
  .nav-links.open { display: flex; }
  .dropdown { width: 100%; }
  .drop-menu { position: relative; top: 0; left: 0; box-shadow: none; display: none; border-radius: 10px; border-color: #e5e7eb; }
  .drop-menu.open { display: flex; }
  .menu-toggle { display: inline-flex; }

  .site-footer-top,
  .site-footer-grid {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .site-footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer-cta {
    justify-content: flex-start;
  }

  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer-legal {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (max-width: 540px) {
  .hero h1 { font-size: 2.2rem; }
  .stats { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
  .brand img { height: 64px; max-height: 64px; }
  .menu-toggle { padding: 0.55rem 0.7rem; }
  .preprocess-cta {
    margin: 7rem auto 4.5rem;
    padding: 0 1rem;
  }
  .preprocess-cta-inner {
    padding: 1.5rem;
  }
  .preprocess-cta-logo {
    width: min(100%, 320px);
    transform: none;
  }
  .partner-banner-inner {
    border-radius: 26px;
    padding: 2.25rem 0 1.8rem;
  }
  .partner-track {
    gap: 0.75rem;
  }
  .partner-item {
    width: 190px;
    border-radius: 18px;
  }
  .partner-item-search-console img {
    width: 135%;
    height: 112%;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
  }

   .site-footer-legal {
    gap: 1rem 1.5rem;
  }

  .site-footer-brand img {
    height: 72px;
  }

  .site-footer-intro h3 {
    font-size: 2rem;
    max-width: 12ch;
  }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: left; }
  .hero-figure { order: -1; margin: 0 auto; }
  .hero-figure-img { max-height: 420px; }
}




























