/* ============================================================
   Renew Motor Insurance — landing page styles
   Source: Figma "CoverYou Website / Renew Motor" (node 5165:13156)
   ============================================================ */

:root {
  --cy-orange: #f05d49;
  --cy-orange-dark: #a03e31;
  --cy-pink-50: #fdeae7;
  --cy-pink-gradient: #fdeeec;
  --neutral-100: #f5f5f5;
  --neutral-500: #737373;
  --neutral-900: #171717;
  --grey-border: #757575;
  --grey-light: #cecece;
  --success-50: #effef5;
  --info-50: #f2f7ff;
  --warning-50: #fffdee;
  --link-blue: #1b3cce;
  --font-title: "Poppins", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-title);
  color: #000;
  background: #fff;
}

.page {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: clip;
  width: 100%;
}

@media (min-width: 1360px) {
  .page {
    min-width: 1360px;
  }
}

img {
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- Shared: primary button ---------- */

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--cy-orange);
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  box-shadow:
    inset -3px -3px 4px 0 rgba(0, 0, 0, 0.3),
    inset 4px 4px 4px 0 rgba(255, 255, 255, 0.35);
}

/* ---------- Shared: section heading ---------- */

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.section-heading--left {
  align-items: flex-start;
}

.section-heading__bars {
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-heading__bars span {
  height: 4px;
  border-radius: 10px;
  background: var(--cy-orange);
}

.section-heading__bars span:nth-child(1),
.section-heading__bars span:nth-child(3) {
  width: 16px;
}

.section-heading__bars span:nth-child(2) {
  width: 120px;
}

.section-heading__title {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: #000;
  text-align: center;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  height: 680px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  left: -30px;
  top: 114px;
  width: 1463px;
  height: 377px;
  pointer-events: none;
}

.hero__ellipse {
  position: absolute;
  width: 490px;
  height: 490px;
  pointer-events: none;
}

.hero__ellipse--left {
  left: -201px;
  top: 14px;
}

.hero__title {
  position: absolute;
  left: 150px;
  top: 95px;
  width: 533px;
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
}

.hero__title-gradient {
  background: linear-gradient(190deg, #f05d49 0%, #501f18 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  position: absolute;
  left: 150px;
  top: 203px;
  width: 579px;
  font-size: 20px;
  line-height: 28px;
}

.hero__illustration {
  position: absolute;
  left: 225px;
  top: 332px;
  width: 430px;
  height: 348px;
  overflow: hidden;
}

.hero__person {
  position: absolute;
  right: 0;
  top: 0;
  width: 125px;
  height: 348px;
}

.hero__car {
  position: absolute;
  left: 0;
  top: 136px;
  width: 305px;
  height: 205px;
}

/* ---- Quote card ---- */

.quote-card {
  position: absolute;
  right: 150px;
  top: 103px;
  width: 466px;
  height: 438px;
  background: #fff;
  border-radius: 12px;
  border-bottom: 4px solid var(--cy-orange);
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.quote-card__decor {
  position: absolute;
  left: 332px;
  top: -39px;
  width: 190px;
  height: 177px;
  pointer-events: none;
}

.quote-card__head {
  position: absolute;
  left: 31px;
  top: 29px;
  width: 403px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-card__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  white-space: nowrap;
}

.quote-card__desc {
  font-size: 12px;
  line-height: 16px;
  width: 340px;
}

.quote-card__field {
  position: absolute;
  left: 31px;
  top: 129px;
  width: 403px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote-card__label {
  font-size: 12px;
  line-height: 16px;
}

.quote-card__input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 402px;
  height: 48px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--grey-border);
  border-radius: 12px;
}

.quote-card__input-icon {
  width: 32px;
  height: 32px;
}

.quote-card__input {
  flex: 1;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  line-height: 16px;
  padding: 4px;
}

.quote-card__input::placeholder {
  color: var(--grey-border);
}

.quote-card__continue {
  position: absolute;
  left: 31px;
  top: 229px;
  width: 403px;
}

.quote-card__new-car {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 297px;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

.quote-card__link {
  color: var(--link-blue);
  font-weight: 500;
  text-decoration: none;
}

.quote-card__rm-badge {
  position: absolute;
  left: 81.5px;
  top: 337px;
  width: 302px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 2px 8px;
  border-radius: 8px;
  background: linear-gradient(90deg, #fff 0.87%, var(--cy-pink-gradient) 41.79%);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  white-space: nowrap;
}

.quote-card__rm-icon {
  width: 32px;
  height: 32px;
}

.quote-card__terms {
  position: absolute;
  left: 31px;
  top: 393px;
  width: 403px;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
}

.quote-card__terms a {
  color: blue;
  text-decoration: none;
}

/* ---- Hero partners ---- */

.hero__partners {
  position: absolute;
  right: 252px;
  top: 573px;
  width: 262px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__partners-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
}

.hero__partners-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__partner-logo--tata {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.hero__partner-logo--icici {
  width: 108px;
  height: 36px;
  /* Source image has large transparent padding; cover crops to the logo band */
  object-fit: cover;
}

.hero__partner-logo--digit {
  width: 78px;
  height: 38px;
  object-fit: contain;
}

/* ============================================================
   WHY RENEW
   ============================================================ */

.why-renew {
  position: relative;
  height: 490px;
  overflow: hidden;
}

.why-renew .hero__ellipse--right {
  right: -175px;
  top: -5px;
}

.why-renew__content {
  position: absolute;
  left: 151px;
  top: 55px;
  width: 625px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-renew__content .section-heading__title {
  text-align: left;
}

.why-renew__text {
  width: 571px;
  font-size: 16px;
  line-height: 24px;
}

.why-renew__text ul {
  list-style: disc;
  padding-left: 24px;
}

.why-renew__image {
  position: absolute;
  right: 150px;
  top: 95px;
  width: 432px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

/* ============================================================
   BENEFITS
   ============================================================ */

.benefits {
  position: relative;
  height: 453px;
  padding-top: 64px;
}

.benefits__grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 55px;
}

.benefit-card {
  width: 209px;
  height: 228px;
  padding: 20px;
  border-radius: 12px;
  background: var(--cy-pink-50);
  overflow: hidden;
}

.benefit-card__icon-circle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 28px;
  background: #fff;
  margin-bottom: 12px;
}

.benefit-card__icon-circle img {
  width: 32px;
  height: 32px;
}

.benefit-card__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 8px;
}

.benefit-card__desc {
  font-size: 12px;
  line-height: 16px;
}

/* ============================================================
   CHOOSE THE RIGHT POLICY
   ============================================================ */

.policy-types {
  padding: 64px 20px;
  background: #fff;
}

.policy-types__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  max-width: 1140px;
  margin: 44px auto 0;
}

.policy-card {
  width: 556px;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.25));
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.policy-card__head img {
  width: 32px;
  height: 32px;
}

.policy-card__head h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  white-space: nowrap;
}

.policy-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
}

