:root {
  --navy: #071b33;
  --ink: #10243a;
  --blue: #163f5f;
  --gold: #c89b3c;
  --paper: #f7f1e8;
  --ivory: #fffaf2;
  --teal: #58c7cf;
  --sage: #e8f1ed;
  --coral: #b7644d;
  --white: #ffffff;
  --muted: #5e6c78;
  --line: rgba(16, 36, 58, 0.14);
  --shadow: 0 20px 55px rgba(7, 27, 51, 0.13);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

section,
[id] {
  scroll-margin-top: 92px;
}

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

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

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

button,
input,
select {
  font: inherit;
}

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

.section-pad {
  padding: 92px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  color: var(--white);
  background: rgba(7, 27, 51, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 140px;
}

.brand img {
  width: 132px;
  max-height: 58px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.88;
  transition: opacity 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal);
  opacity: 1;
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 8px;
  opacity: 1;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--navy);
}

.nav-cta svg,
.btn svg,
.text-link svg,
.whatsapp-line svg,
.floating-whatsapp svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  stroke-width: 2.2;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 106px 0 58px;
  overflow: hidden;
  color: var(--white);
  background: url("assets/hero-editorial.jpg") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 27, 51, 0.95) 0%, rgba(7, 27, 51, 0.78) 46%, rgba(7, 27, 51, 0.26) 100%),
    linear-gradient(0deg, rgba(7, 27, 51, 0.34), rgba(7, 27, 51, 0.05));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-left: max(24px, calc((100vw - 1120px) / 2));
}

.eyebrow,
.section-kicker {
  display: block;
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section-intro h2,
.offer-copy h2,
.pricing-card h3,
.split-copy h2,
.authority-copy h2,
.band-card h2,
.faq-layout h2,
.final-copy h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
}

.hero h1 {
  max-width: 860px;
  font-size: 3.86rem;
}

.hero-lead {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--paper);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.25;
}

.hero-copy {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

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

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 16px 34px rgba(200, 155, 60, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #d6aa4e;
}

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

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.hero-notes span {
  padding-left: 14px;
  border-left: 3px solid var(--teal);
}

.hero-notes strong {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
}

.hero-phone {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.trust-strip {
  padding: 42px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.trust-heading {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.trust-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1.1;
}

.trust-heading p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

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

.trust-item {
  min-height: 158px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-item svg {
  width: 32px;
  height: 32px;
  color: var(--teal);
  stroke-width: 1.8;
}

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

.trust-item strong {
  margin-top: 16px;
  color: var(--navy);
  line-height: 1.25;
}

.trust-item span {
  margin-top: 4px;
  color: var(--muted);
}

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

.section-intro.left {
  margin-left: 0;
  text-align: left;
}

.section-intro h2,
.offer-copy h2,
.split-copy h2,
.authority-copy h2,
.faq-layout h2,
.final-copy h2 {
  color: var(--navy);
  font-size: 3rem;
}

.section-intro p,
.offer-copy p,
.split-copy p,
.authority-copy p,
.band-card p,
.final-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.problem {
  background: var(--paper);
}

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

.insight-card {
  min-height: 245px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.insight-card svg,
.method-list svg,
.band-card > svg {
  width: 36px;
  height: 36px;
  color: var(--teal);
  stroke-width: 1.8;
}

.insight-card h3,
.path-card h3,
.method-list h3,
.process-list h3,
.video-card h3,
.author-card h3,
.include-panel h3 {
  margin: 18px 0 8px;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.25;
}

.insight-card p,
.path-card p,
.method-list p,
.process-list p,
.video-card p,
.author-card p,
.include-panel p {
  margin: 0;
  color: var(--muted);
}

.offer {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(88, 199, 207, 0.14), rgba(183, 100, 77, 0.12)),
    var(--navy);
}

.offer-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.offer-copy h2,
.offer-copy p {
  color: var(--white);
}

.offer-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.price-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin: 28px 0;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.86);
}

.price {
  color: var(--gold);
  font-size: 3.3rem;
  font-weight: 900;
  line-height: 1;
}

.include-panel {
  padding: 34px;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.include-panel h3 {
  margin-top: 0;
  font-size: 1.55rem;
}

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

.check-list li,
.feature-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink);
}

.check-list svg,
.feature-list svg {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--teal);
}

.microcopy {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.offer-note {
  margin-top: 14px;
  padding: 14px;
  color: var(--blue);
  background: rgba(88, 199, 207, 0.12);
  border: 1px solid rgba(88, 199, 207, 0.28);
  border-radius: 8px;
  font-weight: 700;
}

.pricing {
  background: var(--ivory);
}

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

.pricing-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 24px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  color: var(--white);
  background: var(--navy);
  border-color: rgba(200, 155, 60, 0.55);
  box-shadow: 0 28px 72px rgba(7, 27, 51, 0.24);
}

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

