/* Life Insurance Compared - Main Stylesheet */
    
	* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Inter', Arial, sans-serif;
      background: #d7ff3f;
      color: #08231f;
      padding: 0;
      margin: 0;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    .page-wrap {
      min-height: 100vh;
      width: 100%;
      overflow: hidden;
      background: #d7ff3f;
      position: relative;
      border: 0;
      border-radius: 0;
      box-shadow: none;
    }

    .page-wrap::before,
    .page-wrap::after {
      content: '';
      position: absolute;
      border: 18px solid rgba(255,255,255,0.45);
      border-radius: 50%;
      z-index: 1;
      pointer-events: none;
    }

    .page-wrap::before {
      width: 420px;
      height: 420px;
      left: -190px;
      top: 130px;
    }

    .page-wrap::after {
      width: 520px;
      height: 520px;
      right: -260px;
      top: 210px;
    }

    .nav {
      position: relative;
      z-index: 5;
      max-width: 100%;
      margin: 0 auto;
      padding: 28px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      letter-spacing: -0.04em;
      font-size: 22px;
      color: #08231f;
	  text-decoration: none;
    }
	
	.logo,
.logo:visited,
.logo:hover,
.logo:focus {
  text-decoration: none;
  color: #08231f;
}

    .logo-mark {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      background: #08231f;
      color: #d7ff3f;
      display: grid;
      place-items: center;
      font-weight: 900;
      box-shadow: 0 8px 18px rgba(8,35,31,.2);
      flex: 0 0 auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
    }

    .nav-links a {
      color: #173832;
      text-decoration: none;
      font-size: 16px;
      font-weight: 900;
      transition: opacity .2s ease;
    }

    .nav-links a:hover {
      opacity: .7;
    }

    .nav-cta {
      background: #08231f;
      color: #fff;
      text-decoration: none;
      padding: 14px 24px;
      border-radius: 999px;
      font-weight: 800;
      font-size: 18px;
      box-shadow: 0 12px 22px rgba(8,35,31,.22);
      white-space: nowrap;
    }

    .hero {
      position: relative;
      z-index: 3;
      max-width: 100%;
      margin: 0 auto;
      padding: 54px 24px 80px;
      text-align: center;
    }

    h1 {
      font-size: clamp(48px, 8vw, 56px);
      line-height: 1.14;
      letter-spacing: -0.055em;
      font-weight: 900;
      max-width: 100%;
      margin: 0 auto;
      color: #061b18;
    }

    .highlight {
      position: relative;
      display: inline-block;
    }

    .highlight::after {
      content: '';
      position: absolute;
      left: -2%;
      right: -2%;
      bottom: -8%;
      height: 12%;
      border-radius: 999px;
      background: rgba(255,255,255,0.78);
      z-index: -1;
      transform: none;
    }

    .badge-row {
      max-width: 860px;
      margin: 32px auto 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      align-items: stretch;
    }

    .floating-badge {
      min-height: 68px;
      background: #fff;
      border: 1px solid rgba(8,35,31,0.08);
      border-radius: 22px;
      padding: 14px 18px;
      font-weight: 900;
      box-shadow: 0 18px 34px rgba(8,35,31,.12);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: #102f2a;
    }

    .badge-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #d7ff3f;
      border: 2px solid #08231f;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
    }

    .subtext {
      max-width: 720px;
      margin: 30px auto 0;
      font-size: 19px;
      line-height: 1.6;
      color: #20433c;
      font-weight: 600;
    }

    .hero-arrow {
      position: absolute;
      top: 245px;
      right: 70px;
      width: 170px;
      z-index: 4;
      pointer-events: none;
    }

    .hero-arrow img {
  display: block;
  width: 100%;
  height: auto;
  transform: rotate(20deg) scaleY(-1) scaleZ (-1);
  transform-origin: center;
  filter: drop-shadow(0 8px 14px rgba(8,35,31,.18));
}

    .insurer-logos {
  width: 100%;
  max-width: 100%;
  margin: 0 0 28px;
  padding: 0 0 28px;
  background: transparent;
  border: 0;
  border-bottom: 2px solid #08231f; 
  border-radius: 0;
  box-shadow: none;
  position: relative;
  z-index: 3;
  overflow: visible;
}

    .insurer-logos p {
      margin: 0 0 18px;
      font-size: 15px;
      line-height: 1.4;
      font-weight: 900;
      color: #14352f;
      text-align: center;
    }

    .logo-grid {
      display: grid;
      grid-template-columns: repeat(7, minmax(0, 1fr));
      gap: 10px;
      align-items: center;
      width: 100%;
    }

    .logo-pill {
      height: 64px;
      width: 100%;
      min-width: 0;
      padding: 10px 12px;
      background: #fff;
      border: 1px solid rgba(8,35,31,0.08);
      border-radius: 999px;
      box-shadow: 0 10px 24px rgba(8,35,31,.08);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .logo-pill img {
      display: block;
      width: auto;
      height: auto;
      max-width: 100%;
      max-height: 30px;
      object-fit: contain;
    }

    .logo-pill img.logo-small {
      max-height: 42px;
      max-width: 115%;
    }

    .logo-pill img.logo-wide {
      max-height: 38px;
      max-width: 115%;
    }

    .logo-pill img.logo-ok {
      max-height: 30px;
    }

    .visual-panel {
      margin: 32px auto 0;
      max-width: 820px;
      position: relative;
    }
	
	.insurer-logo-banner {
  display: none;
}

.mobile-hero-points {
  display: none;
}

    .quote-card {
      background: #fff;
      border: 1px solid rgba(8,35,31,0.08);
      border-radius: 34px;
      padding: 30px;
      box-shadow: 0 26px 60px rgba(8,35,31,.14);
      position: relative;
      z-index: 2;
      text-align: left;
    }

    .quote-form {
      display: grid;
      gap: 24px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .form-group.full {
      grid-column: 1 / -1;
    }

    .form-group label,
    .form-label {
      font-size: 16px;
      font-weight: 900;
      color: #102f2a;
    }

    .cover-type-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
    }

    .cover-for-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .cover-type-card,
    .radio-card {
      position: relative;
      display: block;
    }

    .cover-type-card input,
    .radio-card input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    .cover-type-content {
      min-height: 112px;
      border: 2px solid rgba(8,35,31,0.1);
      border-radius: 18px;
      background: #f8fbf7;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      cursor: pointer;
      transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
      padding: 14px 10px;
      text-align: center;
    }

    .cover-type-content strong {
      font-size: 15px;
      line-height: 1.2;
      font-weight: 900;
      color: #08231f;
    }

    .cover-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid #08231f;
  background: #d7ff3f;
  color: #08231f;
}

