:root {
  --navy: #06245c;
  --navy-deep: #021742;
  --blue: #0f6bdc;
  --teal: #05a9a8;
  --teal-dark: #00798d;
  --green: #25b46f;
  --purple: #7652d8;
  --ink: #071a3e;
  --muted: #51607c;
  --line: #dbe8f3;
  --soft: #eef9fb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 36, 92, 0.16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(5, 169, 168, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(15, 107, 220, 0.18), transparent 24rem),
    linear-gradient(135deg, #eaf7fb 0%, #ffffff 48%, #eaf5ff 100%);
  font-family: "Poppins", sans-serif;
  line-height: 1.38;
}

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

img,
svg {
  display: block;
}

.phone-page {
  position: relative;
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 28px 26px 104px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(6, 36, 92, 0.05), 0 28px 90px rgba(6, 36, 92, 0.18);
}

.phone-page::before {
  position: absolute;
  top: -140px;
  right: -220px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 190, 199, 0.13), transparent 66%);
  content: "";
  animation: drift 9s ease-in-out infinite alternate;
}

.hero-card {
  position: relative;
  z-index: 1;
}

.hero-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 8px 16px;
  animation: fadeDown 0.65s ease both;
}

.brand {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 18px);
  max-width: 560px;
}

.brand-copy strong {
  display: block;
  color: var(--navy);
  font-size: clamp(3rem, 10vw, 5.45rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.78;
}

.brand-copy strong::first-line {
  color: var(--navy);
}

.brand-copy strong {
  background: linear-gradient(180deg, var(--navy) 0 48%, var(--teal-dark) 49% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-copy small {
  display: block;
  margin-top: 14px;
  color: var(--navy-deep);
  font-size: clamp(1rem, 2.6vw, 1.28rem);
  font-weight: 600;
}

.leaf-mark,
.leaf-small {
  flex: 0 0 auto;
}

.leaf-mark svg {
  width: clamp(48px, 9vw, 72px);
  fill: url("#leafGradient");
}

.leaf-mark svg path:first-child,
.leaf-small svg path:first-child {
  fill: var(--blue);
}

.leaf-mark svg path:nth-child(2),
.leaf-mark svg path:nth-child(3),
.leaf-small svg path:nth-child(2) {
  fill: var(--teal);
}

.header-actions {
  position: absolute;
  z-index: 12;
  top: 30px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-call {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 292px;
  border-radius: 999px;
  border: 1px solid rgba(213, 233, 246, 0.9);
  padding: 10px 14px 10px 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(6, 36, 92, 0.13);
  backdrop-filter: blur(14px);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  animation: topCallPulse 2.4s ease-in-out infinite;
}

.top-call:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(5, 169, 168, 0.2);
}

.call-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px #d8ecf8, 0 14px 26px rgba(6, 36, 92, 0.1);
}

.call-icon svg {
  width: 28px;
  fill: var(--blue);
  animation: ring 1.9s ease-in-out infinite;
}

.top-call b,
.top-call strong,
.top-call small {
  display: block;
}

.top-call b {
  color: var(--navy-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.top-call strong {
  color: #057da8;
  font-size: clamp(1.2rem, 2.2vw, 1.52rem);
  font-weight: 900;
  line-height: 1.08;
}

.top-call small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.menu-dot {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  gap: 5px;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 16px 34px rgba(6, 36, 92, 0.25);
}

.menu-dot i,
.menu-dot::before,
.menu-dot::after {
  width: 22px;
  height: 3px;
  border-radius: 99px;
  background: #fff;
  content: "";
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(310px, 1.05fr);
  align-items: end;
  min-height: 650px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding: 16px 0 40px 8px;
  animation: fadeUp 0.78s ease 0.08s both;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 455px;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(2.42rem, 6.5vw, 4.15rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.lead {
  max-width: 440px;
  margin-bottom: 22px;
  color: #24385e;
  font-size: clamp(1.05rem, 2.6vw, 1.45rem);
  font-weight: 500;
}

.lead strong {
  color: var(--teal-dark);
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 36px;
  color: #13274e;
  font-size: clamp(0.98rem, 2.4vw, 1.12rem);
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #34c980, #079d64);
  content: "✓";
  font-size: 0.92rem;
  font-weight: 900;
}

.primary-call {
  display: inline-flex;
  min-width: min(390px, 100%);
  align-items: center;
  gap: 18px;
  border-radius: 14px;
  padding: 18px 24px;
  color: #fff;
  background: linear-gradient(135deg, #007b9a, #07bdb0);
  box-shadow: 0 18px 36px rgba(0, 123, 154, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  animation: callPulse 2.7s ease-in-out infinite;
}

.primary-call:hover,
.panel-call:hover,
.sticky-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(0, 123, 154, 0.32);
}

.call-icon.white {
  background: #fff;
  box-shadow: none;
}

.primary-call b,
.primary-call strong,
.primary-call small,
.panel-call span,
.panel-call small {
  display: block;
}

.primary-call b {
  font-size: 1.25rem;
  font-weight: 800;
}

.primary-call strong {
  font-size: clamp(1.55rem, 4.6vw, 2rem);
  font-weight: 900;
  line-height: 1.05;
}

.primary-call small {
  margin-top: 3px;
  font-size: 0.88rem;
  font-weight: 600;
}

.secure-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0 48px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.secure-line svg {
  width: 16px;
  fill: #4d5c78;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  align-self: stretch;
  animation: fadeUp 0.9s ease 0.14s both;
}

.hero-visual img {
  position: absolute;
  z-index: 3;
  right: -74px;
  bottom: -12px;
  width: min(510px, 56vw);
  max-width: none;
  filter: drop-shadow(0 24px 36px rgba(6, 36, 92, 0.22));
}

.aqua-shape {
  position: absolute;
  z-index: 1;
  border-radius: 999px 999px 0 999px;
  background: linear-gradient(135deg, rgba(28, 195, 206, 0.2), rgba(11, 132, 220, 0.08));
}

.aqua-shape.one {
  right: -100px;
  bottom: 116px;
  width: 410px;
  height: 470px;
  transform: rotate(-8deg);
}

.aqua-shape.two {
  right: -20px;
  bottom: 0;
  width: 500px;
  height: 390px;
  background: linear-gradient(135deg, rgba(5, 169, 168, 0.44), rgba(15, 107, 220, 0.1));
  transform: rotate(22deg);
}

.dot-field {
  position: absolute;
  z-index: 2;
  top: 88px;
  right: 8px;
  width: 110px;
  height: 120px;
  background-image: radial-gradient(circle, rgba(5, 169, 168, 0.46) 2px, transparent 2px);
  background-size: 17px 17px;
}

.coverage-badge {
  position: absolute;
  z-index: 5;
  right: -4px;
  bottom: 60px;
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: 14px;
  align-items: center;
  width: min(330px, 80%);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.coverage-badge strong,
.coverage-badge span:not(.shield-icon) {
  display: block;
  grid-column: 2;
}

.coverage-badge strong {
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 800;
}

.coverage-badge span:not(.shield-icon) {
  color: var(--teal-dark);
  font-size: 1rem;
  font-weight: 900;
}

.shield-icon {
  grid-row: 1 / span 2;
}

.shield-icon svg {
  width: 60px;
  fill: var(--teal);
}

.benefit-band {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: -6px 0 26px;
  border: 8px solid #fff;
  border-radius: 24px;
  padding: 24px 18px;
  color: #fff;
  background: linear-gradient(135deg, #043286, #00215e);
  box-shadow: var(--shadow);
}

.benefit-band article {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  min-height: 176px;
  padding: 0 14px;
  text-align: center;
}

.benefit-band article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.round-icon {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 50%;
  background: #eefbfc;
  box-shadow: inset 0 -10px 20px rgba(5, 169, 168, 0.12);
}

.round-icon svg {
  width: 48px;
  fill: var(--teal-dark);
}

.round-icon.purple svg {
  fill: var(--purple);
}

.benefit-band h2 {
  margin: 2px 0 0;
  font-size: 1.04rem;
  font-weight: 800;
}

.benefit-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 500;
}

.qualify-card {
  border-radius: 24px;
  padding: 26px 18px 22px;
  background: linear-gradient(180deg, #f6fdff, #edf8fb);
  box-shadow: inset 0 0 0 1px rgba(6, 36, 92, 0.06);
}

.qualify-card h2,
.why-section h2 {
  position: relative;
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(1.55rem, 4vw, 2.05rem);
  font-weight: 900;
  text-align: center;
}

.qualify-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.qualify-grid article {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 144px;
  padding: 4px 14px;
  text-align: center;
}

.qualify-grid article + article {
  border-left: 1px solid #cbdde9;
}

.qualify-grid p {
  margin: 0;
  color: var(--navy-deep);
  font-size: 0.95rem;
  font-weight: 600;
}

.qualify-icon,
.why-icon {
  position: relative;
  display: block;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: transparent;
}

.qualify-icon::before,
.qualify-icon::after,
.why-icon::before,
.why-icon::after {
  position: absolute;
  content: "";
}

.person::before {
  left: 22px;
  top: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal);
}

.person::after {
  left: 13px;
  bottom: 8px;
  width: 38px;
  height: 25px;
  border-radius: 22px 22px 7px 7px;
  background: var(--teal);
}

.map::before {
  inset: 14px 5px 12px;
  background: var(--teal);
  clip-path: polygon(0 42%, 11% 28%, 27% 32%, 37% 14%, 55% 24%, 74% 12%, 100% 35%, 84% 48%, 92% 70%, 68% 66%, 54% 88%, 38% 72%, 18% 82%, 11% 58%);
}

.no::before {
  inset: 8px;
  border: 5px solid var(--teal);
  border-radius: 50%;
}

.no::after {
  left: 29px;
  top: 8px;
  width: 5px;
  height: 47px;
  border-radius: 6px;
  background: var(--teal);
  transform: rotate(45deg);
}

.clipboard::before {
  left: 16px;
  top: 7px;
  width: 32px;
  height: 46px;
  border-radius: 6px;
  background: var(--teal);
}

.clipboard::after {
  left: 24px;
  top: 19px;
  width: 15px;
  height: 3px;
  background: #fff;
  box-shadow: 0 10px 0 #fff, 0 20px 0 #fff;
}

.family::before,
.family::after {
  background: var(--teal);
}

.family::before {
  left: 8px;
  top: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: 28px 0 0 var(--teal);
}

.family::after {
  left: 3px;
  bottom: 10px;
  width: 28px;
  height: 24px;
  border-radius: 20px 20px 7px 7px;
  box-shadow: 28px 0 0 var(--teal);
}

.cta-panel {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 22px;
  align-items: center;
  margin: 28px 0;
  border-radius: 18px;
  padding: 24px 22px;
  color: #fff;
  background: linear-gradient(135deg, #08bbb2, #0f68d9);
  box-shadow: 0 22px 50px rgba(15, 104, 217, 0.22);
}

.heart-shield {
  display: grid;
  width: 130px;
  height: 130px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

.heart-shield svg {
  width: 80px;
  fill: var(--blue);
}

.cta-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(1.18rem, 3vw, 1.55rem);
  font-weight: 900;
}

.cta-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.02rem;
  font-weight: 500;
}

.panel-call {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 10px;
  align-items: center;
  min-width: 198px;
  border-radius: 14px;
  padding: 15px 18px;
  color: var(--blue);
  background: #fff;
  box-shadow: 0 16px 36px rgba(6, 36, 92, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.panel-call svg {
  grid-row: 1 / span 2;
  width: 31px;
  fill: var(--blue);
}

.panel-call span {
  color: var(--blue);
  font-size: 1.18rem;
  font-weight: 900;
}

.panel-call small {
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
}

.why-section {
  padding: 0 6px 26px;
}

.why-section h2::after {
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 56px;
  height: 4px;
  border-radius: 99px;
  background: var(--teal);
  content: "";
  transform: translateX(-50%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 28px;
}

.why-grid article {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 0 14px;
  text-align: center;
}

.why-grid article + article {
  border-left: 1px solid #cbdde9;
}

.why-grid p {
  margin: 0;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
}

.why-icon {
  background: #eef9fb;
}

.pig::before {
  left: 14px;
  top: 24px;
  width: 36px;
  height: 22px;
  border-radius: 18px;
  background: var(--teal);
}

.pig::after {
  left: 25px;
  top: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 25px 8px 0 -4px var(--teal);
}

.search::before {
  left: 13px;
  top: 12px;
  width: 26px;
  height: 26px;
  border: 5px solid var(--teal);
  border-radius: 50%;
}

.search::after {
  left: 39px;
  top: 38px;
  width: 20px;
  height: 5px;
  border-radius: 5px;
  background: var(--teal);
  transform: rotate(45deg);
}

.agent::before {
  left: 22px;
  top: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
}

.agent::after {
  left: 16px;
  bottom: 11px;
  width: 31px;
  height: 24px;
  border-radius: 18px 18px 5px 5px;
  background: var(--blue);
}

.pen::before {
  left: 17px;
  top: 12px;
  width: 26px;
  height: 34px;
  border: 4px solid var(--teal);
  border-radius: 4px;
}

.pen::after {
  right: 13px;
  bottom: 13px;
  width: 24px;
  height: 5px;
  border-radius: 4px;
  background: var(--teal);
  transform: rotate(-42deg);
}

.thumb::before {
  left: 22px;
  top: 12px;
  width: 14px;
  height: 33px;
  border-radius: 7px;
  background: var(--teal);
  transform: rotate(22deg);
}

.thumb::after {
  left: 14px;
  top: 27px;
  width: 36px;
  height: 20px;
  border-radius: 6px;
  background: var(--teal);
}

.bottom-note {
  display: grid;
  grid-template-columns: 80px 1fr 76px;
  gap: 22px;
  align-items: center;
  border-radius: 18px;
  padding: 20px 24px;
  background: #eef8fb;
}

.shield-small svg {
  width: 64px;
  fill: var(--teal);
}

.bottom-note p {
  margin: 0;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 500;
}

.leaf-small svg {
  width: 62px;
}

.disclaimer {
  padding-top: 20px;
}

.disclaimer p {
  margin: 0;
  border-radius: 14px;
  padding: 14px 16px;
  color: #64708a;
  background: #f5f8fb;
  font-size: 0.72rem;
  font-weight: 500;
}

.sticky-call {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: 16px;
  display: flex;
  width: min(860px, calc(100% - 26px));
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #09b9ad, #0f68d9);
  box-shadow: 0 18px 40px rgba(15, 104, 217, 0.3);
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 900;
  transform: translateX(-50%);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  animation: stickyIn 0.65s ease 0.5s both;
}

.sticky-call:hover {
  transform: translateX(-50%) translateY(-3px);
}

.sticky-call svg {
  width: 24px;
  fill: currentColor;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  to {
    transform: translate(-32px, 24px) scale(1.06);
  }
}

@keyframes ring {
  0%,
  100% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(-13deg);
  }
  30% {
    transform: rotate(12deg);
  }
  45% {
    transform: rotate(-8deg);
  }
  60% {
    transform: rotate(0deg);
  }
}

@keyframes callPulse {
  50% {
    box-shadow: 0 18px 46px rgba(0, 123, 154, 0.4), 0 0 0 8px rgba(5, 169, 168, 0.08);
  }
}

@keyframes topCallPulse {
  50% {
    box-shadow: 0 0 0 8px rgba(5, 169, 168, 0.08);
  }
}

@keyframes stickyIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 780px) {
  .phone-page {
    padding: 20px 18px 100px;
  }

  .hero-header {
    gap: 10px;
    padding-top: 10px;
  }

  .header-actions {
    top: 22px;
    right: 4px;
    gap: 8px;
  }

  .top-call {
    min-width: 252px;
    padding-right: 12px;
  }

  .top-call {
    gap: 8px;
  }

  .call-icon {
    width: 44px;
    height: 44px;
  }

  .call-icon svg {
    width: 23px;
  }

  .menu-dot {
    width: 44px;
    height: 44px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: 660px;
  }

  .hero-copy {
    padding-left: 0;
  }

  h1 {
    max-width: 62%;
  }

  .lead {
    max-width: 56%;
  }

  .hero-visual {
    position: absolute;
    inset: 118px -18px 0 auto;
    width: 58%;
    min-height: auto;
  }

  .hero-visual img {
    right: -100px;
    bottom: 0;
    width: 420px;
  }

  .aqua-shape.one {
    right: -150px;
    bottom: 80px;
    width: 320px;
    height: 420px;
  }

  .aqua-shape.two {
    right: -120px;
    bottom: 0;
    width: 390px;
    height: 300px;
  }

  .dot-field {
    right: 8px;
  }

  .coverage-badge {
    right: 10px;
    bottom: 36px;
    width: 280px;
  }

  .benefit-band,
  .qualify-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-band article:nth-child(odd),
  .qualify-grid article:nth-child(odd),
  .why-grid article:nth-child(odd) {
    border-left: 0;
  }

  .benefit-band article:nth-child(n + 3),
  .qualify-grid article:nth-child(n + 3),
  .why-grid article:nth-child(n + 3) {
    border-top: 1px solid rgba(6, 36, 92, 0.12);
    padding-top: 20px;
  }

  .qualify-grid article:last-child,
  .why-grid article:last-child {
    grid-column: 1 / -1;
  }

  .cta-panel {
    grid-template-columns: 92px 1fr;
  }

  .heart-shield {
    width: 86px;
    height: 86px;
  }

  .heart-shield svg {
    width: 58px;
  }

  .panel-call {
    grid-column: 1 / -1;
    justify-self: stretch;
  }
}

@media (max-width: 560px) {
  .phone-page {
    box-shadow: none;
    padding-top: 16px;
  }

  .brand {
    align-items: flex-start;
    max-width: calc(100% - 74px);
  }

  .brand-copy strong {
    font-size: clamp(2.92rem, 14.4vw, 4rem);
    line-height: 0.82;
  }

  .brand-copy small {
    max-width: 220px;
    margin-top: 12px;
    font-size: 0.94rem;
    line-height: 1.2;
  }

  .leaf-mark svg {
    width: 40px;
    margin-top: 32px;
  }

  .header-actions {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 10;
  }

  .top-call {
    display: grid;
    width: 58px;
    height: 58px;
    min-width: 0;
    place-items: center;
    padding: 0;
    background: linear-gradient(135deg, #08bbb2, #0f68d9);
    box-shadow: 0 16px 34px rgba(15, 104, 217, 0.28);
  }

  .top-call:hover {
    background: linear-gradient(135deg, #08bbb2, #0f68d9);
  }

  .top-call .call-icon {
    width: 58px;
    height: 58px;
    background: transparent;
    box-shadow: none;
  }

  .top-call .call-icon svg {
    width: 29px;
    fill: #fff;
  }

  .top-call > span:not(.call-icon) {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .menu-dot {
    display: none;
  }

  .hero-layout {
    min-height: 760px;
  }

  h1 {
    max-width: 64%;
    font-size: clamp(2.22rem, 9.8vw, 3.18rem);
  }

  .lead {
    max-width: 62%;
    font-size: 1rem;
  }

  .check-list {
    max-width: 62%;
  }

  .primary-call {
    width: min(330px, 100%);
    min-width: 0;
    max-width: 360px;
    gap: 12px;
    padding: 16px 18px;
  }

  .primary-call strong {
    font-size: clamp(1.28rem, 6vw, 1.55rem);
  }

  .primary-call small {
    font-size: 0.76rem;
  }

  .secure-line {
    margin-left: 44px;
  }

  .hero-visual {
    inset: 290px -18px 0 auto;
    width: 40%;
    z-index: 1;
  }

  .hero-visual img {
    right: -138px;
    bottom: 0;
    width: 310px;
  }

  .aqua-shape.one {
    right: -158px;
    bottom: 102px;
    width: 250px;
    height: 338px;
  }

  .aqua-shape.two {
    right: -168px;
    bottom: 30px;
    width: 318px;
    height: 238px;
  }

  .dot-field {
    top: 42px;
    right: 20px;
  }

  .coverage-badge {
    right: 8px;
    bottom: 78px;
    width: 204px;
    grid-template-columns: 50px 1fr;
    padding: 12px;
  }

  .shield-icon svg {
    width: 48px;
  }

  .coverage-badge strong,
  .coverage-badge span:not(.shield-icon) {
    font-size: 0.8rem;
  }

  .benefit-band {
    grid-template-columns: 1fr 1fr;
    margin-top: -18px;
    padding: 18px 10px;
  }

  .benefit-band article {
    min-height: 150px;
    padding: 0 10px;
  }

  .round-icon {
    width: 66px;
    height: 66px;
  }

  .round-icon svg {
    width: 40px;
  }

  .qualify-card {
    padding: 22px 12px;
  }

  .qualify-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .qualify-grid article,
  .why-grid article {
    min-height: auto;
    grid-template-columns: 70px 1fr;
    align-items: center;
    justify-items: start;
    border-left: 0 !important;
    border-top: 1px solid rgba(6, 36, 92, 0.12);
    padding: 14px 12px !important;
    text-align: left;
  }

  .qualify-grid article:first-child,
  .why-grid article:first-child {
    border-top: 0;
  }

  .qualify-grid article:last-child,
  .why-grid article:last-child {
    grid-column: auto;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .bottom-note {
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding: 16px;
  }

  .leaf-small {
    display: none;
  }

  .shield-small svg {
    width: 52px;
  }
}
