:root {
  --blue-900: #08364c;
  --blue-800: #075374;
  --blue-700: #087fb4;
  --blue-100: #e9f6fb;
  --green-600: #78bd20;
  --green-700: #5e9b19;
  --green-100: #eef8e5;
  --warm: #fffaf2;
  --surface: #ffffff;
  --surface-soft: #f4f9fb;
  --text: #102532;
  --muted: #647783;
  --line: rgba(8, 54, 76, 0.12);
  --shadow-soft: 0 18px 60px rgba(8, 54, 76, 0.12);
  --shadow-card: 0 12px 34px rgba(8, 54, 76, 0.09);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

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

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

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 2000;
  padding: 10px 14px;
  color: white;
  background: var(--blue-900);
  border-radius: 999px;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 242, 0.86);
  border-bottom: 1px solid rgba(8, 54, 76, 0.08);
  backdrop-filter: blur(18px);
}

.nav-container {
  min-height: 76px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  padding: 0;
}

.logo-frame,
.footer-logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.logo-frame {
  width: 232px;
  height: 75px;
}

.logo-frame img,
.footer-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.navbar-toggler {
  border: 0;
  min-width: 44px;
  min-height: 44px;
}

.navbar-toggler:focus,
.btn-primary-action:focus,
.btn-secondary-action:focus,
.btn-whatsapp:focus,
.floating-whatsapp:focus,
input:focus,
textarea:focus {
  outline: 3px solid rgba(120, 189, 32, 0.36);
  outline-offset: 3px;
  box-shadow: none;
}

.nav-link {
  color: var(--blue-900);
  font-weight: 700;
  padding: 12px 11px !important;
}

.nav-link:hover {
  color: var(--blue-700);
}

.btn-primary-action,
.btn-secondary-action,
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 50px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.btn-primary-action {
  color: white;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
  box-shadow: 0 16px 36px rgba(8, 127, 180, 0.24);
}

.btn-secondary-action {
  color: var(--blue-900);
  background: white;
  border: 1px solid rgba(8, 54, 76, 0.12);
}

.btn-whatsapp {
  color: white;
  background: linear-gradient(135deg, #26d367, var(--green-700));
  box-shadow: 0 16px 36px rgba(94, 155, 25, 0.24);
}

.btn-primary-action:hover,
.btn-secondary-action:hover,
.btn-whatsapp:hover {
  transform: translateY(-2px);
}

.full-width {
  width: 100%;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 58px 0 68px;
  min-height: calc(100dvh - 76px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 12% 18%, rgba(120, 189, 32, 0.16), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(8, 127, 180, 0.11), transparent 30%),
    linear-gradient(180deg, #fffaf2 0%, #eef8fb 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -18%;
  width: 720px;
  height: 360px;
  background: rgba(8, 127, 180, 0.08);
  border-radius: 80% 0 0 0;
  transform: rotate(-7deg);
}

.hero-orb {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(2px);
}

.hero-orb-blue {
  width: 360px;
  height: 360px;
  right: 9%;
  top: 120px;
  background: rgba(8, 127, 180, 0.08);
}

.hero-orb-green {
  width: 260px;
  height: 260px;
  left: -120px;
  bottom: 20px;
  background: rgba(120, 189, 32, 0.12);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 60px;
  align-items: center;
}

.hero-marketplace {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 24px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 14px;
  color: var(--blue-900);
  background: rgba(120, 189, 32, 0.13);
  border: 1px solid rgba(120, 189, 32, 0.22);
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-copy h1 {
  max-width: 850px;
  margin: 0 0 22px;
  color: var(--blue-900);
  font-size: clamp(2.7rem, 6.1vw, 5.75rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.hero-copy-centered {
  max-width: 920px;
  text-align: center;
}

.hero-copy-centered .eyebrow {
  margin-inline: auto;
}

.hero-copy-centered h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(3.25rem, 8vw, 7rem);
}

.hero-copy-centered p {
  max-width: 720px;
  margin-inline: auto;
}

.hero-copy p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

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

.hero-panel {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(8, 54, 76, 0.11);
  border-radius: 36px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 96px;
  height: 96px;
  background: var(--green-100);
  border-radius: 50%;
  z-index: -1;
}

.hero-logo-card,
.hero-question-card {
  background: white;
  border: 1px solid rgba(8, 54, 76, 0.09);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.hero-logo-card {
  display: flex;
  justify-content: center;
  padding: 22px;
}

.hero-logo-card img {
  width: min(100%, 360px);
  height: 92px;
  object-fit: contain;
}

.hero-question-card {
  padding: 26px;
}

.hero-question-card span {
  color: var(--green-700);
  font-weight: 900;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-question-card strong {
  display: block;
  margin-top: 8px;
  color: var(--blue-900);
  font-size: 1.7rem;
  line-height: 1.1;
}

.hero-question-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.hero-mini-grid span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-900);
  background: var(--green-100);
  border: 1px solid rgba(94, 155, 25, 0.14);
  border-radius: 999px;
  font-weight: 900;
}

.hero-coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(980px, 100%);
  margin-top: 8px;
}

.hero-coverage-card {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 142px;
  padding: 22px 18px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(8, 54, 76, 0.1);
  border-radius: 30px;
  box-shadow: var(--shadow-card);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.hero-coverage-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -44px;
  width: 112px;
  height: 112px;
  background: rgba(120, 189, 32, 0.13);
  border-radius: 50%;
}

.hero-coverage-card:hover {
  transform: translateY(-5px);
  border-color: rgba(120, 189, 32, 0.42);
  box-shadow: 0 22px 54px rgba(8, 54, 76, 0.14);
}

.coverage-symbol {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: white;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  border-radius: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero-coverage-card strong {
  position: relative;
  z-index: 1;
  font-size: 1.08rem;
  font-weight: 900;
}

.hero-help {
  margin-top: 4px;
}

.section {
  padding: 90px 0;
}

.section-soft {
  background: #f3f9fb;
}

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

.section-heading h2,
.guide-copy h2,
.companies-copy h2 {
  margin: 0 0 16px;
  color: var(--blue-900);
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.section-heading p,
.guide-copy p,
.companies-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.protect-section {
  background: white;
}

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

.protect-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  background: linear-gradient(180deg, white 0%, #fbfdfe 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.protect-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -56px;
  width: 150px;
  height: 150px;
  background: rgba(8, 127, 180, 0.07);
  border-radius: 50%;
}

.protect-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  height: 42px;
  margin-bottom: 36px;
  color: var(--blue-900);
  background: var(--green-100);
  border-radius: 999px;
  font-weight: 900;
}

.protect-card h3,
.aftercare-card h3 {
  margin: 0 0 12px;
  color: var(--blue-900);
  font-size: 1.38rem;
  font-weight: 900;
}

.protect-card p,
.aftercare-card p {
  margin: 0;
  color: var(--muted);
}

.guide-section {
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 84% 16%, rgba(120, 189, 32, 0.32), transparent 26%),
    linear-gradient(135deg, var(--blue-900), var(--blue-700));
}

.guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 54px;
  align-items: center;
}

.guide-copy h2 {
  color: white;
}

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

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

.steps-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
}

.steps-list span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--blue-900);
  background: white;
  border-radius: 50%;
  font-weight: 900;
}

