/* ================================================
   Vetralis — Landing page CSS
   Design cues from CUA Pools, recolored dark green.
   ================================================ */

:root {
  --v-primary: #0f6a35;        /* Vetralis brand green */
  --v-primary-dark: #0a4d26;
  --v-primary-light: #3fae66;  /* lighter accent for dark backgrounds */
  --v-accent: #f5b301;         /* warm accent for badges/stars */
  --v-dark: #0c1f14;           /* near-black green for nav/hero base */
  --v-gray-900: #14261b;
  --v-gray-700: #33413a;
  --v-gray-500: #67736c;
  --v-gray-300: #cdd6d1;
  --v-gray-100: #f2f6f3;
  --v-white: #ffffff;
  --v-gradient: linear-gradient(135deg, var(--v-primary) 0%, var(--v-primary-dark) 100%);
  --v-gradient-hero: linear-gradient(135deg, #0c1f14 0%, #0a4d26 55%, #0f6a35 100%);
  --v-radius: 12px;
  --v-radius-lg: 20px;
  --v-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --v-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --v-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.12), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--v-gray-700);
  background-color: var(--v-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--v-dark);
  font-weight: 700;
  line-height: 1.2;
}

a { text-decoration: none; transition: color 0.3s ease; }
img { max-width: 100%; height: auto; }

/* ---------- Sections ---------- */
section { padding: 80px 0; }

.section-header { margin-bottom: 50px; }

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--v-gray-500);
  max-width: 680px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--v-primary);
  margin-bottom: 8px;
}

.divider-line {
  width: 60px;
  height: 4px;
  background: var(--v-gradient);
  border-radius: 2px;
  margin: 12px auto;
}

/* ---------- Buttons ---------- */
.btn { font-weight: 600; border-radius: 10px; transition: transform 0.3s, box-shadow 0.3s; }

.btn-primary {
  background: var(--v-gradient);
  border: none;
  color: var(--v-white);
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--v-gradient);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15, 106, 53, 0.35);
  color: var(--v-white);
}

.btn-outline-primary {
  border: 2px solid var(--v-primary);
  color: var(--v-primary);
  background: transparent;
}
.btn-outline-primary:hover {
  background: var(--v-primary);
  color: var(--v-white);
  transform: translateY(-2px);
}

.btn-outline-light { border: 2px solid rgba(255,255,255,0.6); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--v-primary-dark); }

.btn-lg { padding: 14px 34px; font-size: 1.05rem; }

/* ---------- Navbar ---------- */
#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1030;
  background: rgba(12, 31, 20, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  transition: all 0.3s ease;
}
#mainNav .container {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
#mainNav .navbar-brand .logo { height: 38px; }
#mainNav .navbar-toggler { border-color: rgba(255,255,255,0.3); }
#mainNav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
#mainNav .navbar-nav { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; }
#mainNav .nav-link {
  color: rgba(255,255,255,0.85);
  font-weight: 500; font-size: 0.9rem; padding: 8px 16px; transition: color 0.3s;
}
#mainNav .nav-link:hover, #mainNav .nav-link:focus { color: var(--v-primary-light); }
#mainNav .btn-primary { padding: 8px 20px; font-size: 0.9rem; }
#mainNav.scrolled { box-shadow: var(--v-shadow-lg); background: rgba(12, 31, 20, 0.98); }

/* ---------- Hero ---------- */
.hero-section {
  background: var(--v-gradient-hero);
  color: var(--v-white);
  padding: 170px 0 100px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  color: var(--v-primary-light);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 16px; border-radius: 30px; margin-bottom: 22px;
}
.hero-title {
  font-size: 3.1rem; font-weight: 800; color: var(--v-white); margin-bottom: 18px;
}
.hero-subtitle { font-size: 1.35rem; color: var(--v-primary-light); margin-bottom: 14px; font-weight: 500; }
.hero-desc {
  font-size: 1.12rem; color: rgba(255,255,255,0.82);
  margin: 0 auto 34px; max-width: 640px;
}
.hero-buttons .btn { margin: 6px; }

/* ---------- 404 ---------- */
.error-section { min-height: 70vh; display: flex; align-items: center; }

/* ---------- Trust bar ---------- */
.section-trust { background: var(--v-gray-100); padding: 36px 0; }
.trust-label {
  text-align: center; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: var(--v-gray-500); margin-bottom: 18px;
}
.trust-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; }
.trust-item {
  font-weight: 700; font-size: 1.05rem; color: var(--v-gray-700);
  opacity: 0.75;
}

/* ---------- Problem ---------- */
.section-problem { background: var(--v-white); }
.problem-card {
  background: var(--v-white); border: 1px solid var(--v-gray-300);
  border-radius: var(--v-radius-lg); padding: 32px; height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--v-shadow-lg); }
.problem-icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(245, 179, 1, 0.12); color: var(--v-accent);
  font-size: 1.35rem; margin-bottom: 18px;
}
.problem-card h4 { font-size: 1.15rem; margin-bottom: 10px; }
.problem-card p { color: var(--v-gray-500); margin-bottom: 0; }

/* ---------- How it works ---------- */
.section-how { background: var(--v-gray-100); }
.step-card { text-align: center; padding: 20px; height: 100%; }
.step-icon {
  width: 76px; height: 76px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--v-gradient); color: #fff; font-size: 1.7rem;
  margin: 0 auto 22px; box-shadow: var(--v-shadow-lg);
}
.step-card h4 { font-size: 1.2rem; margin-bottom: 10px; }
.step-card p { color: var(--v-gray-500); }

