/* DPA-01 deterministic stylesheet */

/* Base stylesheet: pattern_template_layout_base_stylesheet */

/* ============================================================
   BASE STYLESHEET — AgencyOS
   ============================================================ */


/* --- Base Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--color-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-primary-dark); }
ul { list-style: none; padding: 0; margin: 0; }
p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-heading);
  margin-bottom: 1rem;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(1rem, 2vw, 1.2rem); }

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 80px 0; }
.bg-alt { background: var(--color-bg-alt); }
.text-center { text-align: center; }

/* Section header — centered */
.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 3rem;
}
/* Section header — left-aligned */
.section-header-left {
  text-align: left;
  max-width: 740px;
  margin: 0 0 3rem;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  line-height: 1.7;
  text-align: inherit;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-secondary:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  transform: translateY(-2px);
}
/* Hero/CTA secondary — white on dark backgrounds */
.hero .btn-secondary,
.cta-section .btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.7);
}
.hero .btn-secondary:hover,
.cta-section .btn-secondary:hover {
  background: #ffffff;
  color: var(--color-primary);
  border-color: #ffffff;
}
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.875rem; }

/* --- Site Header & Navbar --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-card-bg);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-heading);
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo:hover { color: var(--color-primary); }
.logo-img { height: 40px; width: auto; }

/* Nav links — centered */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links > li > a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links > li > a:hover {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

/* Nav right — MUST be flex horizontal */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-heading);
  white-space: nowrap;
  text-decoration: none;
  transition: var(--transition);
}
.nav-phone:hover { color: var(--color-primary); }
.nav-phone svg { flex-shrink: 0; }
.nav-cta {
  background: var(--color-primary);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  text-decoration: none;
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--color-primary-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Dropdown — CRITICAL: top: 100% with NO gap */
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 8px 6px 6px;
  z-index: 200;
}
/* Invisible hover bridge — prevents mouse from leaving nav-dropdown before reaching menu */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  color: var(--color-text);
  font-size: 0.9rem;
  border-radius: 6px;
}
.dropdown-menu li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* Mobile-only elements */
.mobile-only { display: none; }
@media (max-width: 768px) { .mobile-only { display: block; } }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;     /* inherits from .nav-toggle button color — lets the scroll-header toggle drive bar color */
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-right { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-card-bg);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    gap: 2px;
    flex: none;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 12px 14px; border-radius: 8px; }
  .nav-links .mobile-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    font-weight: 600;
    color: var(--color-heading);
    font-size: 0.95rem;
    border-radius: 8px;
  }
  .nav-links .mobile-cta {
    display: block;
    background: var(--color-primary);
    color: #ffffff;
    text-align: center;
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 4px;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--color-bg-alt);
    border-radius: 8px;
    display: none;
    padding: 4px 8px;
    margin-top: 4px;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .container { padding: 0 16px; }
  .section-pad { padding: 48px 0; }
}

/* --- FAQ --- */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item.open { border-color: var(--color-primary); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-heading);
  text-align: left;
  gap: 16px;
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--color-primary); }
.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
/* CRITICAL: max-height animation, never display:none */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--color-text-muted);
  line-height: 1.7;
  text-align: left;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 24px 20px; }

/* --- Scroll Animations --- */
.fade-in, .fade-in-left, .fade-in-right {
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in { transform: translateY(20px); }
.fade-in-left { transform: translateX(-28px); }
.fade-in-right { transform: translateX(28px); }
.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible { opacity: 1; transform: none; }

/* --- Trust Bar — slim ribbon, NOT a section. Never apply .section-pad --- */
.trust-bar {
  background: var(--color-card-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
}
.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  overflow: hidden;                 /* clips mobile scroll container to the bar */
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;                /* never wrap to a second row */
  gap: 24px;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-heading);
  white-space: nowrap;
  scroll-snap-align: start;         /* for mobile horizontal scroll */
}
.trust-item a { color: inherit; }
.trust-item a:hover { color: var(--color-primary); }
@media (max-width: 640px) {
  /* If copy ever exceeds container width on mobile, scroll horizontally
     rather than wrap. Copywriter rule keeps .trust-num short, but this is
     a safety net. */
  .trust-items {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 2px;
  }
  .trust-item { font-size: 0.82rem; }
}

/* --- Service Area Tags --- */
.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  transition: var(--transition);
  text-decoration: none;
}
.area-tag:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}
.area-tag-primary {
  border-color: var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
}

/* --- GHL Embed Zones --- */
.ghl-embed-zone {
  background: var(--color-bg-alt);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 32px;
}

/* --- Lucide Icon Sizing --- */
.card-icon i,
.card-icon svg,
.feature-icon i,
.feature-icon svg,
.trust-icon i,
.trust-icon svg,
.contact-icon i,
.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  stroke: currentColor;
}
.feature-icon i,
.feature-icon svg {
  color: #ffffff;
  stroke: currentColor;
}

/* --- Contact Page --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-info-block { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}
.contact-info-item h4 { margin-bottom: 4px; font-size: 0.9rem; text-align: left; }
.contact-info-item p, .contact-info-item a { color: var(--color-text-muted); font-size: 0.95rem; text-align: left; }
.emergency-note { font-size: 0.85rem; color: var(--color-primary); font-weight: 600; margin-top: 4px; }
.form-placeholder {
  background: var(--color-bg-alt);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 32px;
}

/* --- Legal Pages --- */
.legal-page {
  padding: 130px 24px 72px;
  background: var(--color-bg);
}
.legal-page__inner {
  max-width: 880px;
  margin: 0 auto;
}
.legal-page__header {
  margin-bottom: 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--color-border);
}
.legal-page__header p,
.legal-date {
  color: var(--color-text-muted);
}
.legal-page__content {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 34px;
}
.legal-page__content h2,
.legal-page h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  text-align: left;
}
.legal-page__content h2:first-child { margin-top: 0; }
.legal-page p,
.legal-page li {
  color: var(--color-text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
  text-align: left;
}
.legal-page__content ul,
.legal-page ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 1.25rem;
}
@media (max-width: 768px) {
  .legal-page {
    padding-top: 110px;
    padding-bottom: 3.5rem;
  }
  .legal-page__content { padding: 24px 20px; }
}

/* Brand tokens */

:root {
  --color-primary: #C99A2E;
  --color-primary-dark: #9A7015;
  --color-primary-light: rgba(201, 154, 46, 0.14);
  --color-primary-rgb: 201, 154, 46;
  --color-secondary: #C9CDD3;
  --color-bg: #0A0B0D;
  --color-bg-alt: #15181D;
  --color-text: #F2F4F7;
  --color-text-muted: #B7BDC6;
  --color-heading: #FFFFFF;
  --color-border: #343A43;
  --color-card-bg: #12151A;
  --font-heading: "Oswald", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --font-size-base: 16px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 14px 40px rgba(0, 0, 0, 0.18);
  --transition: all 0.2s ease;
  --max-width: 1200px;
}

/* Client launch token remapping: the selected footer consumes
   --color-heading as its surface color, so keep the global heading token
   white and provide the brand's near-black surface only within the footer. */
.tpl-footer-complete-dense {
  --color-heading: var(--color-bg);
}

.tpl-cta-compress-two-speed {
  --color-heading: var(--color-bg);
}

.tpl-legal-hero-media {
  --color-bg: var(--color-heading);
}

/* Template CSS: nav_standard_transparent_scroll_01 */
.tpl-nav-standard-transparent-scroll {
  --tpl-nav-standard-transparent-scroll-height: 70px;
  --tpl-nav-standard-transparent-scroll-pad-x: 24px;
  --tpl-nav-standard-transparent-scroll-mobile-breakpoint: 900px;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(0,0,0,0.58), rgba(0,0,0,0.28) 68%, transparent);
  color: #ffffff;
  border-bottom: 0;
  box-shadow: none;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.tpl-nav-standard-transparent-scroll[data-state="solid"],
.tpl-nav-standard-transparent-scroll[data-mobile-open="true"],
.tpl-nav-standard-transparent-scroll.header-scrolled {
  background: var(--color-card-bg);
  color: var(--color-heading);
  border-bottom-color: var(--color-primary);
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

.tpl-nav-standard-transparent-scroll__bar {
  height: var(--tpl-nav-standard-transparent-scroll-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--tpl-nav-standard-transparent-scroll-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.tpl-nav-standard-transparent-scroll__brand,
.tpl-nav-standard-transparent-scroll__link,
.tpl-nav-standard-transparent-scroll__phone {
  color: inherit;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.tpl-nav-standard-transparent-scroll__brand {
  display: inline-flex;
  align-items: center;
  max-width: 260px;
  font-family: var(--font-heading);
  font-weight: 800;
  white-space: nowrap;
}

.tpl-nav-standard-transparent-scroll__logo {
  width: auto;
  height: auto;
  max-height: 42px;
  max-width: 100%;
  object-fit: contain;
}

.tpl-nav-standard-transparent-scroll__brand img[src=""] {
  display: none;
}

.tpl-nav-standard-transparent-scroll__wordmark {
  display: inline-flex;
  align-items: center;
  color: inherit;
}

.tpl-nav-standard-transparent-scroll__brand:has(img:not([src=""])) .tpl-nav-standard-transparent-scroll__wordmark {
  display: none;
}

@media (max-width: 768px) {
  .tpl-nav-standard-transparent-scroll__logo { max-height: 36px; }
}

.tpl-nav-standard-transparent-scroll__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tpl-nav-standard-transparent-scroll__link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  white-space: nowrap;
}

.tpl-nav-standard-transparent-scroll__link:hover,
.tpl-nav-standard-transparent-scroll__link:focus-visible {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  outline: none;
}

.tpl-nav-standard-transparent-scroll[data-state="solid"] .tpl-nav-standard-transparent-scroll__link:hover,
.tpl-nav-standard-transparent-scroll[data-state="solid"] .tpl-nav-standard-transparent-scroll__link:focus-visible,
.tpl-nav-standard-transparent-scroll[data-mobile-open="true"] .tpl-nav-standard-transparent-scroll__link:hover,
.tpl-nav-standard-transparent-scroll[data-mobile-open="true"] .tpl-nav-standard-transparent-scroll__link:focus-visible,
.tpl-nav-standard-transparent-scroll.header-scrolled .tpl-nav-standard-transparent-scroll__link:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.tpl-nav-standard-transparent-scroll__dropdown {
  position: relative;
}

.tpl-nav-standard-transparent-scroll__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 8px 6px 6px;
  list-style: none;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.tpl-nav-standard-transparent-scroll__dropdown:not(:has(.tpl-nav-standard-transparent-scroll__dropdown-menu > li)) {
  display: none;
}

.tpl-nav-standard-transparent-scroll__dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.tpl-nav-standard-transparent-scroll__dropdown:hover .tpl-nav-standard-transparent-scroll__dropdown-menu,
.tpl-nav-standard-transparent-scroll__dropdown:focus-within .tpl-nav-standard-transparent-scroll__dropdown-menu,
.tpl-nav-standard-transparent-scroll__dropdown[data-open="true"] .tpl-nav-standard-transparent-scroll__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.tpl-nav-standard-transparent-scroll__dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--color-text);
  text-decoration: none;
}

.tpl-nav-standard-transparent-scroll__dropdown-menu a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.tpl-nav-standard-transparent-scroll__dropdown:has(.tpl-nav-standard-transparent-scroll__dropdown-menu:empty) {
  display: none;
}

.tpl-nav-standard-transparent-scroll__actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.tpl-nav-standard-transparent-scroll__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  white-space: nowrap;
}

.tpl-nav-standard-transparent-scroll__phone:hover,
.tpl-nav-standard-transparent-scroll__phone:focus-visible {
  color: #ffffff;
  outline: none;
}

.tpl-nav-standard-transparent-scroll[data-state="solid"] .tpl-nav-standard-transparent-scroll__phone:hover,
.tpl-nav-standard-transparent-scroll[data-state="solid"] .tpl-nav-standard-transparent-scroll__phone:focus-visible,
.tpl-nav-standard-transparent-scroll[data-mobile-open="true"] .tpl-nav-standard-transparent-scroll__phone:hover,
.tpl-nav-standard-transparent-scroll[data-mobile-open="true"] .tpl-nav-standard-transparent-scroll__phone:focus-visible,
.tpl-nav-standard-transparent-scroll.header-scrolled .tpl-nav-standard-transparent-scroll__phone:hover,
.tpl-nav-standard-transparent-scroll.header-scrolled .tpl-nav-standard-transparent-scroll__phone:focus-visible {
  color: var(--color-primary);
}

.tpl-nav-standard-transparent-scroll__cta,
.tpl-nav-standard-transparent-scroll .mobile-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius);
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.tpl-nav-standard-transparent-scroll__cta:hover,
.tpl-nav-standard-transparent-scroll__cta:focus-visible,
.tpl-nav-standard-transparent-scroll .mobile-cta:hover,
.tpl-nav-standard-transparent-scroll .mobile-cta:focus-visible {
  background: var(--color-primary-dark);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(var(--color-primary-rgb), 0.22);
  outline: none;
}

.tpl-nav-standard-transparent-scroll__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 8px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.tpl-nav-standard-transparent-scroll__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.tpl-nav-standard-transparent-scroll[data-mobile-open="true"] .tpl-nav-standard-transparent-scroll__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tpl-nav-standard-transparent-scroll[data-mobile-open="true"] .tpl-nav-standard-transparent-scroll__toggle span:nth-child(2) { opacity: 0; }
.tpl-nav-standard-transparent-scroll[data-mobile-open="true"] .tpl-nav-standard-transparent-scroll__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.tpl-nav-standard-transparent-scroll__mobile-action { display: none; }

@media (max-width: 1020px) {
  .tpl-nav-standard-transparent-scroll__phone { display: none; }
}

@media (max-width: 900px) {
  .tpl-nav-standard-transparent-scroll__bar {
    gap: 16px;
    padding: 0 16px;
  }

  .tpl-nav-standard-transparent-scroll__brand { max-width: min(52vw, 230px); }
  .tpl-nav-standard-transparent-scroll__logo { height: 36px; }
  .tpl-nav-standard-transparent-scroll__toggle { display: inline-block; }
  .tpl-nav-standard-transparent-scroll__actions { display: none; }

  .tpl-nav-standard-transparent-scroll__links {
    display: none;
    position: absolute;
    top: var(--tpl-nav-standard-transparent-scroll-height);
    left: 0;
    right: 0;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    max-height: calc(100vh - var(--tpl-nav-standard-transparent-scroll-height));
    overflow-y: auto;
    padding: 12px 16px 20px;
    background: var(--color-card-bg);
    color: var(--color-heading);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow);
  }

  .tpl-nav-standard-transparent-scroll[data-mobile-open="true"] .tpl-nav-standard-transparent-scroll__links { display: flex; }

  .tpl-nav-standard-transparent-scroll__link {
    width: 100%;
    justify-content: flex-start;
    min-height: 44px;
    color: var(--color-heading);
  }

  .tpl-nav-standard-transparent-scroll__dropdown-menu {
    position: static;
    min-width: 0;
    margin: 4px 0 6px;
    padding: 4px 8px;
    border: 0;
    box-shadow: none;
    background: var(--color-bg-alt);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .tpl-nav-standard-transparent-scroll__dropdown {
    min-width: 0;
  }

  .tpl-nav-standard-transparent-scroll__dropdown:hover .tpl-nav-standard-transparent-scroll__dropdown-menu,
  .tpl-nav-standard-transparent-scroll__dropdown:focus-within .tpl-nav-standard-transparent-scroll__dropdown-menu { display: none; }
  .tpl-nav-standard-transparent-scroll__dropdown[data-open="true"] .tpl-nav-standard-transparent-scroll__dropdown-menu { display: block; }

  .tpl-nav-standard-transparent-scroll__mobile-action { display: block; }
  .tpl-nav-standard-transparent-scroll .mobile-phone {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 44px;
    padding: 10px 20px;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    white-space: nowrap;
  }
  .tpl-nav-standard-transparent-scroll .mobile-cta { width: 100%; }
}