.cover-icon i {
  font-size: 22px;
  line-height: 1;
}

.cover-icon-heart {
  background: #ffe3e3;
  color: #d62828;
  border-color: #d62828;
}

.cover-icon-house {
  background: #f3f6f8;
  color: #08231f;
  border-color: #08231f;
}

.cover-icon-medical {
  background: #e3f1ff;
  color: #1d6fdc;
  border-color: #1d6fdc;
}

.cover-icon-whole-life {
  background: #d7ff3f;
  color: #2e7d32;
  border-color: #2e7d32;
}

.cover-icon-whole-life i {
  font-size: 22px;
  line-height: 1;
}

    .cover-type-content:hover {
      transform: translateY(-2px);
      border-color: rgba(8,35,31,0.25);
      box-shadow: 0 10px 24px rgba(8,35,31,.08);
    }

    .cover-type-card input:checked + .cover-type-content {
      background: #eef8c9;
      border-color: #08231f;
      box-shadow: 0 12px 28px rgba(8,35,31,.12);
    }

    .form-group input,
    .form-group select {
      width: 100%;
      border: 2px solid rgba(8,35,31,0.1);
      border-radius: 16px;
      padding: 15px 16px;
      font: inherit;
      font-size: 15px;
      font-weight: 700;
      color: #08231f;
      background: #f8fbf7;
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
      min-width: 0;
    }

    .form-group input:focus,
    .form-group select:focus {
      border-color: #08231f;
      background: #fff;
      box-shadow: 0 0 0 4px rgba(8,35,31,0.08);
    }

    .dob-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }

    .radio-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .radio-card span {
      min-height: 54px;
      border: 2px solid rgba(8,35,31,0.1);
      border-radius: 16px;
      background: #f8fbf7;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      cursor: pointer;
      transition: border-color .2s ease, background .2s ease, color .2s ease;
    }

    .radio-card input:checked + span {
      background: #d7ff3f;
      border-color: #08231f;
      color: #08231f;
    }

    .form-submit {
      margin-top: 12px;
	  width: 100%;
      border: 0;
      border-radius: 999px;
      padding: 22px 28px;
      background: #08231f;
      color: #fff;
      font: inherit;
      font-size: 24px;
      font-weight: 900;
      cursor: pointer;
      box-shadow: 0 18px 36px rgba(8,35,31,.28);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .form-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 44px rgba(8,35,31,.34);
    }
	
	.loadinggif {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(215,255,63,.22);
  color: #08231f;
  font-weight: 900;
  text-align: center;
}

