﻿:root {
  --petrol: #1F2123;
  --petrol-2: #171819;
  --petrol-3: #2C2D2F;
  --gold: #B98E3F;
  --gold-2: #D7B66B;
  --gold-soft: #EFE2C8;
  --offwhite: #f7f4ed;
  --offwhite-2: #fbf8f1;
  --text: #2f3336;
  --muted: #6d7378;
  --line: rgba(185, 142, 63, 0.32);
  --shadow: 0 22px 60px rgba(31, 33, 35, 0.12);
  --soft-shadow: 0 14px 34px rgba(31, 33, 35, 0.09);
  --radius: 8px;
  --font-body: "DM Sans", Aptos, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Marcellus", "Palatino Linotype", Palatino, Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

.narrow {
  width: min(820px, calc(100% - 48px));
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(22px, 5vw, 62px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(31, 33, 35, 0.06);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  filter: drop-shadow(0 8px 18px rgba(31, 33, 35, 0.12));
}

.brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.34rem;
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1;
  text-transform: none;
}

.brand small {
  display: block;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand span {
  min-width: 0;
}

.brand-name-main {
  color: var(--petrol);
}

.brand-name-es {
  color: var(--gold);
}

.brand-word {
  white-space: nowrap;
}

.brand-highlight {
  color: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--petrol);
  font-size: 0.98rem;
  font-weight: 500;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform 0.25s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding: 15px 26px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--petrol), var(--petrol-3));
  box-shadow: 0 16px 30px rgba(31, 33, 35, 0.18);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 8px;
  background: var(--petrol);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--gold-2);
  border-radius: 999px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 92% 18%, rgba(215, 182, 107, 0.25), transparent 24%),
    linear-gradient(135deg, #1F2123 0%, #171819 46%, #1F2123 100%);
  border-bottom-right-radius: 72px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -80px -180px auto;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(215, 182, 107, 0.26);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1140px, calc(100% - 48px));
  min-height: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 42px;
  padding: 62px 0 78px;
}

.hero-copy,
.hero-visual,
.service-copy,
.about-copy,
.ebook-copy,
.final-grid > div,
.faq-grid > div {
  min-width: 0;
}

.hero-copy {
  padding-top: 34px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow span {
  width: 46px;
  height: 1px;
  background: var(--gold-2);
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 640px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 3.05vw, 3.34rem);
  font-weight: 400;
}

h1 span {
  display: block;
}

.title-mobile {
  display: none;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.01rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.reveal-item {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  transition-delay: calc(var(--reveal-delay, 0) * 70ms);
}

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

html:not(.js-ready) .reveal-item {
  opacity: 1;
  transform: none;
}

.btn-light {
  color: var(--petrol);
  background: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--petrol), var(--petrol-3));
  box-shadow: 0 16px 34px rgba(31, 33, 35, 0.18);
}

.btn-primary::after,
.header-cta::after,
.btn-card::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 12px;
  border-radius: 50%;
  background: var(--gold-2);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(215, 182, 107, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.hero-visual {
  position: relative;
  min-height: 555px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.portrait-wrap {
  position: relative;
  z-index: 2;
  width: min(410px, 86%);
  height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-bottom-left-radius: 160px;
  border-bottom-right-radius: 160px;
}

.portrait {
  width: 106%;
  max-width: none;
  height: auto;
  transform: translateY(168px);
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.32));
}

.hero-shape {
  position: absolute;
  z-index: 1;
  border-radius: 46% 54% 62% 38% / 48% 42% 58% 52%;
}

.shape-one {
  width: 430px;
  height: 430px;
  right: 22px;
  bottom: 28px;
  background: linear-gradient(145deg, rgba(185, 142, 63, 0.26), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(215, 182, 107, 0.32);
}

.shape-two {
  width: 210px;
  height: 210px;
  left: 6px;
  top: 74px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(215, 182, 107, 0.18);
}

.floating-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px 9px 9px;
  color: #fff;
  border: 1px solid rgba(215, 182, 107, 0.42);
  border-radius: 999px;
  background: rgba(31, 33, 35, 0.76);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
}

.badge-tax {
  right: 2px;
  top: 116px;
}

.badge-price {
  left: 0;
  top: 224px;
}

.badge-reform {
  right: 26px;
  bottom: 104px;
}

.icon-circle,
.big-icon,
.plan-icon {
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
}

