:root {
  --ink: #10201f;
  --muted: #5f6f6d;
  --line: #dbe7e4;
  --paper: #ffffff;
  --soft: #f3faf8;
  --teal: #0074c0;
  --teal-dark: #00558d;
  --lime: #c8ea64;
  --amber: #f3b33d;
  --shadow: 0 24px 70px rgba(0, 72, 120, .14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(243, 250, 248, .95), rgba(255, 255, 255, 0) 720px),
    var(--paper);
}

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

button,
input,
textarea {
  font: inherit;
}

.promo-strip {
  position: relative;
  z-index: 12;
  height: 42px;
  overflow: hidden;
  color: white;
  background: var(--teal);
  font-size: .86rem;
  font-weight: 650;
}

.promo-track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 120px;
  white-space: nowrap;
  animation: promoMove 42s linear infinite;
}

.promo-track span {
  display: inline-block;
}

.promo-track strong {
  font-weight: 900;
}

.promo-track a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-left: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  color: white;
  background: #030303;
  font-weight: 900;
}

.promo-track a:hover {
  color: #030303;
  background: #ffc400;
}

@keyframes promoMove {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes pageFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes progressGlow {
  0%,
  100% {
    opacity: .8;
    transform: scaleX(.92);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes documentFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(219, 231, 228, .8);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  color: white;
  background: var(--teal);
  border-radius: 8px;
  font-size: .88rem;
}

.nav-links {
  gap: 4px;
}

.nav-links a {
  padding: 10px 14px;
  color: #243937;
  font-weight: 650;
  font-size: .95rem;
  border-radius: 8px;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}

.nav-links a:hover {
  background: var(--soft);
}

.nav-links .nav-cta {
  color: white;
  background: var(--teal);
  box-shadow: 0 8px 18px rgba(0, 116, 192, .18);
}

.nav-links .nav-cta:hover {
  color: white;
  background: var(--teal-dark);
  box-shadow: 0 12px 24px rgba(0, 116, 192, .28);
  transform: translateY(-2px);
}

.nav-links .nav-cta-client {
  color: #030303;
  background: #ffc400;
}

.nav-links .nav-cta-client:hover {
  color: #030303;
  background: #ffb800;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
}

.hero,
.section,
.trust-strip,
.footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 108px);
  padding: 76px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  align-items: center;
  gap: 48px;
}

.hero-copy {
  animation: pageFadeUp .72s ease-out both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .08em;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 4.75vw, 4rem);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.hero-text,
.section p,
.check-list,
.price-card li,
.faq p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.hero-text {
  max-width: 650px;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 34px;
}

.button {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: .86rem;
  letter-spacing: .04em;
  cursor: pointer;
}

.button::after,
.plan-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .42) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .55s ease;
  pointer-events: none;
}

.button:hover::after,
.plan-button:hover::after {
  transform: translateX(120%);
}

.button.primary {
  color: white;
  background: var(--teal);
  box-shadow: 0 12px 30px rgba(0, 116, 192, .26);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.ghost {
  color: var(--teal-dark);
  border-color: var(--line);
  background: white;
}

.hero-plans-button {
  padding-right: 34px;
  padding-left: 34px;
}

.button.full {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.hero-metrics div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
}

.hero-metrics dt {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--teal-dark);
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.35;
  font-size: .9rem;
}

.product-visual {
  min-height: 520px;
  border: 1px solid rgba(219, 231, 228, .95);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 116, 192, .12), rgba(200, 234, 100, .18)),
    #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: pageFadeUp .8s ease-out .16s both, softFloat 7s ease-in-out 1.2s infinite;
}

.browser-bar {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: white;
}

.browser-bar span {
  width: 11px;
  height: 11px;
  border-radius: 99px;
  background: #d3dedb;
}

.browser-bar span:first-child {
  background: var(--amber);
}

.visual-grid {
  height: calc(100% - 48px);
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr .65fr;
  gap: 18px;
  align-items: center;
}