.policy-card__note {
  font-size: 12px;
  line-height: 16px;
  color: var(--grey-border);
}

/* ============================================================
   WHAT YOU CAN UPDATE
   ============================================================ */

.update-section {
  position: relative;
  height: 648px;
  overflow: hidden;
}

.update-section__waves {
  position: absolute;
  left: -1637px;
  top: -61px;
  width: 3215px;
  height: 743px;
  pointer-events: none;
}

.update-section__heading {
  position: absolute;
  left: 151px;
  top: 70px;
}

.update-section__heading .section-heading__title {
  text-align: left;
  white-space: nowrap;
}

.update-section__illustration {
  position: absolute;
  left: 212px;
  top: 203px;
  width: 423px;
  height: 405px;
}

.update-card {
  position: absolute;
  width: 209px;
  height: 169px;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.update-card--1 { right: 418px; top: 208px; }
.update-card--2 { right: 418px; top: 409px; }
.update-card--3 { right: 177px; top: 144px; }
.update-card--4 { right: 177px; top: 345px; }

.update-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 73px;
  height: 73px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.update-card__icon img {
  width: 32px;
  height: 32px;
}

.update-card__icon--pink   { background: var(--cy-pink-50); }
.update-card__icon--green  { background: var(--success-50); }
.update-card__icon--blue   { background: var(--info-50); }
.update-card__icon--yellow { background: var(--warning-50); }

.update-card p {
  font-size: 15px;
  line-height: normal;
}

/* ============================================================
   BEST MOTOR INSURANCE
   ============================================================ */

.best-insurance {
  position: relative;
  padding: 64px 20px;
  background: #fff;
}

.best-insurance__toggle {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  width: 402px;
  margin: 36px auto 0;
  padding: 6px;
  border-radius: 12px;
  background: var(--neutral-100);
}

.toggle-btn {
  flex: 1;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 20px;
  color: var(--neutral-900);
  text-align: center;
  white-space: nowrap;
}

.toggle-btn--active {
  background: var(--cy-orange);
  color: #fafafa;
  box-shadow:
    inset -3px -3px 4px 0 rgba(0, 0, 0, 0.3),
    inset 3px 3px 4px 0 rgba(255, 255, 255, 0.35);
}

.insurer-card-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1140px;
  margin: 32px auto 0;
}