/* ---------- Features ---------- */
.section-features { background: var(--v-white); }
.feature-card {
  background: var(--v-white); border: 1px solid var(--v-gray-300);
  border-radius: var(--v-radius-lg); padding: 32px; height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--v-shadow-xl); border-color: transparent; }
.feature-icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(15, 106, 53, 0.1); color: var(--v-primary);
  font-size: 1.35rem; margin-bottom: 18px;
}
.feature-card h4 { font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { color: var(--v-gray-500); margin-bottom: 0; }

/* ---------- Stats ---------- */
.section-stats { background: var(--v-gradient-hero); color: #fff; padding: 60px 0; }
.stat-value {
  font-size: 2.6rem; font-weight: 800; color: #fff; line-height: 1.1;
}
.stat-label { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin-top: 6px; }

/* ---------- Audience ---------- */
.section-audience { background: var(--v-gray-100); }
.audience-card {
  background: var(--v-white); border-radius: var(--v-radius-lg);
  padding: 40px 32px; height: 100%; box-shadow: var(--v-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--v-shadow-xl); }
.audience-icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--v-gradient); color: #fff; font-size: 1.5rem; margin-bottom: 22px;
}
.audience-card h4 { font-size: 1.25rem; margin-bottom: 12px; }
.audience-card p { color: var(--v-gray-500); margin-bottom: 0; }

/* ---------- Pricing ---------- */
.section-pricing { background: var(--v-white); }
.pricing-card {
  background: var(--v-white); border: 1px solid var(--v-gray-300);
  border-radius: var(--v-radius-lg); padding: 36px 28px; height: 100%;
  display: flex; flex-direction: column; position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--v-shadow-lg); }
.pricing-card.featured {
  border: 2px solid var(--v-primary);
  box-shadow: var(--v-shadow-xl);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--v-gradient); color: #fff; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; padding: 6px 16px; border-radius: 20px;
}
.pricing-name { font-size: 1.3rem; margin-bottom: 12px; }
.pricing-price { font-size: 2.4rem; font-weight: 800; color: var(--v-primary); line-height: 1; }
.pricing-period { color: var(--v-gray-500); font-size: 0.9rem; margin-bottom: 16px; }
.pricing-desc { color: var(--v-gray-500); font-size: 0.95rem; margin-bottom: 20px; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 24px; flex-grow: 1; }
.pricing-features li { padding: 7px 0; font-size: 0.95rem; color: var(--v-gray-700); }
.pricing-features li i { color: var(--v-primary); }

/* ---------- CTA banner ---------- */
.section-cta { background: var(--v-dark); color: #fff; padding: 70px 0; }
.section-cta h2 { color: #fff; font-size: 2rem; margin-bottom: 14px; }
.section-cta p { color: rgba(255,255,255,0.8); max-width: 620px; margin: 0 auto 28px; font-size: 1.1rem; }
.section-cta .btn-light { color: var(--v-primary-dark); font-weight: 700; }

/* ---------- Contact ---------- */
.section-contact { background: var(--v-gray-100); }
.section-contact .form-floating .form-control {
  border-radius: 10px; border: 1px solid var(--v-gray-300);
}
.section-contact .form-floating .form-control:focus {
  border-color: var(--v-primary);
  box-shadow: 0 0 0 0.2rem rgba(15, 106, 53, 0.15);
}
.contact-info-card {
  background: var(--v-dark); color: #fff;
  border-radius: var(--v-radius-lg); padding: 40px;
}
.contact-info-card h4 { color: #fff; margin-bottom: 26px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.contact-item i { color: var(--v-primary-light); margin-top: 4px; font-size: 1.05rem; }
.contact-text p, .contact-text a { color: rgba(255,255,255,0.82); margin-bottom: 0; }
.contact-text a:hover { color: var(--v-primary-light); }

/* ---------- Footer ---------- */
.site-footer { background: #08160d; color: rgba(255,255,255,0.7); padding: 60px 0 24px; }
.site-footer h5 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer-brand p { font-size: 0.92rem; max-width: 340px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: var(--v-primary-light); }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff; margin-right: 8px;
  transition: background 0.3s, transform 0.3s;
}
.footer-social a:hover { background: var(--v-primary); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 22px; }
.footer-bottom p { margin: 0; font-size: 0.88rem; }

/* ---------- Hero badges & media ---------- */
.hero-badges {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px; margin-bottom: 28px;
}
.hero-badge {
  display: inline-flex; align-items: center;
  font-size: 0.85rem; font-weight: 600;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 7px 16px; border-radius: 30px;
}
.hero-badge i { color: var(--v-primary-light); }

.hero-media {
  margin: 54px 0 0;
  border-radius: var(--v-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--v-shadow-xl);
  line-height: 0;
}
.hero-media img { width: 100%; height: auto; display: block; }

/* ---------- What you get (kit) ---------- */
.section-kit { background: var(--v-white); }
.kit-media {
  margin: 0;
  border-radius: var(--v-radius-lg);
  overflow: hidden;
  background: var(--v-gray-100);
  border: 1px solid var(--v-gray-300);
  line-height: 0;
}
.kit-media img { width: 100%; height: auto; display: block; }

.kit-list { list-style: none; padding: 0; margin: 0; }
.kit-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--v-gray-300);
}
.kit-item:last-child { border-bottom: none; }
.kit-icon {
  flex: 0 0 auto;
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(15, 106, 53, 0.1); color: var(--v-primary);
  font-size: 1.1rem;
}
.kit-text h4 { font-size: 1.02rem; margin-bottom: 4px; }
.kit-text p { color: var(--v-gray-500); margin-bottom: 0; font-size: 0.95rem; }

/* ---------- What it watches for ---------- */
.watches-panel {
  margin-top: 48px;
  background: var(--v-gray-100);
  border-radius: var(--v-radius-lg);
  padding: 36px 40px;
}
.watches-title { font-size: 1.2rem; margin-bottom: 20px; }
.watches-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px 32px;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
}
.watches-list li { font-size: 0.96rem; color: var(--v-gray-700); }
.watches-list li i { color: var(--v-primary); font-size: 0.85rem; }
.watches-note {
  margin: 22px 0 0; font-size: 0.86rem; color: var(--v-gray-500);
  border-top: 1px solid var(--v-gray-300); padding-top: 16px;
}

