:root {
  --bg: #f5f8f7;
  --bg-soft: #eef4f2;
  --surface: #ffffff;
  --surface-strong: #f7fbfa;
  --text: #132522;
  --muted: #62756f;
  --muted-strong: #485a55;
  --line: #d6e6e1;
  --line-strong: #bfd5cf;
  --brand: #0f8f7e;
  --brand-deep: #0b5b55;
  --brand-ink: #0d3d39;
  --brand-soft: rgba(15, 143, 126, 0.1);
  --shadow: 0 24px 64px rgba(12, 46, 42, 0.08);
  --shadow-soft: 0 16px 32px rgba(12, 46, 42, 0.06);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 143, 126, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(11, 91, 85, 0.1), transparent 28%),
    linear-gradient(180deg, #fbfdfc 0%, var(--bg) 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(245, 248, 247, 0.88);
  border-bottom: 1px solid rgba(191, 213, 207, 0.65);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.brand-wording {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-size: 18px;
}

.brand-tag {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.nav-toggle {
  border: 0;
  background: var(--surface);
  border-radius: 999px;
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  color: var(--brand-deep);
  box-shadow: var(--shadow-soft);
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  order: 3;
  padding: 0 0 18px;
}

.nav-links.is-open {
  display: flex;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted-strong);
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--brand-deep);
}

