:root {
  --bg: #f5f7fb;
  --bg-soft: #eef3f9;
  --dark: #08111f;
  --dark-2: #0d1c31;
  --text: #172033;
  --muted: #627086;
  --line: rgba(19, 35, 57, 0.12);
  --white: #ffffff;
  --primary: #16a4ff;
  --primary-dark: #0076d6;
  --accent: #f7c948;
  --success: #25d366;
  --shadow: 0 24px 70px rgba(8, 17, 31, 0.14);
  --shadow-soft: 0 16px 40px rgba(8, 17, 31, 0.08);
  --radius: 26px;
  --container: 1350px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 32px,var(--container));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.section-dark {
  color: var(--white);
  background: radial-gradient(circle at 20% 20%,rgba(22,164,255,.32),transparent 32%), radial-gradient(circle at 80% 10%,rgba(24, 170, 255, 0.18),transparent 28%), linear-gradient(135deg,#08111f 0%,#0e2038 52%,#08111f 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(8,17,31,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
    

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1.03rem;
}

.brand-text small {
  font-size: .75rem;
  color: rgba(255,255,255,.68);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255,255,255,.78);
  font-size: .94rem;
  font-weight: 600;
}

.desktop-nav a {
  transition: color .2s;
}

.desktop-nav a:hover {
  color: var(--white);
}

.header-cta {
  color: var(--dark);
  background: var(--accent);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(247,201,72,.18);
  transition: transform .2s, box-shadow .2s;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(247,201,72,.26);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  padding: 11px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 99px;
  margin: 5px 0;
  transition: transform .2s, opacity .2s;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 122px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.result-hero {
  padding: 86px 0 84px;
}

.result-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: start;
}

.result-summary-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.small-label {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 10px;
  display: block;
}

.result-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.result-hero-card {
  border-radius: 36px;
  padding: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}

.result-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.result-card-header small {
  color: rgba(255,255,255,.7);
}

.result-card-header strong,
.result-card-header .status-pill {
  display: block;
}

.status-pill {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.18);
}

.status-pill.approved {
  background: rgba(37,211,102,.12);
  color: #d9ffe5;
  border-color: rgba(37,211,102,.28);
}

.result-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.result-info-grid div {
  color: rgba(255,255,255,.86);
}

.result-info-grid small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.68);
}

.result-info-grid strong {
  font-size: 1.1rem;
}

.result-score {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.result-score div {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
}

.result-score span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: rgba(255,255,255,.14);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 12px;
}

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

.result-status-card {
  padding: 28px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.result-status-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.result-status-card.success {
  border-color: rgba(37,211,102,.22);
}

.result-matrix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 42px;
}

.result-matrix-card {
  padding: 26px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.result-matrix-card h3 {
  margin-bottom: 18px;
}

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

.result-matrix-card li {
  display: grid;
  gap: 4px;
  color: var(--muted);
}

.result-matrix-card li strong {
  color: var(--dark);
}

.result-actions .btn {
  min-width: 220px;
}

.hero-copy h1 mark {
  color: var(--primary);
  background: rgba(22,164,255,.15);
  padding: 4px 8px;
  border-radius: 8px;
}

.plate-input-row button,
.btn.btn-primary,
.btn.btn-ghost {
  min-height: 56px;
}

.plate-card {
  width: min(100%,620px);
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.1);
  border: 0px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
  backdrop-filter: blur(16px);
}

.plate-card small {
  display: block;
  color: rgba(255,255,255,.66);
  margin-top: 10px;
}

.plate-input {
  font-size: 1.15rem;
}

.plate-input-row button {
  min-height: 58px;
}

.section-heading.compact {
  max-width: 820px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  background: rgba(22,164,255,.12);
  border: 1px solid rgba(22,164,255,.18);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.section-dark .eyebrow,
.section-dark .section-kicker {
  color: #bde7ff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.1);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(37,211,102,.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(37,211,102,0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }

}

.hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(2rem,4vw,3.4rem);
  line-height: .98;
  letter-spacing: -.07em;
  max-width: 780px;
}

.hero-subtitle {
  font-size: clamp(1rem,1.6vw,1.25rem);
  max-width: 680px;
  color: rgba(255,255,255,.76);
  margin: 0 0 28px;
}

.plate-card {
  width: min(100%,660px);
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
  backdrop-filter: blur(16px);
}

.plate-card label {
  display: block;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--white);
}

.plate-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.plate-input {
  width: 100%;
  min-height: 58px;
  border: 0;
  outline: 0;
  border-radius: 16px;
  padding: 0 18px;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: .12em;
  color: #08111f;
  text-transform: uppercase;
  background: var(--white);
}