/* ---------- Struck-through "was" price + note ---------- */
.pricing-was {
  font-size: 1.35rem; font-weight: 600; color: var(--v-gray-500);
  text-decoration: line-through; margin-right: 10px;
}
.pricing-note {
  font-size: 0.85rem; color: var(--v-gray-500);
  margin: 0 0 14px; line-height: 1.5;
}

/* ---------- Purchase flow ---------- */
.purchase-section { background: var(--v-gray-100); padding-top: 150px; min-height: 80vh; }
.purchase-card {
  background: var(--v-white); border-radius: var(--v-radius-lg);
  padding: 40px; box-shadow: var(--v-shadow-lg);
}
.purchase-step-title { font-size: 1.35rem; margin-bottom: 8px; }
.purchase-step-help { color: var(--v-gray-500); margin-bottom: 24px; }
.purchase-inline { display: flex; gap: 12px; align-items: stretch; flex-wrap: wrap; }
.purchase-inline .form-floating { min-width: 200px; }
.purchase-inline .form-control { border-radius: 10px; border: 1px solid var(--v-gray-300); }
.purchase-back {
  color: var(--v-gray-500); padding-left: 0; margin-top: 18px;
  text-decoration: none; font-size: 0.92rem;
}
.purchase-back:hover { color: var(--v-primary); }

.outside-note {
  background: rgba(245, 179, 1, 0.1);
  border: 1px solid rgba(245, 179, 1, 0.45);
  border-radius: var(--v-radius);
  padding: 16px 20px; margin-bottom: 22px;
}
.outside-note strong { color: var(--v-dark); display: block; margin-bottom: 4px; }
.outside-note p { margin: 0; font-size: 0.92rem; color: var(--v-gray-700); }

.system-options { display: grid; gap: 14px; }
.system-option {
  display: grid; gap: 4px; text-align: left;
  background: var(--v-white); border: 2px solid var(--v-gray-300);
  border-radius: var(--v-radius); padding: 20px 24px; cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.system-option:hover {
  border-color: var(--v-primary); box-shadow: var(--v-shadow-lg); transform: translateY(-2px);
}
.system-label { font-weight: 700; color: var(--v-dark); font-size: 1.05rem; }
.system-price { font-size: 1.9rem; font-weight: 800; color: var(--v-primary); line-height: 1.2; }
.system-was {
  font-size: 1.15rem; font-weight: 600; color: var(--v-gray-500);
  text-decoration: line-through; margin-right: 10px;
}
.system-note { font-size: 0.86rem; color: var(--v-gray-500); }

.reserve-summary { margin-bottom: 26px; }
.reserve-summary ul, .reservation-summary { list-style: none; padding: 0; margin: 0; }
.reserve-summary li, .reservation-summary li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 0; border-bottom: 1px solid var(--v-gray-300);
}
.reserve-summary li:last-child, .reservation-summary li:last-child { border-bottom: none; }
.reserve-summary span, .reservation-summary span { color: var(--v-gray-500); }
.reserve-summary strong, .reservation-summary strong { color: var(--v-dark); }
.reservation-summary { margin: 28px 0; text-align: left; }

.deposit-note {
  background: var(--v-gray-100); border-radius: var(--v-radius);
  padding: 16px 18px; font-size: 0.9rem; color: var(--v-gray-700); margin: 0;
}
.terms-note { font-size: 0.78rem; color: var(--v-gray-500); margin: 0; line-height: 1.55; }
.balance-note { color: var(--v-gray-500); font-size: 0.92rem; }

.launch-counter { margin-bottom: 32px; }
.launch-counter-bar {
  height: 8px; background: var(--v-gray-300);
  border-radius: 999px; overflow: hidden;
}
.launch-counter-fill { height: 100%; background: var(--v-gradient); border-radius: 999px; }
.launch-counter-text {
  margin: 10px 0 0; text-align: center;
  font-size: 0.9rem; color: var(--v-gray-500);
}
.launch-counter-text strong { color: var(--v-primary); font-size: 1.05rem; }

/* ---------- Blog ---------- */
.blog-hero {
  background: var(--v-gradient-hero);
  color: var(--v-white);
  padding: 160px 0 70px;
}
.blog-eyebrow {
  display: inline-block;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  color: var(--v-primary-light);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 16px; border-radius: 30px; margin-bottom: 22px;
}
.blog-hero-title { font-size: 2.9rem; font-weight: 800; color: var(--v-white); margin-bottom: 18px; }
.blog-hero-intro { font-size: 1.1rem; color: rgba(255,255,255,0.82); margin: 0 auto; max-width: 680px; }