.pricing-card.featured .pricing-head p,
.pricing-card.featured .check-list li {
  color: rgba(255, 255, 255, 0.82);
}

.plan-badge {
  justify-self: start;
  padding: 7px 10px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.6rem;
}

.pricing-head strong {
  display: block;
  margin-top: 16px;
  color: var(--gold);
  font-size: 2.8rem;
  line-height: 1;
}

.pricing-head p {
  margin: 16px 0 0;
  color: var(--muted);
}

.check-list.compact {
  gap: 9px;
  font-size: 0.95rem;
}

.btn-plan {
  align-self: end;
  color: var(--navy);
  background: var(--sage);
  border-color: rgba(16, 36, 58, 0.12);
}

.btn-plan:hover,
.btn-plan:focus-visible {
  background: #dbe9e3;
}

.pricing-note {
  max-width: 760px;
  margin: 30px auto 0;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.paths {
  background: var(--white);
}

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

.path-card {
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.path-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.path-card-body {
  padding: 24px;
}

.path-card span {
  color: var(--coral);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.writing {
  background: var(--sage);
}

.split,
.authority-layout,
.final-layout,
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.image-block {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-block img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.method-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.method-list.three {
  grid-template-columns: 1fr;
}

.method-list article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.authority {
  background: var(--ivory);
}

.feature-list {
  margin-top: 26px;
}

.authority-media {
  margin: 0;
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: 16px;
  align-items: end;
}

.authority-media img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.authority-media .portrait {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center top;
}

.authority-media .books {
  width: 100%;
  min-height: 230px;
  object-fit: cover;
  align-self: center;
}

.portrait-frame {
  display: grid;
  gap: 10px;
}

.portrait-frame figcaption {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.process {
  background: var(--white);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.process-list li {
  min-height: 290px;
  padding: 28px 22px;
  background: var(--ivory);
  border-right: 1px solid var(--line);
}

.process-list li:nth-child(even) {
  background: var(--sage);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.money {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.2), rgba(255, 250, 242, 0.9)),
    var(--sage);
}

.two-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}

.band-card {
  min-height: 390px;
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.rights-card h2,
.rights-card p {
  color: var(--white);
}

.rights-card p {
  color: rgba(255, 255, 255, 0.8);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--gold);
  font-weight: 900;
}

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

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

.author-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 18px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.author-card.wide {
  grid-column: 1 / -1;
  grid-template-columns: 0.52fr 0.48fr;
  align-items: center;
}

.author-card img,
.author-card video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--paper);
  border-radius: 6px;
}

.author-card video {
  object-fit: cover;
  background: var(--navy);
}

.author-card.wide img {
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.author-card span {
  display: block;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.author-card h3 {
  margin-top: 8px;
}

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

.video-card {
  padding: 18px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--navy);
  border-radius: 6px;
}

.video-card h3,
.video-card p {
  padding: 0 4px;
}

.faq {
  background: var(--paper);
}

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

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

.faq-list details {
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

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

.faq-list summary::after {
  content: "+";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--sage);
  border-radius: 50%;
}

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

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

.final-cta {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 27, 51, 0.94), rgba(7, 27, 51, 0.75)),
    url("assets/cover-design.jpg") center / cover no-repeat;
}

.final-copy h2,
.final-copy p {
  color: var(--white);
}

.final-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.whatsapp-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: var(--teal);
  font-weight: 900;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.lead-form h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 1.45rem;
}

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

.form-field {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}

.consent-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--navy);
  font-size: 0.93rem;
  font-weight: 700;
}

.consent-field input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 4px;
  accent-color: var(--teal);
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(16, 36, 58, 0.22);
  border-radius: 8px;
}

.lead-form .consent-field input {
  width: 18px;
  height: 18px;
  min-height: auto;
  padding: 0;
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 3px solid rgba(88, 199, 207, 0.32);
  border-color: var(--teal);
}

.lead-form input.is-invalid,
.lead-form select.is-invalid {
  border-color: var(--coral);
  background: #fff7f3;
}

.field-error {
  min-height: 18px;
  color: var(--coral);
  font-size: 0.84rem;
  font-weight: 800;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  border: 0;
}

.form-submit.is-loading {
  cursor: progress;
  opacity: 0.78;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue);
  font-weight: 800;
}