.icon-circle {
  width: 38px;
  height: 38px;
  color: var(--petrol);
  background: var(--gold-2);
}

.icon-circle svg,
.big-icon svg,
.plan-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 3;
  display: grid;
  gap: 3px;
  transform: translateX(-50%);
}

.scroll-cue span {
  display: block;
  width: 26px;
  height: 26px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(45deg);
  opacity: 0.85;
}

.quick-benefits {
  padding: 82px 0 74px;
  background: #fff;
}

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

.benefit-item {
  text-align: center;
  transition: transform 0.28s ease;
}

.big-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  color: var(--gold);
  background: var(--offwhite);
  border: 1px solid var(--line);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.big-icon svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.65;
}

.benefit-item h2 {
  margin-bottom: 12px;
  color: var(--petrol);
  font-size: 1.22rem;
  font-weight: 400;
}

.benefit-item p {
  max-width: 320px;
  margin: 0 auto;
  color: var(--muted);
}

.benefit-item:hover {
  transform: translateY(-4px);
}

.benefit-item:hover .big-icon {
  background: #fff;
  box-shadow: 0 16px 34px rgba(31, 33, 35, 0.12);
  transform: translateY(-5px) rotate(-4deg);
}

.pain-section {
  padding: 72px 0 82px;
  background: var(--offwhite-2);
}

.pain-section .section-kicker,
.plans-section .section-kicker,
.about-section .section-kicker,
.ebook-section .section-kicker,
.faq-section .section-kicker,
.final-cta .section-kicker,
.phone-section .section-kicker {
  color: var(--gold);
}

.narrow h2,
.section-head h2,
.service-copy h2,
.about-copy h2,
.ebook-copy h2,
.faq-grid h2,
.final-grid h2 {
  color: var(--petrol);
  font-size: clamp(2.05rem, 2.65vw, 2.64rem);
  font-weight: 400;
}

.narrow h2,
.section-head h2 {
  width: min(820px, 100%);
  margin-inline: auto;
}