.claim-card,
.side-panel {
  border: 1px solid rgba(219, 231, 228, .92);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 16px 48px rgba(0, 72, 120, .09);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.claim-card:hover,
.side-panel:hover {
  border-color: rgba(0, 116, 192, .28);
  box-shadow: 0 20px 54px rgba(0, 72, 120, .14);
  transform: translateY(-4px);
}

.claim-card {
  padding: 28px;
}

.claim-card .tag,
.discount {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: #e7f7f3;
  font-weight: 800;
  font-size: .78rem;
  text-transform: uppercase;
}

.claim-card h2 {
  font-size: 1.75rem;
}

.claim-sample-step {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  margin: 18px 0 14px;
}

.claim-sample-step span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: white;
  background: var(--teal);
  font-size: .82rem;
  font-weight: 900;
}

.claim-sample-step strong,
.mock-field label {
  color: #0d2340;
  font-size: .76rem;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.mock-field {
  display: grid;
  gap: 7px;
  margin: 12px 0;
}

.mock-select,
.mock-textarea {
  border: 1px solid #d9e6ec;
  border-radius: 8px;
  background: white;
  box-shadow: inset 0 1px 0 rgba(13, 35, 64, .03);
}

.mock-select {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  color: #111827;
  font-size: .78rem;
  font-weight: 800;
}

.mock-select span {
  width: 8px;
  height: 8px;
  border: solid #111827;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-2px);
}

.mock-textarea {
  min-height: 72px;
}

.field {
  height: 46px;
  margin: 12px 0;
  border-radius: 8px;
  background: linear-gradient(90deg, #edf5f3, #f7fbfa);
}

.field.wide {
  height: 74px;
}

.field.short {
  width: 68%;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--teal-dark);
}

.status-line span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--lime);
}

.side-panel {
  padding: 22px;
  align-self: end;
}

.side-panel p,
.side-panel small {
  color: var(--muted);
}

.side-panel strong {
  display: block;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.progress {
  height: 10px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #e2ece9;
}

.progress span {
  display: block;
  width: 74%;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
  transform-origin: left center;
  animation: progressGlow 3.6s ease-in-out infinite;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: -20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 12px 40px rgba(0, 72, 120, .07);
}

.trust-strip p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 18px;
  color: var(--teal-dark);
  background: white;
  font-weight: 800;
  text-align: center;
}

.trust-strip p::before {
  content: "";
  width: 10px;
  height: 18px;
  display: inline-block;
  border: solid #0074c0;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.section {
  padding: 92px 0;
}

.split,
.law-band,
.contact {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.feature-list article:hover {
  border-color: rgba(0, 116, 192, .26);
  box-shadow: 0 14px 34px rgba(0, 72, 120, .09);
  transform: translateY(-4px);
}

.feature-list span {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  color: var(--teal-dark);
  background: var(--soft);
  border-radius: 8px;
  font-weight: 900;
}

.feature-list p {
  grid-column: 2;
  margin-bottom: 0;
}

.consumer-section {
  width: 100%;
  padding: 78px max(16px, calc((100vw - 1040px) / 2)) 92px;
  display: grid;
  grid-template-columns: minmax(320px, .98fr) minmax(360px, 1.02fr);
  gap: 64px;
  align-items: center;
  background: #f8fbff;
}

.consumer-media {
  position: relative;
  padding: 22px;
}

.consumer-media::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: #e4f1ff;
  transform: rotate(2deg);
}

.consumer-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 550 / 458;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(0, 72, 120, .16);
}

.consumer-content .eyebrow {
  color: #0b4f95;
}

.consumer-content h2 {
  max-width: 620px;
  margin-bottom: 28px;
  color: #111827;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.05;
}

.consumer-list {
  display: grid;
  gap: 28px;
}

.consumer-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.consumer-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #00558d;
  background: #dcebff;
}

.consumer-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.consumer-list h3 {
  margin-bottom: 7px;
  color: #111827;
  font-size: 1.22rem;
  line-height: 1.25;
}

.consumer-list p {
  max-width: 580px;
  margin-bottom: 0;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.55;
}

.benefits-suite {
  width: 100%;
  padding: 78px max(16px, calc((100vw - 1180px) / 2)) 92px;
  background: #f8fbff;
}