.plate-input-row button {
  min-height: 58px;
  border: 0;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 900;
  color: var(--dark);
  background: var(--accent);
  cursor: pointer;
  transition: transform .2s, filter .2s;
}

.plate-input-row button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.plate-card small {
  display: block;
  color: rgba(255,255,255,.66);
  margin-top: 10px;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg,var(--primary),var(--primary-dark));
  box-shadow: 0 16px 35px rgba(22,164,255,.24);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
}

.btn-outline {
  color: var(--dark);
  border-color: var(--line);
  background: var(--white);
}

.btn-light {
  color: var(--dark);
  background: var(--white);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 12px;
  width: min(100%,660px);
  margin-top: 26px;
}

.trust-row div {
  padding: 15px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  color: var(--white);
  line-height: 1.2;
}

.trust-row span {
  color: rgba(255,255,255,.58);
  font-size: .86rem;
  margin-top: 4px;
}

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

.hero-image-frame img,
.report-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.placeholder-text {
  display: none;
}

.image-placeholder .placeholder-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(255,255,255,.72);
  padding: 26px;
  font-weight: 800;
}

.image-placeholder .placeholder-text small {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.46);
  font-weight: 600;
}


.floating-card strong,
.floating-card small {
  display: block;
  line-height: 1.2;
}

.floating-card small {
  color: var(--muted);
  margin-top: 4px;
}


.status-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(37,211,102,.14);
  color: #0b8e42;
  font-weight: 900;
}

.status-icon.warning {
  background: rgba(247,201,72,.22);
  color: #a57900;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 70px;
  background: var(--bg);
  clip-path: polygon(0 48%,14% 65%,32% 42%,50% 64%,70% 38%,86% 56%,100% 34%,100% 100%,0 100%);
}

.payment-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  
}

.section-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 150px;
  text-align: center;
  gap: 10px;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.section-heading.compact {
  max-width: 820px;
}

.section-heading h2,
.included-grid h2,
.report-grid h2,
.faq-grid h2,
.business-card h2,
.final-cta h2 {
  margin: 16px 0 12px;
  font-size: clamp(2rem,4vw,3.4rem);
  line-height: 1.04;
  letter-spacing: -.055em;
}

.section-heading p,
.lead,
.faq-grid p,
.business-card p,
.final-cta p {
  color: var(--muted);
  font-size: 1.06rem;
  margin: 0;
}

.risk-section {
  padding-top: 74px;
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}

.risk-card,
.step-card,
.plan-card,
.testimonial-card,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.risk-card {
  padding: 24px;
  min-height: 220px;
}

.risk-card span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--bg-soft);
  font-size: 1.45rem;
}

.risk-card h3,
.step-card h3,
.plan-card h3 {
  margin: 18px 0 8px;
  font-size: 1.22rem;
  letter-spacing: -.02em;
}

.risk-card p,
.step-card p,
.plan-card p,
.testimonial-card p {
  color: var(--muted);
  margin: 0;
}

.how-section {
  background: var(--white);
}

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

.step-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
}


.step-card:after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -60px;
  top: -60px;
  border-radius: 50%;
  background: rgba(22,164,255,.08);
}

.step-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg,var(--primary),var(--primary-dark));
  font-weight: 900;
  font-size: 1.3rem;
}

.included-section {
  background: radial-gradient(circle at top left,rgba(22,164,255,.10),transparent 32%), var(--bg);
}

.included-grid,
.report-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}

.check-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(8,17,31,.04);
}

.check-list span {
  color: #109e51;
  font-weight: 900;
}

.dashboard-preview {
  border-radius: 34px;
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(8,17,31,.08);
}

.dashboard-header {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  background: #0e2038;
}

.dashboard-header span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
}

.dashboard-body {
  padding: 28px;
  background: radial-gradient(circle at 80% 20%,rgba(22,164,255,.16),transparent 38%), #08111f;
}

.scan-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.scan-line span {
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 900;
  letter-spacing: .08em;
}

.score-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  margin-bottom: 22px;
}

.score-card small {
  color: rgba(255,255,255,.56);
}

.score-card strong {
  display: block;
  font-size: 1.4rem;
  line-height: 1.1;
  margin-top: 6px;
}

.scan-ring {
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: radial-gradient(circle at center,#08111f 58%,transparent 60%), conic-gradient(var(--primary) 78%,rgba(255,255,255,.14) 0);
}

.mini-results {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.mini-results li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.07);
}

