/* ==========================================================================
   Prospera Insurance Agency — production landing page
   Faithful hand-written reimplementation of the approved Stitch design.
   Mobile-first. Breakpoints: 768px / 1024px.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --navy: #0b1f4d;
  --deep: #000928;
  --green: #006e2d;
  --accent: #16a34a;
  --light-green: #7cf994;
  --bg: #f8f9ff;
  --surface-low: #eff4ff;
  --surface: #e6eeff;
  --surface-high: #dde9ff;
  --line: #d5e3fd;
  --ink: #0d1c2f;
  --muted: #45464f;
  --muted-2: #62636c;   /* darkened "/60-/40" grays — keeps the look, passes AA */
  --error: #b3261e;

  --radius-card: 2rem;
  --radius-field: 2rem;
  --radius-pill: 9999px;
  --container: 72rem;

  --shadow-sm: 0 1px 2px 0 rgb(11 31 77 / 0.06);
  --shadow-md: 0 4px 6px -1px rgb(11 31 77 / 0.10), 0 2px 4px -2px rgb(11 31 77 / 0.10);
  --shadow-lg: 0 10px 15px -3px rgb(11 31 77 / 0.10), 0 4px 6px -4px rgb(11 31 77 / 0.10);
  --shadow-xl: 0 20px 25px -5px rgb(11 31 77 / 0.10), 0 8px 10px -6px rgb(11 31 77 / 0.10);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9375rem;            /* 15px, as the reference */
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; letter-spacing: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 { line-height: 1.2; }
[hidden] { display: none !important; }

::selection { background: rgba(22, 163, 74, 0.25); }

/* Visible focus everywhere — never suppressed.
   Deep green on light surfaces (≥3:1), bright green on navy sections. */
:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
  border-radius: 4px;
}
.coverage :focus-visible,
.quote-section :focus-visible,
.site-footer :focus-visible,
.promo-sheet :focus-visible {
  outline-color: var(--accent);
}
.quote-card :focus-visible {
  outline-color: var(--green); /* white card inside the navy quote section */
}
/* Dialog container receives programmatic focus for discoverability;
   it is not itself interactive, so no ring (its controls keep theirs). */
.promo-card:focus-visible { outline: none; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Material Symbols — hide ligature names until the icon font is in */
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}
html:not(.fonts-loaded) .material-symbols-outlined { visibility: hidden; }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .container { padding-inline: 2rem; }
}

.eyebrow {
  display: block;
  color: var(--green);
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .eyebrow { font-size: 0.6875rem; }
}
.eyebrow-center { text-align: center; }