.narrow p,
.section-head p,
.service-copy > p,
.about-copy p,
.ebook-copy p,
.final-grid p {
  color: var(--muted);
  font-size: 0.99rem;
  line-height: 1.72;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.pain-grid article {
  min-height: 178px;
  display: flex;
  align-items: center;
  padding: 24px 22px;
  color: var(--petrol);
  border: 2px dotted rgba(185, 142, 63, 0.68);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  font-weight: 500;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.pain-grid article:hover {
  border-color: rgba(185, 142, 63, 0.95);
  background: #fff;
  box-shadow: 0 18px 38px rgba(31, 33, 35, 0.1);
  transform: translateY(-6px);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.phone-section {
  padding: 92px 0;
  background: #fff;
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 74px;
}

.phone-stage {
  position: relative;
  min-height: 630px;
  display: grid;
  place-items: center;
}

.organic-bg {
  position: absolute;
  width: 455px;
  height: 455px;
  border-radius: 54% 46% 38% 62% / 47% 58% 42% 53%;
  background: linear-gradient(135deg, var(--petrol), var(--petrol-2));
  box-shadow: var(--shadow);
}

.organic-bg::before,
.organic-bg::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  border: 1px solid rgba(215, 182, 107, 0.48);
}

.organic-bg::before {
  inset: 24px;
}

.organic-bg::after {
  inset: -18px 42px 32px -26px;
}

.phone-mockup {
  position: relative;
  z-index: 2;
  width: 286px;
  height: 568px;
  padding: 14px;
  border: 11px solid #101317;
  border-radius: 42px;
  background: #101317;
  box-shadow: 0 28px 56px rgba(31, 33, 35, 0.34);
  animation: phoneFloat 5.8s ease-in-out infinite;
}

.phone-notch {
  position: absolute;
  top: 17px;
  left: 50%;
  z-index: 4;
  width: 78px;
  height: 18px;
  border-radius: 0 0 16px 16px;
  transform: translateX(-50%);
  background: #101317;
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  padding: 40px 18px 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fdfaf2 0%, #fff 52%, #f5efe0 100%);
}

.screen-head > span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.screen-brand span {
  color: var(--petrol);
}

.screen-head > .screen-brand {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
}

.screen-brand em {
  color: var(--gold);
  font-style: normal;
}

.screen-head strong {
  display: block;
  color: var(--petrol);
  font-size: 1.28rem;
  line-height: 1.16;
}

.screen-card {
  margin: 22px 0 18px;
  padding: 18px;
  border-radius: var(--radius);
}

.gold-card {
  color: #fff;
  background: linear-gradient(135deg, var(--petrol), var(--gold));
}

.screen-card small,
.screen-card strong {
  display: block;
}

.screen-card small {
  opacity: 0.8;
  font-weight: 700;
}

.screen-card strong {
  font-size: 2.3rem;
  line-height: 1;
}

.screen-list {
  display: grid;
  gap: 10px;
}

.screen-list div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 18px rgba(31, 33, 35, 0.08);
  color: var(--muted);
  font-size: 0.78rem;
}

.screen-list strong {
  color: var(--petrol);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.service-grid article {
  min-height: 176px;
  padding: 24px;
  border: 1px solid rgba(185, 142, 63, 0.28);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-grid article:hover {
  border-color: rgba(185, 142, 63, 0.58);
  box-shadow: 0 18px 42px rgba(31, 33, 35, 0.12);
  transform: translateY(-6px);
}

.service-grid span {
  display: block;
  width: 38px;
  height: 6px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--gold);
}

.service-grid h3 {
  margin-bottom: 10px;
  color: var(--petrol);
  font-size: 1.34rem;
  font-weight: 400;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
}

.plans-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 112px;
  background:
    radial-gradient(circle at 9% 12%, rgba(185, 142, 63, 0.12), transparent 25%),
    radial-gradient(circle at 91% 6%, rgba(31, 33, 35, 0.08), transparent 24%),
    linear-gradient(180deg, var(--offwhite) 0%, #fffaf0 100%);
}

.plans-section::before,
.plans-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.plans-section::before {
  top: 72px;
  left: max(24px, calc(50% - 620px));
  width: 90px;
  height: 90px;
  border: 1px solid rgba(185, 142, 63, 0.24);
}

.plans-section::after {
  right: max(28px, calc(50% - 650px));
  bottom: 84px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(31, 33, 35, 0.12);
}

.section-head {
  text-align: center;
}

.section-head p {
  width: min(760px, 100%);
  margin-inline: auto;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
  perspective: 1400px;
}

.plan-card {
  --base-lift: 0px;
  --lift: 0px;
  --reveal: 28px;
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 24px 20px 20px;
  color: #fff;
  border: 1px solid rgba(215, 182, 107, 0.28);
  border-radius: 14px 14px 44px 14px;
  background: linear-gradient(180deg, var(--petrol-2) 0%, var(--petrol) 100%);
  box-shadow: 0 18px 42px rgba(31, 33, 35, 0.13);
  opacity: 0;
  transform: perspective(1400px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(calc(var(--base-lift) + var(--lift) + var(--reveal)));
  transform-style: preserve-3d;
  transition:
    opacity 0.72s ease,
    transform 0.42s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  transition-delay: calc(var(--reveal-delay, 0) * 85ms);
  will-change: transform;
}

.plan-card.is-visible {
  --reveal: 0px;
  opacity: 1;
}

html:not(.js-ready) .plan-card {
  --reveal: 0px;
  opacity: 1;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.08) 38%, rgba(215, 182, 107, 0.28) 50%, transparent 62%);
  opacity: 0;
  transform: translateX(-22%);
  transition: opacity 0.3s ease, transform 0.55s ease;
}

.plan-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(215, 182, 107, 0.18);
  border-radius: 10px 10px 34px 10px;
}

.plan-card:hover,
.plan-card:focus-within {
  --lift: -14px;
  border-color: rgba(215, 182, 107, 0.72);
  box-shadow: 0 30px 76px rgba(31, 33, 35, 0.24);
}

.plan-card:hover::before,
.plan-card:focus-within::before {
  opacity: 1;
  transform: translateX(18%);
}

.plan-card > *:not(.plan-glow):not(.plan-orbit) {
  position: relative;
  z-index: 1;
}

