/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

html { scroll-behavior: smooth; }
/* Keeps anchor targets (e.g. #metodo) from tucking under the sticky header
   when scrolled to directly. */
[id] { scroll-margin-top: 96px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  background: var(--color-bg);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--text-heading); line-height: 1.25; }
h1 { font-size: clamp(1.8rem, 1.35rem + 2vw, 2.5rem); font-weight: 700; line-height: 1.2; }
h2 { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 1rem + 0.5vw, 1.25rem); font-weight: 600; }

.headline-quote { font-family: var(--font-heading); font-weight: 500; font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.5rem); line-height: 1.35; color: var(--text-heading); }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
  border-radius: 4px;
}

.container { width: 100%; max-width: var(--container-w); margin-inline: auto; padding-inline: clamp(18px, 5vw, 24px); position: relative; z-index: 1; }
.section { padding-block: clamp(44px, 8vw, 104px); position: relative; z-index: 0; }
.section--surface { background: var(--color-surface); }
.section--dark { background: var(--text-heading); color: var(--color-on-dark); }
.section--dark h2, .section--dark h3 { color: #fff; }

/* Icons */
.icon { width: 22px; height: 22px; flex-shrink: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.section--dark .eyebrow { color: var(--color-accent); }

.section-head { max-width: 640px; margin-bottom: clamp(28px, 5vw, 44px); }
.section-head p { color: var(--text-muted); margin-top: 12px; font-size: clamp(0.9375rem, 0.9rem + 0.3vw, 1.0625rem); }
.section--dark .section-head p { color: rgba(255,255,255,0.78); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--color-primary); color: var(--color-on-primary); box-shadow: var(--shadow-card); }
.btn-primary:hover { background: var(--color-link-hover); }
.btn-secondary { border-color: var(--color-primary); color: var(--color-primary); background: transparent; }
.btn-secondary:hover { background: var(--color-surface); }
.section--dark .btn-secondary { border-color: rgba(255,255,255,0.6); color: #fff; }
.section--dark .btn-secondary:hover { background: rgba(255,255,255,0.08); }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Low-contrast variant — used for secondary header actions (e.g. "Clientes")
   that shouldn't compete with the primary WhatsApp CTA. */
.btn-ghost { background: transparent; border-color: var(--color-border); color: var(--text-muted); box-shadow: none; }
.btn-ghost:hover { background: var(--color-surface); color: var(--text-heading); }
.btn-ghost[aria-current="page"] { border-color: var(--color-primary); color: var(--color-primary); background: var(--color-surface); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 249, 253, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; padding-block: 14px; gap: 16px; }
.brand-logo { height: 40px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav__links { display: flex; gap: 28px; font-weight: 600; font-size: 0.9375rem; }
.main-nav__actions { display: flex; align-items: center; gap: 10px; }
.main-nav__links a { color: var(--text-body); padding-block: 4px; border-bottom: 2px solid transparent; transition: color 0.15s, border-color 0.15s; }
.main-nav__links a:hover, .main-nav__links a[aria-current="page"] { color: var(--color-primary); border-color: var(--color-primary); }
.nav-toggle { display: none; background: none; border: none; padding: 10px; margin-inline-end: -10px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-heading); margin: 5px 0; border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .site-header__inner { padding-block: 12px; position: relative; }
  .brand-logo { height: 30px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--color-bg);
    padding: 20px clamp(18px, 5vw, 24px) 28px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav__links { flex-direction: column; gap: 4px; font-size: 1.0625rem; }
  .main-nav__links a { display: block; padding-block: 12px; border-bottom: 1px solid var(--color-border); }
  .main-nav__links a:last-child { border-bottom: none; }
  .main-nav__actions { flex-direction: column; gap: 10px; margin-top: 18px; }
  .main-nav__actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
  .brand-logo { height: 26px; }
}

/* Hero */
.hero { position: relative; overflow: hidden; padding-block: clamp(40px, 10vw, 120px) 0; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 20px; }
.hero__subhead { font-size: clamp(1rem, 0.94rem + 0.3vw, 1.125rem); color: var(--text-muted); max-width: 540px; margin-bottom: 28px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
.trust-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-chips li { display: flex; align-items: center; gap: 8px; background: var(--color-surface); color: var(--text-heading); font-size: 0.8125rem; font-weight: 600; padding: 8px 16px; border-radius: 999px; border: 1px solid var(--color-border); }
.hero__media { position: relative; }
.hero__media img { border-radius: var(--radius-lg) var(--radius-lg) 4px 4px; box-shadow: var(--shadow-soft); aspect-ratio: 8 / 10; object-fit: cover; }
.hero__media::before {
  content: ""; position: absolute; inset: -18px -18px auto auto; width: 140px; height: 140px;
  background: var(--color-accent); opacity: 0.18; border-radius: 50%; z-index: -1;
}

/* Mobile-first hero: content leads (headline/CTA read before scrolling past a
   tall banner image); the photo becomes a compact supporting visual, not a
   dominant hero banner. */
@media (max-width: 900px) {
  .hero { padding-block: 28px 0; }
  .hero__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__media { max-width: 100%; margin-inline: 0; }
  .hero__media img { aspect-ratio: 16 / 10; border-radius: var(--radius-md); }
  .hero__media::before { width: 90px; height: 90px; inset: -14px -14px auto auto; }
  .hero__ctas { gap: 12px; margin-bottom: 24px; }
  .hero__ctas .btn { flex: 1 1 220px; justify-content: center; }
}
@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { flex: 0 0 auto; width: 100%; }
}

/* Trust bar — high-contrast marquee strip */
.trust-bar {
  background: var(--text-heading);
  overflow: hidden;
  padding-block: 18px;
  position: relative;
}
.trust-bar__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.trust-bar:hover .trust-bar__track,
.trust-bar__track:focus-within { animation-play-state: paused; }

.trust-bar__group {
  display: flex;
  align-items: center;
  gap: 44px;
  padding-inline-end: 44px;
  flex-shrink: 0;
}
.trust-bar__group li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: #fff;
  white-space: nowrap;
}
.trust-bar__group li .icon { color: var(--color-accent); width: 20px; height: 20px; flex-shrink: 0; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .trust-bar__track { animation: none; }
}
@media (max-width: 600px) {
  .trust-bar { padding-block: 14px; }
  .trust-bar__group { gap: 28px; padding-inline-end: 28px; }
  .trust-bar__group li { font-size: 0.8125rem; gap: 7px; }
  .trust-bar__group li .icon { width: 16px; height: 16px; }
  .trust-bar__track { animation-duration: 20s; }
}

/* Grid cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) { .card-grid { grid-template-columns: 1fr; } }

.pain-card, .method-card, .step-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: clamp(22px, 4vw, 32px) clamp(20px, 4vw, 28px); box-shadow: var(--shadow-card);
}
.section--surface .pain-card, .section--surface .method-card { background: #fff; }
.pain-card__label, .method-card__label { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--color-surface); color: var(--color-primary); margin-bottom: 18px; font-family: var(--font-heading); font-weight: 700; }
.method-card__label { background: var(--text-heading); color: var(--color-accent); }
.pain-card h3, .method-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.pain-card p, .method-card p { color: var(--text-muted); font-size: 0.9625rem; }

.bridge-note { margin-top: 40px; text-align: center; font-family: var(--font-heading); font-size: clamp(1.05rem, 0.9rem + 0.6vw, 1.25rem); color: var(--text-heading); max-width: 700px; margin-inline: auto; }

.method-cta { margin-top: 40px; text-align: center; }
@media (max-width: 480px) {
  .method-cta .btn, .final-cta .btn, .contact-card .btn { width: 100%; justify-content: center; }
}

/* About */
.about-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.about-split__media img { border-radius: 4px var(--radius-lg) var(--radius-lg) var(--radius-lg); box-shadow: var(--shadow-soft); aspect-ratio: 4/5; object-fit: cover; }
.about-split__body .personal-quote { font-family: var(--font-heading); font-size: clamp(1.1rem, 0.95rem + 0.6vw, 1.375rem); color: var(--text-heading); margin-block: 20px; padding-left: 20px; border-left: 3px solid var(--color-accent); }
.credentials { display: flex; flex-wrap: wrap; gap: 10px; margin-block: 20px 28px; }
.credentials li { display: flex; align-items: center; gap: 6px; background: var(--color-surface); border-radius: 999px; padding: 8px 16px; font-size: 0.8125rem; font-weight: 600; color: var(--text-heading); }
@media (max-width: 860px) {
  .about-split { grid-template-columns: 1fr; gap: 32px; }
  .about-split__media { max-width: 320px; margin-inline: auto; }
}

/* How it works */
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 860px) { .steps-row { grid-template-columns: 1fr; } }
.step-card__num { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--color-accent); margin-bottom: 12px; }

