:root {
  color-scheme: light;
  --bg: #faf9f6;
  --surface: #ffffff;
  --surface-soft: #f3f1ea;
  --ink: #15191a;
  --ink-soft: #2c3331;
  --muted: #6a7470;
  --line: #e7e0d4;
  --line-soft: #efe9dd;
  --green: #1f7a4d;
  --green-dark: #155f3a;
  --green-soft: #eaf3ec;
  --accent: #b07a2c;
  --shadow: 0 24px 60px rgba(28, 36, 32, 0.12);
  --shadow-soft: 0 14px 34px rgba(28, 36, 32, 0.08);
  --radius: 14px;
  --radius-sm: 9px;
  --max: 1140px;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 0%, rgba(31, 122, 77, 0.06), transparent 32%),
    radial-gradient(circle at 100% 8%, rgba(176, 122, 44, 0.05), transparent 30%);
  z-index: -1;
}

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

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

svg {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

h1,
h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink);
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 4.2vw, 3.75rem);
  line-height: 1.04;
  letter-spacing: 0;
  max-width: 620px;
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.06;
  margin-bottom: 16px;
  max-width: 720px;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

.section-lede {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.3vw, 1.15rem);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.btn-lg {
  min-height: 54px;
  padding: 0 30px;
  font-size: 1.04rem;
}

.btn svg {
  fill: currentColor;
  stroke: currentColor;
  width: 1.1em;
  height: 1.1em;
}

.btn-primary,
.btn-whatsapp {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 26px rgba(31, 122, 77, 0.24);
}

.btn-primary:hover,
.btn-whatsapp:hover {
  background: var(--green-dark);
  box-shadow: 0 16px 34px rgba(31, 122, 77, 0.3);
}

.btn-secondary {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: #d3c9b6;
  box-shadow: var(--shadow-soft);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(250, 249, 246, 0.86);
  border-bottom: 1px solid rgba(231, 224, 212, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow 200ms ease, background 200ms ease, border-color 200ms ease;
}

.site-header.is-elevated {
  background: rgba(250, 249, 246, 0.96);
  border-bottom-color: rgba(231, 224, 212, 0.9);
  box-shadow: 0 10px 30px rgba(28, 36, 32, 0.06);
}

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

.brand-logo {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
}

.brand-text strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.1;
  margin-top: 3px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 160ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1.5px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.main-nav a:hover {
  color: var(--green-dark);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

/* ---------- Shared section rhythm ---------- */
.hero,
.why,
.pricing,
.compare,
.process,
.faq,
.final-cta,
.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(46px, 6vw, 84px) clamp(18px, 4vw, 40px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin-bottom: 14px;
}

.section-heading .section-lede {
  margin-bottom: 0;
}

.why,
.pricing,
.compare,
.process,
.faq {
  scroll-margin-top: 96px;
}

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(36px, 5vw, 58px);
  padding-bottom: clamp(42px, 5vw, 64px);
  text-align: left;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.9fr);
  gap: clamp(30px, 5vw, 58px);
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}

.hero-copy h1 {
  margin-bottom: 20px;
}

.hero-lede {
  max-width: 540px;
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.22rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.hero-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(150px, 0.88fr);
  gap: 16px;
  align-items: start;
  justify-self: end;
  width: min(100%, 560px);
}

.hero-preview figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.hero-preview-main {
  transform: translateY(14px);
}

.hero-preview img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.hero-preview-main img {
  aspect-ratio: 4 / 4.45;
}

.hero-preview-side {
  display: grid;
  gap: 16px;
}

.hero-preview-side img {
  aspect-ratio: 4 / 3.45;
  object-position: top;
}

