:root {
  --navy: #062f52;
  --navy-deep: #041f36;
  --navy-soft: #174b70;
  --lime: #78b817;
  --lime-bright: #8cca22;
  --lime-pale: #eaf4d8;
  --cream: #f5f1e7;
  --paper: #fffdf8;
  --white: #ffffff;
  --ink: #102436;
  --muted: #5d6a72;
  --line: #d9dedb;
  --shadow: 0 24px 70px rgba(4, 31, 54, 0.13);
  --radius: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection { color: var(--white); background: var(--navy); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--lime-bright); outline-offset: 4px; }

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

.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 120px 0; }
h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  color: var(--navy-deep);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 { max-width: 760px; margin-bottom: 28px; font-size: clamp(3.6rem, 7.3vw, 6.8rem); }
h2 { margin-bottom: 26px; font-size: clamp(2.7rem, 5.3vw, 5rem); }

h1 em, h2 em {
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

h3 { color: var(--navy-deep); font-size: 1.25rem; line-height: 1.25; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow > span { width: 28px; height: 2px; background: var(--lime); }
.eyebrow-light { color: rgba(255, 255, 255, 0.76); }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-dark:hover { background: var(--navy-soft); }

.button-primary {
  color: var(--navy-deep);
  background: var(--lime-bright);
  box-shadow: 0 14px 35px rgba(120, 184, 23, 0.28);
}

.button-primary:hover { background: #9ada2b; box-shadow: 0 18px 40px rgba(120, 184, 23, 0.38); }
.button-dark { width: 100%; color: var(--white); background: var(--navy-deep); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  border-bottom: 1px solid rgba(6, 47, 82, 0.25);
  font-size: 0.94rem;
  font-weight: 780;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover { color: var(--lime); border-color: var(--lime); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(6, 47, 82, 0.08);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(16px);
}

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

.brand { display: flex; width: 148px; height: 62px; align-items: center; overflow: hidden; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a { color: #3f5362; font-size: 0.9rem; font-weight: 700; transition: color 160ms ease; }
.desktop-nav a:hover { color: var(--lime); }
.mobile-menu-toggle, .mobile-nav { display: none; }
.mobile-nav[hidden] { display: none; }

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.header-facebook {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: #1877f2;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(24, 119, 242, 0.2);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.header-facebook:hover {
  color: var(--white);
  background: #0f67da;
  box-shadow: 0 10px 26px rgba(24, 119, 242, 0.3);
  transform: translateY(-1px);
}

.header-facebook svg { width: 23px; height: 23px; fill: currentColor; }

.header-phone {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  color: var(--navy-deep);
  border: 1px solid rgba(6, 47, 82, 0.17);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 850;
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.header-phone:hover { color: var(--navy-deep); background: var(--lime-pale); border-color: var(--lime); }
.header-phone svg { width: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 42px;
  background: radial-gradient(circle at 75% 35%, rgba(140, 202, 34, 0.09), transparent 28%), linear-gradient(180deg, var(--paper), #f8f6f0 100%);
}

.hero-orbit {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(120, 184, 23, 0.24);
  border-radius: 50%;
}

.hero-orbit-one { top: 40px; right: -250px; width: 820px; height: 820px; }
.hero-orbit-two { top: 150px; right: -110px; width: 540px; height: 540px; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: clamp(50px, 8vw, 110px);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.07rem, 1.8vw, 1.26rem);
  line-height: 1.75;
}

.hero-actions { display: flex; align-items: center; gap: 26px; margin-bottom: 44px; }

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy-deep);
  font-size: 0.9rem;
  font-weight: 850;
  white-space: nowrap;
}

.phone-link > span { display: grid; width: 38px; height: 38px; place-items: center; background: var(--lime-pale); border-radius: 50%; transition: background-color 180ms ease; }
.phone-link svg { width: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.phone-link:hover > span { background: var(--lime-bright); }

.hero-facts {
  display: grid;
  max-width: 700px;
  margin: 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.hero-facts div { padding: 22px 22px 0 0; }
.hero-facts div + div { padding-left: 22px; border-left: 1px solid var(--line); }
.hero-facts dt { margin-bottom: 3px; color: var(--navy); font-weight: 850; }
.hero-facts dd { margin: 0; color: var(--muted); font-size: 0.83rem; }
.hero-visual { min-width: 0; }

.portrait-shell { position: relative; width: min(100%, 405px); margin: 0 auto; padding: 20px 20px 0; }

.portrait-backdrop {
  position: absolute;
  inset: 55px -30px 30px 45px;
  border-radius: 230px 230px 36px 36px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.portrait-shell::before {
  position: absolute;
  z-index: 0;
  top: 22px;
  right: 0;
  width: 82%;
  height: 82%;
  border: 2px solid var(--lime);
  border-radius: 50% 50% 20% 45%;
  content: "";
  transform: rotate(8deg);
}

.portrait-shell > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(620px, calc(100vh - 180px), 740px);
  border: 8px solid var(--paper);
  border-radius: 220px 220px 30px 30px;
  object-fit: cover;
  box-shadow: 0 22px 60px rgba(4, 31, 54, 0.2);
}

.price-badge {
  position: absolute;
  z-index: 3;
  top: 74px;
  left: -34px;
  display: flex;
  width: 112px;
  height: 112px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  background: var(--lime-bright);
  border: 6px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(4, 31, 54, 0.16);
  line-height: 1;
  transform: rotate(-7deg);
}

.price-badge strong { margin: 2px 0; font-size: 2.1rem; letter-spacing: -0.06em; }
.price-badge span { font-size: 0.75rem; font-weight: 850; text-transform: uppercase; }

.credential-card {
  position: absolute;
  z-index: 4;
  right: -34px;
  bottom: 42px;
  display: flex;
  max-width: 250px;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(6, 47, 82, 0.08);
  border-radius: 17px;
  box-shadow: 0 16px 40px rgba(4, 31, 54, 0.15);
  backdrop-filter: blur(10px);
}

.credential-icon {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy-deep);
  background: var(--lime-bright);
  border-radius: 50%;
  font-weight: 900;
}

.credential-card p { margin: 0; color: var(--muted); font-size: 0.72rem; line-height: 1.45; }
.credential-card strong { color: var(--navy-deep); font-size: 0.8rem; }

.message-guide {
  position: relative;
  z-index: 3;
  display: grid;
  align-items: center;
  margin-top: 82px;
  padding: 24px 28px;
  grid-template-columns: 1.05fr 1.95fr;
  color: var(--white);
  background: var(--navy-deep);
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(4, 31, 54, 0.13);
}

.message-guide-title { display: flex; align-items: center; gap: 15px; }

.message-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy-deep);
  background: var(--lime-bright);
  border-radius: 50%;
}

.message-icon svg, .step-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.message-guide-title small, .message-guide-title strong { display: block; }
.message-guide-title small { color: rgba(255, 255, 255, 0.62); font-size: 0.73rem; }
.message-guide-title strong { font-size: 1rem; }

.message-guide ol { display: grid; margin: 0; padding: 0; grid-template-columns: repeat(3, 1fr); list-style: none; }

.message-guide li {
  padding: 5px 18px;
  color: rgba(255, 255, 255, 0.87);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.9rem;
  font-weight: 700;
}

.message-guide li span { margin-right: 8px; color: var(--lime-bright); font-size: 0.72rem; }
.benefits { color: var(--white); background: var(--navy-deep); }
.benefits h2, .final-cta h2 { color: var(--white); }

.split-heading { display: grid; align-items: end; grid-template-columns: 1.2fr 0.8fr; gap: 70px; }

.split-heading > p {
  max-width: 460px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

.benefit-grid { display: grid; margin-top: 48px; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255, 255, 255, 0.16); }
.benefit-card { min-height: 290px; padding: 30px 28px 24px 0; }
.benefit-card + .benefit-card { padding-left: 28px; border-left: 1px solid rgba(255, 255, 255, 0.16); }

.benefit-number {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 64px;
  place-items: center;
  color: var(--navy-deep);
  background: var(--lime-bright);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.benefit-card h3 { margin-bottom: 12px; color: var(--white); }
.benefit-card p { margin-bottom: 0; color: rgba(255, 255, 255, 0.63); font-size: 0.93rem; }
.offer { background: var(--cream); }
.offer-grid { display: grid; align-items: center; grid-template-columns: 1.08fr 0.72fr; gap: clamp(60px, 9vw, 130px); }
.offer-copy > p:not(.eyebrow) { max-width: 620px; color: var(--muted); font-size: 1.05rem; }
.check-list { display: grid; margin: 34px 0 0; padding: 0; gap: 15px; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 12px; color: #334958; font-weight: 650; }

.check-list li span {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy-deep);
  background: var(--lime-bright);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

.price-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  background: var(--white);
  border: 1px solid rgba(6, 47, 82, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price-card::after {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 190px;
  height: 190px;
  background: var(--lime-pale);
  border-radius: 50%;
  content: "";
}

.price-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.price-card-top p { margin: 0; color: var(--navy-deep); font-weight: 830; }

.price-card-top span {
  padding: 7px 12px;
  color: var(--navy-deep);
  background: var(--lime-bright);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 850;
}

.price { display: flex; align-items: flex-start; gap: 8px; margin: 25px 0 10px; color: var(--navy-deep); line-height: 1; }
.price strong { font-size: clamp(5rem, 8vw, 7.2rem); letter-spacing: -0.09em; }
.price span { margin-top: 13px; color: var(--lime); font-size: 1.4rem; font-weight: 900; }
.price-note { margin-bottom: 26px; color: var(--muted); font-size: 0.88rem; }
.microcopy { margin: 11px 0 0; color: #77838a; font-size: 0.75rem; text-align: center; }
.microcopy a { color: var(--navy-deep); border-bottom: 1px solid rgba(6, 47, 82, 0.25); font-weight: 850; }
.microcopy a:hover { color: var(--lime); border-color: var(--lime); }
.process { background: var(--paper); }
.process .section-heading { max-width: 760px; }
.process-grid { display: grid; margin: 58px 0 0; padding: 0; grid-template-columns: repeat(3, 1fr); gap: 24px; list-style: none; }
.process-swipe-hint { display: none; }

.process-step {
  position: relative;
  min-height: 360px;
  padding: 28px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(6, 47, 82, 0.1);
  border-radius: 23px;
}

.process-step:nth-child(2) { transform: translateY(28px); }

.process-step::after {
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  content: "";
}

.step-index { position: absolute; top: 30px; right: 30px; color: #91a0a8; font-size: 0.75rem; font-weight: 850; }

.step-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 76px 0 42px;
  place-items: center;
  color: var(--navy-deep);
  background: var(--lime-bright);
  border-radius: 50%;
}

.process-step h3 { margin-bottom: 12px; }
.process-step p { position: relative; z-index: 1; margin-bottom: 0; color: var(--muted); font-size: 0.93rem; }

.process-phone {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 10px;
  color: var(--navy-deep);
  border-bottom: 1px solid rgba(6, 47, 82, 0.3);
  font-size: 0.93rem;
  font-weight: 850;
}

.process-phone:hover { color: var(--lime); border-color: var(--lime); }
.process-note {
  max-width: 920px;
  margin: 58px 0 0;
  padding: 20px 24px;
  color: var(--muted);
  background: var(--cream);
  border-left: 3px solid var(--lime);
  border-radius: 0 14px 14px 0;
  font-size: 0.85rem;
}

.process-note strong { color: var(--navy-deep); }
.faq { background: var(--paper); }
.faq-grid { display: grid; align-items: start; grid-template-columns: 0.72fr 1.28fr; gap: clamp(60px, 10vw, 150px); }
.faq-intro { position: sticky; top: 130px; }
.faq-intro > p:not(.eyebrow) { max-width: 380px; color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }

.accordion summary {
  position: relative;
  padding: 26px 54px 26px 0;
  color: var(--navy-deep);
  cursor: pointer;
  font-size: 1.03rem;
  font-weight: 790;
  list-style: none;
}

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

.accordion summary span, .accordion summary span::after {
  position: absolute;
  top: 50%;
  right: 3px;
  width: 18px;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.accordion summary span::after { inset: 0; transform: rotate(90deg); }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion details p { max-width: 620px; margin: -8px 60px 25px 0; color: var(--muted); font-size: 0.93rem; }

.contact { color: var(--white); background: var(--navy); }
.contact-grid { display: grid; align-items: start; grid-template-columns: 0.82fr 1.18fr; gap: clamp(55px, 9vw, 120px); }
.contact h2 { color: var(--white); }
.contact-intro > p:not(.eyebrow) { max-width: 500px; color: rgba(255, 255, 255, 0.7); font-size: 1rem; }
.contact-direct { display: grid; max-width: 500px; margin-top: 34px; grid-template-columns: repeat(2, 1fr); gap: 12px; }

.contact-direct a {
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.contact-direct a:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(140, 202, 34, 0.55); }
.contact-direct small, .contact-direct strong { display: block; }
.contact-direct small { margin-bottom: 4px; color: rgba(255, 255, 255, 0.58); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-direct strong { color: var(--white); font-size: 0.93rem; }

.contact-form {
  display: grid;
  padding: clamp(26px, 4vw, 42px);
  gap: 20px;
  color: var(--navy-deep);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(4, 31, 54, 0.28);
}

.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form label > span { color: var(--navy-deep); font-size: 0.83rem; font-weight: 800; }
.contact-form label > span small { color: var(--muted); font-size: 0.72rem; font-weight: 600; }

.contact-form input:not([type="checkbox"]), .contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: var(--navy-deep);
  background: #fbfaf6;
  border: 1px solid rgba(6, 47, 82, 0.17);
  border-radius: 12px;
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.contact-form textarea { min-height: 130px; resize: vertical; line-height: 1.55; }
.contact-form input:not([type="checkbox"]):focus, .contact-form textarea:focus { background: var(--white); border-color: var(--lime); box-shadow: 0 0 0 4px rgba(120, 184, 23, 0.14); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #89949a; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }

.contact-form .form-consent { display: grid; align-items: start; grid-template-columns: 20px 1fr; gap: 10px; }
.form-consent input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--lime); }
.contact-form .form-consent > span { color: var(--muted); font-size: 0.74rem; font-weight: 550; line-height: 1.55; }
.form-consent a { color: var(--navy-deep); border-bottom: 1px solid rgba(6, 47, 82, 0.25); font-weight: 800; }
.form-submit { width: 100%; border: 0; cursor: pointer; font-family: inherit; }
.form-note { margin: -7px 0 0; color: #77838a; font-size: 0.72rem; line-height: 1.5; text-align: center; }

.form-success {
  display: none;
  margin-top: 28px;
  padding: 18px 22px;
  color: var(--navy-deep);
  background: var(--lime-bright);
  border-radius: 14px;
}

.form-success:target { display: flex; flex-direction: column; gap: 3px; }
.form-success strong { font-size: 0.95rem; }
.form-success span { font-size: 0.82rem; }

.final-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.final-cta-orbit {
  position: absolute;
  top: -330px;
  right: -140px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(140, 202, 34, 0.3);
  border-radius: 50%;
}

.final-cta-orbit::after {
  position: absolute;
  inset: 120px;
  border: 1px solid rgba(140, 202, 34, 0.18);
  border-radius: 50%;
  content: "";
}

.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 { max-width: 890px; }
.final-cta-inner > p:not(.eyebrow) { max-width: 590px; margin-bottom: 32px; color: rgba(255, 255, 255, 0.68); font-size: 1.05rem; }
.final-cta-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.final-phone { color: var(--white); border-bottom: 1px solid rgba(255, 255, 255, 0.35); font-size: 0.94rem; }
.final-phone:hover { color: var(--lime-bright); border-color: var(--lime-bright); }

.site-footer {
  padding: 36px 0 110px;
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner { display: grid; align-items: end; grid-template-columns: 1fr auto auto; gap: 45px; }
.footer-brand strong, .footer-brand small { display: block; }
.footer-brand strong { color: var(--white); font-size: 1.55rem; letter-spacing: -0.06em; line-height: 1; }
.footer-brand strong span { color: var(--lime-bright); }
.footer-brand small { margin-top: 7px; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-meta { display: flex; gap: 24px; font-size: 0.82rem; }
.footer-meta a:hover { color: var(--lime-bright); }
.footer-inner > p { margin: 0; font-size: 0.75rem; }
.mobile-cta { display: none; }

.motion-ready .reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms ease; }
.motion-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }
.motion-ready .reveal-delay, .motion-ready .reveal-delay-1 { transition-delay: 90ms; }
.motion-ready .reveal-delay-2 { transition-delay: 180ms; }
.motion-ready .reveal-delay-3 { transition-delay: 270ms; }

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .header-inner { position: relative; }

  .mobile-menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 11px 10px;
    place-content: center;
    gap: 4px;
    color: var(--navy-deep);
    background: var(--white);
    border: 1px solid rgba(6, 47, 82, 0.17);
    border-radius: 50%;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .mobile-nav {
    position: absolute;
    z-index: 20;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    width: min(290px, calc(100vw - 28px));
    padding: 10px;
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid rgba(6, 47, 82, 0.1);
    border-radius: 18px;
    box-shadow: 0 22px 55px rgba(4, 31, 54, 0.18);
    backdrop-filter: blur(18px);
  }

  .mobile-nav a {
    padding: 13px 15px;
    color: var(--navy-deep);
    border-radius: 11px;
    font-size: 0.92rem;
    font-weight: 800;
  }

  .mobile-nav a:hover, .mobile-nav a:focus-visible { background: var(--lime-pale); }
  .header-actions { margin-left: 0; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(310px, 0.72fr); gap: 50px; }
  .price-badge { left: -12px; }
  .credential-card { right: -8px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-card:nth-child(3) { border-left: 0; }
  .benefit-card:nth-child(n + 3) { border-top: 1px solid rgba(255, 255, 255, 0.16); }
  .benefit-number { margin-bottom: 38px; }
  .offer-grid { gap: 65px; }
  .faq-grid { grid-template-columns: 0.8fr 1.2fr; gap: 70px; }
  .contact-grid { gap: 55px; }
}

@media (max-width: 780px) {
  html { scroll-padding-top: 78px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 82px 0; }
  h1 { font-size: clamp(3.25rem, 16vw, 5rem); }
  h2 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .header-inner { min-height: 74px; }
  .header-inner { gap: 10px; }
  .brand { width: 112px; height: 51px; }
  .header-actions { gap: 8px; }
  .header-facebook { width: 40px; height: 40px; }
  .header-facebook svg { width: 21px; height: 21px; }
  .header-phone { min-height: 40px; padding: 9px 12px; font-size: 0.78rem; }
  .hero { padding: 58px 0 26px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy br { display: none; }
  .hero-lead { font-size: 1rem; line-height: 1.68; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .phone-link { align-self: center; }
  .hero-facts { grid-template-columns: 1fr 1fr; }

  .hero-facts div:nth-child(3) {
    padding-top: 18px;
    padding-left: 0;
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .portrait-shell { width: min(88%, 430px); }
  .portrait-shell > img { height: auto; aspect-ratio: 4 / 5; }
  .price-badge { top: 65px; left: -24px; }
  .credential-card { right: -20px; bottom: 32px; }

  .message-guide {
    margin-top: 60px;
    padding: 22px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .message-guide ol { grid-template-columns: 1fr; gap: 0; border-top: 1px solid rgba(255, 255, 255, 0.13); }
  .message-guide li { padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); border-left: 0; }
  .split-heading, .offer-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 46px; }
  .form-row, .contact-direct { grid-template-columns: 1fr; }
  .split-heading > p { margin-bottom: 0; }
  .benefit-grid { grid-template-columns: 1fr; }

  .benefit-card, .benefit-card + .benefit-card, .benefit-card:nth-child(3) {
    min-height: auto;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .benefit-card:first-child { border-top: 0; }
  .benefit-number { margin-bottom: 28px; }
  .price-card { padding: 30px 24px; }
  .process-swipe-hint { display: block; margin: 18px 0 0; color: var(--muted); font-size: 0.86rem; font-weight: 750; }

  .process-grid {
    display: flex;
    margin-top: 36px;
    padding: 0 0 14px;
    overflow-x: auto;
    gap: 14px;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .process-grid::-webkit-scrollbar { display: none; }
  .process-step, .process-step:nth-child(2) { min-height: 350px; flex: 0 0 min(82vw, 330px); scroll-snap-align: start; transform: none; }
  .step-icon { margin: 60px 0 32px; }
  .faq-intro { position: static; }
  .contact-direct { max-width: none; }
  .final-cta { padding: 90px 0; }
  .final-cta-actions { align-items: stretch; flex-direction: column; gap: 20px; }
  .final-cta-actions .button { width: 100%; }
  .final-phone { align-self: center; }
  .footer-inner { align-items: start; grid-template-columns: 1fr; gap: 25px; }
  .site-footer { padding-bottom: 120px; }

  .mobile-cta {
    position: fixed;
    z-index: 200;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 11px 11px 17px;
    color: var(--white);
    background: rgba(4, 31, 54, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 17px;
    box-shadow: 0 14px 38px rgba(4, 31, 54, 0.35);
    backdrop-filter: blur(14px);
  }

  .mobile-cta small, .mobile-cta strong { display: block; }
  .mobile-cta small { color: rgba(255, 255, 255, 0.6); font-size: 0.67rem; }
  .mobile-cta strong { font-size: 0.82rem; }

  .mobile-cta-actions { display: flex; flex: 0 0 auto; gap: 7px; }

  .mobile-cta-actions a {
    flex: 0 0 auto;
    padding: 13px 16px;
    color: var(--navy-deep);
    background: var(--lime-bright);
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 900;
  }

  .mobile-cta-actions .mobile-call { color: var(--white); background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.18); }
}

@media (max-width: 430px) {
  .brand { width: 96px; }
  .header-actions { gap: 6px; }
  .header-facebook { width: 38px; height: 38px; }
  .header-phone { gap: 7px; padding-inline: 9px; font-size: 0.7rem; }
  .hero-facts { grid-template-columns: 1fr; }

  .hero-facts div, .hero-facts div + div, .hero-facts div:nth-child(3) {
    padding: 15px 0;
    grid-column: auto;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-facts div:first-child { border-top: 0; }
  .portrait-shell { width: 91%; }
  .price-badge { left: -18px; width: 92px; height: 92px; }
  .price-badge strong { font-size: 1.75rem; }
  .credential-card { right: -15px; max-width: 205px; padding: 12px; }
  .credential-card p { font-size: 0.65rem; }
  .mobile-cta div { min-width: 0; }
  .mobile-cta-actions { gap: 5px; }
  .mobile-cta-actions a { padding: 12px 11px; font-size: 0.72rem; }
}

@media (max-width: 360px) {
  .header-inner { gap: 7px; }
  .brand { width: 84px; }
  .header-facebook { width: 36px; height: 36px; }
  .header-facebook svg { width: 19px; height: 19px; }
  .header-phone { gap: 6px; padding-inline: 8px; font-size: 0.66rem; }
  .header-phone svg { width: 16px; }
}

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