/* FAQ */
.faq-list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary { list-style: none; display: flex; align-items: center; padding: 16px 18px; font-weight: 600; color: var(--text-heading); font-family: var(--font-heading); font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem); line-height: 1.35; transition: background-color 0.2s ease; }
.faq-item summary:hover { background: var(--color-surface); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--color-primary); transition: transform 0.2s ease; margin-left: auto; padding-left: 12px; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 18px 18px; color: var(--text-muted); font-size: 0.9375rem; }

/* Final CTA */
.final-cta { text-align: center; }
.final-cta h2 { max-width: 700px; margin-inline: auto; margin-bottom: 16px; }
.final-cta p { max-width: 560px; margin-inline: auto; color: rgba(255,255,255,0.8); margin-bottom: 32px; }

/* Footer */
.site-footer { background: var(--text-heading); color: rgba(255,255,255,0.75); padding-block: 48px 28px; }
.site-footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.14); }
.site-footer__brand img { height: 34px; margin-bottom: 12px; }
.site-footer__brand p { font-family: var(--font-heading); color: var(--color-accent); font-size: 0.9375rem; }
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 10px 24px; font-weight: 600; font-size: 0.9rem; }
.site-footer__nav a:hover { color: var(--color-accent); }
.site-footer__social a { font-weight: 600; font-size: 0.9rem; }
.site-footer__legal { padding-top: 22px; font-size: 0.8125rem; line-height: 1.6; max-width: 760px; }
.site-footer__legal p + p { margin-top: 10px; }

