/* ===============================
   WHO WE COVER PAGE
================================ */

.cover-page {
  --cover-red: #b3001b;
  --cover-red-dark: #850014;
  --cover-ink: #172033;
  --cover-muted: #667085;
  --cover-line: #e8eaf0;
  width: 100%;
  overflow: hidden;
  color: var(--cover-ink);
  background:
    radial-gradient(circle at 5% 5%, rgba(179, 0, 27, 0.07), transparent 27rem),
    #fff;
}

.cover-page *,
.cover-page *::before,
.cover-page *::after {
  box-sizing: border-box;
}

.cover-hero,
.driver-types-section,
.policy-features-section,
.coverage-intro,
.specialist-section,
.cover-faq {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.cover-eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 16px;
  color: var(--cover-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cover-eyebrow::before {
  content: "";
  width: 25px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

/* Hero */
.cover-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
  gap: clamp(42px, 7vw, 84px);
  align-items: center;
  padding: clamp(64px, 8vw, 105px) 0 clamp(70px, 8vw, 100px);
}

.cover-hero-copy h1 {
  max-width: 670px;
  margin: 0 0 23px;
  color: var(--cover-ink);
  font-size: clamp(43px, 5.7vw, 71px);
  font-weight: 800;
  letter-spacing: -0.048em;
  line-height: 0.99;
}

.cover-hero-copy > p {
  max-width: 650px;
  margin: 0;
  color: var(--cover-muted);
  font-size: 18px;
  line-height: 1.72;
}

.cover-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  align-items: center;
  margin-top: 30px;
}

.cover-primary-action,
.cover-text-action {
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.cover-primary-action {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  padding: 14px 21px;
  border-radius: 12px;
  color: #fff;
  background: var(--cover-red);
  box-shadow: 0 12px 26px rgba(179, 0, 27, 0.22);
  transition: transform 0.2s ease, background 0.2s ease;
}

.cover-primary-action:hover {
  transform: translateY(-2px);
  background: var(--cover-red-dark);
}

.cover-text-action {
  color: var(--cover-ink);
  border-bottom: 1px solid #bac0ca;
}

.cover-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 18px;
  margin-top: 31px;
  padding-top: 22px;
  border-top: 1px solid var(--cover-line);
}

.cover-trust-row span {
  color: #596273;
  font-size: 12px;
  font-weight: 650;
}

.cover-trust-row i {
  margin-right: 5px;
  color: var(--cover-red);
}

.cover-hero-visual {
  position: relative;
  min-height: 505px;
}

.cover-image-frame {
  position: absolute;
  inset: 0 0 30px 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 30px;
  background: #f7f7fa;
  box-shadow: 0 26px 65px rgba(20, 27, 40, 0.17);
}

.cover-image-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -17px 30px 22px -17px;
  border-radius: 30px;
  background: linear-gradient(145deg, var(--cover-red), var(--cover-red-dark));
}

.cover-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 23px;
}

.cover-driver-card {
  position: absolute;
  right: -15px;
  bottom: 0;
  display: flex;
  gap: 13px;
  align-items: center;
  min-width: 250px;
  padding: 16px 19px;
  border: 1px solid rgba(179, 0, 27, 0.11);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 18px 43px rgba(20, 27, 40, 0.17);
}

.cover-driver-icon {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: var(--cover-red);
}

.cover-driver-card strong,
.cover-driver-card span {
  display: block;
}

.cover-driver-card strong {
  margin-bottom: 3px;
  font-size: 14px;
}

.cover-driver-card div span {
  color: var(--cover-muted);
  font-size: 12px;
}

/* Drivers */
.driver-types-section {
  padding: 0 0 clamp(75px, 9vw, 115px);
}

.cover-section-heading {
  max-width: 680px;
  margin: 0 auto 38px;
  text-align: center;
}

.cover-section-heading h2 {
  margin: 0 0 12px;
  color: var(--cover-ink);
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -0.036em;
  line-height: 1.08;
}

.cover-section-heading > p {
  margin: 0;
  color: var(--cover-muted);
  line-height: 1.7;
}

.driver-types-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.driver-types-grid article {
  min-width: 0;
  padding: 24px 21px;
  border: 1px solid var(--cover-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(20, 27, 40, 0.045);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.driver-types-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(179, 0, 27, 0.25);
  box-shadow: 0 17px 36px rgba(20, 27, 40, 0.08);
}

.driver-types-grid i {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 13px;
  color: var(--cover-red);
  background: #fff1f3;
}

.driver-types-grid strong,
.driver-types-grid span {
  display: block;
}

.driver-types-grid strong {
  margin-bottom: 7px;
  font-size: 16px;
  line-height: 1.35;
}

.driver-types-grid span {
  color: var(--cover-muted);
  font-size: 13px;
  line-height: 1.5;
}

/* Policy features */
.policy-features-section {
  padding: clamp(55px, 7vw, 82px) clamp(24px, 5vw, 64px);
  border-radius: 30px;
  background: var(--cover-ink);
  box-shadow: 0 23px 62px rgba(23, 32, 51, 0.14);
}

.cover-section-heading-light h2 {
  color: #fff;
}

.cover-section-heading-light .cover-eyebrow {
  color: #ff8798;
}

.policy-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.policy-feature-grid .feature {
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.065);
}