.blog-index { background: var(--v-gray-100); padding: 50px 0 90px; }

.blog-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; justify-content: center; }
.blog-filter {
  font-size: 0.85rem; font-weight: 600; color: var(--v-gray-700);
  background: var(--v-white); border: 1px solid var(--v-gray-300);
  padding: 8px 16px; border-radius: 999px; transition: all 0.2s;
}
.blog-filter:hover { border-color: var(--v-primary); color: var(--v-primary); }
.blog-filter.is-active { background: var(--v-primary); border-color: var(--v-primary); color: var(--v-white); }

.blog-list { display: grid; gap: 18px; }
.blog-card {
  background: var(--v-white); border: 1px solid var(--v-gray-300);
  border-radius: var(--v-radius-lg); box-shadow: var(--v-shadow);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--v-shadow-lg); border-color: var(--v-primary); }
.blog-card-link { display: block; padding: 28px 32px; }
.blog-card-meta {
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
  font-size: 0.75rem; color: var(--v-gray-500);
  text-transform: uppercase; letter-spacing: 1px; font-weight: 600;
}
.blog-card-cat { color: var(--v-primary); }
.blog-card-dot { color: var(--v-gray-300); }
.blog-card-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; line-height: 1.25; }
.blog-card:hover .blog-card-title { color: var(--v-primary); }
.blog-card-dek { color: var(--v-gray-700); margin-bottom: 12px; font-size: 1rem; }
.blog-card-more { font-size: 0.88rem; font-weight: 700; color: var(--v-primary); }

.blog-sources-note {
  margin-top: 36px; padding: 18px 22px;
  background: var(--v-white); border: 1px solid var(--v-gray-300);
  border-left: 4px solid var(--v-primary); border-radius: var(--v-radius);
  font-size: 0.9rem; color: var(--v-gray-700);
}