.section-title {
  color: var(--navy);
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section-title-light { color: #fff; }

.green-rule {
  width: 4rem;
  height: 0.25rem;
  background: var(--green);
  border-radius: var(--radius-pill);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease,
              transform 0.2s var(--ease-spring), border-color 0.2s ease;
}
.btn:active { transform: scale(0.96); }

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-lg), 0 8px 24px -10px rgba(0, 110, 45, 0.45);
}
.btn-green:hover { background: #00813a; }

.btn-white {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover { background: var(--bg); }
.btn-white .wa-icon { color: var(--green); }

.btn-sm { padding: 0.5rem 1rem; font-size: 0.75rem; }
.btn-lg { padding: 1rem 2rem; font-size: 0.875rem; font-weight: 800; }
.btn-block { width: 100%; }
/* Full-width buttons may carry long Spanish labels — let them wrap on narrow screens */
.btn-block, .hero-ctas .btn { white-space: normal; }
.btn-arrow { font-size: 1.125rem; line-height: 1; }
.btn .material-symbols-outlined { font-size: 1.125rem; }

/* Spring hover for cards */
.hover-card {
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s ease;
}
.hover-card:hover { transform: translateY(-4px); }
.hover-card:active { transform: scale(0.98); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.brand-mark { height: 2.25rem; width: auto; }
.brand-word {
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.header-nav {
  display: none;
  margin-inline: auto;
  gap: 2rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--muted);
}
.header-nav a { transition: color 0.15s ease; }
.header-nav a:hover { color: var(--green); }
@media (min-width: 1024px) {
  .header-nav { display: flex; }
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.lang-toggle {
  display: flex;
  background: var(--surface);
  border-radius: var(--radius-pill);
  padding: 0.125rem;
}
.lang-toggle button {
  font-size: 0.625rem;
  font-weight: 800;
  padding: 0.3125rem 0.625rem;
  border-radius: var(--radius-pill);
  color: var(--muted-2);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.lang-toggle button.lang-active {
  background: #fff;
  color: var(--green);
  box-shadow: var(--shadow-sm);
  padding-inline: 0.75rem;
}
@media (max-width: 419px) {
  .brand-word { font-size: 1.0625rem; }
  .brand-mark { height: 2rem; }
  .btn-sm { padding: 0.5rem 0.8125rem; font-size: 0.6875rem; }
  .header-inner { gap: 0.5rem; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 3.5rem 4rem;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, var(--bg) 0%, rgba(248, 249, 255, 0.94) 38%, rgba(248, 249, 255, 0.55) 68%, rgba(248, 249, 255, 0.28) 100%),
    linear-gradient(0deg, var(--bg) 2%, rgba(248, 249, 255, 0.15) 45%, rgba(248, 249, 255, 0.55) 100%),
    url("../assets/hero-construction.png");
  background-size: cover, cover, cover;
  background-position: center, center, right center;
  background-repeat: no-repeat;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
}
.hero-title {
  font-size: clamp(1.875rem, 1.1rem + 3.4vw, 3.375rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  max-width: 38rem;
}
.hero-title .hl { color: var(--green); }
.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.625;
  max-width: 32rem;
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-ctas .btn { width: 100%; }
@media (min-width: 768px) {
  .hero-ctas { flex-direction: row; }
  .hero-ctas .btn { width: auto; }
  .hero-sub { font-size: 1.0625rem; }
}
@media (min-width: 1024px) {
  .hero { padding-block: 5.5rem 6rem; }
  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 4rem;
  }
}

/* Pricing card */
.hero-card-wrap { max-width: 26rem; width: 100%; }
@media (min-width: 1024px) {
  .hero-card-wrap { justify-self: end; }
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-xl), 0 24px 64px -32px rgba(0, 110, 45, 0.35);
  padding: 2rem;
}
/* Brand gradient accent tab hanging from the card's top edge
   (overflow stays visible for the floating RECOMMENDED chip) */
.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2rem;
  width: 5.5rem;
  height: 0.3125rem;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--green), var(--accent) 55%, var(--light-green));
}
/* Faint P-mark watermark, fully inside the card, fading out to the edge */
.price-card::after {
  content: "";
  position: absolute;
  right: 0.75rem;
  bottom: 0.25rem;
  width: 6rem;
  height: 8rem;
  background: url("../assets/p-mark-navy.png") no-repeat center / contain;
  opacity: 0.05;
  -webkit-mask-image: linear-gradient(180deg, #000 40%, transparent);
  mask-image: linear-gradient(180deg, #000 40%, transparent);
  pointer-events: none;
}
@media (min-width: 1024px) {
  .price-card { padding: 2.5rem; }
}
.price-chip {
  position: absolute;
  top: -0.75rem;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--navy);
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
}
.price-chip .material-symbols-outlined {
  font-size: 0.8125rem;
  color: var(--light-green);
  font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 20;
}
.price-from {
  display: block;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 0.25rem;
}
.price-line {
  display: flex;
  align-items: baseline;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
@media (min-width: 1024px) {
  .price-amount { font-size: 3.5rem; }
}
.price-unit {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--muted-2);
  margin-left: 0.5rem;
}
.price-checks {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.price-checks li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}
.price-checks li + li {
  border-top: 1px dashed var(--line);
  padding-top: 0.875rem;
}
.check-dot {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(0, 110, 45, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.check-dot .material-symbols-outlined {
  font-size: 0.875rem;
  font-variation-settings: "FILL" 0, "wght" 700, "GRAD" 0, "opsz" 20;
}
.price-footnote {
  margin-top: 0.875rem;
  padding-left: 0.5rem;
  font-size: 0.6875rem;
  color: var(--muted-2);
}

/* ==========================================================================
   About / Andrea
   ========================================================================== */
.about {
  background: #fff;
  padding-block: clamp(4rem, 3rem + 3vw, 6rem);
}
.about-inner {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .about-inner {
    grid-template-columns: 22rem 1fr;
    gap: 5rem;
    align-items: start;
  }
}
.about-photo {
  position: relative;
  max-width: 20rem;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .about-photo {
    margin-inline: 0;
    max-width: none;
    position: sticky;
    top: 5.5rem;
  }
}
.about-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
}
.about-blob {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 6rem;
  height: 6rem;
  background: var(--surface);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
}
.about-copy .section-title { margin-bottom: 1.5rem; }
.about-copy .green-rule { margin-bottom: 2rem; }
.about-greeting {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.about-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.625;
  margin-bottom: 1.5rem;
  max-width: 38rem;
}
.signature {
  font-family: "Caveat", cursive;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 2rem;
}

.ask-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.ask-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.ask-head h3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--navy);
}
.icon-chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(0, 110, 45, 0.1);
  color: var(--green);
}
.icon-chip .material-symbols-outlined { font-size: 1.25rem; }
.ask-card .btn { margin-bottom: 1.5rem; padding-block: 1rem; font-weight: 800; }
.ask-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .ask-points { grid-template-columns: 1fr 1fr; }
}
.ask-points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}
.ask-points .material-symbols-outlined {
  font-size: 1.125rem;
  color: var(--green);
}