.site-footer {
  color: rgba(255, 255, 255, 0.75);
  background: #041226;
  padding: 34px 0 26px;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-layout img {
  width: 126px;
  height: auto;
}

.footer-layout p {
  margin: 0;
}

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

.footer-address {
  color: rgba(255, 255, 255, 0.75);
  font-style: normal;
}

.footer-actions {
  display: grid;
  justify-items: end;
  gap: 14px;
  text-align: right;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--white);
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--teal);
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 800;
}

.social-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--teal);
  font-size: 0.72rem;
  line-height: 1;
  border: 1px solid rgba(88, 199, 207, 0.38);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--white);
}

.footer-social a:hover .social-mark,
.footer-social a:focus-visible .social-mark {
  color: #041226;
  background: var(--teal);
  border-color: var(--teal);
}

.footer-copy {
  font-size: 0.94rem;
}

.privacy-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.privacy-note p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(7, 27, 51, 0.26);
}

.floating-whatsapp svg {
  width: 25px;
  height: 25px;
}

@media (max-width: 1040px) {
  .problem-grid,
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .pricing-card {
    grid-template-columns: 0.42fr 0.58fr;
    align-items: start;
  }

  .pricing-card .btn {
    grid-column: 1 / -1;
  }

  .process-list li {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .process-list li:nth-child(2n) {
    border-right: 0;
  }

  .process-list li:last-child {
    grid-column: span 2;
    border-bottom: 0;
  }

  .path-grid,
  .video-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .author-card,
  .author-card.wide {
    grid-column: auto;
    grid-template-columns: 0.42fr 0.58fr;
    align-items: center;
  }

  .path-card {
    display: grid;
    grid-template-columns: 0.44fr 0.56fr;
  }

  .path-card img {
    height: 100%;
    min-height: 260px;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: 70px;
    padding: 0 20px;
  }

  .brand img {
    width: 124px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 20px;
    background: rgba(7, 27, 51, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

  .site-nav a {
    padding: 13px 0;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 10px;
    padding: 12px 16px;
  }

  .hero {
    min-height: 78vh;
    padding: 112px 0 62px;
    background-position: 60% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(7, 27, 51, 0.96), rgba(7, 27, 51, 0.58));
  }

  .hero-content {
    margin-left: auto;
  }

  .hero h1 {
    font-size: 2.78rem;
  }

  .hero-lead {
    font-size: 1.32rem;
  }

  .section-intro h2,
  .offer-copy h2,
  .split-copy h2,
  .authority-copy h2,
  .faq-layout h2,
  .final-copy h2 {
    font-size: 2.35rem;
  }

  .offer-layout,
  .split,
  .authority-layout,
  .final-layout,
  .faq-layout,
  .two-band {
    grid-template-columns: 1fr;
  }

  .trust-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pricing-card {
    grid-template-columns: 1fr;
  }

  .authority-media {
    grid-template-columns: 1fr;
  }

  .authority-media .portrait {
    max-width: 420px;
    height: 440px;
  }
}

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

  .section-pad {
    padding: 68px 0;
  }

  .hero {
    min-height: 78vh;
    padding: 94px 0 34px;
  }

  .hero h1 {
    font-size: 2.18rem;
  }

  .hero-lead {
    font-size: 1.18rem;
  }

  .hero-copy,
  .section-intro p,
  .offer-copy p,
  .split-copy p,
  .authority-copy p,
  .band-card p,
  .final-copy p {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-notes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
    font-size: 0.82rem;
  }

  .hero-notes span {
    padding-left: 9px;
    border-left-width: 2px;
  }

  .hero-notes strong {
    font-size: 0.93rem;
    overflow-wrap: anywhere;
  }

  .btn {
    width: 100%;
    padding: 14px 16px;
  }

  .problem-grid,
  .process-list,
  .path-card,
  .trust-grid,
  .author-card,
  .author-card.wide {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: auto;
  }

  .pricing-card {
    padding: 24px;
  }

  .pricing-head strong {
    font-size: 2.45rem;
  }

  .process-list li,
  .process-list li:nth-child(2n),
  .process-list li:last-child {
    grid-column: auto;
    border-right: 0;
  }

  .path-card img {
    min-height: 230px;
  }

  .image-block img {
    height: 360px;
  }

  .include-panel,
  .band-card,
  .lead-form {
    padding: 24px;
  }

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

  .price {
    font-size: 2.7rem;
  }

  .footer-layout {
    display: grid;
    justify-items: start;
  }

  .footer-actions {
    justify-items: start;
    text-align: left;
  }

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

  .footer-social {
    justify-content: flex-start;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 18px;
    width: 50px;
    height: 50px;
  }
}
