/* ============================================
   MonAI Ads — Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* --- Variables --- */
:root {
  --base: #FCFCFA;
  --black: #0F0F0F;
  --green: #2E6B5A;
  --green-pale: #D6E5DF;
  --green-dark: #235248;
  --text: #2A2A2A;
  --text-aux: #6B6B6B;
  --error: #C0392B;
  --border: rgba(15,15,15,0.08);

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;

  --ease: 0.25s ease;
  --ease-slow: 0.45s ease;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;

  --max-w: 1200px;
  --px: clamp(1.25rem, 4vw, 2rem);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text);
  background: var(--base);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--sans); }

/* --- Skip link --- */
.skip-link {
  position: absolute; top: -50px; left: 0;
  background: var(--green); color: #fff;
  padding: .5rem 1rem; z-index: 9999; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { top: 0; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.625rem); }
h4 { font-size: 1.0625rem; }

p { max-width: 65ch; }

.label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.section { padding: clamp(4rem, 8vw, 8rem) 0; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }

.divider {
  width: 40px; height: 2px;
  background: var(--green);
  margin: 1.25rem 0;
}
.divider--center { margin-left: auto; margin-right: auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: var(--r-sm);
  font-size: .9375rem; font-weight: 500;
  cursor: pointer; border: none;
  transition: all var(--ease);
  line-height: 1;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none !important; }

.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: #fff; transform: translateY(-1px); }

.btn-white { background: #fff; color: var(--green); }
.btn-white:hover { background: var(--green-pale); }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.7); color: #fff; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--base);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.header.scrolled {
  border-color: var(--border);
  box-shadow: 0 1px 24px rgba(0,0,0,.05);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo-img {
  height: 38px;
  width: auto;
  display: block;
}

/* Footer logo — container branco para contrastar com fundo escuro */
.footer__logo-wrap {
  display: inline-block;
  background: white;
  border-radius: var(--r-sm);
  padding: 5px 10px;
  margin-bottom: .875rem;
}
.footer__logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex; align-items: center; gap: 2.25rem;
}
.nav__link {
  font-size: .9375rem;
  color: var(--text-aux);
  transition: color var(--ease);
  position: relative;
}
.nav__link:hover { color: var(--black); }
.nav__link.active {
  color: var(--black);
}
.nav__link.active::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--green);
}
.header__right { display: flex; align-items: center; gap: 2.25rem; }

/* Hamburger */
.header__hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: .5rem;
  background: none; border: none;
  color: var(--black);
}
.hamburger__line {
  display: block; width: 22px; height: 1.5px;
  background: currentColor;
  transition: all var(--ease);
  transform-origin: center;
}
.header__hamburger[aria-expanded="true"] .hamburger__line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.header__hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) { opacity: 0; }
.header__hamburger[aria-expanded="true"] .hamburger__line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
  background: var(--base); z-index: 99;
  flex-direction: column;
  padding: 2.5rem var(--px);
  gap: .25rem;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }

.mobile-menu .nav__link {
  font-family: var(--serif);
  font-size: 1.375rem;
  color: var(--black);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: 1.5rem; width: 100%; justify-content: center; }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding-top: calc(70px + clamp(4rem, 8vw, 7rem));
  padding-bottom: clamp(4rem, 8vw, 7rem);
  min-height: 92vh;
  display: flex; align-items: center;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--green-pale);
  border-radius: 100px;
  padding: .375rem 1rem;
  font-size: .8125rem; font-weight: 500;
  color: var(--green);
  margin-bottom: 1.5rem;
}
.hero__badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
}
.hero__headline {
  margin-bottom: 1.25rem;
}
.hero__headline em {
  font-style: italic;
  color: var(--green);
}
.hero__sub {
  font-size: 1.0625rem;
  color: var(--text-aux);
  margin-bottom: 2.5rem;
  max-width: 52ch;
}
.hero__ctas {
  display: flex; gap: .875rem; flex-wrap: wrap;
}