.steps-list strong {
  color: white;
  font-size: 1.08rem;
}

.steps-list p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.aftercare-card {
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.companies-section {
  background: white;
}

.companies-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 46px;
  align-items: center;
}

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

.companies-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 18px;
  color: var(--blue-900);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-card);
  font-weight: 900;
  text-align: center;
}

.contact-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(120, 189, 32, 0.12), transparent 28%),
    linear-gradient(180deg, #f4f9fb 0%, #fffaf2 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.contact-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.whatsapp-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(238, 248, 229, 0.9) 100%);
}

.form-heading {
  margin-bottom: 24px;
}

.form-heading span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 12px;
  color: var(--blue-900);
  background: var(--blue-100);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-heading h3 {
  margin: 0 0 8px;
  color: var(--blue-900);
  font-size: 1.75rem;
  font-weight: 900;
}

.form-heading p,
.form-note,
.direct-contact span {
  margin: 0;
  color: var(--muted);
}

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-field label {
  color: var(--text);
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  color: var(--text);
  background: white;
  border: 1px solid rgba(8, 54, 76, 0.14);
  border-radius: 16px;
  font: inherit;
}

.form-field textarea {
  resize: vertical;
}

.form-note {
  margin-top: 14px;
  font-size: 0.9rem;
}

.direct-contact {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  text-align: center;
}

.direct-contact a {
  color: var(--green-700);
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 8px;
  color: white;
  background: #25d366;
  border: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
}

.floating-whatsapp::before {
  content: "";
  display: block;
  width: 46px;
  height: 46px;
  background: white;
  -webkit-mask: url("/images/whatsapp.svg") center / contain no-repeat;
  mask: url("/images/whatsapp.svg") center / contain no-repeat;
}

