:root {
  --ink: #071d39;
  --muted: #52657b;
  --blue: #075aaa;
  --blue-2: #0a73d2;
  --blue-soft: #eaf5ff;
  --gold: #f5a126;
  --gold-dark: #e5860a;
  --line: #dbe6ef;
  --paper: #f7fbff;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(219, 230, 239, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(7, 29, 57, 0.13);
}

.brand span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand strong {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
}

.site-header nav a {
  position: relative;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--gold), #ffb943);
  box-shadow: 0 13px 30px rgba(229, 134, 10, 0.23);
  color: #11223b;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button::after {
  position: absolute;
  top: -60%;
  left: -45%;
  width: 28%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  content: "";
  transform: rotate(18deg);
  transition: left 500ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 16px 36px rgba(229, 134, 10, 0.34);
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after {
  left: 120%;
}

.button-small {
  min-height: 44px;
  padding-inline: 19px;
}

.hero {
  display: grid;
  grid-template-columns: 1.07fr 0.93fr;
  gap: 70px;
  align-items: center;
  min-height: 720px;
  padding-block: 68px 62px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 29px;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  margin: 0;
  font-size: clamp(52px, 5.25vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin: 29px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 32px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
  font-size: 14px;
  font-weight: 800;
}

.text-link span {
  color: var(--blue);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 39px 0 0;
  padding: 23px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-facts li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 18px;
  border-left: 2px solid var(--blue-soft);
}

.hero-facts li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-facts strong {
  font-size: 13px;
}

.hero-facts span {
  color: var(--muted);
  font-size: 11px;
}

.hero-copy {
  animation: hero-copy-in 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-visual {
  position: relative;
  min-height: 565px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 255, 255, 0.96) 0 8%, transparent 8.2%),
    linear-gradient(145deg, #dceeff 0%, #8ac9ff 60%, #4b9ee9 100%);
  isolation: isolate;
  animation: hero-visual-in 850ms 100ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-visual::before {
  position: absolute;
  inset: 24px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 25px;
  content: "";
}

.hero-visual::after {
  position: absolute;
  top: 34px;
  right: 42px;
  z-index: -1;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  content: "";
  animation: orbit-pulse 5.5s ease-in-out infinite;
}

.portrait-frame {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  height: 100%;
  border-radius: 34px;
}

.portrait-frame img {
  position: absolute;
  right: -18px;
  bottom: -30px;
  width: 94%;
  height: auto;
  filter: saturate(0.96) contrast(1.03);
}

.advisor-card,
.rating-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 55px rgba(7, 29, 57, 0.2);
  backdrop-filter: blur(15px);
}

.advisor-card {
  right: -30px;
  bottom: 43px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 19px;
  border-radius: 16px;
  animation: float-card 4.6s ease-in-out infinite;
}

.advisor-card div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.advisor-card small,
.rating-card small {
  color: var(--muted);
  font-size: 10px;
}

.advisor-card strong {
  font-size: 13px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #16b266;
  box-shadow: 0 0 0 6px rgba(22, 178, 102, 0.13);
}

.rating-card {
  top: 40px;
  left: -36px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 15px 19px;
  border-radius: 14px;
  animation: float-card 4.6s 1.1s ease-in-out infinite reverse;
}

.rating-card strong {
  font-size: 17px;
}

.rating-card strong span {
  color: var(--gold-dark);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: var(--paper);
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
}

.proof-bar p {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 84px;
  margin: 0;
  padding: 0 28px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.proof-bar p:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-bar p > span {
  margin-right: 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.proof-bar strong {
  color: var(--ink);
}

.section {
  padding-block: 110px;
  scroll-margin-top: 82px;
}

.section-heading {
  margin-bottom: 48px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: end;
}

.section h2,
.dark-section h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.split-heading > p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 30px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.product-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue-2));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  z-index: 2;
  background: var(--blue-soft);
  box-shadow: 0 22px 50px rgba(7, 29, 57, 0.12);
  outline: none;
  transform: translateY(-4px);
}

.product-card:hover::before,
.product-card:focus-visible::before {
  transform: scaleX(1);
}