.loadinggif img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.loadinggif p {
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
}

.form-error-box {
  margin: 0 0 22px;
  padding: 16px 18px;
  border: 2px solid #e63946;
  border-radius: 18px;
  background: #fff1f2;
  color: #7f1d1d;
}

.form-error-box strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
  font-weight: 900;
}

.form-error-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.quote-form input.error,
.quote-form select.error,
.quote-form textarea.error {
  border-color: #e63946;
  background: #fff8f8;
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.12);
}

.quote-form small.error {
  display: block;
  margin: 7px 0 0;
  color: #e63946;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

    .form-note {
  margin-top: 8px;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(8,35,31,.72);
  font-weight: 700;
}
	
	.security-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 18px auto 14px;
  flex-wrap: wrap;
}

.security-badges img {
  display: block;
  width: auto;
  height: 48px;
  object-fit: contain;
}

.security-badges img.godaddy-badge {
  height: 60px;
}
	
	.why-section {
      position: relative;
      z-index: 3;
      padding: 78px 24px 86px;
      background: #101515;
    }

    .why-inner {
      max-width: 1120px;
      margin: 0 auto;
    }

    .why-section h2 {
      max-width: 100%;
      margin: 0 0 56px;
      color: #fff;
      font-size: clamp(34px, 4vw, 54px);
      line-height: 1.08;
      letter-spacing: -0.055em;
      font-weight: 900;
	  text-align: center;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 34px;
      align-items: start;
    }

    .why-card {
      width: 100%;
      aspect-ratio: 1 / 1;
      border-radius: 50%;
      background: #d7ff3f;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 44px;
      color: #08231f;
    }

    .why-card h3 {
      max-width: 220px;
      margin-bottom: 18px;
      font-size: clamp(22px, 2vw, 30px);
      line-height: 1.08;
      letter-spacing: -0.035em;
      font-weight: 900;
    }

    .why-card p {
      max-width: 230px;
      font-size: 18px;
      line-height: 1.45;
      font-weight: 600;
      color: #173832;
    }
	
	.cover-types-section {
      position: relative;
      z-index: 3;
      background: #fff;
      padding: 84px 24px 92px;
    }

    .cover-types-inner {
      max-width: 1120px;
      margin: 0 auto;
    }

    .cover-types-heading {
      max-width: 760px;
      margin: 0 auto 42px;
      text-align: center;
    }

    .cover-types-heading h2 {
      font-size: clamp(34px, 4vw, 52px);
      line-height: 1.03;
      letter-spacing: -0.055em;
      font-weight: 900;
      color: #061b18;
      margin-bottom: 16px;
    }

    .cover-types-heading p {
      font-size: 18px;
      line-height: 1.55;
      font-weight: 600;
      color: #34524d;
    }

    .cover-types-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .cover-type-info-card {
      min-height: 310px;
      background: #101515;
      color: #fff;
      border-radius: 28px;
      padding: 26px 22px 22px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      box-shadow: 0 18px 40px rgba(8,35,31,.12);
    }

    .cover-type-info-icon {
      width: 58px;
      height: 58px;
      border-radius: 20px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      font-size: 24px;
      font-weight: 900;
      border: 2px solid currentColor;
    }

    .cover-type-info-icon.heart {
      background: #ffe3e3;
      color: #d62828;
    }

    .cover-type-info-icon.medical {
      background: #e3f1ff;
      color: #1d6fdc;
    }

    .cover-type-info-icon.house {
      background: #f3f6f8;
      color: #08231f;
    }

    .cover-type-info-icon.whole-life {
      background: #d7ff3f;
      color: #08231f;
    }

    .cover-type-info-card h3 {
      font-size: 23px;
      line-height: 1.12;
      letter-spacing: -0.035em;
      margin-bottom: 14px;
      font-weight: 900;
    }

    .cover-type-info-card p {
      font-size: 16px;
      line-height: 1.5;
      color: rgba(255,255,255,.84);
      font-weight: 600;
      margin-bottom: 22px;
    }

    .cover-type-info-card a {
      margin-top: auto;
      width: 100%;
      min-height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #d7ff3f;
      color: #08231f;
      text-decoration: none;
      border-radius: 18px;
      font-size: 16px;
      font-weight: 900;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .cover-type-info-card a:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(215,255,63,.18);
    }
	
	.faq-section {
      position: relative;
      z-index: 3;
      background: #d7ff3f;
      padding: 84px 24px 92px;
    }

    .faq-inner {
      max-width: 920px;
      margin: 0 auto;
    }

    .faq-heading {
      max-width: 720px;
      margin: 0 auto 38px;
      text-align: center;
    }

    .faq-heading h2 {
      font-size: clamp(34px, 4vw, 52px);
      line-height: 1.03;
      letter-spacing: -0.055em;
      font-weight: 900;
      color: #061b18;
      margin-bottom: 16px;
    }

    .faq-heading p {
      font-size: 18px;
      line-height: 1.55;
      font-weight: 600;
      color: #34524d;
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      background: #fff;
      border: 1px solid rgba(8,35,31,0.08);
      border-radius: 22px;
      box-shadow: 0 14px 30px rgba(8,35,31,.10);
      overflow: hidden;
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      position: relative;
      padding: 24px 66px 24px 24px;
      font-size: 19px;
      line-height: 1.3;
      font-weight: 900;
      color: #061b18;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: '+';
      position: absolute;
      top: 50%;
      right: 22px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #08231f;
      color: #d7ff3f;
      display: grid;
      place-items: center;
      font-size: 24px;
      line-height: 1;
      transform: translateY(-50%);
      transition: transform .2s ease;
    }

    .faq-item[open] summary::after {
      content: '−';
    }

    .faq-item p {
      padding: 0 24px 24px;
      font-size: 16px;
      line-height: 1.65;
      font-weight: 600;
      color: #34524d;
    }
	
	.site-footer {
      position: relative;
      z-index: 3;
      background: #101515;
      color: #fff;
      padding: 54px 24px 58px;
    }
	
	.footer-register a {
	color: #fff;
	}

    .footer-inner {
      max-width: 1120px;
      margin: 0 auto;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      margin-bottom: 24px;
    }

    .footer-links a {
      color: #d7ff3f;
      text-decoration: none;
      font-size: 16px;
      line-height: 1.4;
      font-weight: 900;
      transition: opacity .2s ease;
    }

    .footer-links a:hover {
      opacity: .8;
    }

    .site-footer p {
      max-width: 1040px;
      font-size: 15px;
      line-height: 1.75;
      color: rgba(255,255,255,.88);
      font-weight: 600;
    }
	
	.footer-copy {
  margin-bottom: 26px;
}

