:root {
  --orange: #F75A06;
  --orange-dark: #d94800;
  --orange-light: #ff7a1a;
  --orange-soft: #fff3ec;
  --graphite: #151515;
  --graphite-2: #242424;
  --tech-gray: #9CA3AF;
  --muted: #6f7681;
  --line: #e2e5ea;
  --soft: #f5f6f8;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(21, 21, 21, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--graphite);
  background: var(--white);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(247, 90, 6, 0.36);
  outline-offset: 3px;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: auto;
  height: 54px;
}

.nav-menu,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-menu a {
  color: #374151;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-menu a:hover {
  color: var(--orange);
}

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

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--graphite);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.btn-sm {
  min-height: 40px;
  padding: 9px 13px;
  font-size: 0.88rem;
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(247, 90, 6, 0.28);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

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

.btn-outline-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

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

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

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 22%, rgba(255, 255, 255, 0.16), transparent 24%),
    radial-gradient(circle at 8% 78%, rgba(247, 90, 6, 0.55), transparent 28%),
    linear-gradient(135deg, var(--graphite) 0%, var(--graphite-2) 44%, var(--orange) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
}

.hero .eyebrow {
  color: #ffd9c7;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 7vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

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

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

.hero-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.13rem;
}

.hero-actions-main {
  max-width: 330px;
  display: block;
}

.hero-actions-main .btn {
  width: 100%;
  min-width: 0;
  min-height: 54px;
}

.hero-actions-main .btn-primary {
  box-shadow: 0 18px 34px rgba(247, 90, 6, 0.38);
}

.hero-actions-main .btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 24px;
}

.hero-proof div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.hero-proof svg {
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  color: var(--orange-light);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.25;
}

.hero-proof span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.35;
}

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

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

.hero-showcase {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 32px;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(21, 21, 21, 0.32);
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: -1;
  border: 1px solid rgba(247, 90, 6, 0.18);
  border-radius: 14px;
}

.hero-showcase-logo {
  display: block;
  width: min(290px, 100%);
  margin: 0 auto 4px;
}

.hero-plan-card {
  position: relative;
  z-index: 1;
  right: auto;
  top: auto;
  width: 100%;
  padding: 20px;
  color: var(--graphite);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(21, 21, 21, 0.1);
}

.hero-plan-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 9px;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-plan-card strong {
  display: block;
  color: var(--graphite);
  font-size: 2.2rem;
  line-height: 1;
}

.hero-plan-card p {
  margin: 8px 0 16px;
  color: var(--graphite);
  font-size: 1.45rem;
  font-weight: 900;
}

.hero-plan-card small {
  color: var(--muted);
  font-size: 0.8rem;
}

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

.hero-mini-grid div {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px;
  color: var(--graphite);
  background: var(--orange-soft);
  border: 1px solid rgba(247, 90, 6, 0.18);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 900;
}

.hero-mini-grid svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading p,
.why-copy p,
.coverage-copy p,
.faq-copy p,
.final-box p {
  color: var(--muted);
  font-size: 1.03rem;
}

.plans,
.support {
  background: var(--soft);
}