/* ==========================================================================
   Coverages (navy)
   ========================================================================== */
.coverage {
  background: var(--navy);
  color: #fff;
  padding-block: clamp(4rem, 3rem + 3vw, 6rem);
  text-align: center;
}
.coverage .section-title { margin-bottom: 3rem; }
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: left;
}
@media (min-width: 768px) {
  .coverage-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .coverage-grid { grid-template-columns: 1fr 1fr 1fr; gap: 1.25rem; }
}
.cov-card {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  transition: background-color 0.2s ease, border-color 0.2s ease,
              transform 0.2s var(--ease-spring);
}
.cov-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(22, 163, 74, 0.55);
  transform: translateY(-3px);
}
.cov-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
  margin-bottom: 1rem;
}
.cov-icon .material-symbols-outlined { font-size: 1.5rem; }
.cov-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.cov-card p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.625;
}

/* ==========================================================================
   Industries
   ========================================================================== */
.industries {
  background: var(--surface-low);
  padding-block: clamp(4rem, 3rem + 3vw, 6rem);
  overflow: hidden;
}
.industries-head {
  text-align: center;
  margin-bottom: 3rem;
}
.industries-head .section-title { margin-bottom: 1rem; }
.industries-sub {
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 42rem;
  margin-inline: auto;
}
.chip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .chip-grid { grid-template-columns: 1fr 1fr; }
}
.chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.75rem;
  text-align: center;
  background: #fff;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease, color 0.15s ease, transform 0.2s var(--ease-spring);
}
.chip:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}
.industries-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.industries-fallback {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.industries-foot .btn { box-shadow: var(--shadow-xl), 0 8px 24px -10px rgba(0, 110, 45, 0.45); }

/* ==========================================================================
   Process
   ========================================================================== */
.process {
  background: #fff;
  padding-block: clamp(4rem, 3rem + 3vw, 6rem);
  text-align: center;
}
.process .section-title { margin-bottom: 4rem; }
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .process-grid { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
}
.process-number {
  font-size: clamp(3.75rem, 3rem + 2vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(0, 110, 45, 0.1);
  margin-bottom: 1rem;
  animation: sequential-pulse 6s infinite ease-in-out;
}
.process-number-1 { animation-delay: 0s; }
.process-number-2 { animation-delay: 2s; }
.process-number-3 { animation-delay: 4s; }
@keyframes sequential-pulse {
  0%, 100% { color: rgba(0, 110, 45, 0.1); }
  15%      { color: var(--accent); }
  33%      { color: rgba(0, 110, 45, 0.1); }
}
.process-step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.process-step p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.625;
  max-width: 20rem;
  margin-inline: auto;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials {
  background: var(--surface-low);
  padding-block: clamp(4rem, 3rem + 3vw, 6rem);
  text-align: center;
}
.testimonials .section-title { margin-bottom: 2.5rem; }
.slider { max-width: 52rem; margin-inline: auto; }
.slider-shell {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .slider-shell { gap: 1rem; }
}
.slider-viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.slider-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide {
  width: 100%;
  flex-shrink: 0;
  padding: 0 0.5rem;
}
.stars {
  display: flex;
  justify-content: center;
  color: var(--green);
  margin-bottom: 1rem;
}
.stars .material-symbols-outlined { font-size: 1.125rem; }
.slide blockquote p {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.625;
  margin-bottom: 1.5rem;
  max-width: 40rem;
  margin-inline: auto;
}
.t-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
}
.t-role {
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-2);
  margin-top: 0.375rem;
}
.slider-arrow {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease, border-color 0.15s ease, transform 0.2s var(--ease-spring);
}
.slider-arrow:hover { color: var(--green); border-color: var(--green); }
.slider-arrow:active { transform: scale(0.92); }
.slider-arrow .material-symbols-outlined { font-size: 1.375rem; }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.slider-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--line);
  transition: background-color 0.2s ease, transform 0.2s var(--ease-spring);
}
.slider-dot:hover { background: rgba(0, 110, 45, 0.5); }
.slider-dot.is-active { background: var(--green); transform: scale(1.15); }