.footer-copy p + p {
  margin-top: 18px;
}

.price-examples {
  margin: 16px 0 18px 22px;
  padding: 0;
  color: rgba(255,255,255,.88);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 600;
}

.price-examples li + li {
  margin-top: 4px;
}

.footer-bottom {
  background: #070b0b;
  padding: 18px 24px;
}

.footer-bottom-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.8);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

.footer-bottom-links a {
  color: #d7ff3f;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 900;
  transition: opacity .2s ease;
}

.footer-bottom-links a:hover {
  opacity: .8;
}

.thankyou-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #d7ff3f;
  border: 3px solid #08231f;
  color: #08231f;
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 24px;
}

.legal-check-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 28px;
  padding: 0;
  list-style: none;
}

.legal-check-list li {
  position: relative;
  padding-left: 34px;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 600;
  color: #34524d;
}

.legal-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #08231f;
  color: #d7ff3f;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}

.important-list li::before {
  content: "!";
}


    @media (max-width: 1050px) {
      .nav-links {
        display: none;
      }

      .hero-arrow {
        top: 258px;
        right: 42px;
        width: 145px;
      }

      .logo-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    .why-grid {
        gap: 20px;
      }

      .why-card {
        padding: 32px;
      }
    }
	
	@media (min-width: 1400px) and (max-width: 1450px) {
  .mortgage-page h1 {
    font-size: 58px;
  }
  .critical-illness-page h1 {
    font-size: 58px;
  }
  .over-50s-page h1 {
    font-size: 58px;
  }
  .whole-life-page h1 {
    font-size: 58px;
  }
  .term-life-page h1 {
    font-size: 64px;
  }
}