.hero-preview figcaption {
  padding: 10px 12px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.hero-preview a {
  display: block;
}

.hero-preview a:hover img {
  opacity: 0.92;
}

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

.why-card {
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.why-card:hover {
  transform: translateY(-3px);
  border-color: #d3c9b6;
  box-shadow: var(--shadow-soft);
}

.why-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.why-icon svg {
  width: 22px;
  height: 22px;
}

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

/* ---------- Pricing ---------- */
.includes-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.includes-strip li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  padding: 20px 12px;
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 500;
  text-align: center;
}

.includes-strip svg {
  width: 26px;
  height: 26px;
  color: var(--green);
  stroke-width: 1.7;
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 28px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(28, 36, 32, 0.04);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.price-card:hover {
  transform: translateY(-3px);
  border-color: #d3c9b6;
  box-shadow: var(--shadow-soft);
}

.price-card.featured {
  border-color: rgba(31, 122, 77, 0.5);
  background: linear-gradient(180deg, #ffffff, #f5fbf7);
  box-shadow: 0 18px 44px rgba(31, 122, 77, 0.14);
}

.badge {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 6px 14px;
  border-radius: 0 0 999px 999px;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card.featured h3 {
  margin-top: 14px;
}

.price-stack {
  margin: 0 0 20px;
  padding: 16px 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: #fff;
}

.price-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.price span {
  margin-right: 4px;
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  vertical-align: super;
}

.monthly-price {
  margin: 0;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.price-sub {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.93rem;
  min-height: 2.6em;
}

.plan-list {
  display: grid;
  gap: 11px;
  margin: 0 0 26px;
  padding: 22px 0 0;
  list-style: none;
  border-top: 1px solid var(--line-soft);
}

.plan-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 11px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.plan-list strong {
  color: var(--ink);
  font-weight: 600;
}

.btn-card {
  margin-top: auto;
  color: var(--green-dark);
  background: var(--green-soft);
  border-color: rgba(31, 122, 77, 0.18);
}

.btn-card:hover {
  border-color: rgba(31, 122, 77, 0.36);
  background: #e0efe4;
}

.btn-card-strong {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.btn-card-strong:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 22px;
}

.addon-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.addon-card:hover {
  transform: translateY(-3px);
  border-color: #d3c9b6;
  box-shadow: var(--shadow-soft);
}

.addon-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.addon-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.addon-icon svg {
  width: 22px;
  height: 22px;
}

.addon-head h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0;
}

.addon-price {
  margin: 2px 0 0;
  color: var(--green-dark);
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 1.25rem;
}

.addon-price span {
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
}

.addon-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.addon-card p strong {
  color: var(--ink-soft);
  font-weight: 600;
}

.pricing-notes {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.note-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.note-label {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.note-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.note-row strong {
  color: var(--ink-soft);
  font-weight: 600;
}

/* ---------- Compare ---------- */
.compare-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 0 0 26px;
  padding: 22px 24px;
  border: 1px solid rgba(31, 122, 77, 0.3);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-soft), #f3f9f4);
}

.callout-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
}

.callout-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.6;
}

.compare-callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0;
}

.compare-callout p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

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

.compare-plan {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.compare-plan-us {
  border-color: rgba(31, 122, 77, 0.42);
  background: linear-gradient(180deg, #ffffff, #f5fbf7);
  box-shadow: 0 16px 36px rgba(31, 122, 77, 0.11);
}

.compare-plan-label {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compare-plan h3 {
  margin-bottom: 16px;
  font-size: 1.18rem;
}

.compare-plan ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-plan li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.45;
}

.compare-plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 8px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.compare-source {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: italic;
}

/* ---------- Process ---------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-top: 2px solid var(--green);
  border-radius: var(--radius);
  background: var(--surface);
}

.step-num {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.05rem;
}

.process-list strong {
  display: block;
  margin-bottom: 9px;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 10px;
  max-width: 820px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

details[open] {
  border-color: #d3c9b6;
  box-shadow: var(--shadow-soft);
}

summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 600;
  list-style: none;
}

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

summary::after {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  background:
    linear-gradient(currentColor, currentColor) center / 12px 1.6px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1.6px 12px no-repeat;
  color: var(--green);
  transition: transform 200ms ease, opacity 200ms ease;
}

details[open] summary::after {
  transform: rotate(90deg);
  opacity: 0.35;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 0.96rem;
}

/* ---------- Final CTA ---------- */
.final-cta {
  margin-bottom: 40px;
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(15, 30, 22, 0.94), rgba(21, 95, 58, 0.92)),
    radial-gradient(circle at 80% 20%, rgba(176, 122, 44, 0.18), transparent 50%);
  color: #fff;
}

.final-cta-inner {
  max-width: 720px;
}

.final-cta h2 {
  color: #fff;
  margin-bottom: 16px;
}

.final-cta p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

/* ---------- Footer ---------- */
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-top: 34px;
  padding-bottom: 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  text-align: right;
  font-size: 0.9rem;
  max-width: 420px;
}

.footer-terms {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 160ms ease;
}

.footer-terms:hover {
  color: var(--green-dark);
}

/* ---------- Floating WhatsApp ---------- */
.floating-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 25;
  display: none;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  box-shadow: 0 16px 32px rgba(31, 122, 77, 0.36);
  transition: transform 180ms ease, background 180ms ease;
}

.floating-wa:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
}

.floating-wa svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  stroke: currentColor;
}

/* ---------- Reveal ---------- */
.section-reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

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

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

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

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

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

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

  .hero-copy {
    max-width: 680px;
  }

  .hero-preview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }

  .hero-preview-main {
    transform: none;
  }

  .hero-preview-main img,
  .hero-preview-side img {
    aspect-ratio: 4 / 3.25;
    object-position: top;
  }

  .hero-preview-side {
    display: contents;
  }

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

  .includes-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .compare-plans {
    grid-template-columns: 1fr;
  }

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

  .price-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
    padding: 12px 16px;
    gap: 14px;
  }

  .brand-logo {
    height: 34px;
  }

  .brand-text small {
    display: none;
  }

  .site-header .btn-whatsapp {
    min-width: 46px;
    width: 46px;
    padding: 0;
    font-size: 0;
  }

  .site-header .btn-whatsapp svg {
    width: 22px;
    height: 22px;
  }

  h1 {
    font-size: clamp(2.1rem, 9.5vw, 3rem);
  }

  .hero {
    padding-top: 38px;
  }

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

  .hero-points {
    gap: 10px 16px;
  }

  .hero-preview {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .hero-preview-main {
    transform: none;
  }

  .hero-preview-main img {
    aspect-ratio: 4 / 3.25;
  }

  .hero-preview-side {
    display: none;
  }

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

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

  .pricing {
    display: flex;
    flex-direction: column;
  }

  .pricing > .section-heading {
    order: 1;
  }

  .pricing-grid {
    order: 2;
  }

  .includes-strip {
    order: 3;
    margin: 20px 0 22px;
  }

  .addons-grid {
    order: 4;
  }

  .pricing-notes {
    order: 5;
  }

  .pricing-grid,
  .process-list,
  .addons-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    grid-column: auto;
  }

  .price-sub {
    min-height: auto;
  }

  .monthly-price {
    justify-content: flex-start;
    border-radius: 10px;
    text-align: left;
  }

  .note-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer p {
    text-align: left;
  }

  .final-cta {
    margin-bottom: 24px;
    padding: 38px 24px;
  }

  .floating-wa {
    display: none;
  }

  .why,
  .pricing,
  .compare,
  .process,
  .faq {
    scroll-margin-top: 78px;
  }
}