.plan-glow {
  position: absolute;
  inset: auto -70px -90px auto;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(215, 182, 107, 0.14);
  filter: blur(2px);
  opacity: 0.75;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.plan-orbit {
  position: absolute;
  top: -70px;
  right: -66px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(215, 182, 107, 0.22);
  border-radius: 50%;
  transition: transform 0.5s ease, border-color 0.25s ease;
}

.plan-card:hover .plan-glow,
.plan-card:focus-within .plan-glow {
  opacity: 1;
  transform: scale(1.18) translate(-14px, -12px);
}

.plan-card:hover .plan-orbit,
.plan-card:focus-within .plan-orbit {
  border-color: rgba(215, 182, 107, 0.6);
  transform: rotate(18deg) scale(1.08);
}

.plan-light {
  color: var(--petrol);
  border-color: rgba(185, 142, 63, 0.34);
  background: linear-gradient(180deg, #ffffff 0%, #fbf7ed 100%);
}

.plan-light::before {
  background: linear-gradient(110deg, transparent 0%, rgba(185, 142, 63, 0.08) 38%, rgba(185, 142, 63, 0.22) 50%, transparent 62%);
}

.plan-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 126px;
}

.plan-top p {
  min-height: auto;
  margin-bottom: 10px;
  color: inherit;
  opacity: 0.76;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-top h3 {
  min-height: auto;
  margin-bottom: 0;
  font-size: 1.52rem;
  font-weight: 400;
}

.plan-popular-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-top: 12px;
  padding: 7px 12px;
  color: var(--petrol);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: linear-gradient(135deg, #f4d37d 0%, var(--gold-2) 52%, #b98e3f 100%);
  box-shadow: 0 12px 24px rgba(185, 142, 63, 0.22);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.plan-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  margin-bottom: 0;
  color: var(--petrol);
  background: var(--gold-2);
  box-shadow: 0 12px 24px rgba(31, 33, 35, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.plan-icon svg {
  width: 26px;
  height: 26px;
}

.plan-card:hover .plan-icon,
.plan-card:focus-within .plan-icon {
  transform: translateY(-3px) rotate(-5deg);
  box-shadow: 0 16px 30px rgba(31, 33, 35, 0.24);
}

.plan-focus {
  min-height: 112px;
  margin: 2px 0 16px;
  padding: 16px;
  border: 1px solid rgba(215, 182, 107, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.plan-light .plan-focus {
  background: rgba(31, 33, 35, 0.04);
}

.plan-card:hover .plan-focus,
.plan-card:focus-within .plan-focus {
  border-color: rgba(215, 182, 107, 0.58);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.plan-focus span,
.plan-focus strong {
  display: block;
}

.plan-focus span {
  margin-bottom: 6px;
  color: var(--gold-2);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-light .plan-focus span {
  color: var(--gold);
}

.plan-focus strong {
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.4;
}

.plan-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.plan-stats span {
  min-height: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  border: 1px solid rgba(215, 182, 107, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.2;
}

.plan-light .plan-stats span {
  color: var(--muted);
  background: #fff;
}

.plan-stats strong {
  color: var(--gold-2);
  font-size: 0.93rem;
  font-weight: 700;
}

.plan-light .plan-stats strong {
  color: var(--petrol);
}

.plan-meter {
  height: 7px;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.plan-light .plan-meter {
  background: rgba(31, 33, 35, 0.09);
}

.plan-meter span {
  display: block;
  height: 100%;
  width: 34%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 18px rgba(215, 182, 107, 0.36);
  transform-origin: left;
  transform: scaleX(0.82);
  transition: transform 0.35s ease, width 0.35s ease;
}

.level-1 span {
  width: 34%;
}

.level-2 span {
  width: 48%;
}

.level-3 span {
  width: 64%;
}

.level-4 span {
  width: 82%;
}

.level-5 span {
  width: 100%;
}

.plan-card:hover .plan-meter span,
.plan-card:focus-within .plan-meter span {
  transform: scaleX(1);
}

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

.plan-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.36;
}

.plan-light li {
  color: var(--text);
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 1px;
  background: var(--gold-2);
}

.plan-excludes {
  margin: 0 0 18px;
  padding: 14px;
  border: 1px solid rgba(215, 182, 107, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.plan-excludes span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-excludes p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  line-height: 1.42;
}

.plan-light .plan-excludes {
  background: rgba(31, 33, 35, 0.035);
}

.plan-light .plan-excludes p {
  color: var(--muted);
}

.plan-note {
  margin: auto 0 18px;
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(215, 182, 107, 0.2);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.38;
}

.plan-light .plan-note {
  color: var(--muted);
}

.btn-card {
  width: 100%;
  min-height: 50px;
  margin-top: auto;
  color: var(--petrol);
  background: var(--gold-2);
  box-shadow: 0 16px 28px rgba(31, 33, 35, 0.12);
}

.plan-light .btn-card {
  color: #fff;
  background: var(--petrol);
}

.plan-light .btn-card::after {
  background: var(--gold-2);
}

.featured {
  --base-lift: -14px;
  border-color: rgba(215, 182, 107, 0.72);
  background:
    radial-gradient(circle at 80% 0%, rgba(215, 182, 107, 0.28), transparent 32%),
    radial-gradient(circle at 4% 24%, rgba(244, 211, 125, 0.12), transparent 26%),
    linear-gradient(180deg, #252422 0%, #1F2123 42%, #171819 100%);
  box-shadow:
    0 34px 82px rgba(31, 33, 35, 0.28),
    0 0 0 1px rgba(215, 182, 107, 0.14);
}

.food-service-plan {
  background: linear-gradient(180deg, #242629 0%, #1F2123 100%);
}

.featured::after {
  border-color: rgba(215, 182, 107, 0.42);
  box-shadow: inset 0 0 34px rgba(215, 182, 107, 0.08);
}

.featured .plan-icon {
  background: linear-gradient(135deg, #f5d88a 0%, var(--gold-2) 52%, var(--gold) 100%);
  box-shadow:
    0 16px 34px rgba(215, 182, 107, 0.24),
    0 0 0 7px rgba(215, 182, 107, 0.08);
}

.featured .plan-focus,
.featured .plan-stats span {
  border-color: rgba(215, 182, 107, 0.38);
  background: rgba(215, 182, 107, 0.1);
}

.featured .btn-card {
  background: linear-gradient(135deg, #f4d37d 0%, var(--gold-2) 48%, #b98e3f 100%);
  box-shadow:
    0 18px 34px rgba(185, 142, 63, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

.about-section {
  padding: 92px 0;
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(215, 182, 107, 0.2), transparent 26%),
    linear-gradient(135deg, var(--petrol), #1F2123);
  border-top-left-radius: 42px;
  border-bottom-right-radius: 42px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: center;
  gap: 70px;
}

.about-copy h2,
.about-copy p {
  color: #fff;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 500;
}

.signature {
  display: inline-flex;
  margin-top: 18px;
  padding: 12px 18px;
  border: 1px solid rgba(215, 182, 107, 0.4);
  border-radius: 999px;
  color: var(--gold-2);
  font-weight: 600;
}

.photo-placeholder {
  width: min(100%, 430px);
  aspect-ratio: 1080 / 1350;
  display: grid;
  place-items: center;
  padding: 26px;
  border: 1px dashed rgba(215, 182, 107, 0.72);
  border-radius: 8px 8px 110px 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 50% 18%, rgba(215, 182, 107, 0.24), transparent 34%);
  text-align: center;
}

.photo-placeholder div {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  gap: 8px;
  border: 1px solid rgba(215, 182, 107, 0.18);
  border-radius: 6px 6px 90px 6px;
}

.photo-placeholder span,
.photo-placeholder small,
.photo-placeholder strong {
  display: block;
}

.photo-placeholder span {
  color: var(--gold-2);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.photo-placeholder strong {
  font-size: 1.48rem;
  font-weight: 400;
}

.photo-placeholder small {
  color: rgba(255, 255, 255, 0.68);
}

.photo-real {
  overflow: hidden;
  padding: 18px 24px 0;
  border-style: solid;
  background:
    radial-gradient(circle at 50% 26%, rgba(215, 182, 107, 0.28), transparent 38%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
}

.photo-real img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
}

.ebook-section {
  padding: 104px 0 92px;
  background: #fff;
}

.ebook-grid {
  display: grid;
  grid-template-columns: minmax(320px, 660px) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

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

.ebook-photo-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px 8px 120px 8px;
  border: 1px solid rgba(185, 142, 63, 0.24);
  background: var(--petrol);
  box-shadow: var(--shadow);
}

.ebook-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(31, 33, 35, 0.02) 0%, rgba(31, 33, 35, 0.14) 46%, rgba(31, 33, 35, 0.84) 100%),
    linear-gradient(90deg, rgba(18, 18, 18, 0.28) 0%, transparent 52%),
    radial-gradient(circle at 18% 18%, rgba(215, 182, 107, 0.18), transparent 28%);
}

.ebook-photo-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(215, 182, 107, 0.28);
  border-radius: 6px 6px 96px 6px;
  opacity: 0.72;
}

.ebook-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.ebook-card-pricing,
.ebook-card-profit {
  background:
    radial-gradient(circle at 16% 14%, rgba(215, 182, 107, 0.18), transparent 28%),
    linear-gradient(180deg, #201f1d 0%, #141414 100%);
}

.ebook-card-pricing img,
.ebook-card-profit img {
  opacity: 1;
  filter: saturate(0.95) contrast(1.04);
  transform: scale(1.02);
}

.ebook-card-pricing::before {
  background:
    linear-gradient(180deg, rgba(31, 33, 35, 0.02) 0%, rgba(31, 33, 35, 0.16) 42%, rgba(31, 33, 35, 0.84) 100%),
    linear-gradient(90deg, rgba(18, 18, 18, 0.34) 0%, transparent 56%),
    radial-gradient(circle at 76% 18%, rgba(215, 182, 107, 0.18), transparent 28%);
}

.ebook-card-profit::before {
  background:
    linear-gradient(180deg, rgba(31, 33, 35, 0.02) 0%, rgba(31, 33, 35, 0.16) 42%, rgba(31, 33, 35, 0.84) 100%),
    linear-gradient(90deg, rgba(18, 18, 18, 0.38) 0%, transparent 56%),
    radial-gradient(circle at 70% 13%, rgba(215, 182, 107, 0.22), transparent 30%);
}

.ebook-photo-card:hover img {
  transform: scale(1.045);
}

.ebook-card-pricing:hover img,
.ebook-card-profit:hover img {
  transform: scale(1.065);
}

.ebook-photo-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 28px;
  z-index: 2;
  padding: 16px 18px;
  color: #fff;
  border: 1px solid rgba(215, 182, 107, 0.42);
  border-radius: var(--radius);
  background: rgba(31, 33, 35, 0.78);
  backdrop-filter: blur(14px);
}

.ebook-photo-label span,
.ebook-photo-label strong,
.ebook-photo-label small {
  display: block;
}

.ebook-photo-label span,
.ebook-photo-label small {
  color: var(--gold-2);
  font-size: clamp(0.64rem, 0.72vw, 0.74rem);
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ebook-photo-label strong {
  margin: 8px 0 6px;
  font-family: var(--font-display);
  font-size: clamp(1.48rem, 1.9vw, 2.02rem);
  font-weight: 400;
  line-height: 1.03;
  overflow-wrap: normal;
}

.ebook-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}

.ebook-points span {
  padding: 10px 14px;
  color: var(--petrol);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--offwhite);
  font-size: 0.86rem;
  font-weight: 500;
}

.ebook-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-secondary {
  color: var(--petrol);
  border-color: rgba(185, 142, 63, 0.45);
  background: #fff;
  box-shadow: 0 14px 28px rgba(31, 33, 35, 0.08);
}

.faq-section {
  padding: 86px 0;
  background: var(--offwhite-2);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
}

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

details {
  border: 1px solid rgba(185, 142, 63, 0.24);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(31, 33, 35, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

details:hover {
  border-color: rgba(185, 142, 63, 0.5);
  box-shadow: 0 18px 34px rgba(31, 33, 35, 0.09);
  transform: translateY(-3px);
}

summary {
  position: relative;
  padding: 22px 56px 22px 24px;
  color: var(--petrol);
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

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

summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 18px;
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.final-cta {
  padding: 92px 0 0;
  background: #fff;
}

.final-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 74px;
}

.final-portrait {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.final-portrait::before {
  content: "";
  position: absolute;
  inset: 78px 20px 0;
  border-radius: 48% 52% 0 0 / 50% 50% 0 0;
  background: var(--offwhite);
  border: 1px solid var(--line);
}

.final-portrait img {
  position: relative;
  z-index: 1;
  width: min(360px, 100%);
  max-height: 430px;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 18px 22px rgba(31, 33, 35, 0.15));
}

.site-footer {
  margin-top: 86px;
  padding: 54px 0 20px;
  color: #fff;
  background: var(--petrol);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.54fr);
  gap: 46px;
  align-items: start;
}

.footer-grid img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  border-radius: 0;
  border: 0;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.24));
}

.footer-grid p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid h3 {
  color: var(--gold-2);
  font-size: 1.25rem;
}

.footer-brand,
.footer-contact {
  padding: 24px;
  border: 1px solid rgba(215, 182, 107, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.social-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.social-line a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  color: var(--gold-2);
  border: 1px solid rgba(215, 182, 107, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
}

.social-line a:hover {
  color: #fff;
  border-color: rgba(215, 182, 107, 0.72);
  background: rgba(215, 182, 107, 0.1);
}

.copyright {
  width: min(1140px, calc(100% - 48px));
  margin: 34px auto 0;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.74);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 20px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

.float-label {
  position: absolute;
  right: 76px;
  top: 50%;
  width: max-content;
  padding: 15px 22px;
  color: var(--petrol);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(31, 33, 35, 0.18);
  font-size: 0.92rem;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%) translateX(10px);
  transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
}

.float-label::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%) rotate(45deg);
  background: #fff;
}

.whatsapp-float:hover .float-label,
.whatsapp-float:focus-visible .float-label {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.wa-icon {
  position: relative;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 12px rgba(37, 211, 102, 0.14), 0 18px 34px rgba(31, 33, 35, 0.24);
}

.wa-icon::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 3px;
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--gold-2);
}

.wa-icon svg {
  width: 38px;
  height: 38px;
  fill: #fff;
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

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

  .reveal-item,
  .plan-card {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 1181px) {
  .plans-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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

  .plan-card {
    min-height: 570px;
  }
}

@media (max-width: 960px) {
  .site-header {
    display: flex;
    grid-template-columns: none;
    justify-content: space-between;
    min-height: 86px;
    gap: 14px;
    width: 100vw;
    max-width: 100vw;
  }

  .menu-toggle {
    display: none;
    flex: 0 0 48px;
    justify-self: end;
    position: absolute;
    top: 19px;
    right: 18px;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-cta {
    display: flex;
  }

  .site-header.is-open .main-nav {
    position: fixed;
    inset: 86px 18px auto 18px;
    flex-direction: column;
    align-items: center;
    gap: 0;
    min-height: 330px;
    padding: 24px 24px 98px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    z-index: 92;
  }

  .site-header.is-open .main-nav a {
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid rgba(31, 33, 35, 0.07);
    font-size: 1rem;
    text-align: center;
  }

  .site-header.is-open .main-nav a::after {
    display: none;
  }

  .site-header.is-open .main-nav a:last-child {
    border-bottom: 0;
  }

  .site-header.is-open .header-cta {
    position: fixed;
    left: 50%;
    right: auto;
    top: 338px;
    z-index: 94;
    width: min(320px, calc(100vw - 72px));
    justify-content: center;
    transform: translateX(-50%);
  }

  .site-header.is-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    border-bottom-right-radius: 38px;
  }

  .hero-grid,
  .split,
  .about-grid,
  .ebook-grid,
  .faq-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .ebook-showcase {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .hero-grid {
    min-height: auto;
    gap: 22px;
    padding-top: 38px;
    text-align: center;
  }

  .hero-copy {
    order: 2;
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .hero-visual {
    order: 1;
    min-height: 430px;
  }

  .portrait-wrap {
    width: min(350px, 92%);
    height: 430px;
  }

  .shape-one {
    width: 330px;
    height: 330px;
    right: calc(50% - 178px);
    bottom: 20px;
  }

  .shape-two {
    left: calc(50% - 190px);
    top: 42px;
  }

  .eyebrow {
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .hero-text {
    letter-spacing: 0;
  }

  .eyebrow span {
    width: 34px;
  }

  .hero-actions {
    justify-content: center;
  }

  .three-cols,
  .pain-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .pain-grid article {
    min-height: auto;
  }

  .service-copy,
  .about-copy,
  .ebook-copy,
  .faq-grid > div:first-child,
  .final-grid > div:last-child {
    text-align: center;
  }

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

  .phone-stage {
    min-height: 580px;
  }

  .organic-bg {
    width: 370px;
    height: 370px;
  }

  .plan-card {
    --base-lift: 0px;
    --lift: 0px;
    --rx: 0deg;
    --ry: 0deg;
    transform: perspective(1400px) translateY(var(--reveal));
  }

  .plan-card.is-visible {
    transform: perspective(1400px) translateY(0);
  }

  .plan-card:hover,
  .plan-card:focus-within {
    --lift: 0px;
  }

  .photo-placeholder,
  .ebook-photo-card {
    margin: 0 auto;
  }

  .ebook-points {
    justify-content: center;
  }

  .final-portrait {
    order: 1;
  }

  .final-grid > div:last-child {
    order: 2;
  }
}

@media (max-width: 620px) {
  .container,
  .narrow,
  .hero-grid,
  .copyright {
    width: min(100% - 36px, 1140px);
  }

  .site-header {
    padding: 12px 18px;
  }

  .menu-toggle {
    display: none !important;
    position: absolute;
    top: 19px;
    left: auto;
    right: 18px;
    z-index: 100;
    background: var(--petrol);
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand span {
    display: none;
  }

  .hero-copy {
    width: min(318px, calc(100vw - 36px));
    max-width: min(318px, calc(100vw - 36px));
  }

  .hero-copy h1,
  .hero-copy p {
    max-width: 100%;
  }

  .hero-text {
    width: min(304px, 100%);
    margin-inline: auto;
    font-size: 0.86rem;
    line-height: 1.54;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    max-width: 150px;
    font-size: 0.58rem;
  }

  h1 {
    max-width: 100%;
    font-size: 1.62rem;
    line-height: 1.05;
  }

  .title-desktop {
    display: none;
  }

  .title-mobile {
    display: block;
  }

  .hero-grid {
    gap: 16px;
    padding-top: 22px;
    padding-bottom: 48px;
  }

  .hero-visual {
    min-height: 348px;
  }

  .portrait-wrap {
    width: min(286px, 76vw);
    height: 342px;
    overflow: hidden;
  }

  .portrait {
    width: 108%;
    transform: translateY(102px);
  }

  .shape-one {
    width: 280px;
    height: 280px;
    right: calc(50% - 142px);
    bottom: 14px;
  }

  .shape-two {
    width: 136px;
    height: 136px;
    left: calc(50% - 148px);
    top: 46px;
  }

  .floating-badge {
    padding: 7px;
  }

  .floating-badge strong {
    display: none;
  }

  .badge-tax {
    right: 12px;
    top: 70px;
  }

  .badge-price {
    left: 10px;
    top: 150px;
  }

  .badge-reform {
    right: 10px;
    bottom: 66px;
  }

  .hero .btn {
    min-height: 48px;
    padding: 13px 20px;
    font-size: 0.88rem;
  }

  .hero-actions {
    width: min(244px, 100%);
    margin: 0 auto 18px;
    gap: 10px;
  }

  .scroll-cue {
    bottom: 14px;
    gap: 1px;
  }

  .scroll-cue span {
    width: 18px;
    height: 18px;
    border-right-width: 3px;
    border-bottom-width: 3px;
  }

  .quick-benefits,
  .pain-section,
  .phone-section,
  .plans-section,
  .about-section,
  .ebook-section,
  .faq-section {
    padding-block: 64px;
  }

  .narrow h2,
  .section-head h2,
  .service-copy h2,
  .about-copy h2,
  .ebook-copy h2,
  .faq-grid h2,
  .final-grid h2 {
    font-size: 1.92rem;
  }

  .phone-mockup {
    width: 260px;
    height: 520px;
  }

  .organic-bg {
    width: 310px;
    height: 310px;
  }

  .phone-stage {
    min-height: 535px;
  }

  .plan-card {
    min-height: auto;
    padding: 28px 22px 22px;
  }

  .plan-top,
  .plan-focus {
    min-height: auto;
  }

  .plan-top h3,
  .plan-top p {
    min-height: auto;
  }

  .about-grid,
  .ebook-grid,
  .faq-grid,
  .final-grid,
  .split {
    gap: 38px;
  }

  .ebook-showcase {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ebook-photo-card {
    min-height: 470px;
  }

  .ebook-photo-card img {
    min-height: 470px;
  }

  .ebook-actions {
    justify-content: center;
  }

  .ebook-photo-label strong {
    font-size: 2.32rem;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-grid img {
    margin: 0 auto;
  }

  .social-line {
    justify-content: center;
  }

  .float-label {
    display: none;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }

  .wa-icon {
    width: 52px;
    height: 52px;
  }

  .wa-icon svg {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 390px) {
  .site-header {
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 0;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .brand small {
    max-width: 116px;
    font-size: 0.5rem;
  }

  h1 {
    font-size: 1.52rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: min(244px, 100%);
  }
}