/* Hero visual */
.hero__visual {
  display: flex; justify-content: center; align-items: center;
}
.hero__card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 2.25rem;
  width: 100%; max-width: 420px;
  box-shadow: 0 8px 40px rgba(0,0,0,.05);
}
.hero__card-title {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-aux);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.hero__card-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: .875rem 0;
  border-bottom: 1px solid var(--border);
}
.hero__card-item:last-of-type { border-bottom: none; }
.hero__card-q {
  font-size: .9375rem;
  color: var(--text);
  max-width: none;
}
.hero__card-a {
  font-size: .8125rem;
  font-weight: 500;
  padding: .25rem .625rem;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.hero__card-a--no { background: rgba(192,57,43,.08); color: var(--error); }
.hero__card-a--maybe { background: rgba(230,170,50,.1); color: #9a7209; }
.hero__card-footer {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.hero__card-footer p {
  font-size: .875rem;
  color: var(--text-aux);
  max-width: none;
  font-style: italic;
}
.hero__card-footer strong { color: var(--green); font-style: normal; }

/* ============================================
   DIFFERENTIALS
   ============================================ */
.differentials {
  background: var(--black);
}
.differentials__intro {
  text-align: center;
  margin-bottom: 4rem;
}
.differentials__intro .label { color: rgba(214,229,223,.7); }
.differentials__intro h2 { color: #fff; margin-top: .75rem; }

.differentials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--r-md);
  overflow: hidden;
}
.diff-card {
  background: var(--black);
  padding: 2.25rem 2rem;
  transition: background var(--ease);
}
.diff-card:hover { background: #161616; }
.diff-card__number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(46,107,90,.3);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.diff-card__title {
  font-family: var(--serif);
  font-size: 1.0625rem;
  color: #fff;
  margin-bottom: .75rem;
}
.diff-card__text {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  max-width: none;
  line-height: 1.65;
}

/* ============================================
   FAMILIAR
   ============================================ */
.familiar { background: var(--base); }
.familiar__header { max-width: 52ch; margin-bottom: 3.5rem; }
.familiar__header h2 { margin-top: .75rem; }

.familiar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .875rem;
  margin-bottom: 3rem;
}
.familiar__item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.familiar__item:hover {
  border-color: rgba(46,107,90,.25);
  box-shadow: 0 4px 20px rgba(46,107,90,.06);
}
.familiar__dot {
  width: 8px; height: 8px; min-width: 8px;
  border-radius: 50%; background: var(--green);
  margin-top: .62rem;
}
.familiar__item p { font-size: .9875rem; max-width: none; }

.familiar__closing {
  border-left: 3px solid var(--green);
  padding-left: 1.5rem;
}
.familiar__closing p {
  font-size: 1.0625rem;
  color: var(--text-aux);
  max-width: 58ch;
}
.familiar__closing strong { color: var(--black); }

/* ============================================
   PROBLEM
   ============================================ */
.problem { background: var(--black); }
.problem__intro h2 { color: #fff; margin-top: .75rem; }
.problem__intro .label { color: rgba(214,229,223,.7); }

.problem__questions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 3.5rem 0 2.5rem;
}
.problem__q {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
}
.problem__q::before {
  content: '"';
  position: absolute; top: -12px; left: 1.25rem;
  font-family: var(--serif);
  font-size: 7rem;
  color: rgba(46,107,90,.1);
  line-height: 1;
  pointer-events: none;
}
.problem__q p {
  font-family: var(--serif);
  font-size: 1.0625rem;
  color: #fff;
  font-style: italic;
  max-width: none;
  position: relative;
}

.problem__text {
  color: rgba(255,255,255,.6);
  font-size: .9875rem;
  max-width: 58ch;
  margin-bottom: 2.25rem;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline-section { background: var(--base); }
.timeline-section__header { text-align: center; margin-bottom: 4rem; }
.timeline-section__header h2 { margin-top: .75rem; }

.timeline {
  display: flex;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(20px + (100% - 40px) / 10);
  right: calc(20px + (100% - 40px) / 10);
  height: 1px;
  background: rgba(46,107,90,.2);
}
.timeline__item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
}
.timeline__num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green); color: #fff;
  font-size: .875rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.timeline__title {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--black);
  margin-bottom: .375rem;
}
.timeline__text {
  font-size: .8625rem;
  color: var(--text-aux);
  max-width: none;
  line-height: 1.55;
}

/* ============================================
   DELIVERABLES
   ============================================ */
.deliverables { background: var(--green-pale); }
.deliverables__header { margin-bottom: 3.5rem; }
.deliverables__header h2 { margin-top: .75rem; }

.deliverables__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.deliv-card {
  background: white;
  border-radius: var(--r-md);
  padding: 1.75rem;
  border: 1px solid rgba(46,107,90,.08);
  transition: transform var(--ease), box-shadow var(--ease);
}
.deliv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(46,107,90,.09);
}
.deliv-card__icon {
  width: 36px; height: 36px;
  color: var(--green);
  margin-bottom: 1.125rem;
}
.deliv-card__icon svg { width: 100%; height: 100%; }
.deliv-card__title {
  font-family: var(--sans);
  font-size: .9875rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .375rem;
}
.deliv-card__text {
  font-size: .875rem;
  color: var(--text-aux);
  max-width: none;
  line-height: 1.55;
}