@media (min-width: 1451px) {
  .mortgage-page h1 {
    font-size: 60px;
  }
  .critical-illness-page h1 {
    font-size: 60px;
  }
  .over-50s-page h1 {
    font-size: 60px;
  }
  .whole-life-page h1 {
    font-size: 60px;
  }
  .term-life-page h1 {
    font-size: 66px;
  }
}
	
	.legal-hero {
  position: relative;
  z-index: 3;
  padding: 74px 24px 78px;
  background: #d7ff3f;
  text-align: center;
}

.legal-hero-inner {
  max-width: 920px;
  margin: 0 auto;
}

.legal-hero p {
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #173832;
}

.legal-hero h1 {
  font-size: clamp(42px, 6vw, 74px);
  line-height: .98;
  letter-spacing: -0.065em;
  font-weight: 900;
  color: #061b18;
  margin-bottom: 18px;
}

.legal-hero span {
  display: block;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
  color: #20433c;
}

.legal-content-section {
  background: #fff;
  padding: 72px 24px 86px;
}

.legal-content-card {
  max-width: 920px;
  margin: 0 auto;
  background: #f8fbf7;
  border: 1px solid rgba(8,35,31,0.08);
  border-radius: 30px;
  padding: 44px;
  box-shadow: 0 22px 46px rgba(8,35,31,.10);
}

.legal-updated {
  margin-bottom: 28px;
  font-weight: 900;
  color: #173832;
}

.legal-content-card h2 {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.035em;
  color: #061b18;
  margin: 30px 0 12px;
}

.legal-content-card h2:first-of-type {
  margin-top: 0;
}

.legal-content-card p {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
  color: #34524d;
}

.legal-content-card a {
  color: #08231f;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.cookie-policy-page .legal-content-card h3 {
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0 18px;
  padding: 14px 24px;
  background: #08231f;
  color: #fff !important;
  text-decoration: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(8,35,31,.18);
}

.legal-cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(8,35,31,.24);
}

	
	.fca-popup-trigger {
  color: #08231f;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  cursor: pointer;
  position: relative;
}

.fca-popup {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(16px);
  width: min(92vw, 480px);
  padding: 22px 52px 22px 22px;
  background: #101515;
  color: #fff;
  border: 2px solid #d7ff3f;
  border-radius: 22px;
  box-shadow: 0 22px 50px rgba(0,0,0,.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 9999;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.fca-popup.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.fca-popup p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
}

.fca-popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 30px;
  height: 30px;
  border: 0;
  background: #d7ff3f;
  color: #08231f;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
}

@media (min-width: 1621px) {
  .hero-arrow {
    display: none;
  }
}

@media (max-width: 1439px) {
  .hero-arrow {
    display: none;
  }
}

@media (min-width: 821px) and (max-width: 1050px) {
  .logo-grid {
    display: none;
  }

  .insurer-logo-banner {
    display: block;
    width: 100%;
    max-width: 760px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
  }
}


    @media (max-width: 820px) {
	.mobile-hero-points {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 20px auto 0;
}

.mobile-hero-points div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: auto;
  padding: 7px 12px;
  background: #fff;
  border: 1px solid rgba(8,35,31,0.08);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(8,35,31,.08);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
  color: #102f2a;
  white-space: nowrap;
}

