:root {
  --ink: #122231;
  --navy: #102c43;
  --muted: #53697c;
  --ink-soft: #425b70;
  --paper: #f7fbfd;
  --white: #ffffff;
  --blue: #249bd0;
  --blue-deep: #126d99;
  --green: #87c43e;
  --green-deep: #5e9f25;
  --line: rgba(20, 63, 95, 0.14);
  --soft: rgba(255, 255, 255, 0.82);
  --shadow: 0 18px 45px rgba(16, 45, 70, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid rgba(135, 196, 62, 0.72);
  outline-offset: 3px;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 12px 12px auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 40px rgba(15, 48, 75, 0.13);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 clamp(206px, 40vw, 348px);
  min-width: 0;
  width: auto;
}

.brand img {
  display: block;
  width: 100%;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  position: fixed;
  inset: 88px 12px auto;
  width: min(340px, calc(100vw - 24px));
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
  color: #254156;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  text-transform: lowercase;
}

.site-nav a:hover {
  background: rgba(36, 155, 208, 0.08);
  color: var(--blue-deep);
}

.site-nav a.is-active {
  background: rgba(36, 155, 208, 0.1);
  color: var(--blue-deep);
}

.nav-toggle {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  gap: 0;
  border: 1px solid rgba(18, 109, 153, 0.24);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--blue-deep);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 108px 0 28px;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("./assets/hero-advisor.png");
  background-size: cover;
  background-position: 62% center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 34, 52, 0.86) 0%, rgba(10, 34, 52, 0.72) 40%, rgba(10, 34, 52, 0.2) 100%),
    linear-gradient(0deg, rgba(10, 34, 52, 0.76) 0%, rgba(10, 34, 52, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 10px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: 2.55rem;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 610px;
  margin: 20px 0 0;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-copy {
  max-width: 560px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  box-shadow: 0 14px 26px rgba(76, 139, 29, 0.28);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(8px);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.badge-row span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
  font-weight: 700;
}

.trust-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-layout {
  display: grid;
  gap: 12px;
  padding: 20px 0;
}

.trust-layout p {
  margin: 0;
  color: #254156;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.55;
}

.trust-layout a {
  color: var(--blue-deep);
  font-weight: 800;
  text-decoration: none;
}

.section {
  padding: 68px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section h2 {
  margin: 0;
  color: #14293a;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0;
}

.section-head p,
.about-copy p,
.contact-layout > div > p,
.pas-copy p,
.cta-layout p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.insurance-grid {
  display: grid;
  gap: 12px;
}

.insurance-card,
.claim-steps article,
.pas-steps article,
.testimonial-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(25, 63, 92, 0.08);
}

.insurance-card {
  min-height: 200px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.insurance-card:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 155, 208, 0.34);
  box-shadow: 0 18px 42px rgba(25, 63, 92, 0.13);
}

.card-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  color: var(--blue-deep);
  background: transparent;
}

.card-icon img {
  width: 50px;
  height: 50px;
  display: block;
  object-fit: contain;
}

.insurance-card h3 {
  margin: 24px 0 10px;
  color: #14324a;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.insurance-card p {
  margin: 0;
  color: #1b3448;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.22;
}