.policy-feature-grid .feature > span {
  display: inline-block;
  margin-bottom: 22px;
  color: #ff8798;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.policy-feature-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 18px;
}

.policy-feature-grid p {
  margin: 0;
  color: #afb7c6;
  font-size: 14px;
  line-height: 1.55;
}

/* Regional cover */
.coverage-intro {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 26px;
  align-items: flex-start;
  margin-block: clamp(65px, 8vw, 105px);
  padding: 32px;
  border: 1px solid rgba(179, 0, 27, 0.14);
  border-radius: 22px;
  background: linear-gradient(120deg, #fff5f6, #fff);
}

.coverage-map-icon {
  display: grid;
  width: 57px;
  height: 57px;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  background: var(--cover-red);
  box-shadow: 0 12px 25px rgba(179, 0, 27, 0.22);
}

.coverage-intro .cover-eyebrow {
  margin-bottom: 8px;
}

.coverage-intro h2 {
  margin: 0 0 11px;
  font-size: clamp(25px, 3vw, 35px);
  letter-spacing: -0.028em;
}

.coverage-intro p {
  margin: 0;
  color: var(--cover-muted);
  font-size: 15px;
  line-height: 1.72;
}

/* Specialist cards */
.specialist-section {
  padding-bottom: clamp(75px, 8vw, 105px);
}

.cover-section-heading-left {
  max-width: 720px;
  margin-left: 0;
  text-align: left;
}

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

.cover-block {
  min-width: 0;
  padding: clamp(25px, 3vw, 34px);
  border: 1px solid var(--cover-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 11px 34px rgba(20, 27, 40, 0.052);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.cover-block:hover {
  transform: translateY(-3px);
  border-color: rgba(179, 0, 27, 0.24);
  box-shadow: 0 18px 42px rgba(20, 27, 40, 0.085);
}

.cover-block-icon {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 13px;
  color: var(--cover-red);
  background: #fff0f2;
}

.cover-block h2 {
  margin: 0 0 14px;
  color: var(--cover-ink);
  font-size: clamp(20px, 2.2vw, 25px);
  letter-spacing: -0.022em;
  line-height: 1.2;
}

.cover-block p {
  margin: 0 0 12px;
  color: var(--cover-muted);
  font-size: 14px;
  line-height: 1.72;
}

.cover-block p:last-child {
  margin-bottom: 0;
}

.cover-block p strong {
  color: #454d5d;
}

.specialist-featured {
  border-top: 4px solid var(--cover-red);
}

.temporary-explainer {
  grid-column: 1 / -1;
  padding-right: clamp(32px, 12vw, 155px);
  background: linear-gradient(120deg, #fff 58%, #fff3f5);
}

.cover-inline-cta {
  margin-top: 20px !important;
  padding-top: 18px;
  border-top: 1px solid var(--cover-line);
}

.cover-inline-cta a {
  color: var(--cover-red);
  font-weight: 750;
  text-decoration: none;
}

/* FAQs */
.cover-faq {
  margin-bottom: clamp(75px, 9vw, 115px);
  padding: clamp(42px, 6vw, 65px);
  border-radius: 28px;
  background: #f7f7fa;
}

.cover-faq-list {
  max-width: 850px;
  margin: 0 auto;
}

.cover-faq details {
  margin-bottom: 12px;
  border: 1px solid var(--cover-line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.cover-faq summary {
  position: relative;
  padding: 19px 52px 19px 20px;
  color: var(--cover-ink);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  list-style: none;
}

.cover-faq summary::-webkit-details-marker {
  display: none;
}

.cover-faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--cover-red);
  font-size: 22px;
  font-weight: 400;
  transform: translateY(-50%);
}

.cover-faq details[open] summary::after {
  content: "−";
}

.cover-faq details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--cover-muted);
  font-size: 14px;
  line-height: 1.65;
  text-align: left;
}

@media (max-width: 960px) {
  .cover-hero {
    grid-template-columns: 1fr;
  }

  .cover-hero-visual {
    min-height: 460px;
  }

  .driver-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .cover-hero,
  .driver-types-section,
  .policy-features-section,
  .coverage-intro,
  .specialist-section,
  .cover-faq {
    width: min(100% - 28px, 1180px);
  }

  .cover-hero {
    padding-top: 46px;
  }

  .cover-hero-copy h1 {
    font-size: clamp(39px, 12vw, 53px);
  }

  .cover-hero-visual {
    min-height: 350px;
  }

  .cover-image-frame {
    inset: 0 0 22px 14px;
    border-radius: 23px;
  }

  .cover-image-frame::before {
    inset: -10px 18px 14px -10px;
    border-radius: 23px;
  }

  .cover-driver-card {
    right: 3px;
    min-width: 225px;
    padding: 13px 15px;
  }

  .driver-types-grid,
  .policy-feature-grid,
  .specialist-grid {
    grid-template-columns: 1fr;
  }

  .policy-features-section {
    padding: 48px 18px;
    border-radius: 23px;
  }

  .coverage-intro {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .temporary-explainer {
    grid-column: auto;
    padding-right: 25px;
  }

  .cover-faq {
    padding: 43px 16px;
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cover-primary-action,
  .driver-types-grid article,
  .cover-block {
    transition: none;
  }
}