.insurer-card__ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 823px;
  height: 37px;
  border-radius: 24px 24px 0 0;
  background: var(--cy-pink-50);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.insurer-card__ribbon img {
  width: 24px;
  height: 24px;
}

.insurer-card {
  position: relative;
  width: 100%;
  height: 205px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.insurer-card__logo-box {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 136px;
  height: 56px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.insurer-card__logo {
  object-fit: contain;
}

.insurer-card__logo--tata  { width: 50px;  height: 50px; }
.insurer-card__logo--icici { width: 124px; height: 124px; }
.insurer-card__logo--digit { width: 89px;  height: 44px; }

.insurer-card__name {
  position: absolute;
  left: 179px;
  top: 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  white-space: nowrap;
}

.insurer-card__price {
  position: absolute;
  right: 24px;
  top: 33px;
  width: 370px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.insurer-card__price-label {
  font-size: 14px;
  line-height: 20px;
  color: var(--neutral-500);
}

.insurer-card__price-value {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.insurer-card__features {
  position: absolute;
  left: 24px;
  top: 90px;
  list-style: disc;
  padding-left: 21px;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

.insurer-card__view-all {
  position: absolute;
  left: 24px;
  top: 161px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--cy-orange-dark);
  text-decoration: none;
  white-space: nowrap;
}

.insurer-card__cta {
  position: absolute;
  right: 24px;
  top: 133px;
  width: 370px;
  font-weight: 600;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  padding: 64px 20px 100px;
}

.faq__toolbar {
  display: flex;
  align-items: center;
  gap: 39px;
  max-width: 1140px;
  margin: 50px auto 0;
}

.faq__tabs {
  display: flex;
  align-items: center;
  gap: 16px;
}

.faq__tab {
  padding-bottom: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #000;
  border-bottom: 1px solid #000;
  white-space: nowrap;
}

.faq__tab--active {
  color: var(--cy-orange);
  border-bottom-color: var(--cy-orange);
}

.faq__search {
  display: flex;
  align-items: center;
  gap: 23px;
  width: 195px;
  height: 40px;
  padding: 4px 12px;
  border: 1px solid var(--grey-light);
  border-radius: 10px;
  background: #fff;
  margin-left: auto;
}

.faq__search img {
  width: 24px;
  height: 24px;
}

.faq__search input {
  width: 100%;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  line-height: 20px;
}

.faq__search input::placeholder {
  color: var(--grey-light);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 37px auto 0;
  width: 100%;
  max-width: 1128px;
  padding: 4px 0;
}

.faq__item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: #fff;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.25));
  text-align: left;
}

.faq__item span {
  flex: 1;
  font-size: 16px;
  line-height: 24px;
  color: #000;
}

.faq__item img {
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
}

/* ============================================================
   RESPONSIVE — match fresh motor home (motor-insurance.css)
   ============================================================ */

@media (max-width: 1199px) {
  .page {
    min-width: 0;
  }

  .hero {
    height: auto;
    min-height: 0;
    padding: 48px 24px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    overflow: visible;
  }

  .hero__bg,
  .hero__ellipse--left {
    display: none;
  }

  .hero__title,
  .hero__subtitle,
  .hero__illustration,
  .quote-card,
  .hero__partners {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 560px;
    height: auto;
  }

  .hero__title {
    font-size: 30px;
    line-height: 40px;
    text-align: center;
  }

  .hero__subtitle {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  .hero__illustration {
    display: none;
  }

  .quote-card {
    max-width: 466px;
    height: auto;
    padding: 28px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .quote-card__decor {
    display: none;
  }

  .quote-card__head,
  .quote-card__field,
  .quote-card__continue,
  .quote-card__new-car,
  .quote-card__rm-badge,
  .quote-card__terms {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
  }

  .quote-card__title {
    white-space: normal;
  }

  .quote-card__desc {
    width: 100%;
  }

  .quote-card__input-wrap {
    width: 100%;
  }

  .quote-card form#car-number {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .quote-card__new-car {
    text-align: center;
    white-space: normal;
  }

  .quote-card__rm-badge {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero__partners {
    max-width: 466px;
    align-items: center;
  }

  .hero__partners-logos {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Why renew */
  .why-renew {
    height: auto;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    overflow: visible;
  }

  .why-renew .hero__ellipse--right {
    display: none;
  }

  .why-renew__content,
  .why-renew__image {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 720px;
    height: auto;
    margin: 0 auto;
  }

  .why-renew__text {
    width: 100%;
  }

  .why-renew__content .section-heading,
  .why-renew__content .section-heading__title {
    align-items: center;
    text-align: center;
  }

  /* Benefits */
  .benefits {
    height: auto;
    padding: 48px 24px 56px;
  }

  .benefits__grid {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 32px;
    gap: 16px;
  }

  .benefit-card {
    width: calc(50% - 12px);
    min-width: 160px;
    max-width: 240px;
    height: auto;
    min-height: 200px;
  }

  /* Policy types */
  .policy-types {
    padding: 48px 24px;
  }

  .policy-types__grid {
    margin-top: 32px;
  }

  .policy-card {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }

  .policy-card__head h3 {
    white-space: normal;
  }

  /* Update section */
  .update-section {
    height: auto;
    padding: 48px 24px 56px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    overflow: visible;
  }

  .update-section__waves {
    display: none;
  }

  .update-section__heading,
  .update-section__illustration,
  .update-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .update-section__heading {
    max-width: 100%;
    align-items: center;
    margin-bottom: 4px;
  }

  .update-section__heading .section-heading__title {
    text-align: center;
    white-space: normal;
  }

  .update-section__illustration {
    display: none;
  }

  .update-card--1,
  .update-card--2,
  .update-card--3,
  .update-card--4 {
    right: auto;
    top: auto;
  }

  /* Same horizontal row layout as Benefits / homepage */
  .update-card {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    padding: 16px 20px;
    background: var(--cy-pink-50);
    box-shadow: none;
    overflow: visible;
  }

  .update-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 28px;
    margin-bottom: 0;
    background: #fff;
  }

  .update-card__icon--pink,
  .update-card__icon--green,
  .update-card__icon--blue,
  .update-card__icon--yellow {
    background: #fff;
  }

  .update-card__icon img {
    width: 32px;
    height: 32px;
  }

  .update-card p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
  }

  /* Best insurance */
  .best-insurance {
    padding: 48px 24px;
  }

  .best-insurance__toggle {
    width: 100%;
    max-width: 402px;
    flex-wrap: wrap;
  }

  .insurer-card__ribbon {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 37px;
    padding: 8px 12px;
    text-align: center;
  }

  .insurer-card {
    height: auto;
    min-height: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .insurer-card__logo-box,
  .insurer-card__name,
  .insurer-card__price,
  .insurer-card__features,
  .insurer-card__view-all,
  .insurer-card__cta {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
  }

  .insurer-card__logo-box {
    width: 136px;
  }

  .insurer-card__features {
    white-space: normal;
  }

  .insurer-card__name {
    white-space: normal;
  }

  /* FAQ */
  .faq {
    padding: 48px 24px 72px;
  }

  .faq__toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: 32px;
  }

  .faq__tabs {
    flex-wrap: wrap;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .faq__search {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }

  .section-heading__title {
    font-size: 24px;
    line-height: 32px;
    padding: 0 8px;
  }
}

/* Mobile — same pattern as fresh home: form-first hero */
@media (max-width: 767px) {
  .hero {
    padding: 16px 16px 24px;
    gap: 16px;
  }

  /* Fresh home hides hero chrome on mobile; only quote card shows */
  .hero__title,
  .hero__subtitle,
  .hero__illustration,
  .hero__bg,
  .hero__ellipse {
    display: none !important;
  }

  .quote-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 24px 16px 18px;
    border-radius: 12px;
  }

  .quote-card__title {
    font-size: 18px;
    line-height: 26px;
  }

  .quote-card__desc {
    font-size: 12px;
    line-height: 16px;
  }

  .quote-card__rm-badge {
    font-size: 11px;
    gap: 8px;
    padding: 6px 10px;
  }

  .quote-card__rm-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  .hero__partners {
    max-width: 100%;
    margin-top: 4px;
  }

  .why-renew,
  .benefits,
  .policy-types,
  .update-section,
  .best-insurance {
    padding-left: 16px;
    padding-right: 16px;
  }

  .update-section {
    gap: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .update-card {
    padding: 16px 20px;
  }

  .update-card p {
    font-size: 14px;
    line-height: 20px;
  }

  .faq {
    padding: 40px 16px 64px;
  }

  .benefits__grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    margin-top: 20px;
  }

  /* Same as homepage Benefits (mi-mini-card--pink) — horizontal rows */
  .benefit-card {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 8px;
    align-items: start;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    padding: 16px 20px;
    overflow: visible;
    box-shadow: none;
    filter: none;
  }

  .benefit-card__icon-circle {
    grid-row: 1 / span 2;
    margin-bottom: 0;
    align-self: center;
  }

  .benefit-card__icon-circle img {
    width: 32px;
    height: 32px;
  }

  .benefit-card__title {
    grid-column: 2;
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
  }

  .benefit-card__desc {
    grid-column: 2;
    font-size: 12px;
    line-height: 16px;
  }

  .section-heading__title {
    font-size: 20px;
    line-height: 28px;
  }

  .section-heading__bars span:nth-child(2) {
    width: 80px;
  }

  .best-insurance__toggle {
    gap: 6px;
    padding: 4px;
  }

  .toggle-btn {
    font-size: 12px;
    line-height: 16px;
    padding: 8px 6px;
    white-space: normal;
  }

  .insurer-card__price-value {
    font-size: 18px;
    line-height: 24px;
  }

  .insurer-card__features {
    font-size: 13px;
    line-height: 18px;
  }

  .faq__item span {
    font-size: 14px;
    line-height: 20px;
    padding-right: 8px;
  }

  .faq__tab {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .quote-card {
    width: 100%;
    height: auto;
  }

  .quote-card__input-icon {
    width: 24px;
    height: 24px;
  }

  .btn-primary {
    font-size: 15px;
  }
}
