@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ==============================
   VARIABLES & RESET
   ============================== */
:root {
  --cream:      #F3E8DA;
  --cream-2:    #E8DAC7;
  --beige:      #D4BFA6;
  --sage:       #858566;
  --sage-soft:  #8E9172;
  --sage-dark:  #4B5038;
  --sage-deep:  #2A2E1A;
  --olive:      #5C5039;
  --gold:       #C38658;
  --brown:      #9C653F;
  --dark:       #3A2413;
  --deep:       #2E271B;
  --white:      #FFF8EE;
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Montserrat', system-ui, sans-serif;
  --shadow-warm: 0 8px 40px rgba(58,36,19,.1);
  --shadow-card: 0 4px 24px rgba(58,36,19,.07);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-sans); background: var(--cream); color: var(--deep); line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ==============================
   LAYOUT
   ============================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-pad { padding: 108px 0; }
.section-pad-sm { padding: 80px 0; }
section { position: relative; overflow: hidden; }

/* ==============================
   TYPOGRAPHY
   ============================== */
.eyebrow {
  font-family: var(--ff-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.eyebrow-light { color: rgba(255,248,238,.65); }

.h1 { font-family: var(--ff-serif); font-size: clamp(34px,4.4vw,58px); font-weight: 600; line-height: 1.07; text-wrap: pretty; }
.h2 { font-family: var(--ff-serif); font-size: clamp(30px,4vw,54px); font-weight: 600; line-height: 1.1; text-wrap: pretty; }
.h3 { font-family: var(--ff-serif); font-size: clamp(22px,2.5vw,34px); font-weight: 400; line-height: 1.2; }

/* ==============================
   GOLD DIVIDER
   ============================== */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0;
}
.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gold-diamond {
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.gold-divider-left { justify-content: flex-start; }
.gold-divider-left::before { max-width: 0; display: none; }

/* ==============================
   BUTTONS
   ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary { background: var(--sage); color: var(--white); }
.btn-primary:hover { background: #747557; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(133,133,102,.3); }

.btn-outline { background: transparent; color: var(--olive); border: 1.5px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }

.btn-wa { background: #1FAB5B; color: #fff; }
.btn-wa:hover { background: #178a49; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(31,171,91,.3); }

.btn-dark { background: var(--deep); color: var(--white); }
.btn-dark:hover { background: #1a140d; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(46,39,27,.35); }

.btn-ghost-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,248,238,.4); }
.btn-ghost-white:hover { background: rgba(255,248,238,.1); border-color: var(--white); transform: translateY(-2px); }

.btn-lg { padding: 20px 48px; font-size: 13px; }

/* ==============================
   CARDS
   ============================== */
.card {
  background: rgba(255,248,238,.72);
  border: 1px solid rgba(195,134,88,.26);
  border-radius: 24px;
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(58,36,19,.12); }

.card-sage {
  background: rgba(255,248,238,.08);
  border: 1px solid rgba(255,248,238,.18);
  border-radius: 20px;
  padding: 28px 24px;
}

/* ICON CIRCLE */
.icon-circ {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(195,134,88,.13);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.icon-circ svg { width: 22px; height: 22px; }
.icon-circ-white { background: rgba(255,248,238,.12); }

/* GRADIENT TEXT */
.gradient-text {
  font-weight: 600;
  font-style: normal;
  background: linear-gradient(135deg, #A8BA80 0%, #768B52 50%, #4A5534 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

/* BADGE */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 9px 18px;
  border-radius: 50px;
  background: rgba(195,134,88,.1);
  border: 1px solid rgba(195,134,88,.32);
  color: var(--olive);
}
.badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ==============================
   BOTANICAL DECORATIVE
   ============================== */
.botanical { position: absolute; pointer-events: none; }

/* ==============================
   HEADER
   ============================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s ease, box-shadow .4s ease;
}
#site-header.scrolled {
  background: rgba(243,232,218,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(58,36,19,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-wrap { display: flex; align-items: center; }
.header-logo {
  height: 52px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
  transition: opacity .2s;
}
.header-logo:hover { opacity: .82; }

/* Hero logo */
.hero-logo {
  height: 252px;
  width: auto;
  max-width: none;
  display: block;
  mix-blend-mode: multiply;
  margin-bottom: 36px;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

/* Footer logo */
.footer-logo {
  height: 72px;
  width: auto;
  max-width: none;
  display: block;
  margin-bottom: 18px;
  mix-blend-mode: screen;
  opacity: 0.92;
}

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--deep);
  transition: color .2s;
}
.main-nav a:hover { color: var(--gold); }

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px; height: 1.5px;
  background: var(--deep);
  display: block;
  transition: all .3s;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  overflow-y: auto;
  padding: 80px 32px 48px;
  box-sizing: border-box;
}
.mobile-nav-overlay.active { display: flex; }
.mobile-nav-overlay a {
  font-family: var(--ff-serif);
  font-size: clamp(22px, 6vw, 30px);
  font-weight: 400;
  color: var(--deep);
  letter-spacing: .04em;
  transition: color .2s;
}
.mobile-nav-overlay a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 22px; right: 28px;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--deep);
  line-height: 1;
}

