:root {
  --ink: #122231;
  --muted: #53697c;
  --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;
}

.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: 64px;
  padding: 10px 12px;
  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;
  width: 210px;
}

.brand img {
  display: block;
}

.site-nav {
  position: fixed;
  inset: 88px 12px auto;
  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;
  text-decoration: none;
  text-transform: lowercase;
}

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

.nav-toggle {
  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.45;
}

.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;
  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;
}

.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);
}

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

.testimonial-grid article {
  padding: 22px;
}

.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;
}

.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;
}

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

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.82);
  background: #0d2436;
}

.footer-layout {
  display: grid;
  gap: 24px;
}

.site-footer img {
  width: 230px;
  display: block;
  margin-bottom: 12px;
}

.site-footer p {
  max-width: 480px;
  margin: 0;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

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

  .brand {
    width: 178px;
  }

  .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%;
  }

  .section {
    padding: 56px 0;
  }
}

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

  .brand {
    width: 238px;
  }

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

  .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;
  }
}

@media (min-width: 940px) {
  .site-header {
    left: 50%;
    right: auto;
    width: min(1160px, calc(100% - 40px));
    transform: translateX(-50%);
  }

  .nav-toggle {
    display: none;
  }

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

  .site-nav a {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .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));
  }

  .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 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