/* Internal-only link, not part of the site's public IA — kept intentionally
   quiet (low contrast, tiny) so it reads as a technical footnote rather than
   a real nav item. Access point for Rafael during the pitch, nothing else. */
.footer-presentation-link { display: inline-block; margin-top: 14px; font-size: 0.6875rem; color: rgba(255,255,255,0.28); transition: color 0.15s ease; }
.footer-presentation-link:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 640px) {
  .site-footer { padding-block: 40px 24px; }
  .site-footer__top { flex-direction: column; align-items: flex-start; gap: 22px; }
  .site-footer__brand img { height: 28px; }
  .site-footer__nav { flex-direction: column; gap: 12px; }
}

/* Page header (secondary pages) */
.page-header { padding-block: clamp(36px, 8vw, 56px); text-align: center; }
.page-header p { max-width: 560px; margin-inline: auto; color: var(--text-muted); font-size: clamp(0.9375rem, 0.9rem + 0.3vw, 1.0625rem); margin-top: 14px; }
.page-banner { width: 100%; height: clamp(160px, 32vw, 260px); object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }

/* Services page detail */
.service-detail { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center; margin-bottom: 56px; }
.service-detail:nth-child(even) .service-detail__media { order: 2; }
.service-detail__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); aspect-ratio: 4/3; object-fit: cover; }
.service-detail__body h3 { font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.5rem); margin-bottom: 12px; }
@media (max-width: 780px) {
  .service-detail, .service-detail:nth-child(even) { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
  .service-detail:nth-child(even) .service-detail__media { order: 0; }
}

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 24px; } }
.contact-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: clamp(22px, 4vw, 32px); box-shadow: var(--shadow-card); }
.contact-card h3 { margin-bottom: 14px; }
.contact-card address, .contact-card p { font-style: normal; color: var(--text-muted); margin-bottom: 8px; }
.contact-card .btn { margin-top: 18px; }
.map-mock { width: 100%; height: clamp(150px, 30vw, 220px); border-radius: var(--radius-sm); background: repeating-linear-gradient(45deg, var(--color-surface), var(--color-surface) 10px, #fff 10px, #fff 20px); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.875rem; font-weight: 600; margin-top: 14px; text-align: center; padding: 0 16px; }

/* Client area — dashboard intro, tabs, cards, badges, forms */
.dash-intro { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: clamp(28px, 5vw, 40px); }
.dash-intro h1 { margin-top: 4px; }
.dash-logout { flex-shrink: 0; }

.dash-tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--color-border); margin-bottom: clamp(28px, 5vw, 40px); overflow-x: auto; }
.dash-tab {
  appearance: none; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 0.9375rem; color: var(--text-muted);
  padding: 12px 4px; margin-right: 28px; white-space: nowrap;
  border-bottom: 2px solid transparent; transition: color 0.15s ease, border-color 0.15s ease;
}
.dash-tab:hover { color: var(--text-heading); }
.dash-tab.is-active { color: var(--color-primary); border-bottom-color: var(--color-primary); }