.nav-actions {
  display: grid;
  gap: 10px;
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 52px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(15, 143, 126, 0.1);
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero {
  padding: 36px 0 72px;
}

.hero-layout {
  display: grid;
  gap: 28px;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(40px, 10vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-copy p {
  margin: 0;
  font-size: clamp(17px, 4.2vw, 20px);
  line-height: 1.65;
  color: var(--muted-strong);
  max-width: 62ch;
}

.hero-actions {
  display: grid;
  gap: 12px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(145deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
  box-shadow: 0 18px 34px rgba(11, 91, 85, 0.22);
}

.button-secondary {
  background: var(--surface);
  color: var(--brand-deep);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.button-ghost {
  color: var(--brand-deep);
  background: transparent;
}

.hero-note {
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 16px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(160deg, #0f8f7e 0%, #083d3a 100%);
  box-shadow: var(--shadow);
  min-height: 420px;
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.12), transparent 22%);
}

.hero-phone {
  position: relative;
  width: min(100%, 330px);
  margin: 28px auto 0;
  border-radius: 34px;
  padding: 12px;
  background: #0b1716;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

.hero-phone-screen {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
}

.hero-stat-strip {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mini-stat {
  border-radius: 18px;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #fff;
}

.mini-stat strong {
  display: block;
  font-size: 20px;
  margin-bottom: 4px;
}

.mini-stat span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.4;
}

.feature-grid,
.benefit-grid,
.section-grid {
  display: grid;
  gap: 18px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.section-heading h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(30px, 7vw, 50px);
  letter-spacing: -0.04em;
}

.section-heading p,
.page-hero p,
.body-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}

.feature-card,
.panel,
.legal-card,
.contact-card,
.step-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.step-card,
.contact-card {
  padding: 22px;
}

.feature-icon,
.step-number,
.inline-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-card h3,
.step-card h3,
.benefit-card h3,
.contact-card h3,
.legal-card h2 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.feature-card p,
.step-card p,
.benefit-card p,
.contact-card p,
.legal-card p,
.legal-card li {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.benefit-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-strong) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.benefit-card p {
  max-width: 32ch;
}

.split-panel {
  display: grid;
  gap: 18px;
}

.owners-layout {
  align-items: start;
}

.owners-grid {
  grid-template-columns: 1fr;
}

.accent-panel {
  padding: 24px;
  border-radius: var(--radius-xl);
  color: #fff;
  background: linear-gradient(160deg, var(--brand-deep) 0%, #0e7468 100%);
  box-shadow: var(--shadow);
}

.accent-panel p,
.accent-panel li {
  color: rgba(255, 255, 255, 0.82);
}

.accent-panel h3 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.bullet-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bullet-list li {
  position: relative;
  padding-left: 20px;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
}

.how-grid {
  display: grid;
  gap: 18px;
}

.step-number {
  font-size: 18px;
  font-weight: 800;
}

.payments-note {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.payments-note strong {
  display: block;
  margin-bottom: 6px;
}

.quote-panel {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(150deg, rgba(15, 143, 126, 0.1), rgba(11, 91, 85, 0.04)),
    var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.quote-panel p {
  margin: 0;
  font-size: 19px;
  line-height: 1.7;
  color: var(--muted-strong);
}

.contact-layout,
.footer-layout,
.legal-layout {
  display: grid;
  gap: 18px;
}

.contact-card form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted-strong);
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  padding: 14px 16px;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.site-footer {
  margin-top: 24px;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
}

.footer-layout {
  gap: 28px;
}

.footer-brand p,
.footer-column p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer-links,
.legal-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.legal-links a,
.inline-link {
  color: var(--brand-deep);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover,
.legal-links a:hover,
.inline-link:hover {
  text-decoration: underline;
}

.page-hero {
  padding: 44px 0 22px;
}

.page-hero .meta {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.legal-layout {
  padding: 18px 0 72px;
}

.legal-card {
  padding: 28px;
}

.legal-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.callout {
  border-left: 4px solid var(--brand);
  padding-left: 14px;
  color: var(--muted-strong);
}

.utility-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(15, 143, 126, 0.08);
  color: var(--brand-deep);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
}

.hide-desktop {
  display: inline-grid;
}

.hide-mobile {
  display: none;
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .nav-bar {
    min-height: 82px;
    flex-wrap: nowrap;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    width: auto;
    order: 0;
    padding: 0;
  }

  .nav-links a {
    font-size: 14px;
  }

  .nav-actions {
    grid-auto-flow: column;
    align-items: center;
  }

  .hero {
    padding: 58px 0 86px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 38px;
  }

  .hero-actions {
    align-items: start;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-panel {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
  }

  .owners-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: stretch;
  }

  .owners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout,
  .footer-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hide-desktop {
    display: none;
  }

  .hide-mobile {
    display: inline-grid;
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .section-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .owners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-layout {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }
}

/* ── Pricing Section ── */

.pricing-section {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 45% at 50% -5%, rgba(15, 143, 126, 0.07), transparent),
    radial-gradient(ellipse 55% 40% at 90% 85%, rgba(11, 91, 85, 0.05), transparent);
  pointer-events: none;
}

.pricing-header {
  text-align: center;
  display: grid;
  gap: 14px;
  margin-bottom: 42px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-free-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  padding: 9px 16px;
  background: linear-gradient(135deg, rgba(15, 143, 126, 0.12), rgba(11, 91, 85, 0.07));
  border: 1px solid rgba(15, 143, 126, 0.22);
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 700;
  width: fit-content;
  margin: 0 auto;
}

.pricing-free-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(15, 143, 126, 0.22);
  animation: pill-pulse 2.4s ease-in-out infinite;
}

@keyframes pill-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(15, 143, 126, 0.22); }
  50%       { box-shadow: 0 0 0 6px rgba(15, 143, 126, 0.08); }
}

.pricing-headline {
  font-size: clamp(34px, 7vw, 52px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
  color: var(--text);
}

.pricing-headline-accent {
  color: var(--brand);
}

.pricing-subtext {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}

/* ── Cards ── */

.pricing-grid {
  display: grid;
  gap: 22px;
  margin-bottom: 18px;
}

.pc {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 18px 42px rgba(12, 46, 42, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pc:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.pc-featured {
  background:
    linear-gradient(180deg, rgba(15, 143, 126, 0.08), rgba(255, 255, 255, 0) 34%),
    var(--surface);
  border: 2px solid rgba(15, 143, 126, 0.45);
  box-shadow: 0 24px 60px rgba(11, 91, 85, 0.14);
  padding-top: 34px;
}

.pc-featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 32px 76px rgba(11, 91, 85, 0.18);
}

.pc-popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--brand-deep);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(11, 91, 85, 0.18);
}

.pc-top {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.pc-range {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 999px;
  padding: 5px 13px;
  width: fit-content;
}

.pc-featured .pc-range {
  background: rgba(15, 143, 126, 0.14);
  color: var(--brand-deep);
}

.pc-name {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0;
  color: var(--text);
}

.pc-featured .pc-name { color: var(--text); }

.pc-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.pc-featured .pc-desc { color: var(--muted); }

.pc-price-row {
  display: grid;
  gap: 4px;
  margin-top: 10px;
}

.pc-amount {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--brand-deep);
}

.pc-featured .pc-amount { color: var(--brand-deep); }

.pc-period {
  font-size: 13px;
  color: var(--muted-strong);
  line-height: 1.35;
  font-weight: 700;
}

.pc-featured .pc-period { color: var(--muted-strong); }

.pc-divider {
  height: 1px;
  background: var(--line);
  margin: 0 0 24px;
}

.pc-featured .pc-divider { background: var(--line); }

.pc-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 13px;
  flex: 1;
}

.pc-features li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted-strong);
  line-height: 1.4;
}

.pc-features li::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 999px;
  flex-shrink: 0;
  background:
    var(--brand-soft)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%230b5b55' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 11px no-repeat;
}