/* ==============================
   HERO
   ============================== */
.hero {
  background: var(--cream);
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 88px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
}

.hero-title { color: var(--deep); margin-bottom: 22px; }
.hero-title em { font-style: italic; color: var(--sage); }

.hero-subtitle {
  font-size: 17px;
  line-height: 1.72;
  color: var(--olive);
  max-width: 460px;
  margin-bottom: 10px;
}

.hero-support {
  font-size: 14px;
  line-height: 1.72;
  color: var(--sage);
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 9px; }

.hero-img {
  position: relative;
  overflow: hidden;
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ==============================
   DIFERENCIAL
   ============================== */
.diferencial { background: var(--white); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-head p { font-size: 16px; line-height: 1.78; color: var(--olive); margin-top: 20px; }

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

.dif-card { text-align: center; }
.dif-card .icon-circ { margin: 0 auto; }
.dif-card h3 { font-family: var(--ff-serif); font-size: 22px; font-weight: 400; color: var(--deep); margin-bottom: 10px; }
.dif-card p { font-size: 14px; color: var(--olive); line-height: 1.65; }

/* ==============================
   FUE DHI
   ============================== */
.fue-dhi { background: var(--sage); }

.fue-header {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}
.fue-header .eyebrow { color: rgba(255,248,238,.55); }
.fue-header .h2 { color: var(--white); margin: 14px 0 22px; }
.fue-header > p { font-size: 16px; line-height: 1.82; color: rgba(255,248,238,.78); }

.fue-blocks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fue-block { padding: 36px 28px; position: relative; }
.fue-block-num {
  font-family: var(--ff-serif);
  font-size: 42px;
  font-weight: 300;
  color: rgba(255,248,238,.12);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: .04em;
}
.fue-block h4 {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  margin-top: 4px;
}
.fue-block p { font-size: 14px; color: rgba(255,248,238,.68); line-height: 1.68; }

/* ==============================
   PARA QUIÉN
   ============================== */
.para-quien { background: var(--cream-2); }

.pq-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pq-content .h2 { color: var(--deep); margin-bottom: 18px; }
.pq-content > p { font-size: 15.5px; line-height: 1.75; color: var(--olive); margin-bottom: 36px; }

.pq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pq-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,248,238,.55);
  border: 1px solid rgba(195,134,88,.2);
  border-radius: 14px;
  padding: 15px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--dark);
  transition: border-color .2s, background .2s;
}
.pq-item:hover { background: rgba(255,248,238,.82); border-color: rgba(195,134,88,.45); }