.benefits-card {
  padding: 34px;
  border: 1px solid #e3e9f2;
  border-radius: 16px;
  background: white;
  box-shadow: 0 10px 34px rgba(0, 72, 120, .06);
}

.benefits-heading {
  max-width: 660px;
  margin-bottom: 26px;
}

.benefits-heading h2 {
  margin-bottom: 10px;
  color: #111827;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.benefits-heading p:last-child {
  margin-bottom: 0;
  color: #4b5563;
  font-size: 1.04rem;
  line-height: 1.55;
}

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

.benefits-grid article {
  min-height: 230px;
  padding: 24px 20px;
  border: 1px solid #edf1f6;
  border-radius: 10px;
  background: white;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .035);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.benefits-grid article:hover {
  border-color: rgba(0, 116, 192, .2);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .08);
  transform: translateY(-5px);
}

.benefit-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #0074c0;
  background: #eef3ff;
}

.benefit-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefits-grid h3 {
  margin-bottom: 8px;
  color: #111827;
  font-size: 1.06rem;
  line-height: 1.38;
}

.benefits-grid p {
  margin-bottom: 0;
  color: #4b5563;
  font-size: .95rem;
  line-height: 1.5;
}

.law-band {
  width: 100%;
  max-width: none;
  padding: 90px max(16px, calc((100vw - 1160px) / 2));
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(220px, 300px) minmax(300px, 1.05fr);
  gap: 42px;
  align-items: center;
  color: white;
  background: #073a5d;
}

.law-band .eyebrow,
.law-band p,
.law-band .check-list {
  color: rgba(255, 255, 255, .78);
}

.law-band h2 {
  color: white;
  font-size: clamp(2.35rem, 4vw, 3.55rem);
  line-height: 1.06;
}

.law-copy p {
  max-width: 480px;
  line-height: 1.62;
}

.law-document {
  margin: 0;
  display: flex;
  justify-content: center;
}

.law-document img {
  width: min(100%, 288px);
  display: block;
  background: white;
  box-shadow: 0 20px 42px rgba(0, 22, 40, .28);
  animation: documentFadeIn .9s ease-out both;
  transition: transform .3s ease, box-shadow .3s ease;
}

.law-document img:hover {
  box-shadow: 0 26px 52px rgba(0, 22, 40, .34);
  transform: translateY(-5px) rotate(-1deg);
}

.law-details {
  display: grid;
  gap: 20px;
}