.dash-panel { display: none; }
.dash-panel.is-active { display: block; }
.dash-empty { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 40px 24px; text-align: center; color: var(--text-muted); }

.dash-list { display: flex; flex-direction: column; gap: 14px; }
.dash-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; transition: box-shadow 0.2s ease; }
.dash-card:hover { box-shadow: var(--shadow-card); }
.dash-card > summary { cursor: pointer; list-style: none; padding: 20px 22px; }
.dash-card > summary::-webkit-details-marker { display: none; }
.dash-card.dash-card--static { padding: 20px 22px; }
.dash-card__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.dash-card__meta { font-size: 0.8125rem; color: var(--text-muted); }
.dash-card__title { font-family: var(--font-heading); font-weight: 700; color: var(--text-heading); font-size: 1.0625rem; margin-top: 3px; }
.dash-card__side { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.dash-card__value { font-family: var(--font-heading); font-weight: 700; color: var(--text-heading); font-size: 1.125rem; white-space: nowrap; }
.dash-card__chevron { color: var(--color-primary); transition: transform 0.2s ease; flex-shrink: 0; }
details.dash-card[open] .dash-card__chevron { transform: rotate(45deg); }
.dash-card__body { padding: 0 22px 22px; }
.dash-card__body p { color: var(--text-muted); font-size: 0.9375rem; }
.dash-card__body p + p { margin-top: 10px; }
.dash-card__note { margin-top: 12px; font-size: 0.8125rem; color: var(--text-muted); }

/* Status badges */
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; padding: 5px 12px; border-radius: 999px; border: 1px solid transparent; white-space: nowrap; }
.badge--success { color: var(--color-success); background: rgba(22, 110, 48, 0.1); border-color: rgba(22, 110, 48, 0.25); }
.badge--warning { color: var(--color-warning); background: rgba(154, 91, 0, 0.1); border-color: rgba(154, 91, 0, 0.25); }
.badge--info { color: var(--color-info); background: rgba(42, 111, 151, 0.1); border-color: rgba(42, 111, 151, 0.25); }
.badge--muted { color: var(--text-muted); background: var(--color-surface); border-color: var(--color-border); }