.pq-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(195,134,88,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pq-check svg { width: 10px; height: 10px; stroke: var(--gold); fill: none; stroke-width: 2.5; }

.pq-img {
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.pq-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* ==============================
   BENEFICIOS
   ============================== */
.beneficios { background: var(--white); }

.benef-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.benef-img {
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.benef-img img { width: 100%; height: 100%; object-fit: cover; }

.benef-content .h2 { color: var(--deep); margin-bottom: 12px; }
.benef-content > p { font-size: 15.5px; color: var(--olive); line-height: 1.75; margin-bottom: 32px; }

.benef-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px; }
.benef-card {
  background: rgba(243,232,218,.55);
  border: 1px solid rgba(195,134,88,.2);
  border-radius: 16px;
  padding: 22px 18px;
  transition: transform .25s, box-shadow .25s;
}
.benef-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }

.benef-card-icon { margin-bottom: 10px; }
.benef-card-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.benef-card h4 { font-family: var(--ff-serif); font-size: 17px; font-weight: 400; color: var(--deep); margin-bottom: 4px; line-height: 1.25; }
.benef-card p { font-size: 12.5px; color: var(--olive); line-height: 1.55; }

.benef-quote {
  padding: 22px 24px;
  border-left: 2px solid var(--gold);
  background: rgba(195,134,88,.06);
  border-radius: 0 14px 14px 0;
}
.benef-quote p { font-family: var(--ff-serif); font-size: 19px; font-style: italic; color: var(--olive); line-height: 1.5; }

/* ==============================
   PROCESO
   ============================== */
.proceso { background: var(--cream); }

.proc-header {
  max-width: 640px;
  margin: 0 auto 72px;
  text-align: center;
}
.proc-header .h2 { color: var(--deep); margin: 10px 0 18px; }
.proc-header > p { font-size: 15.5px; color: var(--sage); line-height: 1.75; }

.timeline-h {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.tl-h-step { padding-right: 20px; }
.tl-h-step:last-child { padding-right: 0; }

.tl-h-top {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}

.tl-h-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--sage);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif);
  font-size: 22px;
  color: var(--sage);
  background: var(--cream);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transition: border-color .25s, color .25s;
}
.tl-h-step:hover .tl-h-num {
  border-color: var(--sage-soft);
  color: var(--sage-soft);
}

.tl-h-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(133,133,102,.4), rgba(133,133,102,.06));
  margin-left: 14px;
}
.tl-h-step:last-child .tl-h-line { display: none; }

.tl-h-body h4 {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 9px;
  line-height: 1.2;
}
.tl-h-body p { font-size: 13.5px; color: var(--olive); line-height: 1.65; }

/* ==============================
   CTA MID
   ============================== */
.cta-mid {
  background: var(--sage-soft);
  padding: 88px 0;
}
.cta-mid-inner { text-align: center; position: relative; z-index: 2; }
.cta-mid-inner .h2 { color: var(--white); margin-bottom: 16px; }
.cta-mid-inner > p { font-size: 16px; color: rgba(255,248,238,.78); max-width: 520px; margin: 0 auto 40px; line-height: 1.7; }
.cta-mid-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ==============================
   TRATAMIENTOS
   ============================== */
.tratamientos { background: var(--cream-2); }

.tratam-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.tratam-header .h2 { color: var(--deep); margin: 12px 0 22px; }
.tratam-header > p {
  font-size: 16px;
  color: var(--sage);
  line-height: 1.78;
  margin-bottom: 36px;
}

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

.tratam-card { position: relative; }
.tratam-ver-mas {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 18px;
  transition: gap .2s, color .2s;
}
.tratam-ver-mas:hover { color: var(--brown); gap: 10px; }

.tratam-num {
  font-family: var(--ff-serif);
  font-size: 52px;
  font-weight: 300;
  color: rgba(133,133,102,.32);
  line-height: 1;
  margin-bottom: 4px;
}
.tratam-card h3 { font-family: var(--ff-serif); font-size: 19px; font-weight: 400; color: var(--deep); margin-bottom: 12px; line-height: 1.25; }
.tratam-card p { font-size: 13px; color: var(--olive); line-height: 1.68; }