/* Template CSS: hero_convert_background_video_01 */
.tpl-hero-convert-background-video *{box-sizing:border-box;margin:0;padding:0}
.tpl-hero-convert-background-video h1, .tpl-hero-convert-background-video h2, .tpl-hero-convert-background-video h3, .tpl-hero-convert-background-video h4{font-family:var(--font-heading);font-weight:800;color:var(--color-heading);line-height:1.2}
.tpl-hero-convert-background-video img, .tpl-hero-convert-background-video svg{max-width:100%}
.tpl-hero-convert-background-video :where(a:not([class*="btn"]):not([class*="cta"])){color:var(--color-primary)}
.tpl-hero-convert-background-video__wrap{max-width:var(--max-width);margin:0 auto}
.tpl-hero-convert-background-video__btn{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:12px 28px;border-radius:var(--radius);font-family:var(--font-heading);font-weight:800;font-size:15px;text-decoration:none;cursor:pointer;border:0;transition:transform .2s,box-shadow .2s}
.tpl-hero-convert-background-video__btn:hover{transform:translateY(-2px);box-shadow:var(--shadow-hover)}
.tpl-hero-convert-background-video__btn-secondary{background:var(--color-secondary);color:#fff}
.tpl-hero-convert-background-video__btn-ghost{background:transparent;border:2px solid currentColor;color:inherit}
.tpl-hero-convert-background-video__ph{display:block;width:100%;height:auto;border-radius:var(--radius)}
.tpl-hero-convert-background-video__ph rect.f{fill:#DCE7DE}
.tpl-hero-convert-background-video__ph text{font-family:ui-monospace,Menlo,monospace;font-size:15px;fill:#4B6353}
.tpl-hero-convert-background-video__dark .tpl-hero-convert-background-video__ph rect.f, .tpl-hero-convert-background-video__brand .tpl-hero-convert-background-video__ph rect.f{fill:#294636}
.tpl-hero-convert-background-video__dark .tpl-hero-convert-background-video__ph text, .tpl-hero-convert-background-video__brand .tpl-hero-convert-background-video__ph text{fill:#9DBBA8}
.tpl-hero-convert-background-video__oc{display:inline-block;background:#FEF3C7;color:#92400E;font-size:10px;font-weight:700;padding:1px 6px;border-radius:4px;vertical-align:middle;letter-spacing:.05em}
.tpl-hero-convert-background-video__dark .tpl-hero-convert-background-video__oc, .tpl-hero-convert-background-video__brand .tpl-hero-convert-background-video__oc{background:#78350F;color:#FDE68A}
.tpl-hero-convert-background-video__sub{color:var(--color-text-muted);max-width:640px}
.tpl-hero-convert-background-video__center .tpl-hero-convert-background-video__sub{margin:12px auto 0}
.tpl-hero-convert-background-video__mobile-menu .tpl-hero-convert-background-video__btn{margin-top:14px;width:100%;border-bottom:0}
#tpl-hero-convert-background-video-s01 .tpl-hero-convert-background-video__util .tpl-hero-convert-background-video__wrap{display:flex;gap:24px;justify-content:space-between;flex-wrap:wrap}
#tpl-hero-convert-background-video-s01 .tpl-hero-convert-background-video__main .tpl-hero-convert-background-video__wrap{display:flex;align-items:center;gap:32px}
#tpl-hero-convert-background-video-s02 .tpl-hero-convert-background-video__main .tpl-hero-convert-background-video__wrap{display:flex;align-items:center;gap:32px}
#tpl-hero-convert-background-video-s03 .tpl-hero-convert-background-video__estrip .tpl-hero-convert-background-video__wrap{display:flex;align-items:center;gap:14px;flex-wrap:wrap;justify-content:center}
#tpl-hero-convert-background-video-s03 .tpl-hero-convert-background-video__main .tpl-hero-convert-background-video__wrap{display:flex;align-items:center;gap:32px}
.tpl-hero-convert-background-video{position:relative;color:#fff;overflow:hidden}
.tpl-hero-convert-background-video .tpl-hero-convert-background-video__media{position:absolute;inset:0}
.tpl-hero-convert-background-video .tpl-hero-convert-background-video__media svg{width:100%;height:100%;display:block}
.tpl-hero-convert-background-video .tpl-hero-convert-background-video__overlay{position:absolute;inset:0;background:rgba(12,59,30,.55)}
.tpl-hero-convert-background-video .tpl-hero-convert-background-video__inner{position:relative;max-width:var(--max-width);margin:0 auto;padding:130px 24px 110px}
.tpl-hero-convert-background-video .tpl-hero-convert-background-video__inner>div{display:flex;gap:14px;flex-wrap:wrap}
.tpl-hero-convert-background-video .tpl-hero-convert-background-video__inner>div .tpl-hero-convert-background-video__btn:nth-child(n+2){background:transparent;border:2px solid rgba(255,255,255,.72);color:#fff}
.tpl-hero-convert-background-video__btn-secondary:hover,.tpl-hero-convert-background-video__btn-secondary:focus-visible{background:color-mix(in srgb, var(--color-secondary) 82%, var(--color-heading));color:#fff;transform:translateY(-2px);box-shadow:var(--shadow-hover)}
.tpl-hero-convert-background-video__btn-ghost:hover,.tpl-hero-convert-background-video__btn-ghost:focus-visible,.tpl-hero-convert-background-video .tpl-hero-convert-background-video__inner>div .tpl-hero-convert-background-video__btn:nth-child(n+2):hover,.tpl-hero-convert-background-video .tpl-hero-convert-background-video__inner>div .tpl-hero-convert-background-video__btn:nth-child(n+2):focus-visible{background:rgba(255,255,255,.1);border-color:#fff;color:#fff;transform:translateY(-2px)}
.tpl-hero-convert-background-video h1{color:#fff;font-size:clamp(34px,5vw,56px);max-width:640px}
.tpl-hero-convert-background-video .tpl-hero-convert-background-video__sub{color:#E4EEE7;margin:18px 0 28px}
.tpl-hero-convert-background-video .tpl-hero-convert-background-video__ticker{position:relative;background:rgba(12,59,30,.75);padding:12px 24px}
.tpl-hero-convert-background-video .tpl-hero-convert-background-video__ticker .tpl-hero-convert-background-video__wrap{display:flex;gap:28px;flex-wrap:wrap;font-size:14px;font-weight:600;color:#fff}
.tpl-hero-convert-background-video .tpl-hero-convert-background-video__ticker span::before{content:"\2713  ";color:var(--color-secondary)}
@media(max-width:768px){
.tpl-hero-convert-background-video .tpl-hero-convert-background-video__inner{padding:80px 16px 64px}
.tpl-hero-convert-background-video h1{font-size:30px}
}

.tpl-ghl-reviews-widget-standard{padding:76px 24px;background:var(--color-bg);color:var(--color-text)}
.tpl-ghl-reviews-widget-standard__inner{max-width:980px;margin:0 auto}
.tpl-ghl-reviews-widget-standard__header{max-width:720px;margin:0 auto 24px;text-align:center}
.tpl-ghl-reviews-widget-standard__header h2{margin:0 0 12px;color:var(--color-heading);font-size:2.2rem;line-height:1.14}
.tpl-ghl-reviews-widget-standard__header p{color:var(--color-text-muted);line-height:1.6}
.tpl-ghl-reviews-widget-standard__frame{position:relative;border:0;background:transparent;overflow:visible}
.tpl-ghl-reviews-widget-standard__iframe{position:relative;z-index:1;width:100%;display:block;border:0;background:transparent;min-height:240px}
@media(max-width:620px){.tpl-ghl-reviews-widget-standard{padding:56px 18px}}
.tpl-hero-convert-background-video [hidden]{display:none!important}
.tpl-hero-convert-background-video img[src=""], .tpl-hero-convert-background-video video[src=""], .tpl-hero-convert-background-video [href=""]{display:none!important}
@media (max-width:768px){
  .tpl-hero-convert-background-video{max-width:100%;}
}

/* Template CSS: divider_wave_section_transition_01 */
.tpl-divider-wave-section-transition {
  --tpl-divider-wave-section-transition-fill: var(--color-bg-alt);
  --tpl-divider-wave-section-transition-bg: var(--color-bg);
  --tpl-divider-wave-section-transition-height: 104px;
  --tpl-divider-wave-section-transition-height-sm: 58px;

  position: relative;
  display: block;
  width: 100%;
  height: var(--tpl-divider-wave-section-transition-height);
  overflow: hidden;
  line-height: 0;
  margin: -1px 0;
  padding: 0;
  pointer-events: none;
  z-index: 2;
  flex-shrink: 0;
  background: var(--tpl-divider-wave-section-transition-bg);
}

.tpl-divider-wave-section-transition svg {
  display: block;
  width: 100%;
  height: 100%;
}

.tpl-divider-wave-section-transition svg path {
  fill: var(--tpl-divider-wave-section-transition-fill);
}

.tpl-divider-wave-section-transition--bg-to-alt {
  --tpl-divider-wave-section-transition-fill: var(--color-bg-alt);
  --tpl-divider-wave-section-transition-bg: var(--color-bg);
}

.tpl-divider-wave-section-transition--alt-to-bg {
  --tpl-divider-wave-section-transition-fill: var(--color-bg);
  --tpl-divider-wave-section-transition-bg: var(--color-bg-alt);
}

.tpl-divider-wave-section-transition--bg-to-primary {
  --tpl-divider-wave-section-transition-fill: var(--color-primary);
  --tpl-divider-wave-section-transition-bg: var(--color-bg);
}

@media (max-width: 768px) {
  .tpl-divider-wave-section-transition {
    height: var(--tpl-divider-wave-section-transition-height-sm);
  }
}

/* Template CSS: problem_stakes_damage_meter_01 */
.tpl-problem-stakes-damage-meter *{margin:0;padding:0;box-sizing:border-box}
.tpl-problem-stakes-damage-meter h1, .tpl-problem-stakes-damage-meter h2, .tpl-problem-stakes-damage-meter h3, .tpl-problem-stakes-damage-meter h4{font-family:var(--font-heading);color:var(--color-heading);line-height:1.12;letter-spacing:-.02em;font-weight:800}
.tpl-problem-stakes-damage-meter :where(a:not([class*="btn"]):not([class*="cta"])){color:var(--color-primary)}
.tpl-problem-stakes-damage-meter__wrap{max-width:var(--max-width);margin:0 auto;padding:0 24px}
.tpl-problem-stakes-damage-meter{padding:80px 0}
@media(max-width:768px){
.tpl-problem-stakes-damage-meter{padding:48px 0}
}
.tpl-problem-stakes-damage-meter__btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;font-family:var(--font-body);font-weight:700;font-size:17px;padding:14px 28px;min-height:48px;border-radius:var(--radius);text-decoration:none;transition:var(--transition);border:2px solid transparent;cursor:pointer}
.tpl-problem-stakes-damage-meter__btn-primary{background:var(--color-primary);color:#fff}
.tpl-problem-stakes-damage-meter__btn-primary:hover{background:var(--color-primary-dark);transform:translateY(-2px);box-shadow:var(--shadow-hover)}
.tpl-problem-stakes-damage-meter__btn-orange{background:var(--color-secondary);color:#fff}
.tpl-problem-stakes-damage-meter__btn-orange:hover{background:color-mix(in srgb, var(--color-secondary) 82%, var(--color-heading));transform:translateY(-2px);box-shadow:var(--shadow-hover)}
.tpl-problem-stakes-damage-meter{background:var(--color-bg-alt)}
.tpl-problem-stakes-damage-meter h2{font-size:clamp(28px,3.2vw,40px);margin-bottom:12px}
.tpl-problem-stakes-damage-meter__intro{color:var(--color-text-muted);max-width:560px;margin-bottom:48px}
.tpl-problem-stakes-damage-meter__track{display:grid;grid-template-columns:repeat(4,1fr);gap:0;align-items:end}
.tpl-problem-stakes-damage-meter__stage{position:relative;border-radius:var(--radius) var(--radius) 0 0;padding:22px 20px;color:#fff;transition:var(--transition)}
.tpl-problem-stakes-damage-meter__stage:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover)}
.tpl-problem-stakes-damage-meter__stage:nth-child(1){min-height:150px;background:#4A6E8C}
.tpl-problem-stakes-damage-meter__stage:nth-child(2){min-height:190px;background:#3E5F80}
.tpl-problem-stakes-damage-meter__stage:nth-child(3){min-height:230px;background:var(--color-secondary)}
.tpl-problem-stakes-damage-meter__stage:nth-child(4){min-height:270px;background:var(--color-secondary)}
.tpl-problem-stakes-damage-meter__time{font:700 12px/1 ui-monospace,monospace;letter-spacing:.14em;text-transform:uppercase;opacity:.85;margin-bottom:10px}
.tpl-problem-stakes-damage-meter__stage h3{color:#fff;font-size:18px;margin-bottom:8px}
.tpl-problem-stakes-damage-meter__stage p{font-size:14px;opacity:.9;line-height:1.5}
.tpl-problem-stakes-damage-meter__baseline{height:6px;background:var(--color-heading);border-radius:0 0 var(--radius) var(--radius)}
.tpl-problem-stakes-damage-meter__resolve{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;background:var(--color-card-bg);border:1px solid var(--color-border);border-left:6px solid var(--color-primary);border-radius:var(--radius);padding:16px 20px;margin-top:24px}
.tpl-problem-stakes-damage-meter__resolve strong{font-family:var(--font-heading);font-size:20px;color:var(--color-heading)}
.tpl-problem-stakes-damage-meter__resolve .tpl-problem-stakes-damage-meter__actions{display:flex;gap:10px;flex-wrap:wrap}
.tpl-problem-stakes-damage-meter__actions .tpl-problem-stakes-damage-meter__btn:nth-child(2){background:var(--color-primary);border-color:var(--color-primary);color:#fff}
@media(max-width:768px){
.tpl-problem-stakes-damage-meter__track{grid-template-columns:1fr}
.tpl-problem-stakes-damage-meter__stage{min-height:0!important;border-radius:0}
.tpl-problem-stakes-damage-meter__stage:first-child{border-radius:var(--radius) var(--radius) 0 0}
}
.tpl-problem-stakes-damage-meter__s5 .tpl-problem-stakes-damage-meter__intro{color:#A9BECD;max-width:560px;margin-bottom:40px}
.tpl-problem-stakes-damage-meter__s7 .tpl-problem-stakes-damage-meter__intro{color:var(--color-text-muted);max-width:560px;margin-bottom:48px}
.tpl-problem-stakes-damage-meter__s9 .tpl-problem-stakes-damage-meter__intro{color:var(--color-text-muted);margin-bottom:28px}
.tpl-problem-stakes-damage-meter__s19 .tpl-problem-stakes-damage-meter__intro{color:var(--color-text-muted);margin-bottom:32px}
.tpl-problem-stakes-damage-meter__s4 .tpl-problem-stakes-damage-meter__intro{color:var(--color-text-muted);max-width:600px;margin-bottom:44px}
.tpl-problem-stakes-damage-meter__s6 .tpl-problem-stakes-damage-meter__intro{color:var(--color-text-muted);max-width:600px;margin-bottom:48px}
.tpl-problem-stakes-damage-meter__s6 .tpl-problem-stakes-damage-meter__stage{display:grid;grid-template-columns:1fr 420px 1fr;gap:28px;align-items:center}
@media(max-width:900px){
.tpl-problem-stakes-damage-meter__s6 .tpl-problem-stakes-damage-meter__stage{grid-template-columns:1fr}
}
.tpl-problem-stakes-damage-meter__s10 .tpl-problem-stakes-damage-meter__intro{color:#A9BECD;max-width:560px;margin-bottom:40px}
.tpl-problem-stakes-damage-meter__s12 .tpl-problem-stakes-damage-meter__intro{color:var(--color-text-muted);max-width:600px;margin-bottom:40px}
.tpl-problem-stakes-damage-meter__s15 .tpl-problem-stakes-damage-meter__intro{color:var(--color-text-muted);max-width:560px;margin-bottom:44px}
.tpl-problem-stakes-damage-meter__s20 .tpl-problem-stakes-damage-meter__intro{color:var(--color-text-muted)}
.tpl-problem-stakes-damage-meter__s22 .tpl-problem-stakes-damage-meter__rail .tpl-problem-stakes-damage-meter__btn{font-size:19px;padding:16px 34px;background:#fff;color:var(--color-secondary)}
.tpl-problem-stakes-damage-meter__s22 .tpl-problem-stakes-damage-meter__rail .tpl-problem-stakes-damage-meter__btn:hover{transform:translateY(-2px);box-shadow:var(--shadow-hover)}
.tpl-problem-stakes-damage-meter [hidden]{display:none!important}
.tpl-problem-stakes-damage-meter img[src=""], .tpl-problem-stakes-damage-meter video[src=""], .tpl-problem-stakes-damage-meter [href=""]{display:none!important}
@media (max-width:768px){
  .tpl-problem-stakes-damage-meter{max-width:100%;}
}

/* Template CSS: process_reassure_call_walkthrough_01 */
.tpl-process-reassure-walkthrough {
  --tpl-process-reassure-walkthrough-rail-x: 27px;

  background: var(--color-bg);
  padding: clamp(64px, 9vw, 112px) 24px;
  font-family: var(--font-body);
  color: var(--color-text);
}
.tpl-process-reassure-walkthrough__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.tpl-process-reassure-walkthrough__head {
  max-width: 620px;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.tpl-process-reassure-walkthrough__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.tpl-process-reassure-walkthrough__eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}
.tpl-process-reassure-walkthrough__heading {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.18;
}
.tpl-process-reassure-walkthrough__intro {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}
.tpl-process-reassure-walkthrough__cols {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.tpl-process-reassure-walkthrough__rail {
  position: relative;
  display: grid;
}
.tpl-process-reassure-walkthrough__rail::before {
  content: "";
  position: absolute;
  left: var(--tpl-process-reassure-walkthrough-rail-x);
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(var(--color-primary) 0%, var(--color-border) 100%);
}
.tpl-process-reassure-walkthrough__step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 22px 0;
}
.tpl-process-reassure-walkthrough__dot {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--color-card-bg);
  border: 2px solid var(--color-primary);
  color: var(--color-primary-dark);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 6px 16px rgba(var(--color-primary-rgb), 0.16);
}
.tpl-process-reassure-walkthrough__body {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  box-shadow: 0 6px 18px rgba(16, 32, 40, 0.05);
  max-width: 660px;
}
.tpl-process-reassure-walkthrough__title {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-size: 1.05rem;
  font-weight: 700;
}
.tpl-process-reassure-walkthrough__text {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.tpl-process-reassure-walkthrough__micro {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}
.tpl-process-reassure-walkthrough__icon {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.tpl-process-reassure-walkthrough__icon--floater {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}
.tpl-process-reassure-walkthrough__side {
  position: sticky;
  top: 96px;
}
.tpl-process-reassure-walkthrough__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 200px 200px var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow);
}
.tpl-process-reassure-walkthrough__floater {
  position: relative;
  margin: -30px auto 0;
  width: max-content;
  max-width: 90%;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-heading);
}
@media (max-width: 880px) {
  .tpl-process-reassure-walkthrough__cols { grid-template-columns: 1fr; }
  .tpl-process-reassure-walkthrough__side {
    position: static;
    order: -1;
    max-width: 420px;
  }
}
@media (max-width: 560px) {
  .tpl-process-reassure-walkthrough__rail::before { left: 21px; }
  .tpl-process-reassure-walkthrough__step { grid-template-columns: 44px 1fr; gap: 14px; }
  .tpl-process-reassure-walkthrough__dot {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 0.9rem;
  }
}

/* Template CSS: bento_widget_service_fit_selector_01 */
.tpl-bw-service-fit-selector { --tpl-bw-service-fit-selector-accent: #ffffff; }
.tpl-bw-service-fit-selector__head { display: flex; align-items: center; gap: 7px; margin-bottom: 8px; flex: none; }
.tpl-bw-service-fit-selector__head span { width: 8px; height: 8px; border-radius: 50%; background: var(--color-secondary); flex: none; }
.tpl-bw-service-fit-selector__head h3 { margin: 0; font: 700 clamp(12px, 5cqi, 15px) var(--font-body); color: var(--color-text); letter-spacing: 0; }
.tpl-bw-service-fit-selector__sub { font-size: clamp(10px, 3.6cqi, 12px); color: var(--color-text-muted); margin: -6px 0 8px; }
.tpl-bw-service-fit-selector__chips { display: flex; flex-wrap: wrap; gap: 6px; flex: none; margin-bottom: 10px; }
.tpl-bw-service-fit-selector__panel { flex: 1; position: relative; background: #132c33; border-radius: calc(var(--radius) - 2px); padding: 16px; display: flex; flex-direction: column; justify-content: center; gap: 8px; min-height: 0; overflow: hidden; }
.tpl-bw-service-fit-selector__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.35s ease; }
.tpl-bw-service-fit-selector__image.is-on { opacity: 1; }
.tpl-bw-service-fit-selector__image[hidden] { display: none; }
.tpl-bw-service-fit-selector__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 24, 29, 0.84), rgba(10, 24, 29, 0.58) 62%, rgba(10, 24, 29, 0.28)); }
.tpl-bw-service-fit-selector__method { font-size: clamp(15px, 6cqi, 21px); font-weight: 800; color: var(--tpl-bw-service-fit-selector-accent); }
.tpl-bw-service-fit-selector__method, .tpl-bw-service-fit-selector__desc, .tpl-bw-service-fit-selector__badges { position: relative; z-index: 1; }
.tpl-bw-service-fit-selector__desc { margin: 0; font-size: clamp(11px, 4cqi, 13px); color: rgba(255, 255, 255, 0.88); line-height: 1.5; max-width: 52ch; }
.tpl-bw-service-fit-selector__badges { display: flex; gap: 6px; flex-wrap: wrap; }
.tpl-bw-service-fit-selector__badges span { font: 700 10px var(--font-body); background: rgba(255, 255, 255, 0.9); border: 1px solid rgba(255, 255, 255, 0.65); padding: 4px 8px; border-radius: 999px; color: var(--color-text); }
@media (prefers-reduced-motion: reduce) { .tpl-bw-service-fit-selector__image { transition: none; } }

/* Template CSS: bento_widget_faq_accordion_01 */
.tpl-bw-faq-accordion { --tpl-bw-faq-accordion-divider: #e8edf2; }
.tpl-bw-faq-accordion__head { display: flex; align-items: center; gap: 7px; margin-bottom: 8px; flex: none; }
.tpl-bw-faq-accordion__head span { width: 8px; height: 8px; border-radius: 50%; background: var(--color-secondary); flex: none; }
.tpl-bw-faq-accordion__head h3 { margin: 0; font: 700 clamp(12px, 5cqi, 15px) var(--font-body); color: var(--color-text); letter-spacing: 0; }
.tpl-bw-faq-accordion__list { flex: 1; min-height: 0; overflow: auto; }
.tpl-bw-faq-accordion__item + .tpl-bw-faq-accordion__item { border-top: 1px solid var(--tpl-bw-faq-accordion-divider); }
.tpl-bw-faq-accordion__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; font: 700 clamp(11px, 4cqi, 13px) var(--font-body); color: var(--color-text); padding: 9px 2px; min-height: 44px; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.tpl-bw-faq-accordion__q svg { width: 16px; height: 16px; stroke: var(--color-primary); stroke-width: 2.4; fill: none; stroke-linecap: round; stroke-linejoin: round; flex: none; transition: transform 0.18s ease; }
.tpl-bw-faq-accordion__item.is-open .tpl-bw-faq-accordion__q svg { transform: rotate(180deg); }
.tpl-bw-faq-accordion__a { font-size: clamp(10px, 3.8cqi, 12px); color: var(--color-text-muted); line-height: 1.5; padding: 0 2px 9px; }
.tpl-bw-faq-accordion__a[hidden] { display: none; }

/* Template CSS: bento_widget_guarantee_badge_01 */
.tpl-bw-guarantee-badge { --tpl-bw-guarantee-badge-front-bg: var(--color-bg-alt); padding: 0; perspective: 780px; cursor: pointer; background: transparent; border: none; box-shadow: none; overflow: visible; }
.tpl-bw-guarantee-badge__inner { position: relative; flex: 1; transform-style: preserve-3d; transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1); border-radius: var(--radius); min-height: 0; }
.tpl-bw-guarantee-badge.is-flipped .tpl-bw-guarantee-badge__inner { transform: rotateY(180deg); }
.tpl-bw-guarantee-badge__face { position: absolute; inset: 0; backface-visibility: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 13px; text-align: center; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--color-border); overflow: hidden; }
.tpl-bw-guarantee-badge__front { background: var(--tpl-bw-guarantee-badge-front-bg); }
.tpl-bw-guarantee-badge__icon { width: clamp(36px, 18cqi, 54px); height: clamp(36px, 18cqi, 54px); border-radius: 50%; background: #fff; color: var(--color-primary); display: flex; align-items: center; justify-content: center; box-shadow: 0 1px 0 rgba(22, 35, 46, 0.06); }
.tpl-bw-guarantee-badge__icon svg { width: 62%; height: 62%; stroke: currentColor; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.tpl-bw-guarantee-badge__front b { font-size: clamp(14px, 6.4cqi, 19px); line-height: 1.05; max-width: 10ch; }
.tpl-bw-guarantee-badge__front span { font-size: clamp(11px, 4.6cqi, 13px); color: var(--color-text-muted); font-weight: 600; }
.tpl-bw-guarantee-badge__back { background: var(--color-primary); color: #fff; transform: rotateY(180deg); font-size: clamp(11px, 4.8cqi, 14px); line-height: 1.45; font-weight: 600; }
@media (prefers-reduced-motion: reduce) { .tpl-bw-guarantee-badge__inner { transition: none; } }

/* Template CSS: bento_widget_value_chip_01 */
.tpl-bw-value-chip { container-type: inline-size; --tpl-bw-value-chip-surface: var(--color-bg-alt); --tpl-bw-value-chip-mark-bg: var(--color-card-bg); background: var(--tpl-bw-value-chip-surface); border: 1px solid var(--color-border); border-radius: var(--radius); box-shadow: var(--shadow); color: var(--color-text); font-family: var(--font-body); padding: clamp(12px, 6cqi, 17px); justify-content: center; gap: clamp(9px, 4.5cqi, 13px); }
.tpl-bw-value-chip__mark { width: clamp(38px, 18cqi, 52px); height: clamp(38px, 18cqi, 52px); flex: none; display: grid; place-items: center; border: 1px solid var(--color-border); border-radius: var(--radius); background: var(--tpl-bw-value-chip-mark-bg); color: var(--color-primary); }
.tpl-bw-value-chip__mark svg { width: 58%; height: 58%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.tpl-bw-value-chip__content { display: grid; gap: 6px; }
.tpl-bw-value-chip__label { margin: 0; color: var(--color-primary); font-size: clamp(0.62rem, 3.8cqi, 0.76rem); font-weight: 800; line-height: 1.1; text-transform: uppercase; }
.tpl-bw-value-chip__content h3 { margin: 0; color: var(--color-text); font-size: clamp(0.88rem, 6.3cqi, 1.14rem); line-height: 1.18; }
.tpl-bw-value-chip__support { margin: 0; color: var(--color-text-muted); font-size: clamp(0.68rem, 4.1cqi, 0.82rem); line-height: 1.35; }
@container (max-width: 240px) { .tpl-bw-value-chip__content h3 { font-size: 0.88rem; } .tpl-bw-value-chip__support { font-size: 0.68rem; } }
@media (prefers-reduced-motion: reduce) { .tpl-bw-value-chip * { animation: none !important; transition: none !important; } }

/* Template CSS: bento_widget_surface_guide_01 */
.tpl-bw-surface-guide__head { display: flex; align-items: center; gap: 7px; margin-bottom: 8px; flex: none; }
.tpl-bw-surface-guide__head span { width: 8px; height: 8px; border-radius: 50%; background: var(--color-secondary); flex: none; }
.tpl-bw-surface-guide__head h3 { margin: 0; font: 700 clamp(12px, 5cqi, 15px) var(--font-body); color: var(--color-text); letter-spacing: 0; }

.tpl-bw-surface-guide__chips { display: flex; gap: 6px; flex: none; margin-bottom: 8px; flex-wrap: wrap; }
.tpl-bw-surface-guide__body { flex: 1; display: grid; grid-template-columns: minmax(112px, 42%) minmax(0, 1fr); gap: 12px; align-items: stretch; min-height: 0; }
.tpl-bw-surface-guide__visual { position: relative; min-height: 0; overflow: hidden; border-radius: calc(var(--radius) - 2px); border: 1px solid rgba(22, 35, 46, 0.08); background: var(--color-bg-alt); }
.tpl-bw-surface-guide__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.35s ease; }
.tpl-bw-surface-guide__image.is-on { opacity: 1; }
.tpl-bw-surface-guide__image[hidden] { display: none; }
.tpl-bw-surface-guide__copy { min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.tpl-bw-surface-guide__copy b { font-size: clamp(12px, 4.8cqi, 16px); color: var(--color-text); }
.tpl-bw-surface-guide__copy p { margin: 0; font-size: clamp(10px, 3.7cqi, 12px); color: var(--color-text-muted); line-height: 1.45; }
@container (max-width: 420px) { .tpl-bw-surface-guide__body { grid-template-columns: 1fr; } .tpl-bw-surface-guide__visual { min-height: 7.5rem; } }
@media (prefers-reduced-motion: reduce) { .tpl-bw-surface-guide__image { transition: none; } }

/* Template CSS: bento_widget_care_tips_01 */
.tpl-bw-care-tips { container-type: inline-size; --tpl-bw-care-tips-surface: var(--color-bg-alt); --tpl-bw-care-tips-item: var(--color-card-bg); background: var(--tpl-bw-care-tips-surface); border: 1px solid var(--color-border); border-radius: var(--radius); box-shadow: var(--shadow); color: var(--color-text); font-family: var(--font-body); padding: clamp(10px, 5cqi, 14px); gap: clamp(6px, 3cqi, 10px); }
.tpl-bw-care-tips__heading { display: flex; align-items: center; gap: 7px; color: var(--color-primary); }
.tpl-bw-care-tips__heading h3 { margin: 0; font-size: clamp(0.8rem, 6cqi, 1.05rem); line-height: 1.15; }
.tpl-bw-care-tips__heading-icon { width: clamp(18px, 8cqi, 24px); height: clamp(18px, 8cqi, 24px); flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.tpl-bw-care-tips__list { list-style: none; display: grid; gap: 5px; margin: 0; padding: 0; }
.tpl-bw-care-tips__item button { width: 100%; min-height: 44px; display: flex; align-items: center; gap: 7px; padding: 5px 7px; border: 1px solid var(--color-border); border-radius: var(--radius); background: var(--tpl-bw-care-tips-item); color: var(--color-text); font: 600 clamp(0.68rem, 4.2cqi, 0.82rem) var(--font-body); line-height: 1.2; text-align: left; cursor: pointer; }
.tpl-bw-care-tips__check { width: 20px; height: 20px; flex: none; display: grid; place-items: center; border: 1px solid var(--color-border); border-radius: var(--radius); color: var(--color-primary); }
.tpl-bw-care-tips__check svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; opacity: 0; }
.tpl-bw-care-tips__item button[aria-pressed="true"] { border-color: var(--color-primary); color: var(--color-primary); }
.tpl-bw-care-tips__item button[aria-pressed="true"] .tpl-bw-care-tips__check svg { opacity: 1; }
@container (max-width: 240px) { .tpl-bw-care-tips__heading h3 { font-size: 0.8rem; } .tpl-bw-care-tips__item button { font-size: 0.68rem; } }
@media (hover: hover) { .tpl-bw-care-tips__item button:hover { border-color: var(--color-primary); } }
@media (prefers-reduced-motion: reduce) { .tpl-bw-care-tips * { animation: none !important; transition: none !important; } }

/* Template CSS: bento_widget_hours_availability_01 */
.tpl-bw-hours-availability { container-type: inline-size; --tpl-bw-hours-availability-surface: var(--color-card-bg); --tpl-bw-hours-availability-icon-bg: var(--color-bg-alt); background: var(--tpl-bw-hours-availability-surface); border: 1px solid var(--color-border); border-radius: var(--radius); box-shadow: var(--shadow); color: var(--color-text); font-family: var(--font-body); padding: clamp(12px, 6cqi, 17px); justify-content: center; gap: clamp(9px, 4.5cqi, 13px); }
.tpl-bw-hours-availability__icon { width: clamp(38px, 18cqi, 52px); height: clamp(38px, 18cqi, 52px); flex: none; display: grid; place-items: center; border: 1px solid var(--color-border); border-radius: var(--radius); background: var(--tpl-bw-hours-availability-icon-bg); color: var(--color-primary); }
.tpl-bw-hours-availability__icon svg { width: 58%; height: 58%; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.tpl-bw-hours-availability__content { display: grid; gap: 6px; }
.tpl-bw-hours-availability__eyebrow { margin: 0; color: var(--color-primary); font-size: clamp(0.62rem, 3.8cqi, 0.76rem); font-weight: 800; line-height: 1.1; text-transform: uppercase; }
.tpl-bw-hours-availability__content h3 { margin: 0; color: var(--color-text); font-size: clamp(0.86rem, 6.2cqi, 1.12rem); line-height: 1.18; }
.tpl-bw-hours-availability__response { margin: 0; padding-top: 6px; border-top: 1px solid var(--color-border); color: var(--color-text-muted); font-size: clamp(0.68rem, 4.1cqi, 0.82rem); line-height: 1.35; }
@container (max-width: 240px) { .tpl-bw-hours-availability__content h3 { font-size: 0.86rem; } .tpl-bw-hours-availability__response { font-size: 0.68rem; } }
@media (prefers-reduced-motion: reduce) { .tpl-bw-hours-availability * { animation: none !important; transition: none !important; } }

/* Template CSS: section_template_bento_widgets_01 */
.tpl-bento-widgets {
  --tpl-bento-widgets-gap: 14px;
  --tpl-bento-widgets-ratio: 1.5;
  --tpl-bento-widgets-ratio-mobile: 1.25;
  background: var(--color-bg);
  color: var(--color-text);
  padding: clamp(54px, 7vw, 92px) 24px;
  font-family: var(--font-body);
}
.tpl-bento-widgets__wrap {
  container-type: inline-size;
  container-name: tpl-bento-widgets;
  max-width: var(--max-width);
  margin: 0 auto;
}
.tpl-bento-widgets__header { max-width: 760px; margin: 0 0 22px; }
.tpl-bento-widgets__eyebrow { margin: 0 0 8px; color: var(--color-primary); font-weight: 800; font-size: 0.78rem; letter-spacing: 0; text-transform: uppercase; }
.tpl-bento-widgets__heading { margin: 0; color: var(--color-heading); font-family: var(--font-heading); font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.08; letter-spacing: 0; }
.tpl-bento-widgets__intro { margin: 12px 0 0; color: var(--color-text-muted); line-height: 1.65; font-size: 1rem; }
.tpl-bento-widgets__grid {
  position: relative;
  display: grid;
  gap: var(--tpl-bento-widgets-gap);
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(calc((100cqw - 3 * var(--tpl-bento-widgets-gap)) / 4 / var(--tpl-bento-widgets-ratio)), auto);
}
.tpl-bento-widgets__cell {
  position: relative;
  z-index: 1;
  background: var(--color-card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  overflow: hidden;
  padding: 14px;
  display: flex;
  flex-direction: column;
  container-type: inline-size;
  min-width: 0;
}
.tpl-bento-widgets__chip {
  font: 600 12px var(--font-body);
  padding: 7px 11px;
  min-height: 2.25rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text-muted);
  cursor: pointer;
  white-space: nowrap;
}
.tpl-bento-widgets__chip.is-on {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
@container tpl-bento-widgets (max-width: 900px) {
  .tpl-bento-widgets__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(calc((100cqw - 2 * var(--tpl-bento-widgets-gap)) / 3 / var(--tpl-bento-widgets-ratio)), auto);
  }
}
@container tpl-bento-widgets (max-width: 600px) {
  .tpl-bento-widgets__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(calc((100cqw - var(--tpl-bento-widgets-gap)) / 2 / var(--tpl-bento-widgets-ratio-mobile)), auto);
  }
}
.tpl-bento-widgets[data-pattern="bento_pattern_a"] [data-slot="1"] { grid-area: 1 / 1 / 3 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_a"] [data-slot="2"] { grid-area: 1 / 3 / 2 / 5; }
.tpl-bento-widgets[data-pattern="bento_pattern_a"] [data-slot="3"] { grid-area: 2 / 3 / 3 / 4; }
.tpl-bento-widgets[data-pattern="bento_pattern_a"] [data-slot="4"] { grid-area: 2 / 4 / 3 / 5; }
.tpl-bento-widgets[data-pattern="bento_pattern_a"] [data-slot="5"] { grid-area: 3 / 1 / 4 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_a"] [data-slot="6"] { grid-area: 3 / 3 / 4 / 4; }
.tpl-bento-widgets[data-pattern="bento_pattern_a"] [data-slot="7"] { grid-area: 3 / 4 / 4 / 5; }
.tpl-bento-widgets[data-pattern="bento_pattern_b"] [data-slot="1"] { grid-area: 2 / 1 / 4 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_b"] [data-slot="2"] { grid-area: 2 / 3 / 3 / 5; }
.tpl-bento-widgets[data-pattern="bento_pattern_b"] [data-slot="3"] { grid-area: 1 / 1 / 2 / 2; }
.tpl-bento-widgets[data-pattern="bento_pattern_b"] [data-slot="4"] { grid-area: 1 / 2 / 2 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_b"] [data-slot="5"] { grid-area: 1 / 3 / 2 / 5; }
.tpl-bento-widgets[data-pattern="bento_pattern_b"] [data-slot="6"] { grid-area: 3 / 3 / 4 / 4; }
.tpl-bento-widgets[data-pattern="bento_pattern_b"] [data-slot="7"] { grid-area: 3 / 4 / 4 / 5; }
.tpl-bento-widgets[data-pattern="bento_pattern_c"] [data-slot="1"] { grid-area: 1 / 1 / 3 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_c"] [data-slot="2"] { grid-area: 1 / 3 / 2 / 5; }
.tpl-bento-widgets[data-pattern="bento_pattern_c"] [data-slot="3"] { grid-area: 3 / 1 / 4 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_c"] [data-slot="4"] { grid-area: 2 / 3 / 3 / 4; }
.tpl-bento-widgets[data-pattern="bento_pattern_c"] [data-slot="5"] { grid-area: 2 / 4 / 3 / 5; }
.tpl-bento-widgets[data-pattern="bento_pattern_c"] [data-slot="6"] { grid-area: 3 / 3 / 4 / 4; }
.tpl-bento-widgets[data-pattern="bento_pattern_c"] [data-slot="7"] { grid-area: 3 / 4 / 4 / 5; }
.tpl-bento-widgets[data-pattern="bento_pattern_d"] [data-slot="1"] { grid-area: 1 / 1 / 3 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_d"] [data-slot="2"] { grid-area: 1 / 3 / 2 / 5; }
.tpl-bento-widgets[data-pattern="bento_pattern_d"] [data-slot="3"] { grid-area: 2 / 3 / 3 / 4; }
.tpl-bento-widgets[data-pattern="bento_pattern_d"] [data-slot="4"] { grid-area: 2 / 4 / 3 / 5; }
.tpl-bento-widgets[data-pattern="bento_pattern_d"] [data-slot="5"] { grid-area: 3 / 1 / 4 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_d"] [data-slot="6"] { grid-area: 3 / 3 / 4 / 4; }
.tpl-bento-widgets[data-pattern="bento_pattern_d"] [data-slot="7"] { grid-area: 3 / 4 / 4 / 5; }
@container tpl-bento-widgets (max-width: 900px) {
.tpl-bento-widgets[data-pattern="bento_pattern_a"] [data-slot="1"] { grid-area: 1 / 1 / 3 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_a"] [data-slot="2"] { grid-area: 3 / 1 / 4 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_a"] [data-slot="3"] { grid-area: 1 / 3 / 2 / 4; }
.tpl-bento-widgets[data-pattern="bento_pattern_a"] [data-slot="4"] { grid-area: 2 / 3 / 3 / 4; }
.tpl-bento-widgets[data-pattern="bento_pattern_a"] [data-slot="5"] { grid-area: 4 / 1 / 5 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_a"] [data-slot="6"] { grid-area: 3 / 3 / 4 / 4; }
.tpl-bento-widgets[data-pattern="bento_pattern_a"] [data-slot="7"] { grid-area: 4 / 3 / 5 / 4; }
.tpl-bento-widgets[data-pattern="bento_pattern_b"] [data-slot="1"] { grid-area: 1 / 1 / 3 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_b"] [data-slot="2"] { grid-area: 3 / 1 / 4 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_b"] [data-slot="3"] { grid-area: 1 / 3 / 2 / 4; }
.tpl-bento-widgets[data-pattern="bento_pattern_b"] [data-slot="4"] { grid-area: 2 / 3 / 3 / 4; }
.tpl-bento-widgets[data-pattern="bento_pattern_b"] [data-slot="5"] { grid-area: 4 / 1 / 5 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_b"] [data-slot="6"] { grid-area: 3 / 3 / 4 / 4; }
.tpl-bento-widgets[data-pattern="bento_pattern_b"] [data-slot="7"] { grid-area: 4 / 3 / 5 / 4; }
.tpl-bento-widgets[data-pattern="bento_pattern_c"] [data-slot="1"] { grid-area: 1 / 1 / 3 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_c"] [data-slot="2"] { grid-area: 3 / 1 / 4 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_c"] [data-slot="3"] { grid-area: 4 / 1 / 5 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_c"] [data-slot="4"] { grid-area: 1 / 3 / 2 / 4; }
.tpl-bento-widgets[data-pattern="bento_pattern_c"] [data-slot="5"] { grid-area: 2 / 3 / 3 / 4; }
.tpl-bento-widgets[data-pattern="bento_pattern_c"] [data-slot="6"] { grid-area: 3 / 3 / 4 / 4; }
.tpl-bento-widgets[data-pattern="bento_pattern_c"] [data-slot="7"] { grid-area: 4 / 3 / 5 / 4; }
.tpl-bento-widgets[data-pattern="bento_pattern_d"] [data-slot="1"] { grid-area: 1 / 1 / 3 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_d"] [data-slot="2"] { grid-area: 3 / 1 / 4 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_d"] [data-slot="3"] { grid-area: 1 / 3 / 2 / 4; }
.tpl-bento-widgets[data-pattern="bento_pattern_d"] [data-slot="4"] { grid-area: 2 / 3 / 3 / 4; }
.tpl-bento-widgets[data-pattern="bento_pattern_d"] [data-slot="5"] { grid-area: 4 / 1 / 5 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_d"] [data-slot="6"] { grid-area: 3 / 3 / 4 / 4; }
.tpl-bento-widgets[data-pattern="bento_pattern_d"] [data-slot="7"] { grid-area: 4 / 3 / 5 / 4; }
}
@container tpl-bento-widgets (max-width: 600px) {
.tpl-bento-widgets[data-pattern="bento_pattern_a"] [data-slot="1"] { grid-area: 1 / 1 / 3 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_a"] [data-slot="2"] { grid-area: 3 / 1 / 4 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_a"] [data-slot="3"] { grid-area: 4 / 1 / 5 / 2; }
.tpl-bento-widgets[data-pattern="bento_pattern_a"] [data-slot="4"] { grid-area: 4 / 2 / 5 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_a"] [data-slot="5"] { grid-area: 5 / 1 / 6 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_a"] [data-slot="6"] { grid-area: 6 / 1 / 7 / 2; }
.tpl-bento-widgets[data-pattern="bento_pattern_a"] [data-slot="7"] { grid-area: 6 / 2 / 7 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_b"] [data-slot="1"] { grid-area: 1 / 1 / 3 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_b"] [data-slot="2"] { grid-area: 3 / 1 / 4 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_b"] [data-slot="3"] { grid-area: 4 / 1 / 5 / 2; }
.tpl-bento-widgets[data-pattern="bento_pattern_b"] [data-slot="4"] { grid-area: 4 / 2 / 5 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_b"] [data-slot="5"] { grid-area: 5 / 1 / 6 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_b"] [data-slot="6"] { grid-area: 6 / 1 / 7 / 2; }
.tpl-bento-widgets[data-pattern="bento_pattern_b"] [data-slot="7"] { grid-area: 6 / 2 / 7 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_c"] [data-slot="1"] { grid-area: 1 / 1 / 3 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_c"] [data-slot="2"] { grid-area: 3 / 1 / 4 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_c"] [data-slot="3"] { grid-area: 5 / 1 / 6 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_c"] [data-slot="4"] { grid-area: 4 / 1 / 5 / 2; }
.tpl-bento-widgets[data-pattern="bento_pattern_c"] [data-slot="5"] { grid-area: 4 / 2 / 5 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_c"] [data-slot="6"] { grid-area: 6 / 1 / 7 / 2; }
.tpl-bento-widgets[data-pattern="bento_pattern_c"] [data-slot="7"] { grid-area: 6 / 2 / 7 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_d"] [data-slot="1"] { grid-area: 1 / 1 / 3 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_d"] [data-slot="2"] { grid-area: 3 / 1 / 4 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_d"] [data-slot="3"] { grid-area: 4 / 1 / 5 / 2; }
.tpl-bento-widgets[data-pattern="bento_pattern_d"] [data-slot="4"] { grid-area: 4 / 2 / 5 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_d"] [data-slot="5"] { grid-area: 5 / 1 / 6 / 3; }
.tpl-bento-widgets[data-pattern="bento_pattern_d"] [data-slot="6"] { grid-area: 6 / 1 / 7 / 2; }
.tpl-bento-widgets[data-pattern="bento_pattern_d"] [data-slot="7"] { grid-area: 6 / 2 / 7 / 3; }
}

/* Template CSS: section_template_services_services_alternating_rows */
/* Services: Full-Width Alternating Rows */
.services-alternating-rows {
  background-color: var(--color-bg-alt);
  padding: 5rem 0;
}

.services-alternating-rows .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.services-alternating-rows .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-alternating-rows .section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.services-alternating-rows .section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-heading);
  margin: 0 0 0.75rem 0;
}

.services-alternating-rows .section-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}

.services-alternating-rows .service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
  background-color: var(--color-card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.services-alternating-rows .service-row:last-child {
  margin-bottom: 0;
}

.services-alternating-rows .row-reversed {
  direction: rtl;
}

.services-alternating-rows .row-reversed > * {
  direction: ltr;
}

.services-alternating-rows .service-row-image {
  height: 100%;
  min-height: 300px;
}

.services-alternating-rows .service-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.services-alternating-rows .service-row-content {
  padding: 2.5rem;
}

.services-alternating-rows .service-row-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background-color: rgba(var(--color-primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.services-alternating-rows .service-row-icon i {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.services-alternating-rows .service-row-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-heading);
  margin: 0 0 0.75rem 0;
}

.services-alternating-rows .service-row-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0 0 1.5rem 0;
}

.services-alternating-rows .service-row-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

.services-alternating-rows .service-row-link:hover {
  gap: 0.75rem;
}

.services-alternating-rows .service-row-link i {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .services-alternating-rows {
    padding: 3.5rem 0;
  }

  .services-alternating-rows .service-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 1.5rem;
  }

  .services-alternating-rows .row-reversed {
    direction: ltr;
  }

  .services-alternating-rows .service-row-image {
    min-height: 200px;
    aspect-ratio: 16 / 9;
  }

  .services-alternating-rows .service-row-image img {
    min-height: auto;
  }

  .services-alternating-rows .service-row-content {
    padding: 1.5rem;
  }
}

/* Template CSS: area_coverage_response_rings_01 */
.tpl-area-coverage-response-rings *{margin:0;padding:0;box-sizing:border-box}
.tpl-area-coverage-response-rings h1, .tpl-area-coverage-response-rings h2, .tpl-area-coverage-response-rings h3, .tpl-area-coverage-response-rings h4{font-family:var(--font-heading);color:var(--color-heading);line-height:1.12;letter-spacing:-.02em;font-weight:800}
.tpl-area-coverage-response-rings img, .tpl-area-coverage-response-rings svg{display:block;max-width:100%}
.tpl-area-coverage-response-rings :where(a:not([class*="btn"]):not([class*="cta"])){color:var(--color-primary)}
.tpl-area-coverage-response-rings__wrap{max-width:var(--max-width);margin:0 auto;padding:0 24px}
.tpl-area-coverage-response-rings{padding:80px 0}
@media(max-width:768px){
.tpl-area-coverage-response-rings{padding:48px 0}
}
.tpl-area-coverage-response-rings__btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;font-family:var(--font-body);font-weight:700;font-size:17px;padding:14px 28px;min-height:48px;border-radius:var(--radius);text-decoration:none;transition:var(--transition);border:2px solid transparent;cursor:pointer}
.tpl-area-coverage-response-rings__btn-primary{background:var(--color-primary);color:#fff}
.tpl-area-coverage-response-rings__btn-primary:hover{background:var(--color-primary-dark);transform:translateY(-2px);box-shadow:var(--shadow-hover)}
.tpl-area-coverage-response-rings__s1 .tpl-area-coverage-response-rings__grid{display:grid;grid-template-columns:60fr 40fr;gap:64px;align-items:center;position:relative}
.tpl-area-coverage-response-rings__s1 .tpl-area-coverage-response-rings__call .tpl-area-coverage-response-rings__dot{width:8px;height:8px;border-radius:50%;background:#fff;animation:s1pulse 1.6s infinite}
@media(max-width:768px){
.tpl-area-coverage-response-rings__s1 .tpl-area-coverage-response-rings__grid{grid-template-columns:1fr;gap:40px}
}
.tpl-area-coverage-response-rings__s3 .tpl-area-coverage-response-rings__intro{color:var(--color-text-muted);max-width:560px;margin-bottom:48px}
.tpl-area-coverage-response-rings__s5 .tpl-area-coverage-response-rings__intro{color:#A9BECD;max-width:560px;margin-bottom:40px}
.tpl-area-coverage-response-rings__s7 .tpl-area-coverage-response-rings__intro{color:var(--color-text-muted);max-width:560px;margin-bottom:48px}
.tpl-area-coverage-response-rings__s9 .tpl-area-coverage-response-rings__grid{display:grid;grid-template-columns:5fr 6fr;gap:64px;align-items:center}
.tpl-area-coverage-response-rings__s9 .tpl-area-coverage-response-rings__intro{color:var(--color-text-muted);margin-bottom:28px}
@media(max-width:768px){
.tpl-area-coverage-response-rings__s9 .tpl-area-coverage-response-rings__grid{grid-template-columns:1fr;gap:40px}
}
.tpl-area-coverage-response-rings__s16 .tpl-area-coverage-response-rings__grid{display:grid;grid-template-columns:7fr 3fr;gap:64px;align-items:start}
@media(max-width:768px){
.tpl-area-coverage-response-rings__s16 .tpl-area-coverage-response-rings__grid{grid-template-columns:1fr}
}
.tpl-area-coverage-response-rings{background:var(--color-bg)}
.tpl-area-coverage-response-rings__grid{display:grid;grid-template-columns:5fr 6fr;gap:64px;align-items:center}
.tpl-area-coverage-response-rings h2{font-size:clamp(28px,3.2vw,40px);margin-bottom:12px}
.tpl-area-coverage-response-rings__intro{color:var(--color-text-muted);margin-bottom:32px}
.tpl-area-coverage-response-rings__legend{list-style:none;display:flex;flex-direction:column;gap:16px;margin-bottom:32px}
.tpl-area-coverage-response-rings__legend li{display:grid;grid-template-columns:26px 1fr;gap:14px;align-items:start;background:var(--color-card-bg);border:1px solid var(--color-border);border-radius:var(--radius);padding:16px 20px;transition:var(--transition)}
.tpl-area-coverage-response-rings__legend li:hover{transform:translateY(-2px);box-shadow:var(--shadow)}
.tpl-area-coverage-response-rings__dot{width:18px;height:18px;border-radius:50%;margin-top:4px}
.tpl-area-coverage-response-rings__legend b{font-family:var(--font-heading);font-size:16px;color:var(--color-heading)}
.tpl-area-coverage-response-rings__legend .tpl-area-coverage-response-rings__towns{display:block;font-size:14px;color:var(--color-text-muted)}
.tpl-area-coverage-response-rings__legend .tpl-area-coverage-response-rings__resp{display:inline-block;margin-top:4px;font-size:12.5px;font-weight:700;color:var(--color-primary);background:var(--color-bg-alt);border-radius:99px;padding:3px 12px}
.tpl-area-coverage-response-rings__unsure{display:flex;align-items:center;gap:20px;flex-wrap:wrap}
.tpl-area-coverage-response-rings__unsure p{font-weight:700;color:var(--color-heading)}
@media(max-width:768px){
.tpl-area-coverage-response-rings__grid{grid-template-columns:1fr;gap:40px}
}
.tpl-area-coverage-response-rings__s2 .tpl-area-coverage-response-rings__grid{display:grid;grid-template-columns:7fr 5fr;gap:64px;align-items:center}
@media(max-width:768px){
.tpl-area-coverage-response-rings__s2 .tpl-area-coverage-response-rings__grid{grid-template-columns:1fr;gap:48px}
}
.tpl-area-coverage-response-rings__s4 .tpl-area-coverage-response-rings__intro{color:var(--color-text-muted);max-width:600px;margin-bottom:44px}
.tpl-area-coverage-response-rings__s6 .tpl-area-coverage-response-rings__intro{color:var(--color-text-muted);max-width:600px;margin-bottom:48px}
.tpl-area-coverage-response-rings__s8 .tpl-area-coverage-response-rings__grid{display:grid;grid-template-columns:6fr 5fr;gap:72px;align-items:center}
.tpl-area-coverage-response-rings__s8 .tpl-area-coverage-response-rings__resp{display:inline-flex;align-items:center;gap:9px;background:var(--color-bg-alt);border-radius:99px;padding:10px 18px;font-size:14px;font-weight:700;color:var(--color-heading);margin-top:8px}
.tpl-area-coverage-response-rings__s8 .tpl-area-coverage-response-rings__resp .tpl-area-coverage-response-rings__ic{width:16px;height:16px;color:var(--color-primary)}
@media(max-width:768px){
.tpl-area-coverage-response-rings__s8 .tpl-area-coverage-response-rings__grid{grid-template-columns:1fr;gap:44px}
}
.tpl-area-coverage-response-rings__s10 .tpl-area-coverage-response-rings__intro{color:#A9BECD;max-width:560px;margin-bottom:40px}
.tpl-area-coverage-response-rings__s12 .tpl-area-coverage-response-rings__intro{color:var(--color-text-muted);max-width:600px;margin-bottom:40px}
.tpl-area-coverage-response-rings__s12 .tpl-area-coverage-response-rings__grid{display:grid;grid-template-columns:60fr 40fr;gap:20px;margin-bottom:56px}
@media(max-width:768px){
.tpl-area-coverage-response-rings__s12 .tpl-area-coverage-response-rings__grid, .tpl-area-coverage-response-rings__s12 .tpl-area-coverage-response-rings__fb-grid{grid-template-columns:1fr}
}
.tpl-area-coverage-response-rings__s15 .tpl-area-coverage-response-rings__intro{color:var(--color-text-muted);max-width:560px;margin-bottom:44px}
.tpl-area-coverage-response-rings__s15 .tpl-area-coverage-response-rings__grid{display:grid;grid-template-columns:7fr 4fr;gap:48px;align-items:start}
@media(max-width:768px){
.tpl-area-coverage-response-rings__s15 .tpl-area-coverage-response-rings__grid{grid-template-columns:1fr}
}
.tpl-area-coverage-response-rings__s20 .tpl-area-coverage-response-rings__intro{color:var(--color-text-muted)}
.tpl-area-coverage-response-rings__s22 .tpl-area-coverage-response-rings__rail .tpl-area-coverage-response-rings__btn{font-size:19px;padding:16px 34px;background:#fff;color:var(--color-secondary)}
.tpl-area-coverage-response-rings__s22 .tpl-area-coverage-response-rings__rail .tpl-area-coverage-response-rings__btn:hover{transform:translateY(-2px);box-shadow:var(--shadow-hover)}
@keyframes s1pulse{50%{opacity:.35}}
.tpl-area-coverage-response-rings__dot{background:#0F3B5C}
.tpl-area-coverage-response-rings__dot{background:#9FB6C9}
.tpl-area-coverage-response-rings__dot{background:#D5DEE6}
.tpl-area-coverage-response-rings [hidden]{display:none!important}
.tpl-area-coverage-response-rings img[src=""], .tpl-area-coverage-response-rings video[src=""], .tpl-area-coverage-response-rings [href=""]{display:none!important}
@media (max-width:768px){
  .tpl-area-coverage-response-rings{max-width:100%;}
}
/* Button hover safeguards: keep labels legible against global link hover rules. */
.tpl-area-coverage-response-rings__btn:hover, .tpl-area-coverage-response-rings__btn:focus-visible{color:color-mix(in srgb, var(--color-secondary) 82%, var(--color-heading));background:#fff;transform:translateY(-2px);box-shadow:var(--shadow-hover)}
.tpl-area-coverage-response-rings__btn-primary:hover, .tpl-area-coverage-response-rings__btn-primary:focus-visible{color:#fff;background:var(--color-primary-dark);transform:translateY(-2px);box-shadow:var(--shadow-hover)}

/* Template CSS: faq_logistics_before_we_arrive_01 */
.tpl-faq-logistics-before-we-arrive *{margin:0;padding:0;box-sizing:border-box}
.tpl-faq-logistics-before-we-arrive h1, .tpl-faq-logistics-before-we-arrive h2, .tpl-faq-logistics-before-we-arrive h3, .tpl-faq-logistics-before-we-arrive h4{font-family:var(--font-heading);color:var(--color-heading);line-height:1.12;letter-spacing:-.02em;font-weight:800}
.tpl-faq-logistics-before-we-arrive img, .tpl-faq-logistics-before-we-arrive svg{display:block;max-width:100%}
.tpl-faq-logistics-before-we-arrive :where(a:not([class*="btn"]):not([class*="cta"])){color:var(--color-primary)}
.tpl-faq-logistics-before-we-arrive__wrap{max-width:var(--max-width);margin:0 auto;padding:0 24px}
.tpl-faq-logistics-before-we-arrive{padding:80px 0}
@media(max-width:768px){
.tpl-faq-logistics-before-we-arrive{padding:48px 0}
}
.tpl-faq-logistics-before-we-arrive__btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;font-family:var(--font-body);font-weight:700;font-size:17px;padding:14px 28px;min-height:48px;border-radius:var(--radius);text-decoration:none;transition:var(--transition);border:2px solid transparent;cursor:pointer}
.tpl-faq-logistics-before-we-arrive__btn-orange{background:var(--color-secondary);color:#fff}
.tpl-faq-logistics-before-we-arrive__btn-orange:hover{background:color-mix(in srgb, var(--color-secondary) 82%, var(--color-heading));transform:translateY(-2px);box-shadow:var(--shadow-hover)}
.tpl-faq-logistics-before-we-arrive__ic{width:22px;height:22px;flex:none}
.tpl-faq-logistics-before-we-arrive__ic svg{width:100%;height:100%;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.tpl-faq-logistics-before-we-arrive__s1 .tpl-faq-logistics-before-we-arrive__grid{display:grid;grid-template-columns:60fr 40fr;gap:64px;align-items:center;position:relative}
.tpl-faq-logistics-before-we-arrive__s1 .tpl-faq-logistics-before-we-arrive__ticket .tpl-faq-logistics-before-we-arrive__ic{color:var(--color-secondary)}
@media(max-width:768px){
.tpl-faq-logistics-before-we-arrive__s1 .tpl-faq-logistics-before-we-arrive__grid{grid-template-columns:1fr;gap:40px}
}
.tpl-faq-logistics-before-we-arrive__s13 .tpl-faq-logistics-before-we-arrive__row{display:flex;align-items:center;flex-wrap:wrap;gap:14px 0}
.tpl-faq-logistics-before-we-arrive__s13 .tpl-faq-logistics-before-we-arrive__item .tpl-faq-logistics-before-we-arrive__ic{width:18px;height:18px;color:var(--color-secondary)}
.tpl-faq-logistics-before-we-arrive__s3 .tpl-faq-logistics-before-we-arrive__intro{color:var(--color-text-muted);max-width:560px;margin-bottom:48px}
.tpl-faq-logistics-before-we-arrive__s5 .tpl-faq-logistics-before-we-arrive__intro{color:#A9BECD;max-width:560px;margin-bottom:40px}
.tpl-faq-logistics-before-we-arrive__s5 .tpl-faq-logistics-before-we-arrive__tile .tpl-faq-logistics-before-we-arrive__ic{color:var(--color-secondary);margin-top:2px}
.tpl-faq-logistics-before-we-arrive__s7 .tpl-faq-logistics-before-we-arrive__intro{color:var(--color-text-muted);max-width:560px;margin-bottom:48px}
.tpl-faq-logistics-before-we-arrive__s7 .tpl-faq-logistics-before-we-arrive__gate .tpl-faq-logistics-before-we-arrive__ic{width:34px;height:34px;color:var(--color-primary);margin-bottom:16px}
.tpl-faq-logistics-before-we-arrive__s7 .tpl-faq-logistics-before-we-arrive__gate.price .tpl-faq-logistics-before-we-arrive__ic{color:var(--color-secondary)}
.tpl-faq-logistics-before-we-arrive__s7 .tpl-faq-logistics-before-we-arrive__chip .tpl-faq-logistics-before-we-arrive__ic{width:15px;height:15px;margin:0;color:var(--color-primary)}
.tpl-faq-logistics-before-we-arrive__s9 .tpl-faq-logistics-before-we-arrive__grid{display:grid;grid-template-columns:5fr 6fr;gap:64px;align-items:center}
.tpl-faq-logistics-before-we-arrive__s9 .tpl-faq-logistics-before-we-arrive__intro{color:var(--color-text-muted);margin-bottom:28px}
.tpl-faq-logistics-before-we-arrive__s9 .tpl-faq-logistics-before-we-arrive__chip .tpl-faq-logistics-before-we-arrive__ic{width:15px;height:15px;color:var(--color-primary)}
@media(max-width:768px){
.tpl-faq-logistics-before-we-arrive__s9 .tpl-faq-logistics-before-we-arrive__grid{grid-template-columns:1fr;gap:40px}
}
.tpl-faq-logistics-before-we-arrive__s16 .tpl-faq-logistics-before-we-arrive__grid{display:grid;grid-template-columns:7fr 3fr;gap:64px;align-items:start}
@media(max-width:768px){
.tpl-faq-logistics-before-we-arrive__s16 .tpl-faq-logistics-before-we-arrive__grid{grid-template-columns:1fr}
}
.tpl-faq-logistics-before-we-arrive__s19 .tpl-faq-logistics-before-we-arrive__grid{display:grid;grid-template-columns:5fr 6fr;gap:64px;align-items:center}
.tpl-faq-logistics-before-we-arrive__s19 .tpl-faq-logistics-before-we-arrive__intro{color:var(--color-text-muted);margin-bottom:32px}
@media(max-width:768px){
.tpl-faq-logistics-before-we-arrive__s19 .tpl-faq-logistics-before-we-arrive__grid{grid-template-columns:1fr;gap:40px}
}
.tpl-faq-logistics-before-we-arrive__s2 .tpl-faq-logistics-before-we-arrive__grid{display:grid;grid-template-columns:7fr 5fr;gap:64px;align-items:center}
@media(max-width:768px){
.tpl-faq-logistics-before-we-arrive__s2 .tpl-faq-logistics-before-we-arrive__grid{grid-template-columns:1fr;gap:48px}
}
.tpl-faq-logistics-before-we-arrive__s4 .tpl-faq-logistics-before-we-arrive__intro{color:var(--color-text-muted);max-width:600px;margin-bottom:44px}
.tpl-faq-logistics-before-we-arrive__s4 .tpl-faq-logistics-before-we-arrive__lane h3 .tpl-faq-logistics-before-we-arrive__ic{width:24px;height:24px;color:var(--color-primary)}
.tpl-faq-logistics-before-we-arrive__s4 .tpl-faq-logistics-before-we-arrive__lane.call h3 .tpl-faq-logistics-before-we-arrive__ic{color:var(--color-secondary)}
.tpl-faq-logistics-before-we-arrive__s4 .tpl-faq-logistics-before-we-arrive__item .tpl-faq-logistics-before-we-arrive__ic{width:18px;height:18px;color:var(--color-secondary);margin-top:4px}
.tpl-faq-logistics-before-we-arrive__s4 .tpl-faq-logistics-before-we-arrive__lane.call .tpl-faq-logistics-before-we-arrive__item .tpl-faq-logistics-before-we-arrive__ic{color:var(--color-secondary)}
.tpl-faq-logistics-before-we-arrive__s6 .tpl-faq-logistics-before-we-arrive__intro{color:var(--color-text-muted);max-width:600px;margin-bottom:48px}
.tpl-faq-logistics-before-we-arrive__s6 .tpl-faq-logistics-before-we-arrive__pill .tpl-faq-logistics-before-we-arrive__ic{width:14px;height:14px;color:var(--color-primary)}
.tpl-faq-logistics-before-we-arrive__s8 .tpl-faq-logistics-before-we-arrive__grid{display:grid;grid-template-columns:6fr 5fr;gap:72px;align-items:center}
.tpl-faq-logistics-before-we-arrive__s8 .tpl-faq-logistics-before-we-arrive__resp .tpl-faq-logistics-before-we-arrive__ic{width:16px;height:16px;color:var(--color-primary)}
@media(max-width:768px){
.tpl-faq-logistics-before-we-arrive__s8 .tpl-faq-logistics-before-we-arrive__grid{grid-template-columns:1fr;gap:44px}
}
.tpl-faq-logistics-before-we-arrive__s10 .tpl-faq-logistics-before-we-arrive__intro{color:#A9BECD;max-width:560px;margin-bottom:40px}
.tpl-faq-logistics-before-we-arrive__s12 .tpl-faq-logistics-before-we-arrive__intro{color:var(--color-text-muted);max-width:600px;margin-bottom:40px}
.tpl-faq-logistics-before-we-arrive__s12 .tpl-faq-logistics-before-we-arrive__grid{display:grid;grid-template-columns:60fr 40fr;gap:20px;margin-bottom:56px}
.tpl-faq-logistics-before-we-arrive__s12 .tpl-faq-logistics-before-we-arrive__fb .tpl-faq-logistics-before-we-arrive__ic{width:30px;height:30px;color:var(--color-primary);margin-bottom:14px}
@media(max-width:768px){
.tpl-faq-logistics-before-we-arrive__s12 .tpl-faq-logistics-before-we-arrive__grid, .tpl-faq-logistics-before-we-arrive__s12 .tpl-faq-logistics-before-we-arrive__fb-grid{grid-template-columns:1fr}
}
.tpl-faq-logistics-before-we-arrive__s14 .tpl-faq-logistics-before-we-arrive__chip .tpl-faq-logistics-before-we-arrive__ic{width:14px;height:14px;color:var(--color-primary)}
.tpl-faq-logistics-before-we-arrive{background:var(--color-bg-alt)}
.tpl-faq-logistics-before-we-arrive h2{font-size:clamp(28px,3.2vw,40px);margin-bottom:12px}
.tpl-faq-logistics-before-we-arrive__intro{color:var(--color-text-muted);max-width:560px;margin-bottom:44px}
.tpl-faq-logistics-before-we-arrive__grid{display:grid;grid-template-columns:7fr 4fr;gap:48px;align-items:start}
.tpl-faq-logistics-before-we-arrive__track-label{font:700 12px/1 ui-monospace,monospace;letter-spacing:.16em;text-transform:uppercase;color:var(--color-text-muted);margin-bottom:16px}
.tpl-faq-logistics-before-we-arrive__row{background:var(--color-card-bg);border:1px solid var(--color-border);border-radius:var(--radius);margin-bottom:10px;overflow:hidden}
.tpl-faq-logistics-before-we-arrive__row button{all:unset;display:grid;grid-template-columns:26px 1fr 20px;gap:14px;align-items:center;width:100%;box-sizing:border-box;padding:18px 22px;cursor:pointer;font:700 16.5px var(--font-heading);color:var(--color-heading);min-height:44px}
.tpl-faq-logistics-before-we-arrive__row button:hover{color:var(--color-primary)}
.tpl-faq-logistics-before-we-arrive__row .tpl-faq-logistics-before-we-arrive__ic{width:20px;height:20px;color:var(--color-primary)}
.tpl-faq-logistics-before-we-arrive__row .tpl-faq-logistics-before-we-arrive__car{transition:var(--transition);justify-self:end;font-size:13px;color:var(--color-text-muted)}
.tpl-faq-logistics-before-we-arrive__row[data-open="true"] .tpl-faq-logistics-before-we-arrive__car{transform:rotate(180deg)}
.tpl-faq-logistics-before-we-arrive__row .tpl-faq-logistics-before-we-arrive__ans{display:none;padding:0 22px 20px 62px;font-size:15px;color:var(--color-text-muted)}
.tpl-faq-logistics-before-we-arrive__row[data-open="true"] .tpl-faq-logistics-before-we-arrive__ans{display:block}
.tpl-faq-logistics-before-we-arrive__card{background:var(--color-card-bg);border:1px solid var(--color-border);border-radius:var(--radius);padding:24px 26px;margin-bottom:16px}
.tpl-faq-logistics-before-we-arrive__card h3{font-size:16px;margin-bottom:8px}
.tpl-faq-logistics-before-we-arrive__card p{font-size:14px;color:var(--color-text-muted)}
.tpl-faq-logistics-before-we-arrive__pay{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}
.tpl-faq-logistics-before-we-arrive__pay span{background:var(--color-bg-alt);border-radius:99px;padding:7px 14px;font-size:13px;font-weight:700;color:var(--color-heading)}
.tpl-faq-logistics-before-we-arrive__card .tpl-faq-logistics-before-we-arrive__pay, .tpl-faq-logistics-before-we-arrive__card .tpl-faq-logistics-before-we-arrive__btn{display:none}
.tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(2) .tpl-faq-logistics-before-we-arrive__pay{display:flex}
.tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(3) .tpl-faq-logistics-before-we-arrive__btn{display:inline-flex}
.tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(3){background:var(--color-primary);border:none;color:#fff}
.tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(3) h3{color:#fff}
.tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(3) p{color:#fff;margin-bottom:16px}
.tpl-faq-logistics-before-we-arrive__card.cta{background:var(--color-primary);border:none;color:#fff}
.tpl-faq-logistics-before-we-arrive__card.cta h3{color:#fff}
.tpl-faq-logistics-before-we-arrive__card.cta p{color:#fff;margin-bottom:16px}
@media(max-width:768px){
.tpl-faq-logistics-before-we-arrive__grid{grid-template-columns:1fr}
}
.tpl-faq-logistics-before-we-arrive__s20 .tpl-faq-logistics-before-we-arrive__intro{color:var(--color-text-muted)}
.tpl-faq-logistics-before-we-arrive__s20 .tpl-faq-logistics-before-we-arrive__town .tpl-faq-logistics-before-we-arrive__ic{width:16px;height:16px;color:var(--color-primary)}
.tpl-faq-logistics-before-we-arrive__s18 .tpl-faq-logistics-before-we-arrive__card{position:relative;max-width:620px;margin:0 auto;background:var(--color-card-bg);border:1px solid var(--color-border);border-radius:var(--radius-lg);box-shadow:var(--shadow-hover);padding:56px 52px;text-align:center;overflow:hidden}
@media(max-width:768px){
.tpl-faq-logistics-before-we-arrive__s18 .tpl-faq-logistics-before-we-arrive__card{padding:44px 24px}
}
.tpl-faq-logistics-before-we-arrive__s22 .tpl-faq-logistics-before-we-arrive__rail .tpl-faq-logistics-before-we-arrive__row{display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap}
.tpl-faq-logistics-before-we-arrive__s22 .tpl-faq-logistics-before-we-arrive__rail .tpl-faq-logistics-before-we-arrive__ic{width:28px;height:28px;color:color-mix(in srgb, var(--color-secondary) 34%, var(--color-card-bg))}
.tpl-faq-logistics-before-we-arrive__s22 .tpl-faq-logistics-before-we-arrive__rail .tpl-faq-logistics-before-we-arrive__btn{font-size:19px;padding:16px 34px;background:#fff;color:var(--color-secondary)}
.tpl-faq-logistics-before-we-arrive__s22 .tpl-faq-logistics-before-we-arrive__rail .tpl-faq-logistics-before-we-arrive__btn:hover{transform:translateY(-2px);box-shadow:var(--shadow-hover)}
.tpl-faq-logistics-before-we-arrive__btn-orange:hover,.tpl-faq-logistics-before-we-arrive__btn-orange:focus-visible{background:color-mix(in srgb, var(--color-secondary) 82%, var(--color-heading));color:#fff;transform:translateY(-2px);box-shadow:var(--shadow-hover)}
.tpl-faq-logistics-before-we-arrive__s22 .tpl-faq-logistics-before-we-arrive__rail .tpl-faq-logistics-before-we-arrive__btn:hover,.tpl-faq-logistics-before-we-arrive__s22 .tpl-faq-logistics-before-we-arrive__rail .tpl-faq-logistics-before-we-arrive__btn:focus-visible{background:#fff;color:color-mix(in srgb, var(--color-secondary) 82%, var(--color-heading));transform:translateY(-2px);box-shadow:var(--shadow-hover)}
.tpl-faq-logistics-before-we-arrive [hidden]{display:none!important}
.tpl-faq-logistics-before-we-arrive img[src=""], .tpl-faq-logistics-before-we-arrive video[src=""], .tpl-faq-logistics-before-we-arrive [href=""]{display:none!important}
@media (max-width:768px){
  .tpl-faq-logistics-before-we-arrive{max-width:100%;}
}

/* Template CSS: cta_compress_two_speed_01 */
.tpl-cta-compress-two-speed *{margin:0;padding:0;box-sizing:border-box}
.tpl-cta-compress-two-speed h1, .tpl-cta-compress-two-speed h2, .tpl-cta-compress-two-speed h3, .tpl-cta-compress-two-speed h4{font-family:var(--font-heading);color:var(--color-heading);line-height:1.12;letter-spacing:-.02em;font-weight:800}
.tpl-cta-compress-two-speed :where(a:not([class*="btn"]):not([class*="cta"])){color:var(--color-primary)}
.tpl-cta-compress-two-speed__btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;font-family:var(--font-body);font-weight:700;font-size:17px;padding:14px 28px;min-height:48px;border-radius:var(--radius);text-decoration:none;transition:var(--transition);border:2px solid transparent;cursor:pointer}
.tpl-cta-compress-two-speed__btn-orange{background:var(--color-secondary);color:#fff}
.tpl-cta-compress-two-speed__btn-orange:hover{background:color-mix(in srgb, var(--color-secondary) 82%, var(--color-heading));transform:translateY(-2px);box-shadow:var(--shadow-hover)}
.tpl-cta-compress-two-speed__btn-primary{background:var(--color-primary);color:#fff}
.tpl-cta-compress-two-speed__btn-primary:hover{background:var(--color-primary-dark);transform:translateY(-2px);box-shadow:var(--shadow-hover)}
.tpl-cta-compress-two-speed__btn-ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.4)}
.tpl-cta-compress-two-speed__btn-ghost:hover{border-color:#fff;transform:translateY(-2px)}
.tpl-cta-compress-two-speed{background:var(--color-primary-dark);padding:0}
.tpl-cta-compress-two-speed__doors{display:grid;grid-template-columns:60fr 4px 40fr;align-items:stretch}
.tpl-cta-compress-two-speed__door{padding:72px 56px;display:flex;flex-direction:column;justify-content:center;align-items:flex-start}
.tpl-cta-compress-two-speed__door.tpl-cta-compress-two-speed__urgent{background:linear-gradient(120deg,color-mix(in srgb, var(--color-secondary) 38%, var(--color-heading)),color-mix(in srgb, var(--color-secondary) 58%, var(--color-heading)))}
.tpl-cta-compress-two-speed__door.tpl-cta-compress-two-speed__urgent h3{color:#fff;font-size:clamp(26px,3vw,36px);margin-bottom:30px}
.tpl-cta-compress-two-speed__door.tpl-cta-compress-two-speed__planned{background:color-mix(in srgb, var(--color-primary-dark) 76%, var(--color-heading))}
.tpl-cta-compress-two-speed__door.tpl-cta-compress-two-speed__planned h3{color:#fff;font-size:clamp(22px,2.4vw,28px);margin-bottom:30px}
.tpl-cta-compress-two-speed__micro{margin-top:14px;font-size:14px;color:rgba(255,255,255,.9)}
.tpl-cta-compress-two-speed__divider{position:relative;background:rgba(255,255,255,.15)}
.tpl-cta-compress-two-speed__divider span{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);background:#fff;color:var(--color-heading);font:800 13px/1 var(--font-heading);border-radius:99px;padding:10px 14px;box-shadow:var(--shadow)}
.tpl-cta-compress-two-speed__btn-xl{font-size:22px;padding:20px 40px}
@media(max-width:768px){
.tpl-cta-compress-two-speed__doors{grid-template-columns:1fr}
.tpl-cta-compress-two-speed__divider{height:4px}
.tpl-cta-compress-two-speed__door{padding:48px 24px}
}
.tpl-cta-compress-two-speed__s21 .tpl-cta-compress-two-speed__micro{font-size:13px;color:#6E8496}
.tpl-cta-compress-two-speed__s22 .tpl-cta-compress-two-speed__rail .tpl-cta-compress-two-speed__btn{font-size:19px;padding:16px 34px;background:#fff;color:var(--color-secondary)}
.tpl-cta-compress-two-speed__s22 .tpl-cta-compress-two-speed__rail .tpl-cta-compress-two-speed__btn:hover{transform:translateY(-2px);box-shadow:var(--shadow-hover)}
.tpl-cta-compress-two-speed__s22 .tpl-cta-compress-two-speed__micro{font-size:13px;color:#6E8496}
.tpl-cta-compress-two-speed [hidden]{display:none!important}
.tpl-cta-compress-two-speed img[src=""], .tpl-cta-compress-two-speed video[src=""], .tpl-cta-compress-two-speed [href=""]{display:none!important}
@media (max-width:768px){
  .tpl-cta-compress-two-speed{max-width:100%;}
}
/* Button hover safeguards: keep labels legible against global link hover rules. */
.tpl-cta-compress-two-speed__btn:hover, .tpl-cta-compress-two-speed__btn:focus-visible{color:color-mix(in srgb, var(--color-secondary) 82%, var(--color-heading));background:#fff;transform:translateY(-2px);box-shadow:var(--shadow-hover)}
.tpl-cta-compress-two-speed__btn-orange:hover, .tpl-cta-compress-two-speed__btn-orange:focus-visible{color:#fff;background:color-mix(in srgb, var(--color-secondary) 82%, var(--color-heading));transform:translateY(-2px);box-shadow:var(--shadow-hover)}
.tpl-cta-compress-two-speed__btn-xl:hover, .tpl-cta-compress-two-speed__btn-xl:focus-visible{color:#fff}
.tpl-cta-compress-two-speed__btn-primary:hover, .tpl-cta-compress-two-speed__btn-primary:focus-visible{color:#fff;background:var(--color-primary-dark);transform:translateY(-2px);box-shadow:var(--shadow-hover)}

/* Template CSS: footer_complete_dense_four_column_01 */
.tpl-footer-complete-dense {
  background: var(--color-heading);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-family: var(--font-body);
}
.tpl-footer-complete-dense a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.tpl-footer-complete-dense a:hover { color: #fff; }
.tpl-footer-complete-dense__top {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 72px) 24px 40px;
  display: grid;
  grid-template-columns: minmax(0, 4fr) repeat(3, minmax(0, 2.5fr));
  gap: clamp(28px, 4vw, 48px);
}
.tpl-footer-complete-dense__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}
.tpl-footer-complete-dense__mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--color-primary);
  display: grid;
  place-items: center;
  color: #fff;
  flex: 0 0 auto;
}
.tpl-footer-complete-dense__icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.tpl-footer-complete-dense__icon--nap {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  stroke: #7fe3b1;
}
.tpl-footer-complete-dense__brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.06rem;
  color: #fff;
}
.tpl-footer-complete-dense__nap {
  display: grid;
  gap: 9px;
  margin-bottom: 20px;
}
.tpl-footer-complete-dense__nap-row {
  margin: 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.6;
}
.tpl-footer-complete-dense__contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #fff;
  font-weight: 600;
}
.tpl-footer-complete-dense__hours {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.82rem;
}
.tpl-footer-complete-dense__hours:empty {
  display: none;
}
.tpl-footer-complete-dense__hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 0;
}
.tpl-footer-complete-dense__hours-time {
  color: #fff;
  font-weight: 600;
}
.tpl-footer-complete-dense__col-title {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tpl-footer-complete-dense__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.tpl-footer-complete-dense__list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.tpl-footer-complete-dense__col:has(.tpl-footer-complete-dense__list:empty) {
  display: none;
}
.tpl-footer-complete-dense__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.tpl-footer-complete-dense__legal-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 26px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}
.tpl-footer-complete-dense__license {
  color: rgba(255, 255, 255, 0.85);
}
.tpl-footer-complete-dense__legal-links {
  display: flex;
  gap: 18px;
  margin-left: auto;
}
@media (max-width: 880px) {
  .tpl-footer-complete-dense__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .tpl-footer-complete-dense__top { grid-template-columns: 1fr; }
  .tpl-footer-complete-dense__legal-links { margin-left: 0; }
}

/* Template CSS: nav_standard_solid_01 */
.tpl-nav-standard-solid {
  --tpl-nav-standard-solid-height: 70px;
  --tpl-nav-standard-solid-pad-x: 24px;
  --tpl-nav-standard-solid-mobile-breakpoint: 900px;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-card-bg);
  color: var(--color-heading);
  border-bottom: 3px solid var(--color-primary);
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

.tpl-nav-standard-solid[data-state="solid"],
.tpl-nav-standard-solid[data-mobile-open="true"],
.tpl-nav-standard-solid.header-scrolled {
  background: var(--color-card-bg);
  color: var(--color-heading);
  border-bottom-color: var(--color-primary);
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

.tpl-nav-standard-solid__bar {
  height: var(--tpl-nav-standard-solid-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--tpl-nav-standard-solid-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.tpl-nav-standard-solid__brand,
.tpl-nav-standard-solid__link,
.tpl-nav-standard-solid__phone {
  color: inherit;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.tpl-nav-standard-solid__brand {
  display: inline-flex;
  align-items: center;
  max-width: 260px;
  font-family: var(--font-heading);
  font-weight: 800;
  white-space: nowrap;
}

.tpl-nav-standard-solid__logo {
  width: auto;
  height: auto;
  max-height: 42px;
  max-width: 100%;
  object-fit: contain;
}

.tpl-nav-standard-solid__brand img[src=""] {
  display: none;
}

.tpl-nav-standard-solid__wordmark {
  display: inline-flex;
  align-items: center;
  color: inherit;
}

.tpl-nav-standard-solid__brand:has(img:not([src=""])) .tpl-nav-standard-solid__wordmark {
  display: none;
}

@media (max-width: 768px) {
  .tpl-nav-standard-solid__logo { max-height: 36px; }
}

.tpl-nav-standard-solid__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tpl-nav-standard-solid__link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  white-space: nowrap;
}

.tpl-nav-standard-solid__link:hover,
.tpl-nav-standard-solid__link:focus-visible {
  background: var(--color-primary-light);
  color: var(--color-primary);
  outline: none;
}

.tpl-nav-standard-solid[data-state="solid"] .tpl-nav-standard-solid__link:hover,
.tpl-nav-standard-solid[data-state="solid"] .tpl-nav-standard-solid__link:focus-visible,
.tpl-nav-standard-solid[data-mobile-open="true"] .tpl-nav-standard-solid__link:hover,
.tpl-nav-standard-solid[data-mobile-open="true"] .tpl-nav-standard-solid__link:focus-visible,
.tpl-nav-standard-solid.header-scrolled .tpl-nav-standard-solid__link:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.tpl-nav-standard-solid__dropdown {
  position: relative;
}

.tpl-nav-standard-solid__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 8px 6px 6px;
  list-style: none;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.tpl-nav-standard-solid__dropdown:not(:has(.tpl-nav-standard-solid__dropdown-menu > li)) {
  display: none;
}

.tpl-nav-standard-solid__dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.tpl-nav-standard-solid__dropdown:hover .tpl-nav-standard-solid__dropdown-menu,
.tpl-nav-standard-solid__dropdown:focus-within .tpl-nav-standard-solid__dropdown-menu,
.tpl-nav-standard-solid__dropdown[data-open="true"] .tpl-nav-standard-solid__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.tpl-nav-standard-solid__dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--color-text);
  text-decoration: none;
}

.tpl-nav-standard-solid__dropdown-menu a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.tpl-nav-standard-solid__dropdown:has(.tpl-nav-standard-solid__dropdown-menu:empty) {
  display: none;
}

.tpl-nav-standard-solid__actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.tpl-nav-standard-solid__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  white-space: nowrap;
}

.tpl-nav-standard-solid__phone:hover,
.tpl-nav-standard-solid__phone:focus-visible {
  color: var(--color-primary);
  outline: none;
}

.tpl-nav-standard-solid[data-state="solid"] .tpl-nav-standard-solid__phone:hover,
.tpl-nav-standard-solid[data-state="solid"] .tpl-nav-standard-solid__phone:focus-visible,
.tpl-nav-standard-solid[data-mobile-open="true"] .tpl-nav-standard-solid__phone:hover,
.tpl-nav-standard-solid[data-mobile-open="true"] .tpl-nav-standard-solid__phone:focus-visible,
.tpl-nav-standard-solid.header-scrolled .tpl-nav-standard-solid__phone:hover,
.tpl-nav-standard-solid.header-scrolled .tpl-nav-standard-solid__phone:focus-visible {
  color: var(--color-primary);
}

.tpl-nav-standard-solid__cta,
.tpl-nav-standard-solid .mobile-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius);
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.tpl-nav-standard-solid__cta:hover,
.tpl-nav-standard-solid__cta:focus-visible,
.tpl-nav-standard-solid .mobile-cta:hover,
.tpl-nav-standard-solid .mobile-cta:focus-visible {
  background: var(--color-primary-dark);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(var(--color-primary-rgb), 0.22);
  outline: none;
}

.tpl-nav-standard-solid__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 8px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.tpl-nav-standard-solid__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.tpl-nav-standard-solid[data-mobile-open="true"] .tpl-nav-standard-solid__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tpl-nav-standard-solid[data-mobile-open="true"] .tpl-nav-standard-solid__toggle span:nth-child(2) { opacity: 0; }
.tpl-nav-standard-solid[data-mobile-open="true"] .tpl-nav-standard-solid__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.tpl-nav-standard-solid__mobile-action { display: none; }

@media (max-width: 1020px) {
  .tpl-nav-standard-solid__phone { display: none; }
}

@media (max-width: 900px) {
  .tpl-nav-standard-solid__bar {
    gap: 16px;
    padding: 0 16px;
  }

  .tpl-nav-standard-solid__brand { max-width: min(52vw, 230px); }
  .tpl-nav-standard-solid__logo { height: 36px; }
  .tpl-nav-standard-solid__toggle { display: inline-block; }
  .tpl-nav-standard-solid__actions { display: none; }

  .tpl-nav-standard-solid__links {
    display: none;
    position: absolute;
    top: var(--tpl-nav-standard-solid-height);
    left: 0;
    right: 0;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    max-height: calc(100vh - var(--tpl-nav-standard-solid-height));
    overflow-y: auto;
    padding: 12px 16px 20px;
    background: var(--color-card-bg);
    color: var(--color-heading);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow);
  }

  .tpl-nav-standard-solid[data-mobile-open="true"] .tpl-nav-standard-solid__links { display: flex; }

  .tpl-nav-standard-solid__link {
    width: 100%;
    justify-content: flex-start;
    min-height: 44px;
    color: var(--color-heading);
  }

  .tpl-nav-standard-solid__dropdown-menu {
    position: static;
    min-width: 0;
    margin: 4px 0 6px;
    padding: 4px 8px;
    border: 0;
    box-shadow: none;
    background: var(--color-bg-alt);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .tpl-nav-standard-solid__dropdown {
    min-width: 0;
  }

  .tpl-nav-standard-solid__dropdown:hover .tpl-nav-standard-solid__dropdown-menu,
  .tpl-nav-standard-solid__dropdown:focus-within .tpl-nav-standard-solid__dropdown-menu { display: none; }
  .tpl-nav-standard-solid__dropdown[data-open="true"] .tpl-nav-standard-solid__dropdown-menu { display: block; }

  .tpl-nav-standard-solid__mobile-action { display: block; }
  .tpl-nav-standard-solid .mobile-phone {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 44px;
    padding: 10px 20px;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    white-space: nowrap;
  }
  .tpl-nav-standard-solid .mobile-cta { width: 100%; }
}

/* Template CSS: hero_agitate_typography_first_01 */
.tpl-hero-agitate-typography-first {
  --tpl-hero-agitate-typography-first-stagger: 18px;

  background: var(--color-bg);
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 112px) 24px;
  font-family: var(--font-body);
  color: var(--color-text);
}
.tpl-hero-agitate-typography-first::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -200px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.09) 0%, transparent 70%);
}
.tpl-hero-agitate-typography-first__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: end;
  position: relative;
  z-index: 1;
}
.tpl-hero-agitate-typography-first__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.tpl-hero-agitate-typography-first__eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}
.tpl-hero-agitate-typography-first__headline {
  margin: 0 0 24px;
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-size: clamp(2.3rem, 5.4vw, 3.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.tpl-hero-agitate-typography-first__accent { color: var(--color-primary); }
.tpl-hero-agitate-typography-first__sub {
  font-size: 1.08rem;
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 0 0 34px;
  line-height: 1.7;
}
.tpl-hero-agitate-typography-first__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.tpl-hero-agitate-typography-first__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: var(--radius);
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(var(--color-primary-rgb), 0.28);
  transition: var(--transition);
}
.tpl-hero-agitate-typography-first__btn:hover, .tpl-hero-agitate-typography-first__btn:focus-visible {
  background: var(--color-primary-dark);
  color:#fff;
  transform: translateY(-2px);
  outline:none;
}
.tpl-hero-agitate-typography-first__quiet-phone {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
}
.tpl-hero-agitate-typography-first__quiet-phone strong { color: var(--color-heading); }
.tpl-hero-agitate-typography-first__symptoms {
  display: grid;
  gap: 12px;
}
.tpl-hero-agitate-typography-first__sym {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius);
  padding: 15px 18px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text);
  box-shadow: 0 6px 18px rgba(16, 32, 40, 0.05);
}
.tpl-hero-agitate-typography-first__sym:nth-child(2) { transform: translateX(var(--tpl-hero-agitate-typography-first-stagger)); }
.tpl-hero-agitate-typography-first__sym:nth-child(3) { transform: translateX(calc(var(--tpl-hero-agitate-typography-first-stagger) * 2)); }
.tpl-hero-agitate-typography-first__icon {
  width: 19px;
  height: 19px;
  margin-top: 3px;
  stroke: var(--color-primary);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.tpl-hero-agitate-typography-first__tag {
  margin: 4px 0 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-align: right;
}
@media (max-width: 880px) {
  .tpl-hero-agitate-typography-first__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .tpl-hero-agitate-typography-first__sym:nth-child(2),
  .tpl-hero-agitate-typography-first__sym:nth-child(3) { transform: none; }
  .tpl-hero-agitate-typography-first__tag { text-align: left; }
}

/* Template CSS: about_credential_dossier_01 */
.tpl-about-credential-dossier *{box-sizing:border-box;margin:0;padding:0}
.tpl-about-credential-dossier h1, .tpl-about-credential-dossier h2, .tpl-about-credential-dossier h3, .tpl-about-credential-dossier h4{font-family:var(--font-heading);color:var(--color-heading);line-height:1.2}
.tpl-about-credential-dossier h2{font-size:36px;font-weight:800}
.tpl-about-credential-dossier h3{font-size:22px;font-weight:700}
.tpl-about-credential-dossier p{margin:0}
.tpl-about-credential-dossier img, .tpl-about-credential-dossier svg{max-width:100%}
.tpl-about-credential-dossier{padding:80px 24px}
.tpl-about-credential-dossier__wrap{max-width:var(--max-width);margin:0 auto}
.tpl-about-credential-dossier__eyebrow{font-family:var(--font-heading);font-size:13px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--color-secondary);margin-bottom:14px}
.tpl-about-credential-dossier{background:var(--color-bg-alt);color:var(--color-text)}
.tpl-about-credential-dossier__ph{display:block;width:100%;height:auto;border-radius:var(--radius-lg)}
.tpl-about-credential-dossier__ph text{font-family:var(--font-heading);font-weight:600;fill:var(--color-primary)}
@media (max-width:768px){
.tpl-about-credential-dossier{padding:48px 16px}
.tpl-about-credential-dossier h2{font-size:28px}
}
.tpl-about-credential-dossier__hero-split .tpl-about-credential-dossier__wrap{display:grid;grid-template-columns:55fr 45fr;gap:60px;align-items:center}
.tpl-about-credential-dossier__hero-split .tpl-about-credential-dossier__cred-chip .tpl-about-credential-dossier__ico{color:var(--color-secondary);font-size:15px}
@media (max-width:768px){
.tpl-about-credential-dossier__hero-split .tpl-about-credential-dossier__wrap{grid-template-columns:1fr;gap:40px}
}
.tpl-about-credential-dossier__trust-bar .tpl-about-credential-dossier__ico{color:var(--color-primary-light)}
.tpl-about-credential-dossier__prob-pairs .tpl-about-credential-dossier__wrap{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start}
.tpl-about-credential-dossier__prob-pairs .tpl-about-credential-dossier__pair .tpl-about-credential-dossier__txt{font-family:var(--font-heading);font-size:15px;font-weight:600;line-height:1.4}
@media (max-width:768px){
.tpl-about-credential-dossier__prob-pairs .tpl-about-credential-dossier__wrap{grid-template-columns:1fr;gap:40px}
}
.tpl-about-credential-dossier__proc-tl .tpl-about-credential-dossier__wrap{display:grid;grid-template-columns:2fr 3fr;gap:64px;align-items:start}
@media (max-width:768px){
.tpl-about-credential-dossier__proc-tl .tpl-about-credential-dossier__wrap{grid-template-columns:1fr;gap:40px}
}
.tpl-about-credential-dossier__price-menu .tpl-about-credential-dossier__cat .tpl-about-credential-dossier__ico{font-size:26px;color:var(--color-secondary)}
.tpl-about-credential-dossier__proof-agg .tpl-about-credential-dossier__wrap{display:grid;grid-template-columns:1fr 2fr;gap:64px;align-items:center}
@media (max-width:768px){
.tpl-about-credential-dossier__proof-agg .tpl-about-credential-dossier__wrap{grid-template-columns:1fr;gap:40px}
}
.tpl-about-credential-dossier__about-story .tpl-about-credential-dossier__wrap{display:grid;grid-template-columns:45fr 55fr;gap:64px;align-items:center}
@media (max-width:768px){
.tpl-about-credential-dossier__about-story .tpl-about-credential-dossier__wrap{grid-template-columns:1fr;gap:40px}
}
.tpl-about-credential-dossier__cta-open .tpl-about-credential-dossier__wrap{display:grid;grid-template-columns:3fr 2fr;gap:64px;align-items:center}
@media (max-width:768px){
.tpl-about-credential-dossier__cta-open .tpl-about-credential-dossier__wrap{grid-template-columns:1fr;gap:40px}
}
.tpl-about-credential-dossier__faq-split .tpl-about-credential-dossier__wrap{display:grid;grid-template-columns:2fr 3fr;gap:64px;align-items:start}
.tpl-about-credential-dossier__faq-split .tpl-about-credential-dossier__intro .tpl-about-credential-dossier__ph{margin-bottom:20px}
@media (max-width:768px){
.tpl-about-credential-dossier__faq-split .tpl-about-credential-dossier__wrap{grid-template-columns:1fr;gap:40px}
}
.tpl-about-credential-dossier__hero-panel .tpl-about-credential-dossier__tile .tpl-about-credential-dossier__ico{font-size:24px;color:var(--color-secondary)}
.tpl-about-credential-dossier__hero-panel .tpl-about-credential-dossier__tile .tpl-about-credential-dossier__ico svg{width:24px;height:24px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.tpl-about-credential-dossier__prob-cycle .tpl-about-credential-dossier__step .tpl-about-credential-dossier__ico{width:28px;height:28px;color:var(--color-primary-light);display:inline-flex}
.tpl-about-credential-dossier__prob-cycle .tpl-about-credential-dossier__step .tpl-about-credential-dossier__ico svg{width:100%;height:100%;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.tpl-about-credential-dossier__svc-methods .tpl-about-credential-dossier__mc .tpl-about-credential-dossier__ico{font-size:24px;color:var(--color-secondary)}
.tpl-about-credential-dossier__proc-mech .tpl-about-credential-dossier__wrap{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.tpl-about-credential-dossier__proc-mech .tpl-about-credential-dossier__txt h2{margin-bottom:14px}
.tpl-about-credential-dossier__proc-mech .tpl-about-credential-dossier__txt>p{margin-bottom:28px}
@media (max-width:768px){
.tpl-about-credential-dossier__proc-mech .tpl-about-credential-dossier__wrap{grid-template-columns:1fr;gap:40px}
}
.tpl-about-credential-dossier__proof-commit .tpl-about-credential-dossier__cc .tpl-about-credential-dossier__ico{font-size:24px;color:var(--color-primary-light)}
.tpl-about-credential-dossier__trust-stats .tpl-about-credential-dossier__wrap{display:grid;grid-template-columns:3fr 1fr;gap:60px;align-items:center}
@media (max-width:768px){
.tpl-about-credential-dossier__trust-stats .tpl-about-credential-dossier__wrap{grid-template-columns:1fr}
}
.tpl-about-credential-dossier__wrap{display:grid;grid-template-columns:2fr 3fr;gap:64px;align-items:start}
.tpl-about-credential-dossier__file{background:var(--color-card-bg);border:1px solid var(--color-border);border-radius:var(--radius-lg);overflow:hidden;margin-top:20px}
.tpl-about-credential-dossier__file .tpl-about-credential-dossier__fh{background:var(--color-primary);color:#fff;font-family:var(--font-heading);font-size:12px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;padding:10px 20px}
.tpl-about-credential-dossier__file dl{margin:0}
.tpl-about-credential-dossier__file .tpl-about-credential-dossier__fr{display:grid;grid-template-columns:1fr 1.6fr;gap:12px;padding:13px 20px;border-bottom:1px dashed var(--color-border)}
.tpl-about-credential-dossier__file .tpl-about-credential-dossier__fr:last-child{border-bottom:none}
.tpl-about-credential-dossier__file dt{font-family:var(--font-heading);font-size:12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--color-text-muted)}
.tpl-about-credential-dossier__file dd{font-family:var(--font-heading);font-size:14.5px;font-weight:600;color:var(--color-heading);margin:0}
.tpl-about-credential-dossier h2{margin-bottom:14px}
.tpl-about-credential-dossier__txt>p{margin-bottom:28px}
.tpl-about-credential-dossier__hl{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.tpl-about-credential-dossier__hc{background:var(--color-card-bg);border:1px solid var(--color-border);border-radius:var(--radius);padding:22px;transition:var(--transition)}
.tpl-about-credential-dossier__hc:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.tpl-about-credential-dossier__hc .tpl-about-credential-dossier__ico{color:var(--color-secondary);font-size:20px}
.tpl-about-credential-dossier__hc h3{font-size:16px;margin:6px 0 4px}
.tpl-about-credential-dossier__hc p{font-size:15.5px}
@media (max-width:768px){
.tpl-about-credential-dossier__wrap{grid-template-columns:1fr;gap:40px}
.tpl-about-credential-dossier__hl{grid-template-columns:1fr}
}
.tpl-about-credential-dossier__contact-hub .tpl-about-credential-dossier__ch .tpl-about-credential-dossier__ico{width:56px;height:56px;border-radius:50%;background:var(--color-primary-light);color:var(--color-primary);display:flex;align-items:center;justify-content:center;font-size:24px;margin:0 auto 14px}
.tpl-about-credential-dossier__contact-hub .tpl-about-credential-dossier__ch.featured .tpl-about-credential-dossier__ico{background:var(--color-primary);color:#fff}
.tpl-about-credential-dossier__contact-hub .tpl-about-credential-dossier__ch .tpl-about-credential-dossier__ico svg, .tpl-about-credential-dossier__contact-hub .tpl-about-credential-dossier__bar svg{width:24px;height:24px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.tpl-about-credential-dossier__contact-plan .tpl-about-credential-dossier__ic h3 .tpl-about-credential-dossier__ico{color:var(--color-secondary)}
.tpl-about-credential-dossier__contact-plan .tpl-about-credential-dossier__ic h3 .tpl-about-credential-dossier__ico svg{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.tpl-about-credential-dossier [hidden]{display:none!important}
.tpl-about-credential-dossier img[src=""], .tpl-about-credential-dossier video[src=""], .tpl-about-credential-dossier [href=""]{display:none!important}
@media (max-width:768px){
  .tpl-about-credential-dossier{max-width:100%;}
}

/* Template CSS: trust_local_identity_overlay_01 */
.tpl-trust-local-identity-overlay {
  --tpl-trust-local-identity-overlay-accent: #7fe3b1;
  --tpl-trust-local-identity-overlay-ink: rgba(8, 20, 16, 1);

  background: var(--color-primary-dark);
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 112px) 24px;
  font-family: var(--font-body);
}
.tpl-trust-local-identity-overlay__bg {
  position: absolute;
  inset: 0;
}
.tpl-trust-local-identity-overlay__bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tpl-trust-local-identity-overlay__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(8, 20, 16, 0.95) 0%, rgba(8, 20, 16, 0.86) 40%, rgba(8, 20, 16, 0.42) 75%, rgba(8, 20, 16, 0.25) 100%);
}
.tpl-trust-local-identity-overlay__grid {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
.tpl-trust-local-identity-overlay__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tpl-trust-local-identity-overlay-accent);
}
.tpl-trust-local-identity-overlay__eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--tpl-trust-local-identity-overlay-accent);
  border-radius: 2px;
}
.tpl-trust-local-identity-overlay__heading {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  color: #fff;
  font-size: clamp(1.9rem, 4.4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
}
.tpl-trust-local-identity-overlay__accent { color: var(--tpl-trust-local-identity-overlay-accent); }
.tpl-trust-local-identity-overlay__para {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.7;
}
.tpl-trust-local-identity-overlay__pin-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  padding: 30px;
}
.tpl-trust-local-identity-overlay__pin-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.tpl-trust-local-identity-overlay__pin-ring {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-primary-light);
  display: grid;
  place-items: center;
  color: var(--color-primary-dark);
  flex: 0 0 auto;
}
.tpl-trust-local-identity-overlay__icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tpl-trust-local-identity-overlay__card-title {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-size: 1.02rem;
  font-weight: 700;
}
.tpl-trust-local-identity-overlay__card-sub {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
.tpl-trust-local-identity-overlay__areas {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.tpl-trust-local-identity-overlay__area {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-heading);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 7px 14px;
}
.tpl-trust-local-identity-overlay__area--home {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.tpl-trust-local-identity-overlay__foot {
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px dashed var(--color-border);
  font-size: 0.84rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
@media (max-width: 880px) {
  .tpl-trust-local-identity-overlay__grid { grid-template-columns: 1fr; }
  .tpl-trust-local-identity-overlay__bg::after {
    background: linear-gradient(180deg, rgba(8, 20, 16, 0.95) 0%, rgba(8, 20, 16, 0.88) 60%, rgba(8, 20, 16, 0.6) 100%);
  }
}

/* Template CSS: cta_bridge_momentum_band_01 */
.tpl-cta-bridge-momentum-band {
  --tpl-cta-bridge-momentum-band-edge: 5px;

  background: var(--color-bg-alt);
  padding: clamp(34px, 5vw, 56px) 24px;
  font-family: var(--font-body);
}
.tpl-cta-bridge-momentum-band__wrap {
  max-width: 860px;
  margin: 0 auto;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 26px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  box-shadow: 0 6px 18px rgba(16, 32, 40, 0.05);
  position: relative;
  overflow: hidden;
}
.tpl-cta-bridge-momentum-band__wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--tpl-cta-bridge-momentum-band-edge);
  background: var(--color-primary);
}
.tpl-cta-bridge-momentum-band__text {
  flex: 1 1 340px;
}
.tpl-cta-bridge-momentum-band__heading {
  margin: 0 0 3px;
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-size: 1.05rem;
  font-weight: 700;
}
.tpl-cta-bridge-momentum-band__line {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.tpl-cta-bridge-momentum-band__btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 2px solid var(--color-border);
  background: transparent;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
  transition: var(--transition);
}
.tpl-cta-bridge-momentum-band__btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Template CSS: contact_split_info_ghl_form_01 */
.tpl-contact-split {
  --tpl-contact-split-bg: var(--color-bg, #ffffff);
  --tpl-contact-split-card: var(--color-card-bg, #ffffff);
  --tpl-contact-split-card-soft: var(--color-bg-alt, #f7f8f8);
  --tpl-contact-split-text: var(--color-text, #1f2933);
  --tpl-contact-split-muted: var(--color-text-muted, #64707d);
  --tpl-contact-split-heading: var(--color-heading, #111827);
  --tpl-contact-split-accent: var(--color-primary, #166534);
  --tpl-contact-split-accent-soft: var(--color-primary-light, rgba(22, 101, 52, 0.09));
  --tpl-contact-split-border: var(--color-border, #dfe5e2);
  --tpl-contact-split-radius: var(--radius, 8px);
  --tpl-contact-split-shadow: var(--shadow, 0 12px 32px rgba(15, 23, 42, 0.08));
  background: var(--tpl-contact-split-bg);
  color: var(--tpl-contact-split-text);
}

.tpl-contact-split__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 1.05fr);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
}

.tpl-contact-split__content,
.tpl-contact-split__form-card {
  min-width: 0;
}

.tpl-contact-split__eyebrow {
  margin: 0 0 0.75rem;
  color: var(--tpl-contact-split-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tpl-contact-split__heading {
  margin: 0;
  color: var(--tpl-contact-split-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.tpl-contact-split__intro {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--tpl-contact-split-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.tpl-contact-split__details {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.tpl-contact-split__detail {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--tpl-contact-split-border);
  border-radius: var(--tpl-contact-split-radius);
  background: var(--tpl-contact-split-card);
}

.tpl-contact-split__icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--tpl-contact-split-radius);
  background: var(--tpl-contact-split-accent-soft);
  color: var(--color-secondary, var(--tpl-contact-split-accent));
  line-height: 1;
}

.tpl-contact-split__icon i,
.tpl-contact-split__icon svg {
  display: block;
  width: 22px;
  height: 22px;
  color: currentColor;
  stroke: currentColor;
}

.tpl-contact-split__detail-label {
  margin: 0 0 0.2rem;
  color: var(--tpl-contact-split-heading);
  font-size: 0.95rem;
  line-height: 1.25;
}

.tpl-contact-split__detail-text,
.tpl-contact-split__detail-link {
  margin: 0;
  color: var(--tpl-contact-split-muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.tpl-contact-split__detail-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--tpl-contact-split-text);
  font-weight: 700;
  text-decoration: none;
}

.tpl-contact-split__detail-link:hover {
  color: var(--tpl-contact-split-accent);
  background: transparent;
}

.tpl-contact-split__form-card {
  overflow: hidden;
  border: 1px solid var(--tpl-contact-split-border);
  border-radius: var(--tpl-contact-split-radius);
  background: var(--tpl-contact-split-card);
  box-shadow: var(--tpl-contact-split-shadow);
}

.tpl-contact-split__form-header {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-bottom: 1px solid var(--tpl-contact-split-border);
  background: var(--tpl-contact-split-card-soft);
}

.tpl-contact-split__form-heading {
  margin: 0;
  color: var(--tpl-contact-split-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  line-height: 1.18;
}

.tpl-contact-split__form-intro {
  margin: 0.55rem 0 0;
  color: var(--tpl-contact-split-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.tpl-contact-split__form-shell {
  display: block;
  width: 100%;
  background: var(--tpl-contact-split-card);
}

.tpl-contact-split .ghl-embed-zone--form {
  padding: 0;
  border: 0;
  background: var(--tpl-contact-split-card);
}

.tpl-contact-split__form-shell:not(:has(iframe)) {
  display: none;
}

.tpl-contact-split__form-shell iframe {
  display: block;
  width: 100%;
  height: clamp(34rem, 72vh, 40rem);
  border: 0;
}

.tpl-contact-split__fallback {
  display: grid;
  gap: 0.8rem;
  padding: clamp(1.5rem, 4vw, 2rem);
  background: var(--tpl-contact-split-card);
}

.tpl-contact-split__form-shell:has(iframe) ~ .tpl-contact-split__fallback {
  display: none;
}

.tpl-contact-split__fallback-heading {
  margin: 0;
  color: var(--tpl-contact-split-heading);
  font-size: 1.15rem;
  line-height: 1.25;
}

.tpl-contact-split__fallback-text {
  margin: 0;
  color: var(--tpl-contact-split-muted);
  line-height: 1.6;
}

.tpl-contact-split__fallback-link {
  display: inline-flex;
  width: fit-content;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.1rem;
  border-radius: var(--tpl-contact-split-radius);
  background: var(--tpl-contact-split-accent);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.tpl-contact-split__fallback-link:hover {
  background: var(--color-primary-dark, var(--tpl-contact-split-accent));
  color: #ffffff;
}

@media (max-width: 820px) {
  .tpl-contact-split__inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 520px) {
  .tpl-contact-split__detail {
    grid-template-columns: minmax(0, 1fr);
  }

  .tpl-contact-split__icon {
    width: 2.75rem;
    height: 2.75rem;
  }
}

/* Template CSS: section_template_services_features_bento_grid */
/* Features/Why Us: Icon + Image Bento Grid */
.features-bento-grid {
  background-color: var(--color-bg);
  padding: 5rem 0;
}

.features-bento-grid .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.features-bento-grid .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.features-bento-grid .section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.features-bento-grid .section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-heading);
  margin: 0;
}

.features-bento-grid .bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 1.25rem;
}

.features-bento-grid .bento-tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: auto;
  transition: var(--transition);
}

.features-bento-grid .bento-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Feature tiles */
.features-bento-grid .bento-feature {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.features-bento-grid .bento-large {
  grid-column: span 2;
}

.features-bento-grid .bento-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background-color: rgba(var(--color-primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.features-bento-grid .bento-icon i {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
}

.features-bento-grid .bento-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-heading);
  margin: 0 0 0.5rem 0;
}

.features-bento-grid .bento-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}

.features-bento-grid .bento-large .bento-title {
  font-size: 1.35rem;
}

.features-bento-grid .bento-large .bento-desc {
  font-size: 1rem;
  max-width: 460px;
}

/* Photo tiles */
.features-bento-grid .bento-photo {
  padding: 0;
  border: none;
}

.features-bento-grid .bento-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}

.features-bento-grid .bento-tall {
  grid-row: span 2;
}

@media (max-width: 768px) {
  .features-bento-grid {
    padding: 3.5rem 0;
  }

  .features-bento-grid .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .features-bento-grid .bento-large {
    grid-column: span 1;
  }

  .features-bento-grid .bento-tall {
    grid-row: span 1;
  }

  .features-bento-grid .bento-photo img {
    aspect-ratio: 16 / 9;
    min-height: auto;
  }

  .features-bento-grid .bento-feature {
    padding: 1.5rem;
  }
}

/* Template CSS: service_scope_included_panel_01 */
.tpl-service-scope-included-panel {
  --tpl-service-scope-included-panel-padding: 5rem 1.5rem;
  --tpl-service-scope-included-panel-mobile-padding: 3.5rem 18px;
  --tpl-service-scope-included-panel-layout-gap: 18px;
  --tpl-service-scope-included-panel-card-padding: 22px;
  --tpl-service-scope-included-panel-card-mobile-padding: 20px;

  padding: var(--tpl-service-scope-included-panel-padding);
  background: var(--color-bg-alt);
}

.tpl-service-scope-included-panel__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.tpl-service-scope-included-panel__header {
  max-width: 740px;
  margin: 0 0 34px;
}

.tpl-service-scope-included-panel__header h2 {
  margin: 0;
  color: var(--color-heading);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.tpl-service-scope-included-panel__header p {
  margin: 14px 0 0;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.tpl-service-scope-included-panel__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: var(--tpl-service-scope-included-panel-layout-gap);
  align-items: start;
}

.tpl-service-scope-included-panel__plans {
  display: grid;
  gap: 14px;
}

.tpl-service-scope-included-panel__plan,
.tpl-service-scope-included-panel__included {
  padding: var(--tpl-service-scope-included-panel-card-padding);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-card-bg);
}

.tpl-service-scope-included-panel .service-kicker {
  margin: 0 0 10px;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tpl-service-scope-included-panel h3 {
  margin: 0 0 8px;
  color: var(--color-heading);
  font-size: 1.25rem;
}

.tpl-service-scope-included-panel p {
  color: var(--color-text-muted);
  line-height: 1.55;
}

.tpl-service-scope-included-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tpl-service-scope-included-panel li {
  display: flex;
  gap: 8px;
  color: var(--color-text);
  line-height: 1.4;
}

.tpl-service-scope-included-panel li span {
  color: var(--color-primary);
  font-weight: 900;
}

.tpl-service-scope-included-panel__actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.tpl-service-scope-included-panel__primary,
.tpl-service-scope-included-panel__phone {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
}

.tpl-service-scope-included-panel__primary {
  background: var(--color-primary);
  color: #ffffff;
}
.tpl-service-scope-included-panel__primary:hover,
.tpl-service-scope-included-panel__primary:focus-visible {
  background: var(--color-primary-dark);
  color: #ffffff;
}

.tpl-service-scope-included-panel__phone {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .tpl-service-scope-included-panel {
    padding: var(--tpl-service-scope-included-panel-mobile-padding);
  }

  .tpl-service-scope-included-panel__layout {
    grid-template-columns: 1fr;
  }

  .tpl-service-scope-included-panel__plan,
  .tpl-service-scope-included-panel__included {
    padding: var(--tpl-service-scope-included-panel-card-mobile-padding);
  }
}

/* Template CSS: area_verify_town_checklist_01 */
.tpl-area-verify-town-checklist *{margin:0;padding:0;box-sizing:border-box}
.tpl-area-verify-town-checklist h1, .tpl-area-verify-town-checklist h2, .tpl-area-verify-town-checklist h3, .tpl-area-verify-town-checklist h4{font-family:var(--font-heading);color:var(--color-heading);line-height:1.12;letter-spacing:-.02em;font-weight:800}
.tpl-area-verify-town-checklist img, .tpl-area-verify-town-checklist svg{display:block;max-width:100%}
.tpl-area-verify-town-checklist :where(a:not([class*="btn"]):not([class*="cta"])){color:var(--color-primary)}
.tpl-area-verify-town-checklist__wrap{max-width:var(--max-width);margin:0 auto;padding:0 24px}
.tpl-area-verify-town-checklist{padding:80px 0}
@media(max-width:768px){
.tpl-area-verify-town-checklist{padding:48px 0}
}
.tpl-area-verify-town-checklist__ic{width:22px;height:22px;flex:none}
.tpl-area-verify-town-checklist__ic svg{width:100%;height:100%;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.tpl-area-verify-town-checklist__s1 .tpl-area-verify-town-checklist__ticket .tpl-area-verify-town-checklist__ic{color:var(--color-secondary)}
.tpl-area-verify-town-checklist__s13 .tpl-area-verify-town-checklist__item .tpl-area-verify-town-checklist__ic{width:18px;height:18px;color:var(--color-secondary)}
.tpl-area-verify-town-checklist__s3 .tpl-area-verify-town-checklist__intro{color:var(--color-text-muted);max-width:560px;margin-bottom:48px}
.tpl-area-verify-town-checklist__s5 .tpl-area-verify-town-checklist__intro{color:#A9BECD;max-width:560px;margin-bottom:40px}
.tpl-area-verify-town-checklist__s5 .tpl-area-verify-town-checklist__tile .tpl-area-verify-town-checklist__ic{color:var(--color-secondary);margin-top:2px}
.tpl-area-verify-town-checklist__s7 .tpl-area-verify-town-checklist__intro{color:var(--color-text-muted);max-width:560px;margin-bottom:48px}
.tpl-area-verify-town-checklist__s7 .tpl-area-verify-town-checklist__gate .tpl-area-verify-town-checklist__ic{width:34px;height:34px;color:var(--color-primary);margin-bottom:16px}
.tpl-area-verify-town-checklist__s7 .tpl-area-verify-town-checklist__gate.price .tpl-area-verify-town-checklist__ic{color:var(--color-secondary)}
.tpl-area-verify-town-checklist__s7 .tpl-area-verify-town-checklist__chip .tpl-area-verify-town-checklist__ic{width:15px;height:15px;margin:0;color:var(--color-primary)}
.tpl-area-verify-town-checklist__s9 .tpl-area-verify-town-checklist__intro{color:var(--color-text-muted);margin-bottom:28px}
.tpl-area-verify-town-checklist__s9 .tpl-area-verify-town-checklist__chip .tpl-area-verify-town-checklist__ic{width:15px;height:15px;color:var(--color-primary)}
.tpl-area-verify-town-checklist__s19 .tpl-area-verify-town-checklist__intro{color:var(--color-text-muted);margin-bottom:32px}
.tpl-area-verify-town-checklist__s4 .tpl-area-verify-town-checklist__intro{color:var(--color-text-muted);max-width:600px;margin-bottom:44px}
.tpl-area-verify-town-checklist__s4 .tpl-area-verify-town-checklist__lane h3 .tpl-area-verify-town-checklist__ic{width:24px;height:24px;color:var(--color-primary)}
.tpl-area-verify-town-checklist__s4 .tpl-area-verify-town-checklist__lane.call h3 .tpl-area-verify-town-checklist__ic{color:var(--color-secondary)}
.tpl-area-verify-town-checklist__s4 .tpl-area-verify-town-checklist__item .tpl-area-verify-town-checklist__ic{width:18px;height:18px;color:var(--color-secondary);margin-top:4px}
.tpl-area-verify-town-checklist__s4 .tpl-area-verify-town-checklist__lane.call .tpl-area-verify-town-checklist__item .tpl-area-verify-town-checklist__ic{color:var(--color-secondary)}
.tpl-area-verify-town-checklist__s4 .tpl-area-verify-town-checklist__reassure{display:flex;align-items:center;justify-content:center;gap:10px;flex-wrap:wrap;margin-top:36px;font-weight:700;color:var(--color-heading)}
.tpl-area-verify-town-checklist__s6 .tpl-area-verify-town-checklist__intro{color:var(--color-text-muted);max-width:600px;margin-bottom:48px}
.tpl-area-verify-town-checklist__s6 .tpl-area-verify-town-checklist__pill .tpl-area-verify-town-checklist__ic{width:14px;height:14px;color:var(--color-primary)}
.tpl-area-verify-town-checklist__s8 .tpl-area-verify-town-checklist__resp .tpl-area-verify-town-checklist__ic{width:16px;height:16px;color:var(--color-primary)}
.tpl-area-verify-town-checklist__s10 .tpl-area-verify-town-checklist__intro{color:#A9BECD;max-width:560px;margin-bottom:40px}
.tpl-area-verify-town-checklist__s12 .tpl-area-verify-town-checklist__intro{color:var(--color-text-muted);max-width:600px;margin-bottom:40px}
.tpl-area-verify-town-checklist__s12 .tpl-area-verify-town-checklist__fb .tpl-area-verify-town-checklist__ic{width:30px;height:30px;color:var(--color-primary);margin-bottom:14px}
.tpl-area-verify-town-checklist__s14 .tpl-area-verify-town-checklist__chip .tpl-area-verify-town-checklist__ic{width:14px;height:14px;color:var(--color-primary)}
.tpl-area-verify-town-checklist__s15 .tpl-area-verify-town-checklist__intro{color:var(--color-text-muted);max-width:560px;margin-bottom:44px}
.tpl-area-verify-town-checklist__s15 .tpl-area-verify-town-checklist__row .tpl-area-verify-town-checklist__ic{width:20px;height:20px;color:var(--color-primary)}
.tpl-area-verify-town-checklist{background:var(--color-bg-alt)}
.tpl-area-verify-town-checklist__head{text-align:center;max-width:740px;margin:0 auto 40px}
.tpl-area-verify-town-checklist h2{font-size:clamp(28px,3.2vw,40px);margin-bottom:12px}
.tpl-area-verify-town-checklist__intro{color:var(--color-text-muted)}
.tpl-area-verify-town-checklist__cloud{display:flex;flex-wrap:wrap;justify-content:center;gap:12px;max-width:900px;margin:0 auto 36px}
.tpl-area-verify-town-checklist__town{display:inline-flex;align-items:center;gap:9px;background:var(--color-card-bg);border:1px solid var(--color-border);border-radius:99px;padding:12px 22px;font-size:15.5px;font-weight:700;color:var(--color-heading);text-decoration:none;transition:var(--transition);min-height:44px}
.tpl-area-verify-town-checklist__town:hover{transform:translateY(-2px);box-shadow:var(--shadow);border-color:var(--color-primary)}
.tpl-area-verify-town-checklist__town .tpl-area-verify-town-checklist__ic{width:16px;height:16px;color:var(--color-primary)}
.tpl-area-verify-town-checklist__reassure{text-align:center;font-weight:700;color:var(--color-heading);margin-bottom:40px}
.tpl-area-verify-town-checklist__banner{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow);max-height:220px}
.tpl-area-verify-town-checklist__banner iframe{display:block;width:100%;height:220px;border:0}
.tpl-area-verify-town-checklist__s22 .tpl-area-verify-town-checklist__rail .tpl-area-verify-town-checklist__ic{width:28px;height:28px;color:color-mix(in srgb, var(--color-secondary) 34%, var(--color-card-bg))}
.tpl-area-verify-town-checklist [hidden]{display:none!important}
.tpl-area-verify-town-checklist img[src=""], .tpl-area-verify-town-checklist video[src=""], .tpl-area-verify-town-checklist [href=""]{display:none!important}
@media (max-width:768px){
  .tpl-area-verify-town-checklist{max-width:100%;}
}

/* Template CSS: legal_hero_media_01 */
.tpl-legal-hero-media { position: relative; isolation: isolate; display: grid; min-height: clamp(320px, 44vh, 560px); box-sizing: border-box; align-items: end; overflow: clip; color: var(--color-bg); background: var(--color-heading); }
.tpl-legal-hero-media *, .tpl-legal-hero-media *::before, .tpl-legal-hero-media *::after { box-sizing: inherit; }
.tpl-legal-hero-media__image, .tpl-legal-hero-media__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.tpl-legal-hero-media__image { z-index: -2; object-fit: cover; }
.tpl-legal-hero-media__overlay { z-index: -1; background: var(--legal-home-overlay, linear-gradient(90deg, rgba(8, 18, 20, .82), rgba(8, 18, 20, .34))); }
.tpl-legal-hero-media__content { width: min(100%, var(--max-width)); margin: 0 auto; padding: clamp(88px, 13vw, 152px) 24px clamp(56px, 8vw, 96px); text-align: var(--legal-home-heading-align, left); }
.tpl-legal-hero-media__eyebrow { margin: 0 0 12px; font: 800 12px/1.2 var(--font-heading); letter-spacing: .14em; text-transform: uppercase; }
.tpl-legal-hero-media h1 { max-width: 780px; margin: 0; font: 700 clamp(42px, 7vw, 76px)/1.02 var(--font-heading); }
.tpl-legal-hero-media__summary { max-width: 680px; margin: 18px 0 0; font: 400 clamp(17px, 2vw, 21px)/1.55 var(--font-body); }
.tpl-legal-hero-media__date { margin: 18px 0 0; font: 700 14px/1.4 var(--font-body); }
@media (prefers-reduced-motion: reduce) { .tpl-legal-hero-media * { scroll-behavior: auto; } }

/* Template CSS: legal_reader_card_01 */
.tpl-legal-reader-card { box-sizing: border-box; padding: 80px 24px; color: var(--color-text); background: var(--color-bg-alt); }
.tpl-legal-reader-card *, .tpl-legal-reader-card *::before, .tpl-legal-reader-card *::after { box-sizing: inherit; }
.tpl-legal-reader-card__document { width: min(100%, 920px); margin: 0 auto; }
.tpl-legal-reader-card__meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; margin-bottom: 28px; color: var(--color-text-muted); font: 600 14px/1.5 var(--font-body); }
.tpl-legal-reader-card__stack { display: grid; gap: 24px; }
.tpl-legal-reader-card__section { scroll-margin-top: 112px; padding: clamp(26px, 4vw, 42px); border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: var(--color-card-bg); box-shadow: var(--shadow); }
.tpl-legal-reader-card__section h2 { margin: 0 0 16px; color: var(--color-heading); font: 700 clamp(22px, 2.6vw, 30px)/1.2 var(--font-heading); }
.tpl-legal-reader-card__section-body { font: 400 16px/1.7 var(--font-body); }
.tpl-legal-reader-card__section-body p { margin: 0 0 16px; }
.tpl-legal-reader-card__section-body a { color: var(--color-primary); text-underline-offset: 3px; }
.tpl-legal-reader-card__section-body a:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 3px; }
@media (max-width: 600px) { .tpl-legal-reader-card { padding: 56px 16px; } .tpl-legal-reader-card__section { padding: 24px 20px; } }

/* NextGen launch color corrections — approved client-only override layer. */

/* Two-speed CTA: retain brand surfaces and use a high-contrast dark label. */
.tpl-cta-compress-two-speed .tpl-cta-compress-two-speed__btn-orange,
.tpl-cta-compress-two-speed .tpl-cta-compress-two-speed__btn-orange:hover,
.tpl-cta-compress-two-speed .tpl-cta-compress-two-speed__btn-orange:focus-visible,
.tpl-cta-compress-two-speed .tpl-cta-compress-two-speed__btn-primary,
.tpl-cta-compress-two-speed .tpl-cta-compress-two-speed__btn-primary:hover,
.tpl-cta-compress-two-speed .tpl-cta-compress-two-speed__btn-primary:focus-visible {
  color: var(--color-bg);
}
.tpl-cta-compress-two-speed .tpl-cta-compress-two-speed__btn-primary:hover,
.tpl-cta-compress-two-speed .tpl-cta-compress-two-speed__btn-primary:focus-visible {
  background: var(--color-primary);
}

/* Photo heroes: remove the selected template's green cast. */
.tpl-hero-convert-background-video .tpl-hero-convert-background-video__overlay {
  background: rgba(10, 11, 13, 0.68);
}
.tpl-hero-convert-background-video .tpl-hero-convert-background-video__ticker {
  background: rgba(10, 11, 13, 0.88);
}

/* Local identity: map mint/green presentation to NextGen gold and near-black. */
.tpl-trust-local-identity-overlay {
  --tpl-trust-local-identity-overlay-accent: var(--color-primary);
}
.tpl-trust-local-identity-overlay__bg::after {
  background: linear-gradient(95deg, rgba(10, 11, 13, 0.95) 0%, rgba(10, 11, 13, 0.86) 40%, rgba(10, 11, 13, 0.42) 75%, rgba(10, 11, 13, 0.25) 100%);
}
.tpl-footer-complete-dense__icon--nap {
  stroke: var(--color-primary);
}
@media (max-width: 880px) {
  .tpl-trust-local-identity-overlay__bg::after {
    background: linear-gradient(180deg, rgba(10, 11, 13, 0.95) 0%, rgba(10, 11, 13, 0.88) 60%, rgba(10, 11, 13, 0.60) 100%);
  }
}

/* Home damage meter: a four-step gold progression with paired foregrounds. */
.tpl-problem-stakes-damage-meter__stage:nth-child(1) {
  background: color-mix(in srgb, var(--color-primary) 22%, var(--color-bg));
  color: #fff;
}
.tpl-problem-stakes-damage-meter__stage:nth-child(2) {
  background: color-mix(in srgb, var(--color-primary) 42%, var(--color-bg));
  color: #fff;
}
.tpl-problem-stakes-damage-meter__stage:nth-child(3) {
  background: color-mix(in srgb, var(--color-primary) 65%, var(--color-bg));
  color: #fff;
}
.tpl-problem-stakes-damage-meter__stage:nth-child(4) {
  background: var(--color-primary);
  color: var(--color-bg);
}
.tpl-problem-stakes-damage-meter__stage:nth-child(4) h3 {
  color: var(--color-bg);
}

/* Home service area: brand the SVG rings and restore three distinct legend keys. */
.tpl-area-coverage-response-rings circle:nth-of-type(1) {
  fill: color-mix(in srgb, var(--color-secondary) 26%, var(--color-bg));
  stroke: var(--color-secondary);
}
.tpl-area-coverage-response-rings circle:nth-of-type(2) {
  fill: var(--color-secondary);
  stroke: var(--color-primary-dark);
}
.tpl-area-coverage-response-rings circle:nth-of-type(3) {
  fill: var(--color-primary);
}
.tpl-area-coverage-response-rings svg > path {
  fill: var(--color-bg);
}
.tpl-area-coverage-response-rings svg > text:nth-of-type(1),
.tpl-area-coverage-response-rings svg > text:nth-of-type(2) {
  fill: var(--color-bg);
}
.tpl-area-coverage-response-rings svg > text:nth-of-type(3) {
  fill: #fff;
}
.tpl-area-coverage-response-rings__legend li:nth-child(1) .tpl-area-coverage-response-rings__dot {
  background: var(--color-primary);
}
.tpl-area-coverage-response-rings__legend li:nth-child(2) .tpl-area-coverage-response-rings__dot {
  background: var(--color-primary-dark);
}
.tpl-area-coverage-response-rings__legend li:nth-child(3) .tpl-area-coverage-response-rings__dot {
  background: var(--color-secondary);
}

/* NextGen launch corrections requested 2026-08-26. */
.tpl-hero-convert-background-video .tpl-hero-convert-background-video__btn-secondary,
.tpl-problem-stakes-damage-meter .tpl-problem-stakes-damage-meter__btn-orange {
  background: var(--color-primary);
  color: #fff;
}
.tpl-hero-convert-background-video .tpl-hero-convert-background-video__btn-secondary:hover,
.tpl-hero-convert-background-video .tpl-hero-convert-background-video__btn-secondary:focus-visible,
.tpl-problem-stakes-damage-meter .tpl-problem-stakes-damage-meter__btn-orange:hover,
.tpl-problem-stakes-damage-meter .tpl-problem-stakes-damage-meter__btn-orange:focus-visible {
  background: var(--color-primary-dark);
  color: #fff;
}
.tpl-bw-service-fit-selector__chips .tpl-bento-widgets__chip { color: var(--color-bg); }
.tpl-bw-guarantee-badge__front { text-align:center; }
.tpl-bw-guarantee-badge__front .tpl-bw-guarantee-badge__icon { display:none; }
.tpl-bw-guarantee-badge__front b { max-width:none; width:100%; text-align:center; }
.tpl-bw-guarantee-badge__front span { width:100%; text-align:center; }
.tpl-bw-service-fit-selector__badges span,
.tpl-bw-surface-guide__chips .tpl-bento-widgets__chip { color:var(--color-bg); }
.tpl-hero-convert-background-video + .tpl-divider-wave-section-transition { display:none; }
.services-alternating-rows .service-row { align-items:stretch; border:0; }
.services-alternating-rows .service-row,
.features-bento-grid .bento-feature { background-color:color-mix(in srgb,var(--color-card-bg) 78%,var(--color-border)); }
.services-alternating-rows .service-row-image { min-height:0; position:relative; }
.services-alternating-rows .service-row-image img { min-height:0; height:100%; position:absolute; inset:0; }
.features-bento-grid .bento-grid { grid-template-columns:repeat(4,minmax(0,1fr)); grid-auto-rows:auto; align-items:stretch; }
.features-bento-grid .bento-tile:nth-child(1),
.features-bento-grid .bento-tile:nth-child(2) { grid-column:span 2; }
.features-bento-grid .bento-tile:nth-child(5) { grid-column:1 / span 2; grid-row:2 / span 2; }
.features-bento-grid .bento-large { grid-column:span 2; }
.features-bento-grid .bento-photo { min-height:0; position:relative; }
.features-bento-grid .bento-photo img { min-height:0; height:100%; position:absolute; inset:0; }
.features-bento-grid .bento-icon { background:color-mix(in srgb,var(--color-primary) 12%,transparent); color:var(--color-primary); }
.features-bento-grid .bento-icon svg { color:var(--color-primary); stroke:currentColor; }
.features-bento-grid, .services-alternating-rows, .tpl-area-verify-town-checklist { border:0; }
.tpl-divider-wave-section-transition:has(+ .services-alternating-rows),
.services-alternating-rows + .tpl-divider-wave-section-transition,
.tpl-divider-wave-section-transition:has(+ .tpl-area-verify-town-checklist),
.tpl-area-verify-town-checklist + .tpl-divider-wave-section-transition { display:none; }
.tpl-faq-logistics-before-we-arrive__pay span { background:var(--color-secondary); color:var(--color-bg); }
.tpl-faq-logistics-before-we-arrive__card { background:var(--color-secondary); color:var(--color-bg); }
.tpl-faq-logistics-before-we-arrive__card h3,
.tpl-faq-logistics-before-we-arrive__card p { color:var(--color-bg); }
.tpl-faq-logistics-before-we-arrive__btn-orange,
.tpl-faq-logistics-before-we-arrive__btn-orange:hover,
.tpl-faq-logistics-before-we-arrive__btn-orange:focus-visible { background:var(--color-primary); color:#fff; }
.tpl-area-verify-town-checklist__banner { max-height:330px; }
.tpl-area-verify-town-checklist__banner iframe { height:330px; }
body:has(.features-bento-grid) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(1),
body:has(.features-bento-grid) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(2) {
  background:var(--color-bg);
  color:#fff;
  border:1px solid var(--color-border);
}
body:has(.features-bento-grid) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(1) h3,
body:has(.features-bento-grid) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(1) p,
body:has(.features-bento-grid) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(2) h3,
body:has(.features-bento-grid) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(2) p { color:#fff; }
body:has(.features-bento-grid) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(3),
body:has(.features-bento-grid) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(3) h3,
body:has(.features-bento-grid) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(3) p { background:var(--color-secondary); color:var(--color-bg); }
body:has(.features-bento-grid) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(3) .tpl-faq-logistics-before-we-arrive__btn,
body:has(.features-bento-grid) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(3) .tpl-faq-logistics-before-we-arrive__btn:hover,
body:has(.features-bento-grid) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(3) .tpl-faq-logistics-before-we-arrive__btn:focus-visible {
  background:var(--color-primary);
  color:var(--color-bg);
}
/* Home FAQ uses the same role treatment as service FAQs without affecting other widgets. */
body:has(.tpl-bento-widgets) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(1),
body:has(.tpl-bento-widgets) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(2) {
  background:var(--color-bg);
  color:#fff;
  border-color:var(--color-border);
}
body:has(.tpl-bento-widgets) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(1) h3,
body:has(.tpl-bento-widgets) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(1) p,
body:has(.tpl-bento-widgets) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(2) h3,
body:has(.tpl-bento-widgets) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(2) p { color:#fff; }
body:has(.tpl-bento-widgets) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(3),
body:has(.tpl-bento-widgets) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(3) h3,
body:has(.tpl-bento-widgets) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(3) p {
  background:var(--color-secondary);
  color:var(--color-bg);
}
body:has(.tpl-bento-widgets) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(3) .tpl-faq-logistics-before-we-arrive__btn,
body:has(.tpl-bento-widgets) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(3) .tpl-faq-logistics-before-we-arrive__btn:hover,
body:has(.tpl-bento-widgets) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(3) .tpl-faq-logistics-before-we-arrive__btn:focus-visible {
  background:var(--color-primary);
  color:var(--color-bg);
}
/* Service-area FAQ card roles mirror the approved service/Home hierarchy. */
body:has(.tpl-area-verify-town-checklist) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(1),
body:has(.tpl-area-verify-town-checklist) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(2) {
  background:var(--color-bg);
  color:#fff;
  border-color:var(--color-border);
}
body:has(.tpl-area-verify-town-checklist) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(1) h3,
body:has(.tpl-area-verify-town-checklist) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(1) p,
body:has(.tpl-area-verify-town-checklist) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(2) h3,
body:has(.tpl-area-verify-town-checklist) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(2) p { color:#fff; }
body:has(.tpl-area-verify-town-checklist) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(3),
body:has(.tpl-area-verify-town-checklist) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(3) h3,
body:has(.tpl-area-verify-town-checklist) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(3) p {
  background:var(--color-secondary);
  color:var(--color-bg);
}
body:has(.tpl-area-verify-town-checklist) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(3) .tpl-faq-logistics-before-we-arrive__btn,
body:has(.tpl-area-verify-town-checklist) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(3) .tpl-faq-logistics-before-we-arrive__btn:hover,
body:has(.tpl-area-verify-town-checklist) .tpl-faq-logistics-before-we-arrive__grid > div:last-child .tpl-faq-logistics-before-we-arrive__card:nth-of-type(3) .tpl-faq-logistics-before-we-arrive__btn:focus-visible {
  background:var(--color-primary);
  color:var(--color-bg);
}
/* Contact transitions directly into the brand-black footer without a white seam. */
body:has(.tpl-contact-split) main > .tpl-divider-wave-section-transition:last-child {
  --tpl-divider-wave-section-transition-fill:var(--color-bg) !important;
  --tpl-divider-wave-section-transition-bg:var(--color-bg-alt) !important;
}
@media(max-width:768px){
  .tpl-hero-convert-background-video .tpl-hero-convert-background-video__media .tpl-hero-convert-background-video__ph{
    width:100%;height:100%;min-height:100%;max-width:none;object-fit:cover;object-position:center center;border-radius:0;
  }
}
/* About-only transitions: remove waves around Local Roots and transition cleanly into the dark footer. */
body:has(.tpl-about-credential-dossier) .tpl-divider-wave-section-transition:has(+ .tpl-trust-local-identity-overlay),
body:has(.tpl-about-credential-dossier) .tpl-trust-local-identity-overlay + .tpl-divider-wave-section-transition { display:none; }
body:has(.tpl-about-credential-dossier) main > .tpl-divider-wave-section-transition:last-child {
  --tpl-divider-wave-section-transition-fill:var(--color-bg) !important;
  --tpl-divider-wave-section-transition-bg:var(--color-bg-alt) !important;
}
/* Legal pages retain card hierarchy through spacing/surface/shadow, without decorative borders or wave dividers. */
body:has(.tpl-legal-reader-card) .tpl-divider-wave-section-transition { display:none; }
body:has(.tpl-legal-reader-card) .tpl-legal-reader-card__section { border:0; }
@media(max-width:768px){
  .features-bento-grid .bento-grid{grid-template-columns:1fr}
  .features-bento-grid .bento-tile:nth-child(n){grid-column:auto;grid-row:auto}
  .services-alternating-rows .service-row-image,
  .features-bento-grid .bento-photo{aspect-ratio:16/9}
}