.ok,
.warn {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.ok {
  color: #07130c;
  background: #9ff2bf;
}

.warn {
  color: #221800;
  background: var(--accent);
}

.plans-section {
  background: var(--white);
}

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

.plan-card {
  position: relative;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.plan-card.featured {
  border: 2px solid rgba(22,164,255,.45);
  box-shadow: 0 28px 80px rgba(22,164,255,.18);
  transform: translateY(-12px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 900;
  font-size: .8rem;
  box-shadow: 0 12px 26px rgba(247,201,72,.24);
}

.plan-tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(22,164,255,.10);
  font-weight: 900;
  font-size: .78rem;
  text-transform: uppercase;
}

.price {
  margin: 24px 0 16px;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 900;
  color: var(--dark);
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-weight: 650;
}

.plan-card .btn {
  margin-top: auto;
}

.plan-card.mini {
  min-height: 250px;
  background: linear-gradient(180deg,#fff,#f6f9fd);
}

.plan-card.mini h3 {
  margin-top: 0;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  color: var(--primary-dark);
  font-weight: 900;
}

.report-section {
  background: radial-gradient(circle at 95% 20%,rgba(247,201,72,.14),transparent 28%), var(--bg);
}

.report-benefits {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin: 28px 0;
}

.report-benefits div {
  padding: 16px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.report-benefits strong,
.report-benefits span {
  display: block;
}

.report-benefits span {
  color: var(--muted);
  font-size: .88rem;
  margin-top: 4px;
}

.testimonials-section {
  background: var(--white);
}

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

.testimonial-card {
  padding: 26px;
}

.stars {
  color: #f5b400;
  letter-spacing: .08em;
  margin-bottom: 14px;
}

.client {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--dark);
  background: var(--accent);
}

.client strong,
.client span {
  display: block;
}

.client span {
  color: var(--muted);
  font-size: .9rem;
}

.business-section {
  background: var(--bg);
}

.business-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  border-radius: 34px;
  color: var(--white);
  background: radial-gradient(circle at 80% 0%,rgba(22,164,255,.32),transparent 32%), linear-gradient(135deg,#0b1728,#12365c);
  box-shadow: var(--shadow);
}

.business-card h2 {
  margin-bottom: 10px;
}

.business-card p {
  color: rgba(255,255,255,.72);
  max-width: 760px;
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  align-items: start;
}

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

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--dark);
}

.faq-list p {
  margin-top: 12px;
  font-size: .98rem;
}

.final-cta {
  padding: 86px 0;
  text-align: center;
}

.final-cta-inner {
  max-width: 820px;
}

.final-cta p {
  color: rgba(255,255,255,.72);
}

.final-actions {
  justify-content: center;
}

.site-footer {
  padding: 56px 0 24px;
  color: rgba(255,255,255,.72);
  background: #06101d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer h3 {
  color: var(--white);
  margin: 0 0 14px;
}

.site-footer p {
  margin: 0 0 9px;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  transition: color .2s;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .88rem;
}

.bi-whatsapp {
  font-size: 1.3rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg,#25d366,#128c49);
  box-shadow: 0 18px 38px rgba(18,140,73,.32);
  font-weight: 900;
}

.floating-whatsapp span {
  font-size: 1.1rem;
}

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

  .menu-toggle {
    display: block;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav {
    display: grid;
    position: fixed;
    inset: 78px 0 auto;
    padding: 18px 16px 24px;
    background: rgba(8,17,31,.98);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s, opacity .25s;
  }

  .menu-open .mobile-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav a {
    color: var(--white);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-weight: 800;
  }

  .mobile-nav-cta {
    text-align: center;
    border: 0!important;
    border-radius: 16px;
    margin-top: 14px;
    background: var(--accent);
    color: var(--dark)!important;
  }

  .hero-grid,
  .included-grid,
  .report-grid,
  .faq-grid,
  .result-hero-grid,
  .result-status-grid,
  .result-matrix-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-image-frame,
  .report-image {
    min-height: 430px;
  }

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

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

  .plan-card.featured {
    transform: none;
  }

  .business-card {
    flex-direction: column;
    align-items: flex-start;
  }

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

}

@media (max-width:640px) {
  .container {
    width: min(100% - 24px,var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .header-inner {
    height: 72px;
  }

  .brand-text small {
    display: none;
  }

  .hero {
    padding: 44px 0 92px;
  }

  .hero h1 {
    font-size: clamp(2.25rem,13vw,3.65rem);
  }

  .plate-input-row {
    grid-template-columns: 1fr;
  }

  .plate-input-row button {
    width: 100%;
  }

  .trust-row,
  .risk-grid,
  .plans-grid,
  .testimonials,
  .check-list,
  .report-benefits,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: static;
    margin-top: 12px;
    min-width: 0;
  }

  .hero-image-frame {
    min-height: 200px;
    margin-top: 4px;
  }

  .report-image {
    min-height: 360px;
  }

  .price {
    font-size: 2rem;
  }

  .business-card {
    padding: 28px;
    border-radius: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center;
  }

  .site-footer {
    padding-bottom: 92px;
  }

}