/* ============================================
   RECOVERY
   ============================================ */
.recovery { background: var(--base); }
.recovery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.recovery__label { margin-bottom: .75rem; }
.recovery__content h2 { margin-bottom: 1.25rem; }
.recovery__lead {
  font-size: 1.0625rem;
  color: var(--text-aux);
  margin-bottom: 2rem;
  max-width: 50ch;
}
.recovery__steps { display: grid; gap: 1.25rem; }
.recovery__step {
  display: flex; gap: 1rem; align-items: flex-start;
}
.recovery__step-icon {
  width: 28px; height: 28px; min-width: 28px;
  color: var(--green); margin-top: .15rem;
}
.recovery__step-icon svg { width: 100%; height: 100%; }
.recovery__step-title {
  font-weight: 600; font-size: .9875rem; color: var(--black);
  margin-bottom: .25rem;
}
.recovery__step-text {
  font-size: .9rem;
  color: var(--text-aux);
  max-width: none;
}
.recovery__visual {
  background: var(--green-pale);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  border: 1px solid rgba(46,107,90,.12);
}
.recovery__pull {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--green);
  font-style: italic;
  line-height: 1.55;
  max-width: none;
  margin-bottom: 1.5rem;
}
.recovery__stat {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  border-top: 1px solid rgba(46,107,90,.15);
}
.recovery__stat-value {
  font-family: var(--serif);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: .375rem;
}
.recovery__stat-label {
  font-size: .8625rem;
  color: var(--text-aux);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-strong {
  background: var(--green);
  text-align: center;
}
.cta-strong h2 {
  color: #fff;
  max-width: 680px;
  margin: 0 auto 1.125rem;
}
.cta-strong__sub {
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  max-width: 48ch;
  margin: 0 auto 2.5rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--base); }
.faq__header { margin-bottom: 3.5rem; }
.faq__header h2 { margin-top: .75rem; }
.faq__list { max-width: 760px; }