.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-top small {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.product-top i {
  color: #a6b5c3;
  font-size: 11px;
  font-style: normal;
}

.product-card > strong {
  margin-top: 46px;
  font-size: 23px;
  line-height: 1.1;
}

.product-copy {
  margin-top: 15px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.product-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 26px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.product-link b {
  font-size: 17px;
}

.dark-section {
  padding-block: 110px;
  background:
    linear-gradient(120deg, rgba(10, 115, 210, 0.3), transparent 38%, rgba(245, 161, 38, 0.09) 72%, transparent),
    #061c36;
  background-size: 190% 190%;
  color: var(--white);
  scroll-margin-top: 76px;
  animation: dark-gradient 12s ease-in-out infinite alternate;
}

.dark-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 95px;
  align-items: center;
}

.eyebrow.light {
  color: #9ed0ff;
}

.dark-copy > p:not(.eyebrow) {
  margin: 28px 0 34px;
  color: #b9c9d9;
  font-size: 16px;
  line-height: 1.7;
}

.button-light {
  background: var(--white);
  box-shadow: none;
  color: var(--ink);
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.process-list li > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
}

.process-list strong {
  font-size: 18px;
}

.process-list p {
  margin: 7px 0 0;
  color: #aebfd0;
  font-size: 13px;
  line-height: 1.6;
}

.quote-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 85px;
  align-items: start;
}

.quote-intro {
  position: sticky;
  top: 120px;
}