/* ==============================
   CONFIANZA
   ============================== */
.confianza { background: var(--sage-dark); }

.conf-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}

.conf-content .h2 { color: var(--white); margin-bottom: 20px; }
.conf-content > p { font-size: 15.5px; color: rgba(255,248,238,.78); line-height: 1.78; margin-bottom: 44px; }

.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: rgba(155,170,122,.08);
  border: 1px solid rgba(155,170,122,.22);
  border-radius: 16px;
}
.trust-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
}
.trust-item p { font-size: 13.5px; color: rgba(255,248,238,.82); line-height: 1.55; font-weight: 500; }

.conf-quote {
  background: rgba(155,170,122,.07);
  border: 1px solid rgba(155,170,122,.24);
  border-radius: 24px;
  padding: 48px 36px;
}
.conf-quote p { font-family: var(--ff-serif); font-size: 23px; font-style: italic; color: rgba(255,248,238,.88); line-height: 1.52; }
.conf-quote cite { display: block; margin-top: 20px; font-family: var(--ff-sans); font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); font-style: normal; }

/* ==============================
   CTA FINAL
   ============================== */
.cta-final {
  background: var(--sage-deep);
  padding: 128px 0;
}
.cta-final-inner { text-align: center; position: relative; z-index: 2; }
.cta-final-inner .h2 { color: var(--white); margin-bottom: 20px; }
.cta-final-inner > p { font-size: 17px; color: rgba(255,248,238,.65); max-width: 540px; margin: 0 auto 52px; line-height: 1.72; }
.cta-final-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ==============================
   FOOTER
   ============================== */
.site-footer {
  background: #14180E;
  padding: 72px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(195,134,88,.15);
  margin-bottom: 36px;
}

.footer-brand .logo-name { color: var(--white); font-size: 29px; }
.footer-brand .logo-sub { color: rgba(195,134,88,.8); }
.footer-brand p { font-size: 14px; color: rgba(255,248,238,.45); line-height: 1.72; margin-top: 16px; max-width: 260px; }

.footer-col h5 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-col li + li { margin-top: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,248,238,.52); transition: color .2s; }
.footer-col a:hover { color: var(--white); }

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,248,238,.52);
  line-height: 1.5;
  margin-bottom: 12px;
}
.footer-contact svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.8; flex-shrink: 0; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(195,134,88,.28);
  display: flex; align-items: center; justify-content: center;
  transition: all .22s;
}
.social-link:hover { border-color: var(--gold); background: rgba(195,134,88,.12); }
.social-link svg { width: 17px; height: 17px; stroke: rgba(255,248,238,.65); fill: none; stroke-width: 1.8; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,248,238,.28);
}

/* ==============================
   SCROLL ANIMATIONS
   ============================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s ease, transform .72s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ==============================
   RESPONSIVE — TABLET
   ============================== */
@media (max-width: 1100px) {
  .container { padding: 0 28px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .tratam-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { padding: 60px 40px; }
}

@media (max-width: 900px) {
  .main-nav, .header-actions .btn-outline { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 18px 24px; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 56px 24px 40px; order: 1; }
  .hero-img { height: 60vw; min-height: 320px; max-height: 520px; order: 2; }

  .pq-inner, .benef-inner, .conf-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .fue-blocks, .benef-grid, .pq-list, .trust-grid { grid-template-columns: 1fr 1fr; }
  .timeline-h { grid-template-columns: 1fr 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .section-pad { padding: 80px 0; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .grid-4, .tratam-grid, .fue-blocks, .benef-grid, .pq-list, .trust-grid, .timeline-h { grid-template-columns: 1fr; }
  .tl-h-line { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-mid-btns, .cta-final-btns, .hero-btns { flex-direction: column; align-items: stretch; }
  .btn-lg { padding: 18px 28px; }
  .section-pad { padding: 64px 0; }
  .section-pad-sm { padding: 56px 0; }
}