.card-more {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.stats-trust {
  padding: 0 0 68px;
  background: var(--paper);
}

.stats-trust-layout {
  display: grid;
  gap: 22px;
  padding: 24px;
  border-radius: 16px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 0%, rgba(135, 196, 62, 0.2), transparent 22rem),
    linear-gradient(120deg, #102c43 0%, #126d99 100%);
  box-shadow: 0 20px 44px rgba(16, 44, 67, 0.18);
}

.stats-trust-copy p {
  margin: 0;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.28;
}

.stats-trust-copy span {
  color: var(--green);
}

.stats-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.stats-trust-grid article {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.stats-trust-grid strong {
  display: block;
  color: var(--white);
  font-size: 1.48rem;
  line-height: 1;
}

.stats-trust-grid span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.pas-section {
  background: #102c43;
  color: var(--white);
}

.pas-layout {
  display: grid;
  gap: 28px;
}

.pas-copy h2,
.pas-copy p {
  color: var(--white);
}

.pas-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
}

.pas-steps {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.pas-steps article {
  min-width: 0;
  padding: 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.pas-steps span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

.pas-steps p {
  margin: 12px 0 0;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.28;
  overflow-wrap: break-word;
}

.siniestros-section {
  background: linear-gradient(180deg, #f7fbfd, #edf6fb);
}

.claim-steps {
  display: grid;
  gap: 12px;
}

.claim-steps article {
  padding: 20px;
}

.claim-steps span {
  color: var(--blue);
  font-weight: 800;
}

.claim-steps h3 {
  margin: 10px 0 0;
  font-size: 1.18rem;
  line-height: 1.25;
}

.cta-strip {
  padding: 44px 0;
  background: #142f45;
  color: var(--white);
}

.cta-layout {
  display: grid;
  gap: 20px;
  align-items: center;
}

.cta-layout h2,
.cta-layout p {
  color: var(--white);
}

.cta-layout p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.about-layout {
  display: grid;
  gap: 26px;
}

.about-copy {
  display: grid;
  gap: 14px;
}

.about-copy p {
  margin: 0;
}

.testimonials {
  background: var(--white);
}

.reviews-carousel {
  display: grid;
  gap: 18px;
}

.testimonial-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 16px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-grid::-webkit-scrollbar {
  display: none;
}

.testimonial-grid article {
  flex: 0 0 min(100%, 360px);
  min-width: 0;
  min-height: 260px;
  padding: 22px;
  scroll-snap-align: start;
}

.testimonial-grid p {
  margin: 0;
  color: #233d53;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.55;
}

.testimonial-grid span {
  display: block;
  margin-top: 18px;
  color: var(--blue-deep);
  font-size: 0.86rem;
  font-weight: 800;
}

.review-label {
  width: fit-content;
  margin: 0 0 14px !important;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--green-deep) !important;
  background: rgba(135, 196, 62, 0.12);
  font-size: 0.72rem !important;
}

.review-rating {
  margin-bottom: 12px;
  color: #f0b429;
  font-weight: 800;
  letter-spacing: 1px;
}

.review-carousel-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.review-controls {
  display: flex;
  gap: 8px;
}

.review-control,
.review-google-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.review-control {
  padding: 0 16px;
  border: 1px solid rgba(12, 49, 79, 0.16);
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(10, 51, 84, 0.08);
  transition: border 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.review-control:hover {
  border-color: rgba(16, 101, 192, 0.34);
  box-shadow: 0 18px 36px rgba(10, 51, 84, 0.13);
  transform: translateY(-2px);
}

.review-google-link {
  padding: 0 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 18px 36px rgba(16, 101, 192, 0.18);
}

.review-google-link:hover {
  transform: translateY(-2px);
}

@media (max-width: 520px) {
  .review-carousel-actions,
  .review-controls,
  .review-google-link {
    width: 100%;
  }

  .review-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-layout {
    gap: 34px;
  }

  .footer-brand,
  .footer-column,
  .footer-legal-layout,
  .footer-legal-links {
    justify-items: center;
    text-align: center;
  }

  .footer-brand p,
  .footer-legal-copy p {
    max-width: 100%;
  }

  .footer-info-list li {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-map-link,
  .footer-nav a {
    width: fit-content;
  }

  .footer-map-link {
    margin-left: 0;
  }

  .footer-ssn {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding-bottom: 16px;
  }
}

.contact-section {
  background: #eef7fb;
}

.contact-layout {
  display: grid;
  gap: 28px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #254156;
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(20, 63, 95, 0.18);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: #fbfdff;
  font: inherit;
  font-size: 16px;
}

.contact-form textarea {
  min-height: 116px;
  resize: vertical;
}

.field-error {
  min-height: 1em;
  color: #b42318;
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-form input.is-invalid,
.contact-form select.is-invalid,
.contact-form textarea.is-invalid {
  border-color: rgba(180, 35, 24, 0.52);
  background: #fffafa;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-status.is-success {
  color: var(--green-deep);
}

.form-status.is-error {
  color: #b42318;
}

.button.is-loading {
  opacity: 0.78;
  pointer-events: none;
}

.site-footer {
  padding: 56px 0 0;
  color: rgba(255, 255, 255, 0.84);
  background:
    radial-gradient(circle at 12% 8%, rgba(53, 157, 255, 0.14), transparent 28%),
    radial-gradient(circle at 86% 0%, rgba(17, 83, 162, 0.14), transparent 24%),
    linear-gradient(180deg, #06192a 0%, #071d30 52%, #06182a 100%);
}

.footer-layout {
  display: grid;
  gap: 44px;
  padding-bottom: 42px;
}

.footer-brand,
.footer-column {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-brand-logo {
  width: min(350px, 100%);
  max-width: 100%;
  display: block;
  margin-bottom: 10px;
}

.site-footer p,
.site-footer a,
.site-footer span {
  font-size: 0.96rem;
}

.site-footer p {
  max-width: 370px;
  margin: 0;
  line-height: 1.72;
  color: rgba(234, 241, 248, 0.9);
}

.footer-column h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-column h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2a95ff, #4dc4ff);
}

.footer-column strong {
  color: var(--white);
  font-weight: 800;
}

.footer-column a,
.footer-social a,
.footer-legal-links a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.footer-column a:hover,
.footer-social a:hover,
.footer-legal-links a:hover {
  color: var(--green);
}

.footer-map-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 10px;
  margin-left: 42px;
  color: var(--green) !important;
  font-size: 0.98rem !important;
  font-weight: 900 !important;
  line-height: 1.3;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding-top: 6px;
}

.footer-social-link {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border-radius: 50%;
}

.footer-social-link:hover {
  color: var(--green);
  background: rgba(135, 196, 62, 0.08);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-info-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-info-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}

.footer-info-list li span:last-child {
  min-width: 0;
  color: rgba(240, 245, 251, 0.93);
  line-height: 1.62;
}

.footer-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.footer-info-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-phone,
.icon-whatsapp {
  color: #8edb39;
}

.icon-mail,
.icon-pin,
.icon-clock,
.icon-calendar,
.footer-nav-arrow {
  color: #3b94ff;
}

.footer-nav {
  gap: 12px;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-size: 0.98rem !important;
}

.footer-nav-arrow {
  font-size: 1.8rem;
  line-height: 1;
  transform: translateY(-1px);
}

.footer-nav {
  gap: 12px;
}

.footer-legal {
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 20, 34, 0.56);
}

.footer-legal-layout {
  display: grid;
  gap: 24px;
  align-items: start;
  padding: 24px 0 30px;
  text-align: left;
}

.footer-ssn {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-ssn img {
  width: min(380px, 100%);
  height: auto;
  display: block;
}

.footer-legal-copy {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-legal-copy p {
  max-width: 560px;
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.65;
}

.footer-legal-links {
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-legal-links span {
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.92);
}

.footer-legal-links .footer-internal-access {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.footer-legal-links .footer-internal-access:hover {
  color: var(--brand-green);
}

.footer-legal-meta .footer-legal-links {
  justify-items: start;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(49, 183, 228, 0.18), transparent 34%),
    linear-gradient(135deg, #f6fbff 0%, #eef7fb 54%, #ffffff 100%);
}

.legal-shell {
  width: min(920px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 40px 0;
  display: grid;
  align-content: center;
  gap: 26px;
}

.legal-logo img {
  width: min(260px, 74vw);
  display: block;
}

.legal-card {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(10, 51, 84, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 80px rgba(10, 51, 84, 0.13);
}

.legal-card h1 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.legal-card h2 {
  margin: 28px 0 10px;
  color: var(--navy);
  font-size: clamp(1.18rem, 3vw, 1.5rem);
  line-height: 1.2;
}

.legal-card p {
  max-width: 720px;
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.legal-card ul {
  max-width: 720px;
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

.legal-card li + li {
  margin-top: 6px;
}

.legal-card .button {
  margin-top: 18px;
}

.insurance-modal[hidden] {
  display: none;
}

.insurance-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
}

.insurance-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 28, 43, 0.68);
  backdrop-filter: blur(8px);
}

.insurance-modal__panel {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(86vh, 720px);
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(9, 28, 43, 0.28);
}

.insurance-modal__panel h2 {
  margin: 0;
  color: #14293a;
  font-size: 2rem;
  line-height: 1.05;
}

.insurance-modal__panel p {
  color: var(--muted);
  line-height: 1.7;
}

.insurance-modal__panel ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 24px;
  padding-left: 20px;
  color: #1b3448;
  font-weight: 700;
}

.insurance-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #f7fbfd;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 25;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  box-shadow: 0 16px 34px rgba(76, 139, 29, 0.34);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(76, 139, 29, 0.4);
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .brand {
    flex-basis: clamp(182px, 60vw, 246px);
  }

  .site-nav {
    width: calc(100vw - 24px);
  }

  .hero {
    padding-top: 98px;
  }

  .hero h1 {
    font-size: 2.32rem;
  }

  .hero-subtitle {
    font-size: 1.08rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .badge-row span {
    width: 100%;
  }

  .review-control,
  .review-google-link,
  .footer-map-link {
    justify-content: center;
  }

  .section {
    padding: 56px 0;
  }

  .insurance-modal {
    align-items: end;
    padding: 10px;
  }

  .insurance-modal__panel {
    max-height: 88vh;
    padding: 24px 18px;
    border-radius: 14px 14px 10px 10px;
  }

  .insurance-modal__panel h2 {
    font-size: 1.65rem;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.78rem;
  }

  .stats-trust {
    padding-bottom: 56px;
  }

  .stats-trust-layout {
    padding: 20px;
  }

  .stats-trust-copy p {
    font-size: 1.18rem;
  }

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

@media (min-width: 680px) {
  .site-header {
    inset: 16px 20px auto;
    min-height: 76px;
    padding: 12px 16px;
  }

  .brand {
    flex-basis: clamp(238px, 32vw, 360px);
  }

  .insurance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-grid article {
    flex-basis: calc((100% - 16px) / 2);
  }

  .claim-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pas-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .hero-subtitle {
    font-size: 1.55rem;
  }

  .section h2 {
    font-size: 3rem;
  }

  .trust-layout,
  .cta-layout {
    grid-template-columns: 1fr auto;
  }

  .stats-trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 940px) {
  .site-header {
    left: 50%;
    right: auto;
    width: min(1380px, calc(100% - 40px));
    transform: translateX(-50%);
    gap: 24px;
    padding: 12px 22px;
  }

  .nav-toggle {
    display: none;
  }

  .brand {
    flex: 0 1 clamp(296px, 26vw, 430px);
  }

  .brand img {
    max-height: 68px;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
    min-width: 0;
    gap: 4px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    min-height: 40px;
    flex: 0 0 auto;
    padding: 8px 12px;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .hero {
    align-items: center;
    padding-top: 120px;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: 6.25rem;
  }

  .hero-subtitle {
    font-size: 2rem;
  }

  .section h2 {
    font-size: 4rem;
  }

  .insurance-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stats-trust-layout {
    grid-template-columns: 1fr 1.7fr;
    align-items: center;
  }

  .stats-trust-copy p {
    font-size: 1.72rem;
  }

  .claim-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pas-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pas-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .testimonial-grid article {
    flex-basis: calc((100% - 32px) / 3);
  }

  .footer-layout {
    grid-template-columns: 1.25fr 1.2fr 1fr 0.9fr;
    align-items: start;
  }

  .footer-legal-layout {
    grid-template-columns: auto minmax(320px, 1.05fr) auto;
    align-items: center;
    justify-items: start;
    text-align: left;
  }

  .footer-legal-copy {
    width: 100%;
  }

  .footer-legal-links {
    justify-items: end;
  }
}

@media (min-width: 1280px) {
  .site-header {
    width: min(1460px, calc(100% - 48px));
    gap: 28px;
    padding: 12px 24px;
  }

  .brand {
    flex-basis: clamp(320px, 24vw, 460px);
  }

  .site-nav a {
    padding-inline: 14px;
    font-size: 0.95rem;
  }
}