.quote-intro > p:not(.eyebrow) {
  margin: 24px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.response-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.response-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.response-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.response-note strong {
  color: var(--ink);
  font-size: 13px;
}

.quote-form {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 26px 60px rgba(7, 29, 57, 0.08);
}

.quote-form fieldset {
  margin: 0 0 30px;
  padding: 0;
  border: 0;
}

.quote-form legend,
.quote-form label > span {
  display: block;
  margin-bottom: 11px;
  font-size: 12px;
  font-weight: 800;
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice {
  min-height: 39px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.choice.active {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quote-form label {
  display: block;
  margin-bottom: 22px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #cddbe7;
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.quote-form input,
.quote-form select {
  height: 49px;
  padding: 0 14px;
}

.quote-form select {
  appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--blue) 50%),
    linear-gradient(135deg, var(--blue) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 21px,
    calc(100% - 13px) 21px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.quote-form textarea {
  min-height: 112px;
  padding: 14px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(10, 115, 210, 0.11);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #8696a7;
}

.form-submit {
  width: 100%;
}

.auto-quote-fields {
  margin: -4px 0 24px;
  padding: 22px;
  border: 1px solid rgba(10, 115, 210, 0.14);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(10, 115, 210, 0.06), rgba(255, 255, 255, 0.96));
}

.auto-quote-helper,
.auto-quote-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.auto-quote-helper {
  margin-bottom: 18px;
  font-size: 13px;
}

.auto-quote-grid {
  margin-bottom: 0;
}

.auto-quote-note {
  font-size: 11px;
}

.form-privacy {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.reviews-section {
  background: var(--paper);
}

.review-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.review-heading h2 {
  max-width: 710px;
}

.google-rating {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 9px;
  align-items: center;
  min-width: 160px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.google-rating strong {
  font-size: 23px;
}

.google-rating > span {
  color: var(--gold-dark);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.google-rating small {
  grid-column: 1 / -1;
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.reviews-grid article {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.stars {
  color: var(--gold-dark);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.reviews-grid blockquote {
  margin: 24px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.reviews-grid article > p {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: auto 0 0;
  font-size: 11px;
}

.reviews-grid article small {
  color: var(--muted);
}

.faq-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  align-items: start;
}

.faq-title {
  position: sticky;
  top: 120px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 18px;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 620px;
  margin: -5px 0 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.companies {
  border-block: 1px solid var(--line);
  background: var(--paper);
  padding-block: 46px 42px;
}

.company-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 27px;
}

.company-heading .eyebrow {
  margin: 0;
}

.company-heading small {
  color: var(--muted);
  font-size: 11px;
}

.company-marquee {
  overflow: hidden;
  width: 100%;
  padding-block: 4px 12px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.company-track {
  display: flex;
  width: max-content;
  animation: company-scroll 28s linear infinite;
}

.company-marquee:hover .company-track {
  animation-play-state: paused;
}

.company-group {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}

.company-group span {
  display: grid;
  width: 205px;
  height: 88px;
  place-items: center;
  padding: 21px 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(7, 29, 57, 0.05);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.company-group span:hover {
  border-color: #b8d7f0;
  box-shadow: 0 13px 28px rgba(7, 29, 57, 0.1);
  transform: translateY(-4px);
}

.company-group img {
  display: block;
  width: 100%;
  max-width: 150px;
  max-height: 45px;
  object-fit: contain;
}

.final-cta {
  padding-block: 84px;
  background: var(--blue);
  color: var(--white);
}

.final-cta-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.final-cta h2 {
  max-width: 800px;
}

footer {
  padding-block: 65px 30px;
  background: #04152a;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 60px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid .brand small,
.footer-grid > div > p,
.footer-grid > div > a,
.footer-brand > p {
  margin: 0;
  color: #9db0c3;
  font-size: 12px;
  line-height: 1.6;
}

.footer-brand > p {
  max-width: 340px;
  margin-top: 9px;
}

.footer-grid > div > strong {
  margin-bottom: 7px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-grid > div > a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #7f94a8;
  font-size: 10px;
}

.mobile-whatsapp {
  display: none;
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-visual-in {
  from { opacity: 0; transform: translateX(30px) scale(0.98); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes orbit-pulse {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-18px, 18px) scale(1.08); }
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes dark-gradient {
  from { background-position: 0% 30%; }
  to { background-position: 100% 70%; }
}

@keyframes company-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes reveal-on-scroll {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@supports (animation-timeline: view()) {
  .section-heading,
  .product-card,
  .dark-copy,
  .process-list li,
  .quote-form,
  .reviews-grid article,
  .faq-list details {
    animation: reveal-on-scroll linear both;
    animation-timeline: view();
    animation-range: entry 6% cover 28%;
  }
}

@media (max-width: 980px) {
  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 0.9fr;
    gap: 34px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .advisor-card {
    right: 18px;
  }

  .rating-card {
    left: -12px;
  }

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

  .dark-grid,
  .quote-section,
  .faq-section {
    gap: 52px;
  }

  .split-heading {
    gap: 45px;
  }
}

@media (max-width: 760px) {
  .section-shell {
    width: min(100% - 32px, 620px);
  }

  .site-header {
    height: 68px;
    padding-inline: 16px;
  }

  .site-header .button {
    display: none;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: unset;
    padding-block: 52px 42px;
  }

  .hero h1 {
    font-size: clamp(40px, 11.8vw, 56px);
    letter-spacing: -0.045em;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-actions .text-link {
    align-self: center;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-facts li,
  .hero-facts li:first-child {
    padding-left: 14px;
    border-left: 2px solid var(--blue-soft);
  }

  .hero-visual {
    min-height: 470px;
  }

  .portrait-frame img {
    right: -10px;
    bottom: -16px;
    width: 106%;
  }

  .rating-card {
    top: 24px;
    left: 16px;
  }

  .advisor-card {
    right: 16px;
    bottom: 24px;
  }

  .proof-bar {
    grid-template-columns: 1fr;
    padding-inline: 16px;
  }

  .proof-bar p,
  .proof-bar p:first-child {
    min-height: 68px;
    padding: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .proof-bar p:first-child {
    border-top: 0;
  }

  .section,
  .dark-section {
    padding-block: 78px;
  }

  .split-heading,
  .dark-grid,
  .quote-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 25px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 270px;
  }

  .dark-grid,
  .quote-section,
  .faq-section {
    gap: 50px;
  }

  .quote-intro,
  .faq-title {
    position: static;
  }

  .quote-form {
    padding: 24px 18px;
  }

  .auto-quote-fields {
    padding: 18px 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .review-heading,
  .final-cta-inner,
  .company-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid article {
    min-height: 240px;
  }

  .company-heading {
    gap: 20px;
  }

  .company-heading small {
    line-height: 1.5;
  }

  .company-group span {
    width: 175px;
    height: 76px;
    padding: 18px 22px;
  }

  .company-track {
    animation-duration: 22s;
  }

  .final-cta-inner .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  footer {
    padding-bottom: 100px;
  }

  .mobile-whatsapp {
    position: fixed;
    z-index: 60;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    border-radius: 12px;
    background: #20b967;
    box-shadow: 0 14px 35px rgba(2, 32, 20, 0.28);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-whatsapp span {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    animation-timeline: auto !important;
    transition-duration: 0.01ms !important;
  }
}
/* Seguro para vehículos que trabajan con aplicaciones */
.app-driver-section{position:relative;overflow:hidden;margin-top:28px;background:radial-gradient(circle at 84% 15%,rgba(46,140,238,.5),transparent 34%),linear-gradient(135deg,#041426,#0b559f,#063666);background-size:160% 160%;color:#fff;border-top:5px solid #2b9cff;border-bottom:5px solid #2b9cff;animation:app-gradient 11s ease-in-out infinite alternate}.app-driver-section::before,.app-driver-section::after{position:absolute;border:1px solid rgba(255,255,255,.13);border-radius:50%;content:"";pointer-events:none}.app-driver-section::before{top:-160px;right:-80px;width:430px;height:430px;animation:app-orbit 10s ease-in-out infinite}.app-driver-section::after{bottom:-210px;left:-100px;width:520px;height:520px;animation:app-orbit 13s 1.5s ease-in-out infinite reverse}.app-driver-grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1.25fr) minmax(300px,.75fr);gap:56px;align-items:center;padding-top:78px;padding-bottom:78px}.app-feature-label{display:inline-flex;margin-bottom:18px;padding:8px 13px;border-radius:999px;background:#ff8a00;color:#071b32;font-size:12px;font-weight:950;letter-spacing:.11em;box-shadow:0 8px 25px rgba(255,138,0,.32);animation:feature-pulse 2.8s ease-in-out infinite}.app-driver-copy h2{max-width:800px;margin:12px 0 16px;color:#fff;font-size:clamp(36px,4vw,62px);line-height:1.02}.app-driver-copy .app-lead{max-width:760px;color:rgba(255,255,255,.9);font-size:19px;line-height:1.65}.app-driver-copy .app-lead strong{color:#fff}.app-condition{display:inline-block;margin:10px 0 25px;padding:13px 17px;border:1px solid rgba(255,255,255,.32);border-radius:12px;background:rgba(255,255,255,.13);font-size:16px}.app-driver-copy .button{display:flex;width:max-content}.app-main-button{box-shadow:0 14px 34px rgba(0,0,0,.25)}.app-visual{padding:24px;border:1px solid rgba(255,255,255,.24);border-radius:24px;background:rgba(255,255,255,.11);box-shadow:0 24px 60px rgba(0,0,0,.2);backdrop-filter:blur(8px);text-align:center;animation:app-card-float 5s ease-in-out infinite}.app-visual>p{margin:0 0 15px;color:rgba(255,255,255,.72);font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.1em}.app-visual>strong{display:block;margin-top:17px;color:#fff;font-size:13px;line-height:1.4}.app-logos{display:grid;gap:14px}.app-logo{display:flex;align-items:center;justify-content:center;width:240px;max-width:100%;height:82px;padding:14px 22px;justify-self:center;border:1px solid rgba(255,255,255,.78);border-radius:14px;background:#fff;box-shadow:0 12px 28px rgba(0,0,0,.24);transition:transform .25s ease,box-shadow .25s ease}.app-logo img{display:block;max-width:100%;max-height:52px;object-fit:contain}.app-logo:hover{transform:scale(1.045) translateX(-3px);box-shadow:0 18px 36px rgba(0,0,0,.3)}.app-logo:nth-child(1){animation:logo-slide 5s ease-in-out infinite}.app-logo:nth-child(2){animation:logo-slide 5s .35s ease-in-out infinite}.app-logo:nth-child(3){animation:logo-slide 5s .7s ease-in-out infinite}
.product-card{animation:card-soft-enter .65s both}.product-card:nth-child(2n){animation-delay:.08s}.product-card:nth-child(3n){animation-delay:.16s}.button{overflow:hidden}.button::after{position:absolute;top:-50%;left:-70%;width:34%;height:200%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.42),transparent);transform:skewX(-20deg);content:"";animation:button-shine 5.5s ease-in-out infinite}
.app-brands-inline{display:none;gap:7px;margin:0 0 18px}.app-brands-inline span{display:flex;align-items:center;justify-content:center;min-width:82px;height:44px;padding:7px 10px;border:1px solid rgba(255,255,255,.75);border-radius:9px;background:#fff;box-shadow:0 8px 18px rgba(0,0,0,.2)}.app-brands-inline img{display:block;max-width:100%;max-height:28px;object-fit:contain}
.app-brands-inline span:first-child{background:#000}.app-brands-inline .uber-word-logo{width:78px;max-height:23px}
.app-logo-uber-official{height:82px;background:#000}.app-logo-uber-official img{max-height:52px}
@keyframes app-gradient{from{background-position:0 30%}to{background-position:100% 70%}}@keyframes app-orbit{0%,100%{transform:translate(0,0) scale(1)}50%{transform:translate(-28px,22px) scale(1.08)}}@keyframes feature-pulse{0%,100%{transform:scale(1);box-shadow:0 8px 25px rgba(255,138,0,.25)}50%{transform:scale(1.04);box-shadow:0 10px 35px rgba(255,138,0,.48)}}@keyframes app-card-float{0%,100%{transform:translateY(0) rotate(.25deg)}50%{transform:translateY(-9px) rotate(-.25deg)}}@keyframes logo-slide{0%,100%{transform:translateX(0)}50%{transform:translateX(-7px)}}@keyframes card-soft-enter{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:translateY(0)}}@keyframes button-shine{0%,62%{left:-70%}85%,100%{left:140%}}
@media(max-width:900px){.app-driver-grid{grid-template-columns:1fr;gap:34px;padding-top:54px;padding-bottom:54px}.app-brands-inline{display:flex}.app-logos{grid-template-columns:repeat(3,1fr);gap:9px}.app-logo{width:100%;padding:12px}.app-logo img{max-height:42px}.app-logo-uber-official{height:82px}.app-logo-uber-official img{max-height:46px}}
@media(max-width:600px){.hero-copy,.hero-visual{min-width:0;width:100%}.hero-visual{overflow:hidden}.app-driver-section{scroll-margin-top:68px;margin-top:20px}.app-brands-inline{display:grid;grid-template-columns:repeat(3,1fr);width:100%}.app-brands-inline span{min-width:0;width:100%;padding:7px}.app-brands-inline img{max-height:25px}.app-brands-inline .uber-word-logo{width:76px;max-height:22px}.app-driver-copy .app-lead{font-size:16px}.app-condition{display:block}.app-driver-copy .button{width:100%;justify-content:center;text-align:center}.app-logos{grid-template-columns:1fr}.app-logo{width:210px;height:76px;padding:13px 20px}.app-logo img{max-height:48px}.app-logo-uber-official{height:76px}.app-logo-uber-official img{max-height:43px}}

/* Rediseño visual integral v11 */
:root {
  --ink: #07182e;
  --muted: #5a6f87;
  --blue: #0a66c2;
  --blue-2: #20a8ff;
  --blue-soft: #eaf5ff;
  --gold: #e3b45e;
  --gold-dark: #b87913;
  --line: #d8e5f0;
  --paper: #f3f8fd;
  --white: #ffffff;
  --navy: #031326;
  --navy-2: #082847;
  --violet: #5b4bc4;
  --shadow-soft: 0 20px 55px rgba(7, 24, 46, 0.09);
  --shadow-deep: 0 30px 80px rgba(2, 15, 31, 0.28);
}

body {
  background:
    radial-gradient(circle at 6% 28%, rgba(32, 168, 255, 0.07), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 48%, #ffffff 100%);
  font-family: Inter, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

::selection {
  background: rgba(32, 168, 255, 0.28);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid rgba(32, 168, 255, 0.55);
  outline-offset: 3px;
}

.site-header {
  height: 82px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 19, 38, 0.93);
  box-shadow: 0 12px 38px rgba(1, 12, 27, 0.2);
  color: #fff;
  backdrop-filter: blur(20px) saturate(135%);
}

.site-header .brand img {
  border: 1px solid rgba(227, 180, 94, 0.55);
  box-shadow: 0 0 0 4px rgba(227, 180, 94, 0.08), 0 10px 26px rgba(0, 0, 0, 0.28);
}

.site-header .brand strong {
  color: #fff;
}

.site-header .brand small {
  color: rgba(255, 255, 255, 0.62);
}

.site-header nav {
  color: rgba(255, 255, 255, 0.82);
}

.site-header nav a {
  transition: color 180ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: #fff;
}

.site-header nav a::after {
  background: linear-gradient(90deg, var(--gold), #76d5ff);
}

.button {
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 14px;
  background: linear-gradient(135deg, #f0c56f 0%, #d99b31 100%);
  box-shadow: 0 15px 34px rgba(185, 121, 19, 0.26);
  color: #101c2c;
  letter-spacing: 0.01em;
}

.button-small {
  min-height: 45px;
  border-radius: 12px;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 19px 40px rgba(185, 121, 19, 0.36);
  transform: translateY(-3px);
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 750px;
  padding-block: 78px 72px;
  color: #fff;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: -2;
  width: 100vw;
  background:
    radial-gradient(circle at 77% 17%, rgba(52, 180, 255, 0.29), transparent 25%),
    radial-gradient(circle at 12% 84%, rgba(98, 73, 211, 0.25), transparent 30%),
    linear-gradient(128deg, #020f20 0%, #06264a 54%, #171745 100%);
  content: "";
  transform: translateX(-50%);
}

.hero::after {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: -1;
  width: 100vw;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 100%);
  pointer-events: none;
  transform: translateX(-50%);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero .eyebrow {
  color: #8fd8ff;
}

.hero h1 {
  color: #fff;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.hero h1 em {
  background: linear-gradient(90deg, #f5cf82 0%, #8fddff 75%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  color: rgba(231, 241, 252, 0.81);
}

.hero .text-link {
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.88);
}

.hero .text-link span {
  color: #8fddff;
}

.hero-facts {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.hero-facts li,
.hero-facts li:first-child {
  border-left-color: rgba(143, 221, 255, 0.25);
}

.hero-facts strong {
  color: #fff;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.56);
}

.hero-visual {
  min-height: 585px;
  border: 1px solid rgba(227, 180, 94, 0.58);
  border-radius: 38px;
  background:
    radial-gradient(circle at 82% 15%, rgba(255, 255, 255, 0.95) 0 8%, transparent 8.4%),
    linear-gradient(150deg, #f8fcff 0%, #c7e5ff 55%, #72b7ef 100%);
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.045),
    0 38px 90px rgba(0, 8, 24, 0.36),
    0 0 65px rgba(32, 168, 255, 0.15);
}

.hero-visual::before {
  inset: 20px;
  border-color: rgba(255, 255, 255, 0.86);
  border-radius: 29px;
}

.hero-visual::after {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(143, 221, 255, 0.35));
  box-shadow: 0 0 45px rgba(255, 255, 255, 0.45);
}

.portrait-frame {
  border-radius: 38px;
}

.portrait-frame img {
  filter: saturate(0.96) contrast(1.04) drop-shadow(0 14px 18px rgba(3, 19, 38, 0.11));
}

.advisor-card,
.rating-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(4, 24, 47, 0.9);
  box-shadow: 0 22px 55px rgba(0, 10, 25, 0.32);
  color: #fff;
  backdrop-filter: blur(18px) saturate(125%);
}

.advisor-card small,
.rating-card small {
  color: rgba(255, 255, 255, 0.6);
}

.rating-card strong span {
  color: #f1c46f;
}

.proof-bar {
  border-block-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, #04182e, #082c50 52%, #0b2142);
  box-shadow: 0 14px 40px rgba(2, 15, 31, 0.16);
}

.proof-bar p {
  border-left-color: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.6);
}

.proof-bar p > span {
  color: var(--gold);
}

.proof-bar strong {
  color: #fff;
}

.section {
  padding-block: 118px;
}

.section-heading {
  margin-bottom: 54px;
}

.section h2,
.dark-section h2,
.final-cta h2 {
  font-weight: 850;
}

#seguros {
  position: relative;
}

#seguros::before {
  position: absolute;
  top: 55px;
  right: -110px;
  z-index: -1;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: rgba(32, 168, 255, 0.08);
  filter: blur(20px);
  content: "";
}

.product-grid {
  gap: 18px;
  border: 0;
}

.product-card {
  min-height: 286px;
  padding: 28px;
  border: 1px solid rgba(193, 211, 226, 0.82);
  border-radius: 20px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 254, 0.98));
  box-shadow: 0 12px 34px rgba(7, 24, 46, 0.055);
}

.product-card::before {
  height: 4px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--gold), var(--blue-2), var(--violet));
  transform: scaleX(0.24);
}

.product-card::after {
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32, 168, 255, 0.12), transparent 68%);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease, transform 260ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: rgba(32, 168, 255, 0.42);
  background: linear-gradient(150deg, #ffffff, #eaf6ff);
  box-shadow: 0 24px 55px rgba(7, 44, 82, 0.14);
  transform: translateY(-7px);
}

.product-card:hover::after,
.product-card:focus-visible::after {
  opacity: 1;
  transform: scale(1.18);
}

.product-card:hover::before,
.product-card:focus-visible::before {
  transform: scaleX(1);
}

.product-top small {
  padding: 7px 10px;
  border: 1px solid rgba(10, 102, 194, 0.13);
  border-radius: 999px;
  background: rgba(10, 102, 194, 0.07);
  color: var(--blue);
}

.product-top i {
  color: rgba(10, 102, 194, 0.3);
  font-size: 19px;
  font-weight: 800;
}

.product-card > strong {
  margin-top: 34px;
  font-size: 24px;
}

.product-link {
  position: relative;
  z-index: 1;
  color: var(--blue);
}

.dark-section {
  position: relative;
  overflow: hidden;
  padding-block: 120px;
  background:
    radial-gradient(circle at 9% 14%, rgba(32, 168, 255, 0.25), transparent 27%),
    radial-gradient(circle at 92% 84%, rgba(91, 75, 196, 0.26), transparent 29%),
    linear-gradient(125deg, #021225, #092b50 58%, #16163e);
  animation: premium-gradient 16s ease-in-out infinite alternate;
}

.dark-section::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.035) 50%, transparent 60%);
  background-size: 220% 100%;
  content: "";
  animation: premium-sheen 13s ease-in-out infinite;
  pointer-events: none;
}

.dark-grid {
  position: relative;
  z-index: 1;
}

.dark-copy > p:not(.eyebrow) {
  color: rgba(224, 237, 250, 0.7);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.55);
  background: linear-gradient(135deg, #ffffff, #eaf5ff);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.15);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  border: 0;
}

.process-list li {
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(10px);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.process-list li:hover {
  border-color: rgba(143, 221, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.process-list li > span {
  color: var(--gold);
}

.process-list p {
  color: rgba(222, 236, 249, 0.62);
}

.app-driver-section {
  width: min(1320px, calc(100% - 32px));
  margin: 76px auto 0;
  border: 1px solid rgba(227, 180, 94, 0.42);
  border-radius: 34px;
  background:
    radial-gradient(circle at 83% 12%, rgba(48, 178, 255, 0.34), transparent 28%),
    radial-gradient(circle at 5% 100%, rgba(102, 72, 217, 0.29), transparent 30%),
    linear-gradient(133deg, #04162c 0%, #0b3f76 57%, #201849 100%);
  box-shadow: var(--shadow-deep);
}

.app-driver-section::before,
.app-driver-section::after {
  border-color: rgba(255, 255, 255, 0.1);
}

.app-driver-grid {
  padding-top: 82px;
  padding-bottom: 82px;
}

.app-feature-label {
  background: linear-gradient(135deg, #f0c56f, #d99b31);
  color: #152237;
  box-shadow: 0 10px 30px rgba(217, 155, 49, 0.27);
}

.app-driver-copy h2 {
  text-wrap: balance;
}

.app-condition {
  border-color: rgba(143, 221, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
}

.app-visual {
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  box-shadow: 0 28px 70px rgba(0, 8, 22, 0.31);
}

.app-logo {
  border-color: rgba(255, 255, 255, 0.72);
  border-radius: 17px;
  box-shadow: 0 13px 34px rgba(0, 0, 0, 0.25);
}

.quote-section {
  margin-top: 80px;
  margin-bottom: 80px;
  padding: 74px 58px;
  border: 1px solid rgba(193, 211, 226, 0.8);
  border-radius: 32px;
  background:
    radial-gradient(circle at 98% 0%, rgba(32, 168, 255, 0.14), transparent 31%),
    linear-gradient(145deg, #f4f9fe, #ffffff 63%);
  box-shadow: var(--shadow-soft);
}

.quote-intro h2 {
  text-wrap: balance;
}

.response-note {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 26px rgba(7, 24, 46, 0.05);
}

.response-icon {
  background: linear-gradient(145deg, var(--navy-2), var(--blue));
  box-shadow: 0 8px 22px rgba(10, 102, 194, 0.25);
}

.quote-form {
  padding: 40px;
  border-color: rgba(193, 211, 226, 0.85);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 70px rgba(7, 24, 46, 0.12);
  backdrop-filter: blur(14px);
}

.choice {
  min-height: 41px;
  border-radius: 10px;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.choice:hover,
.choice:focus-visible {
  border-color: rgba(10, 102, 194, 0.4);
  transform: translateY(-1px);
}

.choice.active {
  border-color: var(--blue);
  background: linear-gradient(135deg, var(--blue), #084a8d);
  box-shadow: 0 8px 20px rgba(10, 102, 194, 0.2);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  border-radius: 12px;
  background-color: #fbfdff;
}

.quote-form input,
.quote-form select {
  height: 52px;
}

.reviews-section {
  border-block: 1px solid rgba(193, 211, 226, 0.7);
  background:
    radial-gradient(circle at 10% 5%, rgba(32, 168, 255, 0.11), transparent 27%),
    linear-gradient(180deg, #eef6fd, #f8fbfe);
}

.google-rating {
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(7, 24, 46, 0.08);
}

.reviews-grid {
  gap: 20px;
}

.reviews-grid article {
  position: relative;
  overflow: hidden;
  min-height: 285px;
  border-color: rgba(193, 211, 226, 0.8);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(7, 24, 46, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.reviews-grid article::before {
  position: absolute;
  top: -13px;
  right: 16px;
  color: rgba(10, 102, 194, 0.07);
  content: "“";
  font-family: Georgia, serif;
  font-size: 118px;
  line-height: 1;
}

.reviews-grid article:hover {
  box-shadow: 0 23px 54px rgba(7, 24, 46, 0.12);
  transform: translateY(-5px);
}

.reviews-grid blockquote,
.reviews-grid article > p,
.reviews-grid .stars {
  position: relative;
  z-index: 1;
}

.faq-section {
  gap: 80px;
}

.faq-list {
  display: grid;
  gap: 12px;
  border-top: 0;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid rgba(193, 211, 226, 0.82);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(7, 24, 46, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-list details[open] {
  border-color: rgba(10, 102, 194, 0.35);
  box-shadow: 0 16px 36px rgba(7, 42, 78, 0.09);
}

.faq-list summary {
  min-height: 78px;
  padding: 0 20px 0 22px;
}

.faq-list details p {
  margin: -3px 0 0;
  padding: 0 62px 25px 22px;
}

.companies {
  overflow: hidden;
  border-block-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 88% 0%, rgba(32, 168, 255, 0.18), transparent 25%),
    linear-gradient(120deg, #031326, #082846);
}

.companies .eyebrow {
  color: #9edcff;
}

.companies .company-heading small {
  color: rgba(255, 255, 255, 0.55);
}

.company-group span {
  border-color: rgba(255, 255, 255, 0.19);
  border-radius: 17px;
  box-shadow: 0 14px 35px rgba(0, 7, 18, 0.22);
}

.company-group span:hover {
  border-color: rgba(143, 221, 255, 0.72);
  box-shadow: 0 18px 42px rgba(0, 6, 16, 0.32);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 96px;
  border-top: 1px solid rgba(227, 180, 94, 0.38);
  background:
    radial-gradient(circle at 81% 15%, rgba(91, 75, 196, 0.38), transparent 28%),
    radial-gradient(circle at 8% 100%, rgba(32, 168, 255, 0.25), transparent 32%),
    linear-gradient(125deg, #051a33, #0a4380 58%, #1c1749);
}

.final-cta::after {
  position: absolute;
  top: -130px;
  right: -80px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.final-cta-inner {
  position: relative;
  z-index: 1;
}

footer {
  background: #020d1b;
}

.footer-grid .brand img {
  border: 1px solid rgba(227, 180, 94, 0.32);
}

.mobile-whatsapp {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: linear-gradient(135deg, #22bd6b, #15964f);
  box-shadow: 0 18px 42px rgba(2, 32, 20, 0.34);
}

@keyframes premium-gradient {
  from { background-position: 0% 20%; }
  to { background-position: 100% 80%; }
}

@keyframes premium-sheen {
  0%, 50% { background-position: 180% 0; }
  85%, 100% { background-position: -120% 0; }
}

@media (max-width: 980px) {
  .hero {
    gap: 42px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .quote-section {
    gap: 52px;
    padding-inline: 38px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 70px;
  }

  .hero {
    padding-block: 56px 48px;
  }

  .hero::after {
    opacity: 0.55;
    mask-image: linear-gradient(180deg, transparent, #000 30%, #000 100%);
  }

  .hero-visual {
    min-height: 485px;
    border-radius: 27px;
  }

  .portrait-frame {
    border-radius: 27px;
  }

  .proof-bar p,
  .proof-bar p:first-child {
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .section,
  .dark-section {
    padding-block: 82px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .product-grid {
    gap: 14px;
  }

  .product-card {
    min-height: 248px;
  }

  .app-driver-section {
    width: calc(100% - 20px);
    margin-top: 46px;
    border-radius: 24px;
  }

  .app-driver-grid {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .quote-section {
    width: calc(100% - 24px);
    margin-top: 52px;
    margin-bottom: 52px;
    padding: 54px 20px;
    border-radius: 24px;
  }

  .quote-form {
    padding: 26px 18px;
    border-radius: 20px;
  }

  .reviews-grid article {
    min-height: 240px;
  }

  .faq-list summary {
    min-height: 74px;
    padding-left: 17px;
    font-size: 15px;
  }

  .faq-list details p {
    padding-right: 45px;
    padding-left: 17px;
  }

  .final-cta {
    padding-block: 80px;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: clamp(35px, 10.5vw, 44px);
    letter-spacing: -0.055em;
  }

  .hero-visual {
    min-height: 450px;
  }

  .advisor-card {
    right: 12px;
    bottom: 18px;
    padding: 13px 15px;
  }

  .rating-card {
    top: 18px;
    left: 12px;
    padding: 13px 15px;
  }

  .app-driver-copy h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .app-visual {
    padding: 21px 15px;
  }

  .review-heading h2,
  .faq-title h2 {
    font-size: clamp(36px, 10vw, 47px);
  }
}
