:root {
  --bg: #fff9fb;
  --surface: #ffffff;
  --surface-soft: #fff2f6;
  --ink: #2b1d22;
  --muted: #77676d;
  --pink: #d72a79;
  --pink-dark: #ae1f60;
  --pink-soft: #f8dce8;
  --line: #eedde4;
  --shadow: 0 20px 55px rgba(74, 34, 51, .09);
  --radius: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Heebo", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: 100px 0; }
.section-pad.compact { padding: 64px 0; }

.skip-link { position: fixed; top: -60px; right: 20px; background: #111; color: #fff; padding: 10px 14px; z-index: 9999; border-radius: 8px; }
.skip-link:focus { top: 20px; }

.site-header { position: sticky; top: 0; z-index: 1000; padding: 14px 0; background: rgba(255,249,251,.86); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(238,221,228,.8); }
.nav-wrap { display: flex; align-items: center; gap: 28px; }
.brand { width: 205px; flex: 0 0 auto; border-radius: 12px; overflow: hidden; }
.brand img { width: 100%; height: 60px; object-fit: cover; object-position: center; }
.main-nav { display: flex; align-items: center; gap: 28px; margin-inline: auto; }
.main-nav a { text-decoration: none; font-weight: 600; color: #56464c; }
.main-nav a:hover { color: var(--pink); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 26px; border-radius: 999px; color: #fff; background: linear-gradient(135deg, var(--pink), #e65c9b); text-decoration: none; font-weight: 800; box-shadow: 0 12px 28px rgba(215,42,121,.24); transition: .25s ease; border: 1px solid transparent; }
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(215,42,121,.31); }
.button-small { min-height: 44px; padding-inline: 20px; font-size: .93rem; }
.button-outline { background: transparent; color: var(--pink); border-color: var(--pink-soft); box-shadow: none; }
.button-light { background: #fff; color: var(--ink); box-shadow: none; }
.text-link { font-weight: 700; text-underline-offset: 5px; }

.hero { background: radial-gradient(circle at 15% 10%, #fdeaf2 0, transparent 35%), var(--bg); }
.hero-grid { min-height: 690px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 64px; }
.hero-copy h1 { font-size: clamp(3.4rem, 6.2vw, 6.4rem); line-height: .98; margin: 16px 0 24px; letter-spacing: -.045em; max-width: 750px; }
.hero-copy h1 span { color: var(--pink); display: block; }
.eyebrow { display: inline-flex; color: var(--pink); background: var(--pink-soft); border-radius: 999px; padding: 7px 13px; font-size: .88rem; font-weight: 800; }
.eyebrow.light { color: #fff; background: rgba(255,255,255,.12); }
.lead { font-size: 1.26rem; color: var(--muted); max-width: 680px; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin: 32px 0 26px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span { border: 1px solid var(--line); background: rgba(255,255,255,.82); border-radius: 999px; padding: 8px 13px; color: #67575d; font-size: .9rem; font-weight: 700; }
.hero-image-wrap { position: relative; max-width: 470px; margin-inline: auto; }
.hero-image-wrap:before { content: ""; position: absolute; inset: 28px -28px -28px 28px; border-radius: 42px; background: linear-gradient(145deg,#f6cfe0,#f9edf2); z-index: 0; }
.hero-image-wrap img { position: relative; z-index: 1; width: 100%; height: 650px; object-fit: cover; object-position: center 24%; border-radius: 42px; box-shadow: var(--shadow); }
.floating-note { position: absolute; z-index: 2; left: -36px; bottom: 34px; background: rgba(255,255,255,.95); border: 1px solid rgba(238,221,228,.9); box-shadow: var(--shadow); border-radius: 20px; padding: 16px 20px; min-width: 240px; }
.floating-note strong, .floating-note span { display: block; }
.floating-note span { color: var(--muted); font-size: .92rem; }

.section-heading { margin-bottom: 34px; }
.section-heading.centered { text-align: center; max-width: 820px; margin-inline: auto; margin-bottom: 48px; }
.section-heading h2, .about-copy h2, .statement-box h2, .cta-box h2 { font-size: clamp(2.25rem,4.5vw,4.2rem); line-height: 1.12; margin: 12px 0 14px; letter-spacing: -.03em; }
.section-heading p { color: var(--muted); font-size: 1.1rem; }

.cards { display: grid; gap: 18px; }
.cards-4 { grid-template-columns: repeat(4,1fr); }
.cards-3 { grid-template-columns: repeat(3,1fr); }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: 0 14px 35px rgba(68,35,49,.05); }
.card-accent { background: linear-gradient(145deg,#fff,#fdeaf2); }
.card .icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; background: var(--pink-soft); color: var(--pink); font-size: 1.35rem; margin-bottom: 28px; }
.card h3 { font-size: 1.26rem; margin: 0 0 8px; }
.card p { color: var(--muted); margin: 0; }

.statement-box { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 36px; padding: 64px 30px; box-shadow: var(--shadow); }
.statement-box h2 span { color: var(--pink); }
.statement-box p { margin: 0 auto; max-width: 670px; color: var(--muted); font-size: 1.15rem; }
.small-label { color: var(--pink)!important; font-weight: 800; font-size: .88rem!important; }

.method { background: linear-gradient(180deg, transparent, #fff3f7 50%, transparent); }

.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 70px; align-items: center; }
.about-media img { width: 100%; height: 630px; object-fit: cover; object-position: center 24%; border-radius: 38px; box-shadow: var(--shadow); }
.about-copy p { color: var(--muted); font-size: 1.08rem; }
.signature { margin-top: 28px; color: var(--pink); letter-spacing: .18em; font-weight: 900; }

.services { background: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.price-card { border: 1px solid var(--line); border-radius: 30px; padding: 34px; background: #fff; box-shadow: 0 16px 42px rgba(68,35,49,.06); display: flex; flex-direction: column; }
.price-card.featured { background: linear-gradient(160deg,#fff,#ffeaf2); border-color: #f2bad2; transform: translateY(-10px); }
.plan-tag { align-self: flex-start; background: var(--pink-soft); color: var(--pink); border-radius: 999px; padding: 6px 12px; font-size: .82rem; font-weight: 800; }
.price-card h3 { font-size: 1.45rem; margin: 18px 0 8px; }
.price { display: flex; align-items: baseline; gap: 8px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.price strong { font-size: 2.25rem; }
.price span { color: var(--muted); }

.plan-intro { color: var(--muted); margin: 0 0 18px; min-height: 52px; }
.price-options { display: grid; gap: 10px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.price-option { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 15px; background: var(--bg); border: 1px solid var(--line); border-radius: 16px; }
.price-option strong { font-size: 1.45rem; white-space: nowrap; }
.price-option span { color: var(--muted); font-size: .94rem; }
.price-card ul { list-style: none; padding: 0; margin: 24px 0 30px; display: grid; gap: 12px; color: #5d4c52; flex: 1; }
.price-card li:before { content: "✓"; color: var(--pink); font-weight: 900; margin-left: 9px; }

.nutrition-commitment { margin: 4px 0 22px; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: rgba(247, 200, 216, .13); }
.commitment-title { margin: 0 0 12px; text-align: center; font-size: .9rem; font-weight: 800; color: var(--text); }
.commitment-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.commitment-options > div { padding: 12px 8px; border-radius: 14px; background: #fff; text-align: center; border: 1px solid rgba(229, 44, 125, .14); }
.commitment-options strong, .commitment-options span, .commitment-options small { display: block; }
.commitment-options span { color: var(--pink); font-size: 1.08rem; font-weight: 900; margin-top: 3px; }
.commitment-options small { color: var(--muted); margin-top: 2px; }

.plan-consultation { max-width: 920px; margin: 72px auto 0; display: grid; grid-template-columns: 84px 1fr auto; align-items: center; gap: 24px; padding: 8px 0; }
.plan-consultation img { width: 84px; height: 84px; object-fit: cover; object-position: center 22%; border-radius: 50%; box-shadow: 0 10px 28px rgba(68,35,49,.13); }
.plan-consultation-copy h3 { margin: 0 0 4px; font-size: 1.45rem; }
.plan-consultation-copy p { margin: 0; color: var(--muted); }
.plan-consultation-copy small { display: block; margin-top: 3px; color: var(--pink); font-weight: 700; }
.plan-consultation .button { white-space: nowrap; }

.commitment { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); max-width: 710px; margin: 28px auto 0; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: var(--bg); }
.commitment div { padding: 20px; text-align: center; }
.commitment div + div { border-right: 1px solid var(--line); }
.commitment strong,.commitment span,.commitment small { display: block; }
.commitment span { color: var(--pink); font-size: 1.25rem; font-weight: 900; }
.commitment small { color: var(--muted); }

.cta-box { background: linear-gradient(145deg,#25171c,#3b202a); color: #fff; border-radius: 38px; padding: 78px 50px; text-align: center; box-shadow: var(--shadow); }
.cta-box p { color: #d8c9ce; font-size: 1.1rem; max-width: 690px; margin: 0 auto 28px; }

.site-footer { padding: 32px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 220px 1fr auto; align-items: center; gap: 30px; color: var(--muted); }
.footer-grid img { width: 220px; height: 68px; object-fit: cover; border-radius: 12px; }
.footer-links { display: flex; justify-content: center; gap: 28px; }
.footer-links a { text-decoration: none; font-weight: 700; }

.whatsapp-float { position: fixed; left: 22px; bottom: 22px; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; z-index: 1200; background: #25D366; box-shadow: 0 14px 30px rgba(37,211,102,.32); transition: .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }
.whatsapp-float svg { width: 32px; fill: #fff; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .section-pad { padding: 76px 0; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-media { order: 2; }
  .cards-4 { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 680px; margin-inline: auto; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .main-nav { position: fixed; inset: 82px 20px auto; display: none; flex-direction: column; padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .menu-toggle { display: block; margin-inline-start: auto; }
  .nav-wrap > .button-small { display: none; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section-pad { padding: 58px 0; }
  .section-pad.compact { padding: 44px 0; }
  .site-header { padding: 9px 0; }
  .brand { width: 155px; }
  .brand img { height: 48px; }
  .hero-grid { gap: 42px; }
  .hero-copy h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .lead { font-size: 1.05rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-image-wrap { max-width: 100%; }
  .hero-image-wrap:before { inset: 18px -10px -18px 10px; }
  .hero-image-wrap img { height: 520px; border-radius: 30px; }
  .floating-note { left: 12px; right: 12px; bottom: 16px; min-width: 0; }
  .cards-4,.cards-3 { grid-template-columns: 1fr; }
  .card { padding: 24px; }
  .section-heading h2,.about-copy h2,.statement-box h2,.cta-box h2 { font-size: 2.25rem; }
  .statement-box { padding: 46px 20px; }
  .about-grid { gap: 34px; }
  .about-media img { height: 480px; border-radius: 28px; }
  .price-card { padding: 26px; }
  .plan-consultation { margin-top: 48px; grid-template-columns: 68px 1fr; gap: 16px; text-align: right; }
  .plan-consultation img { width: 68px; height: 68px; }
  .plan-consultation .button { grid-column: 1 / -1; width: 100%; margin-top: 4px; }
  .commitment-options { grid-template-columns: 1fr; }
  .commitment { grid-template-columns: 1fr; }
  .commitment div + div { border-right: 0; border-top: 1px solid var(--line); }
  .cta-box { padding: 54px 22px; border-radius: 28px; }
  .footer-links { flex-direction: column; gap: 8px; }
  .whatsapp-float { width: 54px; height: 54px; left: 14px; bottom: 14px; }
}


.studio-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.studio-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(50, 26, 38, .10);
  transition: transform .3s ease, box-shadow .3s ease;
}

.studio-gallery img:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 16px 34px rgba(50, 26, 38, .15);
}

.beforeafter { background: #fff7fa; }

.beforeafter .section-heading { margin-bottom: 34px; }

.ba-card {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(280px, 390px);
  justify-content: center;
  gap: 54px;
  align-items: center;
  max-width: 1020px;
  margin: 0 auto;
  padding: 36px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(215,42,121,.10);
  border-radius: 30px;
  box-shadow: 0 18px 50px rgba(63, 34, 47, .08);
}

.ba-image-wrap { max-width: 520px; }

.ba-card img {
  display: block;
  width: 100%;
  max-height: 570px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(50, 26, 38, .12);
}

.ba-content h3 {
  margin: 0 0 22px;
  font-size: 1.55rem;
  line-height: 1.35;
}

.ba-content ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.ba-content li {
  position: relative;
  padding-right: 28px;
}

.ba-content li::before {
  content: "✓";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--pink);
  font-weight: 900;
}

.ba-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  box-shadow: 0 10px 24px rgba(215,42,121,.24);
}

.ba-button span { transition: transform .2s ease; }
.ba-button:hover span { transform: translateX(-4px); }

@media (max-width: 900px) {
  .studio-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ba-card { grid-template-columns: 1fr; max-width: 620px; gap: 30px; }
  .ba-image-wrap { max-width: 480px; margin: 0 auto; }
  .ba-content { text-align: center; }
  .ba-content ul { width: max-content; max-width: 100%; margin-left: auto; margin-right: auto; text-align: right; }
}

@media (max-width: 560px) {
  .studio-gallery { gap: 10px; }
  .studio-gallery img { border-radius: 15px; }
  .ba-card { padding: 18px; border-radius: 22px; }
  .ba-card img { max-height: none; border-radius: 17px; }
  .ba-content h3 { font-size: 1.3rem; }
  .ba-button { width: 100%; min-width: 0; }
}
/* Mobile compact layout */
@media (max-width: 768px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section-pad {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .section-pad.compact {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .hero {
    padding-top: 36px;
    padding-bottom: 48px;
  }

  .hero-grid,
  .about-grid,
  .ba-card {
    gap: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 10vw, 3.4rem);
    line-height: 1.02;
    margin-bottom: 16px;
  }

  .hero-copy .lead {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .statement-box h2,
  .about-copy h2,
  .cta-box h2 {
    font-size: clamp(1.75rem, 7.5vw, 2.45rem);
    line-height: 1.15;
  }

  .section-heading p,
  .statement-box p,
  .about-copy p,
  .cta-box p {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .eyebrow {
    font-size: 0.78rem;
    margin-bottom: 10px;
  }

  .cards {
    gap: 14px;
  }

  .card,
  .price-card {
    padding: 22px 18px;
  }

  .card h3,
  .price-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .card p,
  .price-card p,
  .price-card li {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .pricing-grid {
    gap: 18px;
  }

  .studio-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .studio-gallery img {
    aspect-ratio: 4 / 5;
    border-radius: 16px;
  }

  .ba-card {
    padding: 18px;
  }

  .ba-image-wrap {
    max-width: 330px;
    margin-inline: auto;
  }

  .ba-content {
    text-align: center;
  }

  .ba-content h3 {
    font-size: 1.25rem;
  }

  .ba-content ul {
    margin: 16px auto 20px;
    max-width: 260px;
  }

  .hero-actions,
  .trust-row {
    gap: 12px;
  }

  .button {
    min-height: 46px;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .floating-note {
    padding: 12px 14px;
  }

  .about-media img,
  .hero-image-wrap img {
    border-radius: 20px;
  }

  .plan-consultation {
    padding: 22px 18px;
    gap: 16px;
  }

  .plan-consultation img {
    width: 70px;
    height: 70px;
  }

  .cta-box {
    padding: 34px 20px;
  }

  .site-footer {
    padding-top: 34px;
    padding-bottom: 34px;
  }
}

@media (max-width: 480px) {
  .section-pad {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .section-pad.compact {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .hero-copy h1 {
    font-size: 2.35rem;
  }

  .section-heading h2,
  .statement-box h2,
  .about-copy h2,
  .cta-box h2 {
    font-size: 1.85rem;
  }

  .studio-gallery {
    gap: 8px;
  }

  .card,
  .price-card {
    padding: 20px 16px;
  }

  .trust-row {
    font-size: 0.82rem;
  }
}
/* =========================================
   Extra compact mobile design
========================================= */

@media (max-width: 768px) {

  body {
    font-size: 15px;
  }

  .container {
    width: calc(100% - 32px);
  }

  /* Header */
  .site-header {
    min-height: 76px;
  }

  .nav-wrap {
    min-height: 76px;
    padding-block: 8px;
  }

  .brand img {
    width: 210px;
    max-height: 64px;
    object-fit: contain;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  /* Sections */
  .section-pad {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .section-pad.compact {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  /* Hero */
  .hero {
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero-copy h1 {
    font-size: 2.1rem;
    line-height: 1.04;
    margin-bottom: 14px;
  }

  .hero-copy .lead {
    font-size: 0.96rem;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .hero-actions {
    gap: 10px;
  }

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

  .trust-row {
    gap: 8px;
    margin-top: 18px;
  }

  .trust-row span {
    padding: 9px 13px;
    font-size: 0.78rem;
  }

  /* General headings */
  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2,
  .statement-box h2,
  .about-copy h2,
  .cta-box h2 {
    font-size: 1.65rem;
    line-height: 1.15;
  }

  .section-heading p,
  .statement-box p,
  .about-copy p,
  .cta-box p {
    font-size: 0.93rem;
    line-height: 1.55;
  }

  .eyebrow {
    font-size: 0.74rem;
    padding: 8px 14px;
    margin-bottom: 8px;
  }

  /* Cards */
  .cards,
  .pricing-grid {
    gap: 12px;
  }

  .card,
  .price-card {
    padding: 18px 16px;
    border-radius: 24px;
    min-height: auto;
  }

  .card .icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    font-size: 1.4rem;
  }

  .card h3,
  .price-card h3 {
    font-size: 1.08rem;
    margin-bottom: 7px;
  }

  .card p,
  .price-card p,
  .price-card li {
    font-size: 0.89rem;
    line-height: 1.5;
  }

  /* Statement */
  .statement-box {
    padding: 26px 18px;
    border-radius: 28px;
  }

  /* Images */
  .hero-image-wrap,
  .about-media {
    max-width: 360px;
    margin-inline: auto;
  }

  .hero-image-wrap img,
  .about-media img {
    max-height: 520px;
    object-fit: cover;
  }

  .floating-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 16px;
  }

  .floating-note strong {
    font-size: 0.95rem;
  }

  .floating-note span {
    font-size: 0.85rem;
  }

  /* Studio gallery */
  .studio-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .studio-gallery img {
    aspect-ratio: 4 / 5;
    border-radius: 14px;
  }

  /* Before / after */
  .ba-card {
    padding: 14px;
    gap: 18px;
    border-radius: 24px;
  }

  .ba-image-wrap {
    max-width: 290px;
    margin-inline: auto;
  }

  .ba-content h3 {
    font-size: 1.1rem;
  }

  .ba-content li {
    font-size: 0.9rem;
  }

  /* Pricing */
  .price-card {
    padding: 20px 16px;
  }

  .plan-tag {
    font-size: 0.75rem;
    padding: 8px 14px;
  }

  .price-options {
    gap: 10px;
    margin-block: 18px;
  }

  .price-option {
    padding: 14px 12px;
    border-radius: 18px;
  }

  .price-option strong {
    font-size: 1.45rem;
  }

  .price-option span {
    font-size: 0.87rem;
  }

  .price-card ul {
    margin-block: 18px;
  }

  .price-card li {
    margin-bottom: 9px;
  }

  .commitment-options {
    gap: 8px;
  }

  .commitment-options > div {
    padding: 12px 8px;
  }

  /* Buttons */
  .button {
    min-height: 43px;
    padding: 11px 18px;
    font-size: 0.9rem;
    border-radius: 999px;
  }

  /* Consultation */
  .plan-consultation {
    padding: 18px 16px;
    gap: 12px;
  }

  .plan-consultation img {
    width: 58px;
    height: 58px;
  }

  .plan-consultation h3 {
    font-size: 1.05rem;
  }

  .plan-consultation p {
    font-size: 0.88rem;
  }

  /* CTA */
  .cta-box {
    padding: 28px 18px;
    border-radius: 26px;
  }

  /* WhatsApp floating button */
  .whatsapp-float {
    width: 58px;
    height: 58px;
    bottom: 18px;
    left: 18px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }

  /* Footer */
  .site-footer {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .footer-grid {
    gap: 14px;
  }

  .footer-grid img {
    max-width: 180px;
  }
}

@media (max-width: 480px) {

  .container {
    width: calc(100% - 24px);
  }

  .section-pad {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .section-pad.compact {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .hero-copy h1 {
    font-size: 1.95rem;
  }

  .section-heading h2,
  .statement-box h2,
  .about-copy h2,
  .cta-box h2 {
    font-size: 1.5rem;
  }

  .brand img {
    width: 190px;
  }

  .card,
  .price-card {
    padding: 16px 14px;
  }

  .hero-image-wrap,
  .about-media {
    max-width: 330px;
  }

  .hero-image-wrap img,
  .about-media img {
    max-height: 460px;
  }

  .ba-image-wrap {
    max-width: 270px;
  }
}
