:root {
  --navy: #083c51;
  --gold: #a28f6a;
  --teal: #3f7d8c;
  --cream: #e5e2dd;
  --white: #ffffff;
  --ink: #083c51;
  --muted: rgba(8, 60, 81, 0.72);
  --line: rgba(8, 60, 81, 0.16);
  --shadow: 0 22px 55px rgba(8, 60, 81, 0.14);
  --radius: 18px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

[hidden],
.is-hidden {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.sr-only,
.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.section {
  padding: 96px 0;
}

.section-cream {
  background: var(--cream);
}

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

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.section-navy .section-heading .lead {
  color: var(--cream);
}

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

.eyebrow.light {
  color: var(--cream);
}

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

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.08;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 5.5vw, 5rem);
  letter-spacing: -0.048em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  letter-spacing: -0.032em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.lead {
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.muted {
  color: var(--muted);
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.btn:disabled {
  opacity: 0.62;
  cursor: wait;
  transform: none;
}

.btn-primary {
  color: var(--white);
  background: var(--teal);
}

.btn-primary:hover {
  background: #326c79;
}

.btn-light {
  color: var(--navy);
  background: var(--cream);
}

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

.btn-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
}

.btn-outline-navy {
  color: var(--navy);
  background: transparent;
  border-color: var(--navy);
}

.btn-small {
  min-height: 44px;
  padding-inline: 17px;
  font-size: 0.9rem;
}

.btn-full {
  width: 100%;
}

.top-note {
  background: var(--cream);
  border-top: 4px solid var(--gold);
}

.top-note-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 700;
}

.top-contacts {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-contacts a {
  text-decoration: none;
}

.top-contacts a:hover {
  text-decoration: underline;
}

.whatsapp-text-link,
.footer-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 6px;
}

.whatsapp-icon-small {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}

.whatsapp-icon-large {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.whatsapp-icon-button {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 60, 81, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

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

.site-logo {
  width: 180px;
  height: 60px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 23px;
}

.main-nav a:not(.btn) {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a:not(.btn):hover {
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 7px;
  cursor: pointer;
}

.menu-button svg {
  width: 25px;
  height: 25px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  width: 590px;
  height: 590px;
  left: -270px;
  bottom: -360px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.25;
}

.hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(410px, 0.92fr);
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding: 70px 0;
}

.hero h1 {
  max-width: 760px;
  color: var(--white);
}

.hero .lead {
  max-width: 675px;
  margin-bottom: 30px;
  color: var(--cream);
}

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

.hero-qualifier {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  max-width: 650px;
  margin: 0;
  color: var(--cream);
  font-size: 0.94rem;
}

.hero-qualifier::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.43em;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 auto;
}

.hero-experience {
  max-width: 610px;
  display: grid;
  gap: 4px;
  margin-top: 28px;
  padding: 17px 19px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
}

.hero-experience strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.15;
}

.hero-experience span {
  display: block;
  color: var(--cream);
  font-size: 0.9rem;
}

.hero-brands-panel {
  padding: 27px;
  color: var(--navy);
  background: var(--cream);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.hero-brands-title {
  margin: 0 0 18px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

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

.logo-shell {
  min-height: 83px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brand-logo {
  display: block;
  width: 150px;
  height: 65px;
  max-width: 100%;
  object-fit: contain;
}

.coverage-intro {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 48px;
}

.coverage-intro .lead {
  margin-bottom: 0;
  color: var(--muted);
}

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

.coverage-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 13px 32px rgba(8, 60, 81, 0.08);
}

.coverage-number {
  margin-bottom: 23px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.coverage-card h3 {
  font-size: 1.5rem;
}

.coverage-card p {
  color: var(--muted);
}

.coverage-label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin: auto 0 18px;
  padding: 8px 11px;
  color: var(--navy);
  background: rgba(63, 125, 140, 0.12);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.coverage-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.cities {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.cities summary {
  color: var(--teal);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
}

.cities p {
  margin: 13px 0 0;
  font-size: 0.85rem;
  line-height: 1.6;
}

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

.benefit-card {
  padding: 27px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--navy);
  background: var(--cream);
  border-radius: 9px;
}

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

.benefit-card h3 {
  font-size: 1.18rem;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--cream);
  font-size: 0.95rem;
}

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

.application-card {
  padding: 27px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.application-number {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.application-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.application-cta {
  margin-top: 32px;
}

.structure-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 70px;
  align-items: center;
}

.photo-composition {
  position: relative;
  min-height: 535px;
  padding: 0 70px 70px 0;
}

.photo-main {
  width: 100%;
  height: 465px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.photo-inset {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 47%;
  height: 220px;
  object-fit: cover;
  border: 8px solid var(--cream);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.structure-copy .lead {
  color: var(--muted);
}

.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}

.fact {
  padding: 19px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.fact strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
  font-size: 1.3rem;
}

.fact span {
  color: var(--muted);
  font-size: 0.88rem;
}

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

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-mark {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  flex: 0 0 23px;
  margin-top: 1px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

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

.step {
  position: relative;
  min-height: 230px;
  padding: 72px 25px 25px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 24px;
  left: 25px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.step p {
  margin-bottom: 0;
  color: var(--cream);
  font-size: 0.94rem;
}

.portal-band {
  padding: 42px 0;
  color: var(--navy);
  background: var(--gold);
}

.portal-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.portal-inner h2 {
  margin-bottom: 7px;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.portal-inner p {
  max-width: 750px;
  margin-bottom: 0;
}

.form-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: start;
}

.form-copy .lead {
  color: var(--cream);
}

.contact-routes {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-route {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  text-decoration: none;
}

.contact-route:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-route small {
  display: block;
  margin-bottom: 3px;
  color: var(--cream);
}

.contact-route strong {
  color: var(--white);
  font-size: 1.08rem;
}

.contact-route-copy {
  min-width: 0;
}

.form-card {
  padding: 34px;
  color: var(--navy);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.form-card > h3,
.form-fields > h3 {
  font-size: 1.55rem;
}

.form-card > p,
.form-fields > p {
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

label,
legend {
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  height: 50px;
  margin-top: 7px;
  padding: 0 13px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(8, 60, 81, 0.28);
  border-radius: 7px;
}

input:focus,
select:focus {
  border-color: var(--teal);
  outline: 2px solid rgba(63, 125, 140, 0.18);
}

fieldset {
  margin: 22px 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 10px;
}

.brand-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.check-option {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

.check-option input,
.consent input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--teal);
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}

.form-helper {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.form-submit-error {
  margin: 14px 0 0;
  padding: 12px 14px;
  color: #7b241c;
  background: #fff1ef;
  border: 1px solid #e9b5af;
  border-radius: 7px;
  font-size: 0.88rem;
  font-weight: 700;
}

.form-status {
  min-height: 430px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

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

.form-status-mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-size: 1.7rem;
  font-weight: 900;
}

.form-status.error .form-status-mark {
  background: #a3473d;
}

.form-status p {
  max-width: 460px;
  color: var(--muted);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 66px;
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 42px 22px 0;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 16px;
  color: var(--teal);
  font-size: 1.65rem;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -3px 44px 22px 0;
  color: var(--muted);
}

.final-cta {
  padding: 50px 0;
  color: var(--white);
  background: var(--teal);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.final-cta h2 {
  max-width: 770px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
}

.affiliate-cta {
  padding: 58px 0;
  color: var(--navy);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.affiliate-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
}

.affiliate-cta h2 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 3.3vw, 2.8rem);
}

.affiliate-cta p:not(.eyebrow) {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.btn-whatsapp {
  color: var(--white);
  background: #151515;
  border-color: #151515;
}

.btn-whatsapp:hover {
  color: var(--white);
  background: #292929;
  border-color: #292929;
}

.affiliate-button {
  min-height: 66px;
  justify-content: flex-start;
  padding: 9px 20px 9px 12px;
}

.affiliate-button > span {
  display: grid;
  gap: 2px;
  text-align: left;
}

.affiliate-button strong,
.affiliate-button small {
  color: inherit;
}

.affiliate-button small {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.8;
}

.site-footer {
  padding: 62px 0 24px;
  color: var(--cream);
  background: #052c3b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1fr;
  gap: 55px;
  padding-bottom: 42px;
}

.footer-logo {
  width: 215px;
  height: 80px;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: left center;
}

.footer-copy {
  max-width: 390px;
  color: rgba(229, 226, 221, 0.82);
}

.footer-title {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: rgba(229, 226, 221, 0.82);
  font-size: 0.92rem;
  list-style: none;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-whatsapp-link {
  align-items: flex-start;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 21px;
  color: rgba(229, 226, 221, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.8rem;
}

.whatsapp-wrap {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
}

.whatsapp-toggle {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: var(--white);
  background: #151515;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  font-weight: 800;
  cursor: pointer;
}

.whatsapp-panel {
  position: absolute;
  right: 0;
  bottom: 66px;
  width: 300px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow);
}

.whatsapp-panel p {
  margin: 0 4px 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.whatsapp-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
}

.whatsapp-panel a:hover {
  background: var(--cream);
}

.whatsapp-panel small {
  display: block;
  color: var(--muted);
}

.whatsapp-panel strong {
  display: block;
  color: var(--navy);
}

.whatsapp-panel a > span {
  min-width: 0;
}

.mobile-cta {
  display: none;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.privacy-main,
.error-main {
  min-height: 65vh;
  padding: 80px 0 96px;
}

.legal-content {
  max-width: 820px;
}

.legal-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.legal-content h2 {
  margin-top: 38px;
  font-size: 1.65rem;
}

.legal-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.privacy-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.privacy-summary div {
  min-width: 0;
  padding: 20px;
  background: var(--white);
}

.privacy-summary dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.privacy-summary dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-weight: 750;
}

.privacy-summary a,
.legal-content section a {
  color: var(--teal-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-content section p {
  color: var(--muted);
  line-height: 1.75;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-list li::marker {
  color: var(--teal);
}

.error-main {
  display: grid;
  place-items: center;
  text-align: center;
}

.error-main .container {
  max-width: 720px;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.88fr);
    gap: 34px;
  }

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

  .coverage-card:last-child {
    grid-column: 1 / -1;
  }

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

  .main-nav {
    gap: 15px;
  }

  .main-nav a:not(.btn) {
    display: none;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 80px;
  }

  body {
    padding-bottom: 72px;
    font-size: 16px;
  }

  .container {
    width: min(100% - 30px, var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .privacy-summary {
    grid-template-columns: 1fr;
  }

  .top-note-inner {
    min-height: 44px;
    justify-content: center;
    text-align: center;
  }

  .top-contacts {
    display: none;
  }

  .header-inner {
    min-height: 70px;
  }

  .site-logo {
    width: 158px;
    height: 52px;
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    padding: 18px 15px 22px;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
  }

  .main-nav.open {
    display: grid;
    gap: 6px;
  }

  .main-nav a:not(.btn) {
    display: block;
    padding: 12px 6px;
  }

  .nav-actions .btn {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy {
    padding: 66px 0 36px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 12vw, 4.2rem);
  }

  .hero-brands-panel {
    margin-bottom: 52px;
    border-radius: var(--radius);
  }

  .coverage-intro,
  .structure-grid,
  .form-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .coverage-card:last-child {
    grid-column: auto;
  }

  .photo-composition {
    min-height: 440px;
    padding: 0 38px 54px 0;
  }

  .photo-main {
    height: 390px;
  }

  .photo-inset {
    width: 52%;
    height: 170px;
    border-width: 6px;
  }

  .portal-inner {
    grid-template-columns: 1fr;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .affiliate-cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .whatsapp-wrap {
    right: 15px;
    bottom: 84px;
  }

  .whatsapp-toggle span {
    display: none;
  }

  .whatsapp-toggle {
    width: 54px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-panel {
    width: min(300px, calc(100vw - 30px));
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 110;
    display: block;
    padding: 9px 15px;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--line);
  }

  .mobile-cta .btn {
    width: 100%;
    min-height: 50px;
  }
}

@media (max-width: 560px) {
  .hero-brands-panel {
    padding: 18px;
    border-radius: 16px;
  }

  .hero-brands-grid {
    gap: 9px;
  }

  .affiliate-button {
    width: 100%;
  }

  .benefits-grid,
  .application-grid,
  .steps,
  .facts,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .form-card {
    padding: 26px 20px;
  }

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

  .photo-composition {
    min-height: 360px;
    padding: 0 25px 45px 0;
  }

  .photo-main {
    height: 325px;
  }

  .photo-inset {
    height: 135px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

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