/* ---- Single post ---- */
.blog-post-hero { background: var(--v-gray-100); padding: 140px 0 40px; }
.blog-back { font-size: 0.88rem; font-weight: 600; color: var(--v-gray-500); display: inline-block; margin-bottom: 22px; }
.blog-back:hover { color: var(--v-primary); }
.blog-post-title { font-size: 2.6rem; font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.blog-post-dek { font-size: 1.2rem; color: var(--v-gray-500); margin: 0; line-height: 1.55; }

.blog-post-body { background: var(--v-white); padding: 50px 0 80px; }
.blog-h2 { font-size: 1.6rem; margin: 42px 0 14px; }
.blog-p { font-size: 1.08rem; line-height: 1.75; margin-bottom: 20px; color: var(--v-gray-700); }
.blog-p a, .blog-ul a, .blog-ol a { color: var(--v-primary); text-decoration: underline; }
.blog-ul, .blog-ol { margin: 0 0 22px; padding-left: 22px; }
.blog-ul li, .blog-ol li { font-size: 1.05rem; line-height: 1.7; margin-bottom: 10px; color: var(--v-gray-700); }

.blog-quote {
  border-left: 4px solid var(--v-primary);
  background: var(--v-gray-100);
  border-radius: 0 var(--v-radius) var(--v-radius) 0;
  padding: 22px 26px; margin: 30px 0;
}
.blog-quote p { font-size: 1.05rem; font-style: italic; color: var(--v-gray-900); margin: 0 0 8px; line-height: 1.65; }
.blog-quote cite { font-size: 0.85rem; color: var(--v-gray-500); font-style: normal; font-weight: 600; }

.blog-stat {
  display: flex; align-items: center; gap: 22px;
  background: var(--v-gray-100); border-radius: var(--v-radius-lg);
  padding: 26px 30px; margin: 32px 0;
}
.blog-stat-figure {
  font-size: 2.6rem; font-weight: 800; color: var(--v-primary);
  line-height: 1; flex-shrink: 0;
}
.blog-stat-text { font-size: 0.98rem; color: var(--v-gray-700); line-height: 1.6; }

.blog-refs { margin-top: 54px; padding-top: 28px; border-top: 2px solid var(--v-gray-300); }
.blog-refs-title { font-size: 1.2rem; margin-bottom: 16px; }
.blog-refs-list { padding-left: 20px; margin: 0; }
.blog-refs-list li { font-size: 0.9rem; line-height: 1.6; margin-bottom: 12px; color: var(--v-gray-700); word-break: break-word; }
.blog-refs-list a { color: var(--v-primary); text-decoration: underline; }
.blog-ref-note { color: var(--v-gray-500); }

.blog-disclaimer {
  margin-top: 30px; padding: 16px 20px;
  background: var(--v-gray-100); border-radius: var(--v-radius);
}
.blog-disclaimer p { font-size: 0.82rem; color: var(--v-gray-500); margin: 0; line-height: 1.6; }

.blog-cta {
  margin-top: 40px; padding: 34px;
  background: var(--v-gradient); border-radius: var(--v-radius-lg);
  text-align: center; color: var(--v-white);
}
.blog-cta-title { color: var(--v-white); font-size: 1.5rem; margin-bottom: 10px; }
.blog-cta p { color: rgba(255,255,255,0.85); margin-bottom: 22px; }
.blog-cta .btn-primary { background: var(--v-white); border-color: var(--v-white); color: var(--v-primary); }
.blog-cta .btn-primary:hover { background: var(--v-gray-100); border-color: var(--v-gray-100); color: var(--v-primary-dark); }

.blog-related { background: var(--v-gray-100); padding: 60px 0 80px; }
.blog-related-title { font-size: 1.5rem; margin-bottom: 22px; }
.blog-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.blog-related-card {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--v-white); border: 1px solid var(--v-gray-300);
  border-radius: var(--v-radius); padding: 20px 22px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.blog-related-card:hover { transform: translateY(-3px); box-shadow: var(--v-shadow-lg); border-color: var(--v-primary); }
.blog-related-card-title { font-weight: 700; color: var(--v-dark); line-height: 1.35; font-size: 1rem; }
.blog-related-card:hover .blog-related-card-title { color: var(--v-primary); }

@media (max-width: 767.98px) {
  .blog-hero { padding: 130px 0 55px; }
  .blog-hero-title { font-size: 2.1rem; }
  .blog-post-hero { padding: 120px 0 32px; }
  .blog-post-title { font-size: 1.9rem; }
  .blog-post-dek { font-size: 1.05rem; }
  .blog-card-link { padding: 22px 20px; }
  .blog-card-title { font-size: 1.25rem; }
  .blog-h2 { font-size: 1.35rem; }
  .blog-stat { flex-direction: column; align-items: flex-start; gap: 12px; padding: 22px; }
  .blog-stat-figure { font-size: 2.2rem; }
  .blog-related-grid { grid-template-columns: 1fr; }
}

/* ---------- Friends & family (unlisted offer page) ---------- */
.friends-hero {
  background: var(--v-gradient-hero);
  color: var(--v-white);
  padding: 160px 0 70px;
}
.friends-eyebrow {
  display: inline-block;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  color: var(--v-primary-light);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 16px; border-radius: 30px; margin-bottom: 22px;
}
.friends-title {
  font-size: 2.9rem; font-weight: 800; color: var(--v-white); margin-bottom: 18px;
}
.friends-intro {
  font-size: 1.1rem; color: rgba(255,255,255,0.82);
  margin: 0 auto; max-width: 660px;
}

.friends-section { background: var(--v-gray-100); padding: 60px 0 90px; }
.friends-block { margin-bottom: 44px; }
.friends-block-title { font-size: 1.45rem; margin-bottom: 10px; }
.friends-block-help { color: var(--v-gray-500); margin-bottom: 22px; }
.friends-footnote {
  font-size: 0.8rem; color: var(--v-gray-500);
  margin: 14px 0 0; line-height: 1.6;
}

/* The comparison. The friends column is the only one that gets brand colour,
   so the eye lands on it without any of the other numbers being dressed up. */
.compare-table {
  width: 100%; margin: 0;
  background: var(--v-white);
  border-radius: var(--v-radius);
  overflow: hidden;
  box-shadow: var(--v-shadow);
  border-collapse: separate; border-spacing: 0;
}
.compare-table th, .compare-table td {
  padding: 16px 18px; vertical-align: middle;
  border-bottom: 1px solid var(--v-gray-300);
}
.compare-table thead th {
  font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: var(--v-gray-500); background: var(--v-gray-100);
  white-space: nowrap;
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-label { font-weight: 700; color: var(--v-dark); font-size: 0.98rem; }
.compare-regular { color: var(--v-gray-500); }
.compare-strike { color: var(--v-gray-500); text-decoration: line-through; }
.compare-public { color: var(--v-gray-700); }
th.compare-yours { color: var(--v-primary); }
td.compare-yours { background: rgba(15, 106, 53, 0.06); }
.compare-price {
  display: block; font-size: 1.5rem; font-weight: 800;
  color: var(--v-primary); line-height: 1.2;
}
.compare-save {
  display: block; font-size: 0.74rem; font-weight: 600;
  color: var(--v-gray-500); text-transform: uppercase; letter-spacing: 0.5px;
}

.friends-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.friends-list li { display: flex; gap: 12px; align-items: flex-start; }
.friends-list i { color: var(--v-primary); margin-top: 5px; flex-shrink: 0; }

.friends-fine { padding-left: 20px; margin: 0; }
.friends-fine li { font-size: 0.9rem; color: var(--v-gray-700); margin-bottom: 10px; }

.photo-note {
  background: rgba(245, 179, 1, 0.1);
  border: 1px solid rgba(245, 179, 1, 0.45);
  border-radius: var(--v-radius);
  padding: 26px 28px;
}
.photo-note p { margin-bottom: 12px; }
.photo-note p:last-child { margin-bottom: 0; }
.photo-optout { font-size: 0.88rem; color: var(--v-gray-500); }

.share-note {
  background: var(--v-white);
  border: 1px solid var(--v-gray-300);
  border-left: 4px solid var(--v-primary);
  border-radius: var(--v-radius);
  padding: 26px 28px;
}
.share-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.share-row .form-control {
  flex: 1 1 240px; min-width: 0;
  border-radius: 10px; border: 1px solid var(--v-gray-300);
  background: var(--v-gray-100); font-size: 0.9rem;
}
.share-row .btn { white-space: nowrap; }

/* The photo agreement is a condition of the price, so it is framed rather
   than dropped in as one more checkbox in the form. */
.consent-box {
  background: var(--v-gray-100);
  border: 2px solid var(--v-gray-300);
  border-radius: var(--v-radius);
  padding: 18px 20px;
}
.consent-box .form-check-label {
  font-size: 0.92rem; color: var(--v-gray-700); line-height: 1.55;
}
.consent-box .form-check-input { margin-top: 0.35rem; }
.consent-box .form-check-input:checked { background-color: var(--v-primary); border-color: var(--v-primary); }

@media (max-width: 767.98px) {
  .friends-title { font-size: 2.1rem; }
  .friends-hero { padding: 130px 0 55px; }
  .friends-block-title { font-size: 1.25rem; }
  .photo-note, .share-note { padding: 20px 18px; }

  /* Four price columns cannot fit on a phone, and letting the table scroll
     sideways would push "your price" — the only column anyone opened this
     link to see — off the screen. So each row becomes its own card, with the
     column headings carried down as data-label. */
  .compare-table { box-shadow: none; background: none; }
  .compare-table thead { display: none; }
  .compare-table, .compare-table tbody, .compare-table tr,
  .compare-table th, .compare-table td { display: block; width: 100%; }
  .compare-table tr {
    background: var(--v-white);
    border: 1px solid var(--v-gray-300);
    border-radius: var(--v-radius);
    box-shadow: var(--v-shadow);
    margin-bottom: 14px;
    overflow: hidden;
  }
  .compare-table tbody tr:last-child { margin-bottom: 0; }
  .compare-table .compare-label {
    background: var(--v-gray-100);
    border-bottom: 1px solid var(--v-gray-300);
    padding: 12px 16px;
    font-size: 1rem;
  }
  .compare-table td {
    display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
    text-align: right; padding: 11px 16px;
    border-bottom: 1px solid var(--v-gray-300);
  }
  .compare-table td::before {
    content: attr(data-label);
    flex: 0 0 auto; text-align: left;
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    color: var(--v-gray-500);
  }
  .compare-table tbody tr td:last-child { border-bottom: none; }
  td.compare-yours { align-items: center; }
  .compare-price { font-size: 1.5rem; }
  .compare-save { text-align: right; }
}

.result-icon { font-size: 3.4rem; color: var(--v-gray-500); margin-bottom: 18px; }
.result-icon-ok { color: var(--v-primary); }

/* ---------- Launch offer + pricing footnote ---------- */
.launch-banner {
  background: rgba(245, 179, 1, 0.1);
  border: 1px solid rgba(245, 179, 1, 0.45);
  border-radius: var(--v-radius);
  padding: 18px 24px; margin-bottom: 34px; text-align: center;
}
.launch-label {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: #8a5d00; margin-bottom: 6px;
}
.launch-text { margin: 0; color: var(--v-gray-700); font-weight: 500; }

.pricing-footnote {
  margin: 34px auto 0; max-width: 780px; text-align: center;
  font-size: 0.87rem; color: var(--v-gray-500);
}

/* ---------- Legal pages (terms, warranty) ---------- */
.legal-section { background: var(--v-white); padding-top: 150px; }
.legal-head { margin-bottom: 40px; }
.legal-title { font-size: 2.4rem; font-weight: 800; margin-bottom: 8px; }
.legal-updated {
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--v-gray-500); margin-bottom: 22px;
}
.legal-intro { font-size: 1.1rem; color: var(--v-gray-500); }

.legal-highlight {
  display: grid; gap: 16px; margin-bottom: 44px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.legal-highlight-item {
  background: var(--v-gray-100); border-radius: var(--v-radius-lg);
  padding: 26px 28px; border-left: 4px solid var(--v-primary);
}
.legal-term {
  display: block; font-size: 2rem; font-weight: 800;
  color: var(--v-primary); line-height: 1.1;
}
.legal-term-label {
  display: block; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--v-gray-500); margin-bottom: 10px;
}
.legal-highlight-item p { margin: 0; font-size: 0.94rem; color: var(--v-gray-700); }

.legal-block { padding: 0; margin-bottom: 34px; }
.legal-block h2 {
  font-size: 1.2rem; font-weight: 700; margin-bottom: 12px;
  padding-top: 20px; border-top: 1px solid var(--v-gray-300);
}
.legal-block p { margin-bottom: 14px; }
.legal-list { margin: 0 0 14px; padding-left: 20px; display: grid; gap: 7px; }
.legal-list li { font-size: 0.97rem; }

.legal-foot {
  margin-top: 50px; padding-top: 26px;
  border-top: 1px solid var(--v-gray-300);
}
.legal-foot p { color: var(--v-gray-500); font-size: 0.95rem; }
.legal-nav { margin-top: 20px; }

.footer-legal-links { margin-top: 10px !important; font-size: 0.84rem; }
.footer-legal-links a { color: rgba(255,255,255,0.7); }
.footer-legal-links a:hover { color: var(--v-primary-light); }
.footer-sep { color: rgba(255,255,255,0.35); margin: 0 8px; }

/* ---------- Footer disclaimer ---------- */
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 36px; padding-top: 22px;
}
.footer-disclaimer p {
  margin: 0; font-size: 0.8rem; line-height: 1.6;
  color: rgba(255,255,255,0.5); max-width: 900px;
}