.mobile-hero-points span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #08231f;
  color: #d7ff3f;
  display: grid;
  place-items: center;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  flex: 0 0 auto;
}
	
	.insurer-logos {
    display: block;
    margin: 0 0 24px;
    padding: 0 0 24px;
    border-bottom: 2px solid #08231f;
  }
	
	 .logo-grid {
    display: none;
  }

  .insurer-logo-banner {
    display: block;
    width: 108%;
    max-width: none;
    height: auto;
    object-fit: contain;
    margin: 0 0 0 -3.5%;
  }
  
  .legal-hero {
    padding: 52px 18px 56px;
  }

  .legal-hero h1 {
    font-size: clamp(36px, 10vw, 52px);
  }

  .legal-hero span {
    font-size: 16px;
  }

  .legal-content-section {
    padding: 52px 18px 62px;
  }

  .legal-content-card {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .legal-content-card h2 {
    font-size: 21px;
  }

  .legal-content-card p {
    font-size: 15px;
  }
  
  .thankyou-success-icon {
    width: 62px;
    height: 62px;
    font-size: 28px;
    margin-bottom: 20px;
  }

  .legal-check-list li {
    font-size: 15px;
  }
	 
	 .footer-bottom {
  padding: 18px;
}

.footer-bottom-inner {
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-bottom p {
  font-size: 13px;
}

.footer-bottom-links {
  justify-content: flex-start;
  gap: 12px 18px;
}

.footer-bottom-links a {
  font-size: 13px;
}
	 
	 .site-footer {
        padding: 42px 18px 46px;
      }
	  
	  .footer-copy {
  margin-bottom: 24px;
}

.footer-copy p + p {
  margin-top: 16px;
}

      .footer-links {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0;
}

      .footer-links a {
        font-size: 15px;
      }

      .site-footer p {
        font-size: 14px;
        line-height: 1.7;
      }
	  
	  .price-examples {
  margin: 14px 0 16px 20px;
  font-size: 14px;
  line-height: 1.7;
}

	
	.faq-section {
        padding: 62px 18px 70px;
      }

      .faq-heading {
        margin-bottom: 28px;
      }

      .faq-heading p {
        font-size: 16px;
      }

      .faq-item summary {
        padding: 20px 58px 20px 18px;
        font-size: 17px;
      }

      .faq-item summary::after {
        right: 18px;
        width: 30px;
        height: 30px;
        font-size: 22px;
      }

      .faq-item p {
        padding: 0 18px 20px;
        font-size: 15px;
      }

	
	.cover-types-section {
        padding: 62px 18px 70px;
      }

      .cover-types-heading {
        margin-bottom: 28px;
      }

      .cover-types-heading p {
        font-size: 16px;
      }

      .cover-types-grid {
        grid-template-columns: 1fr;
      }

      .cover-type-info-card {
        min-height: auto;
        padding: 24px 20px 20px;
      }
  
  .why-section {
        padding: 58px 18px 64px;
      }

      .why-section h2 {
        margin-bottom: 30px;
      }

      .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        justify-items: center;
      }

      .why-card {
        width: min(100%, 340px);
        padding: 34px;
      }

      .why-card p {
        font-size: 16px;
      }
  
  
      .logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
      }

      .logo-pill {
        height: 64px;
        padding: 12px 14px;
      }

      .logo-pill img {
        max-height: 30px;
      }

      body { padding: 0; }
      .page-wrap { border-radius: 0; }
      .nav { padding: 22px 18px; }
      .logo { font-size: 18px; }
      .nav-cta { padding: 12px 18px; }
      .hero { padding: 44px 18px 58px; }
      h1 {
  font-size: clamp(34px, 9vw, 48px);
  line-height: 1;
  letter-spacing: -0.055em;
}
      .badge-row,
.hero-arrow {
  display: none;
}
      .subtext { font-size: 16px; }
      .visual-panel { min-height: auto; }
      .form-grid { grid-template-columns: 1fr; }
      .cover-type-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
	
	@media (min-width: 401px) and (max-width: 520px) {
  .form-submit {
    font-size: 20px;
    padding: 22px 28px;
  }
}

@media (max-width: 400px) {
  .form-submit {
    font-size: 18px;
    padding: 18px 22px;
  }
}

    @media (max-width: 520px) {
    .mobile-hero-points {
  margin-top: 16px;
  gap: 7px;
}

.mobile-hero-points div {
  font-size: 13px;
  padding: 6px 10px;
}

.mobile-hero-points span {
  width: 18px;
  height: 18px;
  font-size: 11px;
}
	
	.security-badges {
    gap: 14px;
    margin: 14px auto 10px;
  }

  .security-badges img {
    height: 38px;
  }
  
  .security-badges img.godaddy-badge {
  height: 58px;
}

.form-note {
    margin-top: 6px;
  }
  
  
	.fca-popup {
    bottom: 18px;
    padding: 20px 46px 20px 20px;
  }

  .fca-popup p {
    font-size: 14px;
  }
  
  .legal-cta-link {
    margin: 10px 0 16px;
    padding: 13px 20px;
    font-size: 15px;
  }
	  .cover-for-grid { grid-template-columns: 1fr; }
      .logo-mark { width: 34px; height: 34px; }
      .nav { align-items: flex-start; }
      .nav-cta { font-size: 13px; padding: 11px 14px; }
	  h1 {
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.045em;
}
      .quote-card { padding: 18px; border-radius: 26px; }
      .hero { padding-top: 30px; }
      .cover-type-grid { grid-template-columns: 1fr; }
      .cover-type-content { min-height: 92px; }
    }
	
	@media (max-width: 374px) {
  h1 {
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -0.035em;
  }
}