.pc-featured .pc-features li { color: var(--muted-strong); }

.pc-featured .pc-features li::before {
  background:
    rgba(15, 143, 126, 0.14)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%230b5b55' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 11px no-repeat;
}

.pc-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  font-size: 15px;
}

.pc-btn-white {
  background: #fff;
  color: var(--brand-deep);
  border: none;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.pc-btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

/* ── Secure note ── */

.premium-addon {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(15, 143, 126, 0.07), rgba(255, 255, 255, 0) 58%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  margin: 6px 0 18px;
  box-shadow: 0 18px 42px rgba(12, 46, 42, 0.06);
}

.premium-addon-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--brand-soft);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.premium-addon-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.premium-addon-copy {
  min-width: 0;
}

.premium-addon-kicker {
  width: fit-content;
  margin-bottom: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 244, 199, 0.78);
  color: #8a6a18;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.premium-addon h3 {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.premium-addon p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.premium-addon-price {
  display: grid;
  gap: 2px;
}

.premium-addon-price strong {
  color: var(--brand-deep);
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.premium-addon-price span {
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.premium-addon-btn {
  justify-content: center;
  white-space: nowrap;
}

.pricing-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin: 10px 0 60px;
}

/* ── Trust strip ── */

.pricing-trust-strip {
  display: grid;
  gap: 14px;
  margin-bottom: 80px;
}

.trust-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}

.trust-item:hover {
  transform: translateY(-2px);
}

.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 3px;
}

.trust-item span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

/* ── FAQ ── */

.pricing-faq {
  margin-bottom: 80px;
}

.faq-heading {
  font-size: clamp(24px, 4vw, 34px);
  letter-spacing: -0.04em;
  font-weight: 800;
  margin: 0 0 28px;
  text-align: center;
  color: var(--text);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: border-color 0.18s ease;
}

.faq-item[open] {
  border-color: var(--line-strong);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  user-select: none;
  transition: color 0.18s ease;
}

.faq-item[open] summary { color: var(--brand-deep); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-chevron {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.22s ease, background 0.18s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(45deg);
  background: rgba(15, 143, 126, 0.18);
}

.faq-body {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

/* ── Pricing CTA block ── */

.pricing-cta-block {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(140deg, #0e7468 0%, #0b5b55 50%, #073330 100%);
  padding: 64px 32px;
  text-align: center;
  isolation: isolate;
}

.pricing-cta-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(255, 255, 255, 0.1), transparent),
    radial-gradient(ellipse 50% 60% at 80% 80%, rgba(255, 255, 255, 0.07), transparent);
  pointer-events: none;
}

.pricing-cta-block h3 {
  font-size: clamp(26px, 5vw, 42px);
  letter-spacing: -0.04em;
  margin: 0 0 14px;
  color: #fff;
  position: relative;
}

.pricing-cta-block p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 auto 32px;
  max-width: 44ch;
  position: relative;
}

.pricing-cta-block .button-row {
  justify-content: center;
  position: relative;
}

.btn-white {
  background: #fff;
  color: var(--brand-deep);
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-white-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  font-weight: 700;
}

.btn-white-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

/* ── Pricing responsive ── */

@media (min-width: 640px) {
  .pricing-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 720px) and (max-width: 899px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid .pc:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .pc-featured {
    margin-top: -10px;
  }

  .pricing-trust-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-item {
    flex-direction: column;
  }
}

@media (min-width: 900px) {
  .premium-addon {
    grid-template-columns: auto 1fr auto auto;
    padding: 22px 28px;
  }
}

@media (max-width: 719px) {
  .premium-addon {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .premium-addon-kicker {
    margin-left: auto;
    margin-right: auto;
  }
}