/* ==========================================================
   /portfolio — institutional page
   Only used by views/portfolio.pug. Reuses the site's section
   headers, cards, stats band and pricing cards; everything
   below is the components that page adds.
   ========================================================== */

/* ---------- Features by role ---------- */
.section-roles { background: var(--v-white); }
.role-card {
  background: var(--v-white); border: 1px solid var(--v-gray-300);
  border-radius: var(--v-radius-lg); padding: 28px 26px; height: 100%;
  transition: box-shadow 0.3s, transform 0.3s;
}
.role-card:hover { transform: translateY(-4px); box-shadow: var(--v-shadow-xl); }
.role-head {
  display: flex; align-items: flex-start; gap: 15px;
  padding-bottom: 18px; margin-bottom: 20px;
  border-bottom: 1px solid var(--v-gray-300);
}
.role-icon {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px;
  background: var(--v-gradient); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.role-title { font-size: 1.15rem; margin: 0 0 3px; }
.role-subtitle {
  margin: 0; font-size: 0.82rem; font-weight: 600; color: var(--v-primary);
  text-transform: uppercase; letter-spacing: 1px;
}
.role-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 17px; }
.role-list h4 {
  font-size: 0.98rem; font-weight: 700; margin: 0 0 4px;
  color: var(--v-gray-900); padding-left: 15px; position: relative;
}
.role-list h4::before {
  content: ""; position: absolute; left: 0; top: 0.5em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--v-primary);
}
.role-list p {
  margin: 0; padding-left: 15px;
  font-size: 0.9rem; color: var(--v-gray-500); line-height: 1.55;
}