/* ==========================================================================
   Quote section (navy gradient) + contact cards
   ========================================================================== */
.quote-section {
  background: linear-gradient(135deg, var(--deep) 0%, var(--navy) 100%);
  padding-block: clamp(4rem, 3rem + 3vw, 6rem);
}
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-xl);
  padding: 2rem 1.5rem;
  display: grid;
  gap: 2.5rem;
  scroll-margin-top: 5.5rem;
}
@media (min-width: 768px) {
  .quote-card { padding: 3rem; }
}
@media (min-width: 1024px) {
  .quote-card {
    grid-template-columns: 1fr 1.15fr;
    gap: 4rem;
    padding: 3.5rem;
    align-items: start;
  }
}
.quote-intro .section-title { margin-bottom: 1rem; }
.quote-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}
/* Value-prop checklist filling the intro column (reuses about.card points) */
.quote-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
}
@media (min-width: 480px) {
  .quote-points { grid-template-columns: 1fr 1fr; }
}
.quote-points li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
}
/* A human face right where the asking happens */
.quote-person {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(0, 110, 45, 0.06), rgba(22, 163, 74, 0.03));
  border: 1px solid rgba(0, 110, 45, 0.12);
  border-radius: 1.5rem;
}
.quote-person img {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid #fff;
  box-shadow: var(--shadow-sm);
}
.quote-person-name {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--navy);
}
.quote-person-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}
.secure-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border-radius: 1.5rem;
  padding: 1.25rem;
}
.secure-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  color: var(--green);
}
.secure-icon .material-symbols-outlined {
  font-size: 1.25rem;
  font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 24;
}
.secure-note p {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
}

/* Form */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  background: var(--surface);
  border: 0;
  border-radius: var(--radius-field);
  padding: 1.125rem 1.375rem;
  font-size: 0.875rem;
  color: var(--ink);
  transition: box-shadow 0.15s ease;
}
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: var(--muted-2); opacity: 1; }
.quote-form input:focus-visible,
.quote-form select:focus-visible,
.quote-form textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 0;
  border-radius: var(--radius-field);
}
.quote-form select {
  -webkit-appearance: none;
  appearance: none;
  color: var(--muted-2);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2362636c' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1.25rem;
  padding-right: 3rem;
}
.quote-form select.filled { color: var(--ink); }
.quote-form select option { color: var(--ink); }
.quote-form textarea {
  min-height: 6.875rem;
  resize: vertical;
  border-radius: 1.5rem;
}
.quote-form button[type="submit"] { margin-top: 0.5rem; }
.quote-form button[disabled] { opacity: 0.6; cursor: wait; }
.form-status {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0.875rem 1.25rem;
  border-radius: 1.25rem;
}
.form-status:empty { display: none; }
.form-status.is-success { color: var(--green); background: rgba(0, 110, 45, 0.08); }
.form-status.is-error { color: var(--error); background: rgba(179, 38, 30, 0.08); }