.faq__item { border-bottom: 1px solid var(--border); }
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  background: none; border: none; width: 100%;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.0625rem;
  color: var(--black);
  gap: 1.25rem;
}
.faq__question:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.faq__icon {
  width: 20px; height: 20px; min-width: 20px;
  color: var(--green);
  transition: transform var(--ease);
}
.faq__icon svg { width: 100%; height: 100%; }
.faq__item.open .faq__icon { transform: rotate(45deg); }

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--ease-slow), padding-bottom var(--ease);
}
.faq__item.open .faq__answer {
  max-height: 800px;
  padding-bottom: 1.5rem;
}
.faq__answer p {
  font-size: .9375rem;
  color: var(--text-aux);
  max-width: none;
  line-height: 1.75;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  padding: 5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 2rem;
}
.footer__logo {
  font-family: var(--serif);
  font-size: 1.25rem; font-weight: 700;
  color: #fff; margin-bottom: .875rem;
}
.footer__logo span { color: var(--green); }
.footer__tagline {
  font-size: .875rem;
  color: rgba(255,255,255,.4);
  max-width: 32ch;
  line-height: 1.6;
}
.footer__social {
  display: flex; gap: .75rem;
  margin-top: 1.5rem;
}
.footer__social-link {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all var(--ease);
}
.footer__social-link svg { width: 16px; height: 16px; }
.footer__social-link:hover { border-color: rgba(255,255,255,.35); color: #fff; }

.footer__col-title {
  font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .09em;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: .625rem; }
.footer__link {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  transition: color var(--ease);
}
.footer__link:hover { color: #fff; }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer__copy { font-size: .8125rem; color: rgba(255,255,255,.28); }

/* ============================================
   WHATSAPP FAB
   ============================================ */
.whatsapp-fab {
  position: fixed; bottom: 2rem; right: 2rem;
  z-index: 200;
  transform: translateX(90px); opacity: 0;
  transition: transform .5s cubic-bezier(.34,1.56,.64,1), opacity .4s ease;
}
.whatsapp-fab.visible { transform: translateX(0); opacity: 1; }

.whatsapp-fab__btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
  transition: transform var(--ease), box-shadow var(--ease);
  position: relative;
}
.whatsapp-fab__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.4);
}
.whatsapp-fab__btn svg { width: 26px; height: 26px; }
.whatsapp-fab__tooltip {
  position: absolute;
  right: calc(100% + 12px); top: 50%;
  transform: translateY(-50%);
  background: var(--black); color: #fff;
  font-size: .8125rem;
  padding: .375rem .75rem;
  border-radius: var(--r-sm);
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity var(--ease);
}
.whatsapp-fab__tooltip::after {
  content: '';
  position: absolute; left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--black);
}
.whatsapp-fab__btn:hover .whatsapp-fab__tooltip { opacity: 1; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.in { 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; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-hero {
  padding-top: calc(70px + clamp(4rem, 7vw, 6rem));
  padding-bottom: clamp(3rem, 5vw, 5rem);
  border-bottom: 1px solid var(--border);
}
.services-hero__label { margin-bottom: .875rem; }
.services-hero__title { max-width: 18ch; margin-bottom: 1.25rem; }
.services-hero__text { color: var(--text-aux); font-size: 1.0625rem; max-width: 52ch; }

.service-block {
  padding: clamp(4rem, 7vw, 7rem) 0;
  border-bottom: 1px solid var(--border);
}
.service-block:nth-child(even) {
  background: rgba(214,229,223,.12);
}
.service-block__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.service-block__num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: 1rem;
}
.service-block__label { margin-bottom: .5rem; }
.service-block__title { margin-bottom: 1.25rem; }

.service-block__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.svc-card {
  padding: 1.5rem;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: white;
}
.svc-card__label {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .625rem;
}
.svc-card--problem .svc-card__label { color: var(--text-aux); }
.svc-card--solution .svc-card__label { color: var(--green); }
.svc-card--result .svc-card__label { color: #8B5E0A; }
.svc-card--result { background: rgba(230,170,50,.05); border-color: rgba(230,170,50,.15); }
.svc-card__text { font-size: .9rem; color: var(--text); max-width: none; line-height: 1.6; }

.services-cta {
  background: var(--black);
  text-align: center;
}
.services-cta h2 { color: #fff; max-width: 640px; margin: 0 auto 1.125rem; }
.services-cta p { color: rgba(255,255,255,.6); max-width: 48ch; margin: 0 auto 2.5rem; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  padding-top: calc(70px + clamp(4rem, 7vw, 6rem));
  padding-bottom: clamp(3rem, 5vw, 5rem);
  border-bottom: 1px solid var(--border);
}
.about-hero__label { margin-bottom: .875rem; }
.about-hero__title { max-width: 16ch; margin-bottom: 1.25rem; }
.about-hero__text { font-size: 1.0625rem; color: var(--text-aux); max-width: 52ch; }

.approach { background: var(--base); }
.approach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
  margin-top: 3.5rem;
}
.approach__pillar {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 1.25rem;
}
.approach__pillar-num {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--green-pale);
  font-weight: 700;
  margin-bottom: .75rem;
  line-height: 1;
}
.approach__pillar-title {
  font-family: var(--serif);
  font-size: 1.0625rem;
  color: var(--black);
  margin-bottom: .5rem;
}
.approach__pillar-text {
  font-size: .9rem;
  color: var(--text-aux);
  max-width: none;
}
.approach__pull {
  background: var(--green-pale);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  border-left: 4px solid var(--green);
}
.approach__pull-text {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--green);
  line-height: 1.6;
  max-width: none;
}

.truths { background: var(--black); }
.truths__intro h2 { color: #fff; margin-top: .75rem; }
.truths__intro .label { color: rgba(214,229,223,.7); }

.truths__grid {
  display: grid; gap: 1.25rem;
  margin-top: 3.5rem;
}
.truth-card {
  padding: 2.25rem;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-md);
  transition: border-color var(--ease);
}
.truth-card:hover { border-color: rgba(46,107,90,.3); }
.truth-card__headline {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1rem;
}
.truth-card__text {
  font-size: .9375rem;
  color: rgba(255,255,255,.55);
  max-width: none;
  line-height: 1.75;
}

.criteria { background: var(--base); }
.criteria__header { margin-bottom: 3.5rem; }
.criteria__header h2 { margin-top: .75rem; }
.criteria__header p { color: var(--text-aux); font-size: 1.0625rem; }