/* Mocked Pix payment block */
.pix-mock { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 22px; margin-top: 4px; }
.pix-mock__qr {
  width: 128px; height: 128px; flex-shrink: 0; border-radius: var(--radius-sm);
  background-color: #fff; padding: 10px;
  background-image:
    repeating-linear-gradient(90deg, var(--text-heading) 0 8px, transparent 8px 16px),
    repeating-linear-gradient(0deg, var(--text-heading) 0 8px, transparent 8px 16px);
  background-blend-mode: multiply;
  background-size: 16px 16px;
  opacity: 0.85;
  border: 1px solid var(--color-border);
}
.pix-mock__field { flex: 1; min-width: 220px; }
.pix-mock__field p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 10px; }
.pix-mock__code-row { display: flex; gap: 8px; }
.pix-mock__code-row input { flex: 1; min-width: 0; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 10px 14px; font-size: 0.8125rem; color: var(--text-muted); font-family: 'SFMono-Regular', Consolas, monospace; }
.pix-mock__note { margin-top: 12px; font-size: 0.8125rem; color: var(--text-muted); }

/* Forms (profile) */
.form-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: clamp(22px, 4vw, 32px); }
.form-card + .form-card { margin-top: 20px; }
.form-card h3 { margin-bottom: 4px; }
.form-card > p.form-card__hint { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field:last-child { margin-bottom: 0; }
.form-field label { font-size: 0.8125rem; font-weight: 600; color: var(--text-heading); }
.form-field input {
  padding: 12px 16px; border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.9375rem; color: var(--text-body); background: #fff;
}
.form-field input:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 1px; border-color: var(--color-primary); }
.form-actions { margin-top: 22px; }

/* Skip link */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--color-primary); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0; z-index: 100; }
.skip-link:focus { left: 0; }

/* Scroll-reveal — progressive fade/rise as content enters the viewport */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
}
[data-animate].in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; transition: none; }
}

/* Hero load-in */
.hero__content > * { opacity: 0; transform: translateY(18px); animation: rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.hero__content > *:nth-child(1) { animation-delay: 0.05s; }
.hero__content > *:nth-child(2) { animation-delay: 0.15s; }
.hero__content > *:nth-child(3) { animation-delay: 0.25s; }
.hero__content > *:nth-child(4) { animation-delay: 0.35s; }
.hero__content > *:nth-child(5) { animation-delay: 0.45s; }
.hero__media { opacity: 0; transform: translateY(18px) scale(0.98); animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: 0.2s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero__content > *, .hero__media { animation: none; opacity: 1; transform: none; }
}

/* Card motion */
.pain-card, .method-card, .step-card, .service-detail__media img, .faq-item, .contact-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pain-card:hover, .method-card:hover, .step-card:hover, .contact-card:hover { transform: translateY(-6px); box-shadow: 0 24px 40px -22px rgba(46, 34, 74, 0.35); }
.service-detail__media img { transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.service-detail:hover .service-detail__media img { transform: scale(1.03); }

/* Gentle breathing emphasis on primary CTA buttons */
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(123, 97, 184, 0.35), var(--shadow-card); }
  50% { box-shadow: 0 0 0 10px rgba(123, 97, 184, 0), var(--shadow-card); }
}
.btn-primary.btn-lg { animation: pulse-ring 2.8s ease-in-out infinite; }
.btn-primary.btn-lg:hover { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .btn-primary.btn-lg { animation: none; }
}

/* Section watermarks — faint brand motifs, decorative only */
.section-watermark {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  user-select: none;
}
.section-watermark--symbol-br { right: -60px; bottom: -40px; width: 360px; opacity: 0.05; }
.section-watermark--symbol-tl { left: -70px; top: -50px; width: 320px; opacity: 0.045; transform: rotate(8deg); }
.section-watermark--symbol-tr-dark { right: -40px; top: -30px; width: 340px; opacity: 0.09; }
.section-watermark--ring {
  width: 460px; height: 460px;
  color: var(--color-primary);
  opacity: 0.06;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.section--dark .section-watermark--ring { color: var(--color-accent); opacity: 0.08; }
@media (max-width: 700px) {
  .section-watermark { display: none; }
}