/* ---------- What it watches for: the two layers ---------- */
.section-alerts { background: var(--v-gray-100); }
.alert-layer {
  background: var(--v-white); border: 1px solid var(--v-gray-300);
  border-radius: var(--v-radius-lg); padding: 26px 24px; height: 100%;
  border-top: 4px solid var(--v-primary);
}
.alert-layer.layer-trend { border-top-color: var(--v-accent); }
.alert-layer-head {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 8px;
}
.alert-layer-label { font-size: 1.05rem; font-weight: 700; color: var(--v-gray-900); }
.tag-live, .tag-trend {
  font-size: 0.66rem; font-weight: 800; letter-spacing: 1.2px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
  color: #fff; background: var(--v-primary);
}
.tag-trend { background: var(--v-accent); color: #3d2c00; }
.alert-layer-note {
  font-size: 0.87rem; color: var(--v-gray-500);
  margin: 0 0 18px; line-height: 1.55;
}
.alert-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.alert-list li {
  display: flex; align-items: center; gap: 11px;
  background: var(--v-gray-100); border: 1px solid var(--v-gray-300);
  border-radius: 9px; padding: 10px 14px;
  font-size: 0.93rem; font-weight: 500; color: var(--v-gray-700);
}
.alert-dot {
  flex: 0 0 auto; width: 8px; height: 8px; border-radius: 50%;
  background: var(--v-primary);
}
.layer-trend .alert-dot { background: var(--v-accent); }
.alerts-disclaimer {
  margin: 34px auto 0; max-width: 860px; text-align: center;
  font-size: 0.87rem; line-height: 1.65; color: var(--v-gray-500);
  background: var(--v-white); border: 1px dashed var(--v-gray-300);
  border-radius: var(--v-radius); padding: 16px 20px;
}
.alerts-disclaimer i { color: var(--v-primary); }

/* ---------- Technical specifications ---------- */
.section-specs { background: var(--v-white); }
.spec-card {
  border: 1px solid var(--v-gray-300); border-radius: var(--v-radius-lg);
  overflow: hidden; height: 100%;
}
.spec-title {
  display: flex; align-items: center; gap: 11px; margin: 0;
  padding: 16px 22px; font-size: 1.02rem; font-weight: 700;
  background: var(--v-gray-100); border-bottom: 1px solid var(--v-gray-300);
}
.spec-title i { color: var(--v-primary); font-size: 1rem; }
/* Long spec values scroll inside the card rather than pushing the page wide. */
.spec-table-wrap { overflow-x: auto; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.spec-table th,
.spec-table td {
  padding: 12px 22px; text-align: left; vertical-align: top;
  border-bottom: 1px solid var(--v-gray-100);
}
.spec-table tr:last-child th,
.spec-table tr:last-child td { border-bottom: 0; }
.spec-table th {
  font-weight: 600; color: var(--v-gray-500); width: 38%;
  white-space: nowrap;
}
.spec-table td { color: var(--v-gray-900); font-weight: 500; }
.specs-note {
  margin: 34px auto 0; max-width: 860px; text-align: center;
  font-size: 0.85rem; line-height: 1.65; color: var(--v-gray-500);
}

/* ---------- Roadmap ---------- */
.section-roadmap { background: var(--v-gray-100); }
.roadmap-card {
  background: transparent; border: 1px dashed var(--v-gray-300);
  border-radius: var(--v-radius-lg); padding: 24px 24px; height: 100%;
}
.roadmap-card h4 {
  display: flex; align-items: baseline; gap: 11px;
  font-size: 1.05rem; margin-bottom: 9px;
}
.roadmap-marker {
  flex: 0 0 auto; width: 9px; height: 9px; border-radius: 50%;
  background: var(--v-accent);
}
.roadmap-card p { margin: 0; color: var(--v-gray-500); font-size: 0.93rem; }

/* ---------- Portfolio pricing card icon ---------- */
.pricing-icon {
  width: 44px; height: 44px; border-radius: 11px; margin-bottom: 16px;
  background: var(--v-gray-100); color: var(--v-primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.pricing-card.featured .pricing-icon { background: rgba(15, 106, 53, 0.1); }

/* ---------- Responsive ---------- */
@media (min-width: 992px) {
  .audience-card { padding: 32px 26px; }
  .audience-card h4 { font-size: 1.12rem; }
}

@media (max-width: 991px) {
  #mainNav .navbar-collapse {
    background: rgba(12, 31, 20, 0.98);
    border-radius: 12px; padding: 16px; margin-top: 12px;
  }
  #mainNav .navbar-nav { flex-direction: column; align-items: flex-start; gap: 4px; }
  #mainNav .nav-item.ms-lg-3 { margin-top: 8px; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1.15rem; }
  .section-title { font-size: 1.8rem; }
  section { padding: 60px 0; }
  .hero-section { padding: 140px 0 60px; }
  .hero-media { margin-top: 38px; }
  .hero-badge { font-size: 0.8rem; padding: 6px 13px; }
  .watches-panel { padding: 26px 22px; }
  .kit-item { gap: 14px; }
  .launch-banner { padding: 16px 18px; }

  /* /portfolio */
  .role-card { padding: 24px 20px; }
  .alert-layer { padding: 22px 18px; }
  .spec-title { padding: 14px 17px; }
  .spec-table th,
  .spec-table td { padding: 11px 17px; }
  /* Stacking the label above the value keeps long spec values readable
     instead of squeezing them into a 60% column on a phone. */
  .spec-table th { width: auto; white-space: normal; }
  .roadmap-card { padding: 20px 20px; }
}

/* ---------- Evidence, FAQ and financing (homeowner funnel) ---------- */
.section-evidence { padding: 5rem 0; background: var(--bs-light, #f6f7f5); }
.evidence-card {
  height: 100%; background: #fff; border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px; padding: 1.75rem 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: .6rem;
}
.evidence-top { display: flex; align-items: center; gap: .9rem; }
.evidence-icon {
  width: 44px; height: 44px; flex: none; border-radius: 10px;
  display: grid; place-items: center; background: rgba(30,125,70,.1); color: #1e7d46;
}
.evidence-stat { font-size: 1.9rem; font-weight: 800; line-height: 1; color: #1e7d46; }
.evidence-title { margin: .3rem 0 0; font-size: 1.12rem; font-weight: 700; }
.evidence-text { margin: 0; color: #4a4d55; }
.evidence-link { margin-top: auto; padding-top: .6rem; font-weight: 600; text-decoration: none; }
.evidence-link:hover { text-decoration: underline; }
.evidence-footnote {
  margin-top: 2.25rem; padding: 1.25rem 1.5rem; border-left: 3px solid #1e7d46;
  background: #fff; border-radius: 0 10px 10px 0;
}
.evidence-footnote p { margin: 0 0 .35rem; color: #4a4d55; }

.section-faq { padding: 5rem 0; }
.faq-item {
  border: 1px solid rgba(0,0,0,.09); border-radius: 12px;
  padding: 1rem 1.25rem; margin-bottom: .75rem; background: #fff;
}
.faq-item[open] { border-color: rgba(30,125,70,.35); }
.faq-q { cursor: pointer; font-weight: 650; font-size: 1.03rem; list-style: none; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: "+"; float: right; font-weight: 400; color: #1e7d46; }
.faq-item[open] .faq-q::after { content: "\2212"; }
.faq-a { margin: .75rem 0 .25rem; color: #4a4d55; }

.financing-note {
  margin-top: 2rem; padding: 1.15rem 1.4rem; border-radius: 12px;
  background: rgba(30,125,70,.06); border: 1px solid rgba(30,125,70,.18);
}
.financing-head { font-size: 1.03rem; color: #17321f; }
.financing-text { margin: .4rem 0 .5rem; color: #4a4d55; }
.financing-disclosure { margin: 0; font-size: .8rem; line-height: 1.5; color: #767a80; }
.summary-financing { margin: .75rem 0 0; font-size: .9rem; color: #4a4d55; }
.summary-financing span { display: block; margin-top: .35rem; font-size: .76rem; color: #767a80; }
.summary-total strong { color: #1e7d46; }

/* ---------- Hero price: the Klarna monthly figure, front and centre ------- */
.hero-price {
  margin: 1.6rem auto .4rem; max-width: 30rem; padding: 1.15rem 1.5rem 1rem;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px; backdrop-filter: blur(4px);
}
.hero-price-main { display: flex; align-items: baseline; justify-content: center; gap: .4rem; }
.hero-price-from { font-size: 1rem; font-weight: 500; opacity: .8; text-transform: lowercase; }
.hero-price-amount { font-size: clamp(3.1rem, 9vw, 4.4rem); font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.hero-price-per { font-size: 1.35rem; font-weight: 600; opacity: .9; }
.hero-price-alt { margin: .5rem 0 0; font-size: 1.02rem; font-weight: 500; opacity: .95; }
.hero-price-foot {
  display: inline-block; margin-top: .45rem; font-size: .76rem;
  opacity: .72; text-decoration: underline; color: inherit;
}
.hero-price-foot:hover { opacity: 1; color: inherit; }
.pricing-monthly {
  margin-top: .35rem; font-size: .95rem; font-weight: 650; color: #1e7d46;
}

/* Stripe payment-method messaging (official Klarna / Affirm marks). */
.pmme { margin: 0 0 .75rem; min-height: 0; }
.pmme:empty { display: none; }
#pmme-purchase { margin: .9rem 0 .25rem; }