.law-details h3 {
  margin: 0;
  color: white;
  font-size: 1.2rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.price-card li {
  position: relative;
  padding-left: 28px;
}

.check-list li + li,
.price-card li + li {
  margin-top: 12px;
}

.law-details .check-list a {
  color: rgba(255, 255, 255, .82);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.law-details .check-list a:hover {
  color: white;
  text-decoration-color: var(--lime);
}

.check-list li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--lime);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.tabs {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 4px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.tab {
  min-height: 44px;
  padding: 10px 16px;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.tab.is-active {
  color: var(--teal-dark);
  background: white;
  box-shadow: 0 8px 24px rgba(0, 72, 120, .09);
}

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

.pricing-grid.is-hidden {
  display: none;
}

.price-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.price-card.highlighted {
  border-color: rgba(0, 116, 192, .45);
  box-shadow: var(--shadow);
}

.plan-name {
  color: var(--teal-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin-bottom: 20px;
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 900;
}

.price span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .85rem;
  text-transform: uppercase;
}

.price-card ul {
  min-height: 220px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.plans-section {
  width: 100%;
  padding: 76px 16px 88px;
  background: #e5f1ff;
}

.plans-wrap {
  width: min(1218px, 100%);
  margin: 0 auto;
}

.plans-title {
  margin: 0 0 14px;
  color: #0d2340;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  text-align: center;
  letter-spacing: .08em;
}

.plans-description {
  width: min(860px, 100%);
  margin: 0 auto 34px;
  color: #24415f;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  text-align: center;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 40px;
}

.plan-card {
  position: relative;
  min-height: 332px;
  display: flex;
  flex-direction: column;
  padding: 30px 26px 24px;
  border: 1px solid rgba(0, 116, 192, .16);
  border-radius: 18px;
  color: #0d2340;
  background: white;
  box-shadow: 0 14px 34px rgba(13, 35, 64, .08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.plan-card.is-featured {
  min-height: 370px;
  padding-bottom: 28px;
  border-color: rgba(0, 116, 192, .46);
  box-shadow: 0 18px 42px rgba(0, 116, 192, .16);
}

.plan-card:hover {
  border-color: rgba(0, 116, 192, .42);
  box-shadow: 0 22px 44px rgba(13, 35, 64, .14);
  transform: translateY(-6px);
}

.plan-card h3 {
  margin: 0 0 5px;
  color: #071d38;
  font-size: clamp(1.32rem, 1.8vw, 1.55rem);
  line-height: 1.1;
  font-weight: 900;
}

.plan-tagline {
  min-height: 38px;
  margin: 0 0 18px;
  color: #6d7890;
  font-size: .94rem;
  line-height: 1.35;
}

.plan-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 7px;
  margin: 0 0 12px;
  color: #071d38;
  line-height: .82;
  text-align: center;
}

.plan-price-row strong {
  color: #061f40;
  font-size: clamp(4rem, 6vw, 5.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.plan-currency,
.plan-period {
  display: inline-block;
  padding-bottom: 11px;
  color: #152943;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.plan-copy {
  min-height: 46px;
  margin: 0 0 20px;
  color: #7b8496;
  font-size: .94rem;
  line-height: 1.45;
}

.saving-badge {
  position: absolute;
  top: 0;
  left: -1px;
  right: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  border-radius: 18px 18px 0 0;
  color: white;
  background: linear-gradient(90deg, #5b52ea 0%, #0074c0 100%);
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.plan-card.is-featured h3 {
  margin-top: 58px;
}

.plan-button {
  position: relative;
  overflow: hidden;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 14px 22px;
  border: 2px solid #ff9f1a;
  border-radius: 12px;
  color: #030303;
  background: #ffc400;
  font-size: 1.18rem;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(255, 180, 0, .22), inset 0 -1px 0 rgba(0, 0, 0, .08);
  text-decoration: none;
}

.plan-button:hover {
  background: #ffb800;
  box-shadow: 0 12px 22px rgba(255, 180, 0, .28), inset 0 -1px 0 rgba(0, 0, 0, .08);
}

.included-card {
  width: min(514px, 100%);
  margin: 47px auto 0;
  padding: 26px 24px 22px;
  border: 1px solid #f0e6c3;
  border-radius: 16px;
  color: #0d2340;
  background: #fffbed;
  box-shadow: 0 2px 8px rgba(13, 35, 64, .08);
  transition: transform .28s ease, box-shadow .28s ease;
}

.included-card:hover {
  box-shadow: 0 12px 26px rgba(13, 35, 64, .12);
  transform: translateY(-4px);
}

.included-card h3 {
  margin: 0 0 12px;
  color: #1b3658;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
}

.included-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-card li {
  position: relative;
  padding-left: 26px;
  color: #071d38;
  font-size: .98rem;
  line-height: 1.25;
}

.included-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #00b76b;
}

.included-card li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.testimonials {
  width: 100%;
  max-width: none;
  padding: 88px max(16px, calc((100vw - 1160px) / 2));
  border-top: 1px solid var(--line);
  background: #fff;
}

.testimonials .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.reviews-carousel {
  position: relative;
  margin-top: 48px;
}

.reviews-window {
  width: 100%;
  overflow: hidden;
  padding: 34px 8px 10px;
}

.reviews-track {
  --review-gap: 16px;
  display: flex;
  gap: var(--review-gap);
  transform: translateX(0);
  transition: transform .55s ease;
  will-change: transform;
}

.review-card {
  position: relative;
  flex: 0 0 calc((100% - (var(--review-gap) * 2)) / 3);
  min-height: 232px;
  margin: 0;
  padding: 48px 30px 28px;
  border: 1px solid #e6ebf0;
  border-radius: 10px;
  background: white;
  box-shadow: 0 6px 18px rgba(13, 35, 64, .11);
  text-align: center;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.review-card:hover {
  border-color: rgba(0, 116, 192, .22);
  box-shadow: 0 16px 34px rgba(13, 35, 64, .15);
  transform: translateY(-5px);
}

.review-avatar {
  position: absolute;
  left: 50%;
  top: -38px;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #293a57, #0074c0);
  border: 3px solid white;
  font-size: .9rem;
  font-weight: 900;
  transform: translateX(-50%);
  box-shadow: 0 8px 20px rgba(13, 35, 64, .18);
}

.review-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: cover;
}

.review-avatar span {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border: 2px solid white;
  border-radius: 999px;
  color: #4285f4;
  background: white;
  font-size: .9rem;
  font-family: Arial, sans-serif;
  font-weight: 900;
}

.avatar-blue {
  background: linear-gradient(135deg, #0168ac, #62b7f5);
}

.avatar-dark {
  background: linear-gradient(135deg, #111827, #515d73);
}

.avatar-green {
  background: linear-gradient(135deg, #087f5b, #46c995);
}

.avatar-gold {
  background: linear-gradient(135deg, #906112, #f3b33d);
}

.avatar-red {
  background: linear-gradient(135deg, #9f1239, #fb7185);
}

.review-card h3 {
  margin: 0 0 2px;
  color: #111827;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 900;
  text-transform: none;
}

.review-date {
  margin: 0 0 12px;
  color: #888;
  font-size: .92rem;
  line-height: 1.2;
}

.review-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  margin: 0 0 8px;
  color: #f4b400;
  font-size: 1.58rem;
  line-height: 1;
  letter-spacing: 0;
  font-family: Arial, sans-serif;
  font-weight: 900;
}

.review-stars .star {
  display: inline-block;
  color: #f4b400 !important;
  font-size: 1.58rem;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .04);
}

.verified-badge {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-left: 7px;
  border-radius: 6px;
  background: #4285f4;
  vertical-align: -2px;
  transform: rotate(22.5deg);
}

.verified-badge::before,
.verified-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: #4285f4;
}

.verified-badge::before {
  transform: rotate(45deg);
}

.verified-badge::after {
  left: 6px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  background: transparent;
  transform: rotate(22.5deg);
}

.review-copy {
  max-width: 330px;
  margin: 0 auto;
  color: #101010;
  font-size: 1rem;
  line-height: 1.38;
}

.review-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #d8dee7;
  border-radius: 999px;
  color: #8a8f99;
  background: white;
  box-shadow: 0 4px 12px rgba(13, 35, 64, .1);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.review-arrow:hover {
  color: var(--teal);
  border-color: var(--teal);
}

.review-prev {
  left: -6px;
}

.review-next {
  right: -6px;
}

.review-summary {
  margin: 18px 0 0;
  color: #071d38;
  text-align: center;
  font-size: .98rem;
  line-height: 1.45;
}

.review-summary strong {
  font-weight: 900;
}

.seo-hero {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 34px;
}

.seo-hero h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  line-height: 1;
}

.seo-hero p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.65;
}

.article-hero {
  width: min(1160px, calc(100% - 32px));
  padding-bottom: 18px;
}

.blog-index-hero {
  width: min(1160px, calc(100% - 32px));
}

.blog-index-hero h1,
.article-hero h1 {
  max-width: 1120px;
}

.blog-index-hero p:last-child,
.article-hero p:last-child {
  max-width: none;
}

.seo-content {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto 84px;
  display: grid;
  gap: 18px;
}

.blog-article .seo-content {
  width: 100%;
  margin: 0;
}

.seo-content > article,
.seo-cta,
.resource-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 72, 120, .06);
}

.seo-content > article {
  padding: 28px;
}

.seo-content h2 {
  margin-bottom: 10px;
  color: #0d2340;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.15;
}

.seo-content p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.blog-body p + p {
  margin-top: 18px;
}

.blog-body h2,
.blog-body h3 {
  margin: 24px 0 10px;
  color: #0d2340;
}

.blog-body ul,
.blog-body ol {
  margin: 12px 0 18px 22px;
  padding: 0;
  color: var(--muted);
  line-height: 1.72;
}

.blog-body li + li {
  margin-top: 8px;
}

.blog-body blockquote {
  margin: 18px 0;
  padding: 16px 20px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  color: #294153;
  background: #f4f9ff;
  line-height: 1.72;
}

.blog-body a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seo-cta {
  margin-top: 10px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(0, 116, 192, .08), rgba(200, 234, 100, .12)),
    white;
}

.seo-cta p {
  margin-bottom: 18px;
}

.resource-grid {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 88px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.resource-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.resource-card:hover {
  border-color: rgba(0, 116, 192, .28);
  box-shadow: 0 16px 34px rgba(0, 72, 120, .1);
  transform: translateY(-4px);
}

.resource-image {
  display: block;
  aspect-ratio: 16 / 9;
  max-height: 230px;
  overflow: hidden;
  background: #eef7ff;
}

.resource-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .32s ease;
}

.resource-card:hover .resource-image img {
  transform: scale(1.04);
}

.resource-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.resource-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.resource-category {
  margin: 0;
  color: var(--teal-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.resource-meta span {
  color: #6d7890;
  font-size: .84rem;
  font-weight: 800;
  white-space: nowrap;
}

.resource-card h2 {
  margin-bottom: 12px;
  color: #0d2340;
  font-size: 1.36rem;
  line-height: 1.2;
}

.resource-card p:not(.resource-category) {
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.58;
}

.resource-link {
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 900;
}

.resource-link:hover {
  color: var(--teal);
}

.blog-layout {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 88px;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(240px, 1fr);
  gap: 28px;
  align-items: start;
}

.blog-article {
  min-width: 0;
}

.blog-cover {
  width: 100%;
  aspect-ratio: 16 / 8;
  display: block;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  object-fit: cover;
  background: #eef7ff;
  box-shadow: 0 14px 34px rgba(0, 72, 120, .08);
}

.blog-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.blog-sidebar section {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 72, 120, .06);
}

.blog-sidebar h2 {
  margin-bottom: 12px;
  color: #0d2340;
  font-size: 1.05rem;
}

.blog-sidebar a {
  display: block;
  padding: 9px 0;
  color: #27465f;
  font-weight: 800;
  line-height: 1.35;
}

.blog-sidebar a + a {
  border-top: 1px solid #edf2f6;
}

.blog-sidebar a:hover {
  color: var(--teal-dark);
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tags span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: #e8f5ff;
  font-size: .85rem;
  font-weight: 900;
}

.features-hero {
  width: min(1060px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 52px;
}

.features-hero h1 {
  max-width: 980px;
  margin-bottom: 20px;
}

.features-hero p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.64;
}

.features-process ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.features-process strong {
  color: #0d2340;
  font-weight: 900;
}

.features-process span {
  color: var(--muted);
  line-height: 1.45;
}

.features-band {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 82px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.features-band article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 72, 120, .06);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.features-band article:hover {
  border-color: rgba(0, 116, 192, .28);
  box-shadow: 0 16px 34px rgba(0, 72, 120, .1);
  transform: translateY(-4px);
}

.features-band article > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: .86rem;
  font-weight: 900;
}

.features-band h2 {
  margin-bottom: 10px;
  color: #0d2340;
  font-size: 1.42rem;
  line-height: 1.18;
}

.features-band p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.features-process {
  width: 100%;
  padding: 78px max(16px, calc((100vw - 1160px) / 2));
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 50px;
  background: #f8fbff;
}

.features-process h2,
.features-cta h2 {
  color: #0d2340;
}

.features-process ol {
  display: grid;
  gap: 14px;
}

.features-process li {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-left: 4px solid var(--teal);
  border-radius: 10px;
  background: white;
  box-shadow: 0 8px 22px rgba(0, 72, 120, .05);
}

.features-cta {
  width: min(920px, calc(100% - 32px));
  margin: 82px auto;
  padding: 36px;
  border: 1px solid rgba(0, 116, 192, .16);
  border-radius: 18px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(0, 116, 192, .08), rgba(200, 234, 100, .12)),
    white;
  box-shadow: 0 14px 34px rgba(0, 72, 120, .08);
}

.features-cta p {
  max-width: 690px;
  margin: 0 auto 22px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.62;
}

.contact {
  width: 100%;
  max-width: none;
  padding: 90px max(16px, calc((100vw - 1160px) / 2));
  background: var(--soft);
}

.phone {
  display: inline-block;
  margin-top: 12px;
  color: var(--teal-dark);
  font-size: 1.5rem;
  font-weight: 900;
}

.contact-preview {
  width: min(420px, 100%);
  margin-top: 26px;
  padding: 12px;
  border-radius: 18px;
  background: #e4f1ff;
  box-shadow: 0 14px 34px rgba(0, 72, 120, .12);
  transition: transform .3s ease, box-shadow .3s ease;
}

.contact-preview:hover {
  box-shadow: 0 20px 44px rgba(0, 72, 120, .16);
  transform: translateY(-5px);
}

.contact-preview img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 50px rgba(0, 72, 120, .09);
  animation: pageFadeUp .75s ease-out both;
}

.lead-form label,
.lead-form legend {
  color: #304744;
  font-weight: 800;
  font-size: .9rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fbfefd;
  outline: none;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 116, 192, .14);
}

.lead-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.lead-form fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 650;
}

.lead-form fieldset input {
  width: auto;
  margin: 0;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.4;
}

.form-status.is-success {
  color: #087f5b;
  font-weight: 800;
}

.form-status.is-error {
  color: #b42318;
  font-weight: 800;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: .68;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(220px, 1fr);
  gap: 28px;
  align-items: start;
}

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

.faq-media {
  position: sticky;
  top: 94px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.faq-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

summary {
  padding: 20px;
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.footer {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
  color: var(--muted);
}

.footer a {
  color: var(--teal-dark);
  font-weight: 900;
}

.footer-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-menu a {
  color: #243937;
  font-size: .92rem;
}

.footer-menu a:hover {
  color: var(--teal);
}

.marketing-footer {
  border-top: 1px solid #e4e7ec;
  background: #fbfaf8;
}

.marketing-footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 34px;
  display: grid;
  grid-template-columns: 1.25fr repeat(4, minmax(0, 1fr));
  gap: 44px;
}

.footer-brand {
  max-width: 260px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #0053ff;
}

.footer-logo strong {
  font-size: 1.08rem;
  line-height: .92;
  font-weight: 900;
}

.footer-brand p,
.footer-disclaimer,
.footer-bottom p {
  margin: 0;
  color: #626f7b;
  font-size: .92rem;
  line-height: 1.52;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-column h2 {
  margin: 0;
  padding-top: 2px;
  color: #0048ff;
  font-size: .82rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-column h2:not(:first-child) {
  margin-top: 24px;
}

.footer-column a {
  color: #24313f;
  font-size: .92rem;
  line-height: 1.35;
}

.footer-column a:hover {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-book {
  width: 78px;
  margin-top: 22px;
  padding: 4px;
  border: 1px solid #c8ced8;
  background: white;
}

.footer-book img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  padding-top: 24px;
  color: #8a939d;
  font-size: .78rem;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  padding-top: 22px;
  border-top: 1px solid #dfe3e8;
}

.footer-bottom a {
  color: var(--teal-dark);
  font-weight: 900;
}

.float-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  color: white;
  background: #25d366;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .3);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  animation: whatsappPulseButton 2.4s ease-in-out infinite;
}

.float-whatsapp::before,
.float-whatsapp::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(37, 211, 102, .55);
  animation: whatsappPulseRing 2.4s ease-out infinite;
  pointer-events: none;
}

.float-whatsapp::after {
  animation-delay: 1.2s;
}

.float-whatsapp svg {
  width: 46px;
  height: 46px;
  display: block;
}

.float-whatsapp .wa-ring {
  fill: none;
  stroke: white;
  stroke-width: 2.6;
  stroke-linejoin: round;
}

.float-whatsapp .wa-phone {
  fill: white;
}

.float-whatsapp:hover {
  background: #1ebe5d;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .34);
  transform: translateY(-2px);
  animation-play-state: paused;
}

.float-whatsapp:hover::before,
.float-whatsapp:hover::after {
  animation-play-state: paused;
}

@keyframes whatsappPulseButton {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

@keyframes whatsappPulseRing {
  0% {
    opacity: .7;
    transform: scale(1);
  }

  80%, 100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@supports (animation-timeline: view()) {
  .section,
  .consumer-section,
  .law-band,
  .plans-section,
  .testimonials,
  .contact,
  .trust-strip {
    animation: pageFadeUp both;
    animation-timeline: view();
    animation-range: entry 0% cover 28%;
  }
}

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

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero,
  .split,
  .consumer-section,
  .law-band,
  .features-hero,
  .features-process,
  .faq-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .faq-media img {
    aspect-ratio: 16 / 9;
    max-height: 320px;
  }

  .consumer-section {
    gap: 38px;
  }

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

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .product-visual {
    min-height: 430px;
  }

  .trust-strip,
  .plans-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .features-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .marketing-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 42px;
  }

  .footer-brand {
    max-width: none;
  }

  .review-card {
    flex-basis: calc((100% - var(--review-gap)) / 2);
  }

  .plans-grid {
    gap: 22px;
  }

  .plan-card:last-child {
    grid-column: 1 / -1;
    width: min(420px, 100%);
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .hero,
  .section,
  .trust-strip,
  .seo-hero,
  .seo-content,
  .resource-grid,
  .blog-layout,
  .features-hero,
  .features-band,
  .features-cta,
  .footer {
    width: min(100% - 24px, 1160px);
  }

  .brand span:last-child {
    max-width: 190px;
    line-height: 1.15;
  }

  .hero {
    padding-bottom: 32px;
  }

  .hero-metrics,
  .visual-grid,
  .trust-strip,
  .pricing-grid,
  .plans-grid,
  .resource-grid,
  .features-band,
  .tabs {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .blog-cover {
    aspect-ratio: 16 / 10;
  }

  .features-hero {
    padding-top: 52px;
    padding-bottom: 42px;
  }

  .features-process {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .features-cta {
    margin-top: 58px;
    margin-bottom: 58px;
    padding: 24px;
    border-radius: 14px;
  }

  .seo-hero {
    padding-top: 52px;
  }

  .seo-content {
    margin-bottom: 64px;
  }

  .seo-content > article,
  .seo-cta,
  .resource-card {
    padding: 22px;
  }

  .marketing-footer-inner {
    width: min(100% - 24px, 1160px);
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 44px;
  }

  .footer-column h2:not(:first-child) {
    margin-top: 18px;
  }

  .footer-disclaimer {
    padding-top: 8px;
  }

  .testimonials {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .reviews-window {
    padding-left: 0;
    padding-right: 0;
  }

  .review-card {
    flex-basis: 100%;
    padding-left: 22px;
    padding-right: 22px;
  }

  .review-prev {
    left: -10px;
  }

  .review-next {
    right: -10px;
  }

  .faq-media {
    display: none;
  }

  .plans-section {
    padding: 52px 12px 64px;
  }

  .plans-grid {
    gap: 18px;
  }

  .plan-card,
  .included-card {
    border-radius: 14px;
  }

  .plan-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .plan-copy {
    min-height: auto;
  }

  .visual-grid {
    padding: 18px;
  }

  .side-panel {
    align-self: auto;
  }

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

  .feature-list p {
    grid-column: auto;
  }

  .section,
  .consumer-section,
  .law-band,
  .contact {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .contact-preview {
    width: 100%;
  }

  .contact-preview img {
    height: 260px;
  }

  .consumer-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .benefits-suite {
    padding: 56px 12px 64px;
  }

  .benefits-card {
    padding: 22px;
  }

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

  .benefits-grid article {
    min-height: auto;
  }

  .consumer-media {
    padding: 14px;
  }

  .consumer-list {
    gap: 22px;
  }

  .consumer-list article {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

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

  .price-card ul {
    min-height: auto;
  }

  .footer {
    padding: 24px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-menu {
    justify-content: flex-start;
  }
}