/* Prefer to talk */
.talk {
  margin-top: 4rem;
  text-align: center;
  color: #fff;
}
.talk h2 {
  font-size: clamp(1.25rem, 1.1rem + 0.8vw, 1.625rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.talk-sub {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 2.5rem;
}
.contact-grid {
  display: grid;
  /* 12rem min lets all five v02 contact cards share one row at 1440px
     instead of orphaning the Hours card on a second row */
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1rem;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--surface);
  color: var(--green);
  margin-bottom: 1rem;
}
.contact-icon .material-symbols-outlined { font-size: 1.5rem; }
.contact-label {
  font-size: 0.5625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  margin-bottom: 0.25rem;
}
.contact-value {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--navy);
  overflow-wrap: anywhere;
}
.contact-value-sm { font-size: 0.75rem; font-weight: 700; letter-spacing: -0.01em; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy);
  color: #fff;
  padding-block: 4rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 2rem;
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
  }
}
.footer-brand {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer-brand {
    grid-column: auto;
    align-items: flex-start;
    text-align: left;
  }
}
.footer-mark { height: 3.5rem; width: auto; margin-bottom: 1.5rem; }
.footer-tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.625;
  max-width: 20rem;
  margin-bottom: 2rem;
}
.socials { display: flex; gap: 1rem; }
.social {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background-color 0.2s ease, transform 0.2s var(--ease-spring);
}
.social:hover { background: var(--green); transform: translateY(-2px); }
.social .material-symbols-outlined { font-size: 1.125rem; }

.footer-heading {
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.5rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}
.footer-col a { transition: color 0.15s ease; }
.footer-col a:hover { color: #fff; }

.footer-contact {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  text-align: center;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.75rem;
}
.footer-contact .material-symbols-outlined {
  flex-shrink: 0;
  font-size: 1.125rem;
  color: var(--accent);
}
@media (min-width: 1024px) {
  .footer-contact {
    grid-column: auto;
    border-top: 0;
    padding-top: 0;
    text-align: left;
  }
  .footer-contact li { justify-content: flex-start; }
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer-license {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-rights {
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
}
.footer-legal a:hover { color: #fff; }

/* ==========================================================================
   WhatsApp float
   ========================================================================== */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg), 0 8px 24px -8px rgba(0, 110, 45, 0.5);
  transition: transform 0.2s var(--ease-spring), background-color 0.2s ease;
}
.wa-float:hover { transform: scale(1.07); background: #00813a; }
.wa-float:active { transform: scale(0.95); }
/* The open promo sheet sits over the float on small screens — hide it meanwhile */
body.promo-open .wa-float {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* ==========================================================================
   Promo bottom sheet
   ========================================================================== */
.promo-sheet {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.promo-card {
  pointer-events: auto;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 30rem;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-2xl);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  transform: translateY(calc(100% + 2rem));
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s ease;
}
.promo-sheet.is-open .promo-card {
  transform: none;
  opacity: 1;
}
.promo-blob {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 6rem;
  height: 6rem;
  background: rgba(22, 163, 74, 0.3);
  border-radius: 50%;
  filter: blur(40px);
}
.promo-icon {
  position: relative;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.18);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.promo-icon .material-symbols-outlined { font-size: 1.5rem; }
.promo-title {
  position: relative;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}
.promo-body {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  line-height: 1.625;
  margin-bottom: 1.5rem;
}
.promo-card .btn { position: relative; padding-block: 0.875rem; font-size: 0.875rem; }
.promo-dismiss {
  position: relative;
  margin-top: 0.25rem;
  padding: 0.625rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.15s ease;
}
.promo-dismiss:hover { color: #fff; }
.promo-close {
  position: absolute;
  z-index: 1;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.promo-close:hover { background: rgba(255, 255, 255, 0.16); color: #fff; }
.promo-close .material-symbols-outlined { font-size: 1.125rem; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.active {
  opacity: 1;
  transform: none;
}

[id] { scroll-margin-top: 5rem; }

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .process-number { animation: none; }
  .hover-card:hover, .cov-card:hover, .chip:hover,
  .social:hover, .wa-float:hover { transform: none; }
}