.quick-actions {
  position: relative;
  z-index: 4;
  padding: 18px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(21, 21, 21, 0.05);
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.quick-actions-grid button,
.quick-actions-grid a {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  color: var(--graphite);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
}

.quick-actions-grid svg {
  width: 24px;
  height: 24px;
  color: var(--orange);
}

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

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(226, 229, 234, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(21, 21, 21, 0.06);
  overflow: hidden;
}

.plan-card::before {
  content: "";
  height: 5px;
  position: absolute;
  inset: 0 0 auto;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

.plan-kicker {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.plan-card.featured {
  border-color: var(--orange);
  box-shadow: 0 22px 50px rgba(247, 90, 6, 0.16);
  transform: translateY(-10px);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.plan-speed {
  color: var(--orange);
  font-size: 2.55rem;
  font-weight: 900;
  line-height: 1;
}

.plan-price {
  color: var(--graphite);
  font-size: 1.95rem;
  font-weight: 900;
}

.plan-price small {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.plan-card li {
  display: flex;
  gap: 9px;
  color: #4b5563;
  font-size: 0.95rem;
}

.plan-card li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 900;
}

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

.benefits-grid,
.support-grid,
.testimonial-grid,
.fit-grid,
.use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.benefit-card,
.support-card,
.testimonial-card,
.fit-card,
.use-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(21, 21, 21, 0.05);
}

.plan-fit {
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.fit-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fit-card strong {
  color: var(--orange);
  font-size: 2rem;
  line-height: 1;
}

.fit-card.featured {
  color: var(--white);
  background: linear-gradient(135deg, var(--graphite), var(--orange));
  border-color: transparent;
  transform: translateY(-8px);
}

.fit-card.featured strong,
.fit-card.featured h3,
.fit-card.featured p {
  color: var(--white);
}

.fit-card span {
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: var(--graphite);
  background: var(--white);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
}

.use-cases {
  background: var(--graphite);
  color: var(--white);
}

.use-cases .section-heading p,
.use-cases .section-heading h2 {
  color: var(--white);
}

.use-card {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.use-card svg {
  width: 34px;
  height: 34px;
  color: var(--orange-light);
}

.use-card p,
.fit-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.use-card p {
  color: rgba(255, 255, 255, 0.72);
}

.benefit-card svg,
.support-card svg {
  width: 34px;
  height: 34px;
  color: var(--orange);
}

.benefit-card p,
.testimonial-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.benefit-button,
.support-card,
.site-footer button {
  width: 100%;
  color: inherit;
  text-align: left;
  border: 1px solid var(--line);
}

.benefit-button:hover,
.support-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}

.why {
  color: var(--white);
  background: var(--graphite);
}

.why-grid,
.coverage-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 46px;
  align-items: start;
}

.why-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-list span {
  padding: 17px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  font-weight: 800;
}

.local-seo {
  background: var(--soft);
}

.local-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: center;
}

.local-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(21, 21, 21, 0.05);
}

.local-card p:last-child {
  margin-bottom: 0;
}

.coverage {
  background:
    linear-gradient(180deg, #fff 0%, #fff7ed 100%);
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-strip button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  color: var(--graphite);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.coverage-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 6px;
  color: #374151;
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--graphite);
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(247, 90, 6, 0.13);
}

textarea {
  resize: vertical;
}

.form-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 5px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-tabs button {
  min-height: 44px;
  color: var(--graphite);
  background: transparent;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  font-weight: 900;
}

.form-tabs button.active {
  color: var(--white);
  background: var(--orange);
}

[data-field="cpf"],
[data-field="nascimento"],
[data-field="observacao"] {
  display: none;
}

.coverage-form.signup [data-field="cpf"],
.coverage-form.signup [data-field="nascimento"],
.coverage-form.signup [data-field="observacao"] {
  display: grid;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-status.show {
  display: block;
}

.form-status.success {
  color: #166534;
  background: #dcfce7;
  border: 1px solid #86efac;
}

.form-status.error {
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid #fecaca;
}

.form-status p {
  margin: 0;
}

.form-status .btn {
  margin-top: 10px;
}

.support-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  color: var(--graphite);
  background: var(--white);
  font-weight: 900;
}

.testimonial-card {
  display: grid;
  gap: 12px;
}

.stars {
  color: var(--orange);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.testimonial-person strong,
.testimonial-person span {
  display: block;
}

.testimonial-person span {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px;
  color: var(--graphite);
  background: var(--white);
  border: 0;
  font-weight: 900;
  text-align: left;
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.final-cta {
  padding-top: 34px;
}

.final-box {
  padding: 46px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(255,255,255,0.18), transparent 24%),
    linear-gradient(135deg, var(--orange), var(--graphite));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.final-box p {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer {
  padding: 54px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--graphite);
}

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

.footer-brand {
  margin-bottom: 16px;
  color: var(--white);
  width: fit-content;
  padding: 10px 14px;
  background: var(--white);
  border-radius: var(--radius);
}

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

.site-footer a,
.site-footer button,
.site-footer p {
  display: block;
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border: 0;
  padding: 0;
}

.site-footer a:hover,
.site-footer button:hover {
  color: var(--orange);
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  gap: 10px;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: none;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 24px rgba(21, 21, 21, 0.12);
}

.mobile-cta button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--orange);
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
}


.floating-actions button {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 16px 28px rgba(17, 24, 39, 0.24);
}

.float-whatsapp {
  background: #22c55e;
}

.float-call {
  background: var(--orange);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.02);
  }
}

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

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

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 10px 4px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .hero-grid,
  .why-grid,
  .coverage-grid,
  .faq-grid,
  .local-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-proof {
    display: none;
  }

  .hero-showcase {
    max-width: 480px;
    margin: 0 auto;
  }

  .plans-grid,
  .benefits-grid,
  .support-grid,
  .testimonial-grid,
  .fit-grid,
  .use-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 721px) and (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
    gap: 30px;
  }

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

  .hero-showcase {
    max-width: 360px;
  }

  .hero-showcase-logo {
    width: min(220px, 100%);
  }

  .hero-mini-grid {
    grid-template-columns: 1fr;
  }
}

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

  .section {
    padding: 62px 0;
  }

  .hero {
    padding: 46px 0 38px;
  }

  .nav {
    min-height: 68px;
  }

  .nav-actions {
    display: none;
  }

  .nav-menu {
    top: 74px;
  }

  h1 {
    font-size: 2.08rem;
    line-height: 1.08;
  }

  .hero-copy p {
    font-size: 0.98rem;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-actions-main {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    display: none;
  }

  .hero-actions,
  .contact-strip {
    flex-direction: column;
  }

  .hero-actions .btn,
  .contact-strip button {
    width: 100%;
  }

  .hero-showcase {
    padding: 16px;
  }

  .hero-showcase-logo {
    width: min(190px, 100%);
  }

  .hero-mini-grid {
    display: none;
  }

  .hero-plan-card {
    padding: 16px;
  }

  .hero-plan-card strong {
    font-size: 1.85rem;
  }

  .hero-plan-card p {
    font-size: 1.25rem;
  }

  .plans-grid,
  .benefits-grid,
  .support-grid,
  .testimonial-grid,
  .fit-grid,
  .use-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .quick-actions-grid {
    grid-template-columns: 1fr;
  }

  .quick-actions-grid button,
  .quick-actions-grid a {
    justify-content: flex-start;
    min-height: 58px;
  }

  .plan-card,
  .benefit-card,
  .support-card,
  .testimonial-card,
  .fit-card,
  .use-card,
  .coverage-form,
  .final-box {
    padding: 20px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .floating-actions button {
    width: 52px;
    height: 52px;
  }

  .floating-actions {
    bottom: 84px;
  }

  .mobile-cta {
    display: grid;
  }

  body {
    padding-bottom: 76px;
  }
}