.criteria__list { display: grid; gap: 1.125rem; max-width: 760px; }
.criteria__item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: white;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.criteria__item:hover {
  border-color: rgba(46,107,90,.2);
  box-shadow: 0 4px 20px rgba(46,107,90,.05);
}
.criteria__item-icon {
  width: 28px; height: 28px; min-width: 28px;
  color: var(--green); margin-top: .1rem;
}
.criteria__item-icon svg { width: 100%; height: 100%; }
.criteria__item-title {
  font-weight: 600; font-size: 1rem;
  color: var(--black); margin-bottom: .375rem;
}
.criteria__item-text {
  font-size: .9rem;
  color: var(--text-aux);
  max-width: none;
}

.about-cta { background: var(--green-pale); border-top: 1px solid rgba(46,107,90,.12); }
.about-cta__inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.about-cta h2 { margin-bottom: .75rem; }
.about-cta p { color: var(--text-aux); max-width: 45ch; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
  padding-top: calc(70px + clamp(4rem, 7vw, 6rem));
  padding-bottom: clamp(4rem, 7vw, 7rem);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.contact__sidebar {
  position: sticky;
  top: calc(70px + 2rem);
}
.contact__sidebar-label { margin-bottom: .875rem; }
.contact__sidebar-title { margin-bottom: 1rem; }
.contact__sidebar-text { font-size: 1.0625rem; color: var(--text-aux); max-width: 40ch; }

.contact__alt {
  margin-top: 3rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: white;
}
.contact__alt-label {
  font-size: .8125rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-aux); margin-bottom: 1rem;
}
.contact__alt-text { font-size: .9375rem; color: var(--text); max-width: none; margin-bottom: 1.25rem; }

.contact__form {
  background: white;
  border-radius: var(--r-lg);
  padding: 2.75rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(0,0,0,.04);
}

/* Form */
.form__group { margin-bottom: 1.5rem; }
.form__label {
  display: block;
  font-size: .875rem; font-weight: 500;
  color: var(--black); margin-bottom: .5rem;
}
.form__label .req { color: var(--green); margin-left: 2px; }

.form__input,
.form__textarea {
  width: 100%;
  padding: .875rem 1rem;
  border: 1.5px solid rgba(15,15,15,.12);
  border-radius: var(--r-sm);
  font-family: var(--sans);
  font-size: .9375rem;
  color: var(--text);
  background: var(--base);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  line-height: 1.6;
}
.form__input::placeholder,
.form__textarea::placeholder { color: var(--text-aux); }
.form__input:focus,
.form__textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46,107,90,.1);
  background: white;
}
.form__input.valid { border-color: var(--green); }
.form__input.error,
.form__textarea.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(192,57,43,.07);
}
.form__textarea { resize: vertical; min-height: 110px; }

.form__error {
  display: none;
  font-size: .8125rem; color: var(--error);
  margin-top: .375rem;
}
.form__input.error ~ .form__error,
.form__textarea.error ~ .form__error { display: block; }

.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form__submit {
  width: 100%; padding: 1rem;
  font-size: 1rem; font-weight: 500;
  justify-content: center;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--black); color: #fff;
  padding: 1rem 2rem;
  border-radius: var(--r-md);
  font-size: .9375rem;
  opacity: 0; pointer-events: none;
  transition: all var(--ease);
  z-index: 500; text-align: center;
  max-width: min(480px, 90vw);
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
  border-left: 3px solid var(--green);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Page hero shared */
.page-hero {
  padding-top: calc(70px + clamp(4rem, 7vw, 6rem));
  padding-bottom: clamp(3rem, 5vw, 5rem);
  border-bottom: 1px solid var(--border);
}

/* ============================================
   RESPONSIVE — TABLET (769–1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { display: none; }

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

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

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

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

  .recovery__grid { grid-template-columns: 1fr; gap: 3rem; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  .service-block__grid { grid-template-columns: 1fr; gap: 3rem; }
  .service-block__cards { grid-template-columns: 1fr; }

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

  .contact__grid { grid-template-columns: 1fr; }
  .contact__sidebar { position: static; }

  .about-cta__inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {
  .header__right { display: none; }
  .header__hamburger { display: flex; }

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

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

  .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  /* Timeline vertical */
  .timeline { flex-direction: column; gap: 2rem; }
  .timeline::before { display: none; }
  .timeline__item {
    flex-direction: row; text-align: left;
    align-items: flex-start; gap: 1.25rem; padding: 0;
  }
  .timeline__num { flex-shrink: 0; margin-bottom: 0; }
  .timeline__body { flex: 1; }

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

  .contact__form { padding: 1.75rem; }

  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  .cta-strong h2 { font-size: 1.625rem; }
}