.site-footer {
  color: white;
  background: var(--blue-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.78fr 1fr;
  gap: 30px;
  align-items: start;
  padding-top: 34px;
  padding-bottom: 28px;
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-logo-frame {
  width: 230px;
  height: 74px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
}

.site-footer p {
  max-width: 310px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.footer-links {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 2px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.footer-social svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.footer-links strong {
  margin-bottom: 4px;
  color: white;
  font-size: 0.95rem;
}

.footer-links a,
.footer-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  max-width: 100%;
  min-height: 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.footer-links > a:not(:has(svg)) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-small-text {
  margin-top: 6px !important;
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 0.82rem !important;
  line-height: 1.5;
}

.footer-regulatory {
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
}

.footer-regulatory p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links span,
.footer-links p,
.footer-bottom-content span {
  overflow-wrap: anywhere;
}

.footer-links svg,
.footer-item svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding: 11px 0;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(0, 0, 0, 0.14);
  font-size: 0.84rem;
}

.footer-bottom-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) auto;
  gap: 14px;
  align-items: center;
}

.footer-bottom-content a {
  color: white;
  font-weight: 800;
}

.footer-bottom-content a:hover {
  text-decoration: underline;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.admin-panel-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.admin-panel-card h3 {
  margin: 0 0 18px;
  color: var(--blue-900);
  font-weight: 900;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--blue-900);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-table td {
  color: var(--muted);
  font-size: 0.94rem;
}

.admin-table a {
  color: var(--blue-700);
  font-weight: 900;
}

.admin-detail-heading {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.admin-detail-heading h1 {
  margin: 0 0 8px;
  color: var(--blue-900);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.admin-detail-heading p {
  margin: 0;
  color: var(--muted);
}

.bot-result-list {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 14px;
  margin-bottom: 18px;
}

.bot-result-list dt {
  color: var(--blue-900);
  font-weight: 900;
}

.bot-result-list dd {
  margin: 0;
  color: var(--muted);
}

.bot-response-box {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding: 18px;
  background: var(--blue-100);
  border-radius: 20px;
}

.bot-response-box strong {
  color: var(--blue-900);
}

.bot-response-box p {
  margin: 0;
  color: var(--text);
  white-space: pre-wrap;
}

.message-thread {
  display: grid;
  gap: 14px;
}

.message-bubble {
  max-width: 760px;
  padding: 14px 16px;
  border-radius: 20px;
}

.message-bubble span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 900;
  opacity: 0.72;
}

.message-bubble p {
  margin: 0;
  white-space: pre-wrap;
}

.message-bubble.inbound {
  justify-self: start;
  color: var(--text);
  background: white;
  border: 1px solid var(--line);
}

.message-bubble.outbound {
  justify-self: end;
  color: white;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
}

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

.event-list article {
  padding: 16px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.event-list strong {
  color: var(--blue-900);
}

.event-list p {
  margin: 6px 0 0;
  color: var(--muted);
}

.admin-summary-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
}

.admin-summary-form label {
  color: var(--blue-900);
  font-weight: 900;
}

.admin-summary-form input {
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  font: inherit;
}

.summary-output {
  margin: 0;
  white-space: pre-wrap;
  color: var(--text);
  font: inherit;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal-left {
  transform: translateX(-34px);
}

.reveal-right {
  transform: translateX(34px);
}

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 160ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 1199px) {
  .aftercare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-coverage-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .nav-container {
    min-height: 74px;
  }

  .navbar-collapse {
    padding: 16px 0 8px;
  }

  .hero-grid,
  .guide-grid,
  .companies-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    padding: 54px 0 60px;
  }

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

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

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

  .footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 767px) {
  .logo-frame {
    width: 184px;
    height: 60px;
  }

  .footer-logo-frame {
    width: 204px;
    height: 66px;
    padding: 6px 9px;
  }

  .hero-copy h1 {
    letter-spacing: -0.05em;
    overflow-wrap: anywhere;
  }

  .hero-copy-centered h1 {
    font-size: clamp(2.65rem, 14vw, 4.1rem);
    line-height: 0.98;
  }

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

  .hero-help {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-help .btn-secondary-action {
    width: min(100%, 360px);
  }

  .hero-mini-grid,
  .protect-grid,
  .aftercare-grid,
  .companies-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-coverage-card {
    min-height: 118px;
    padding: 18px 12px;
    border-radius: 24px;
  }

  .coverage-symbol {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .section {
    padding: 68px 0;
  }

  .hero-panel,
  .contact-card {
    padding: 20px;
    border-radius: 26px;
  }

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

  .steps-list span {
    margin-bottom: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 26px;
    padding-bottom: 22px;
  }

  .site-footer p {
    max-width: 100%;
  }

  .footer-desktop-only {
    display: none !important;
  }

  .footer-regulatory {
    width: 100%;
    padding: 14px;
    border-radius: 18px;
  }

  .footer-bottom-content {
    grid-template-columns: 1fr;
    gap: 4px;
    align-items: start;
  }

  .admin-detail-heading {
    display: grid;
  }

  .admin-actions,
  .admin-summary-form {
    display: grid;
  }

  .admin-actions a,
  .admin-actions button,
  .admin-summary-form a,
  .admin-summary-form button,
  .admin-summary-form input {
    width: 100%;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    padding: 8px;
  }

  .floating-whatsapp::before {
    width: 45px;
    height: 45px;
  }

  .reveal-left,
  .reveal-right {
    transform: translateY(28px);
  }
}

@media (max-width: 380px) {
  .hero-coverage-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy-centered h1 {
    font-size: clamp(2.35rem, 13vw, 3.35rem);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
