:root {
  --ink: #0b1220;
  --ink-soft: #172033;
  --text: #263044;
  --muted: #637083;
  --line: #dfe5ec;
  --surface: #ffffff;
  --surface-soft: #f5f7fa;
  --surface-dark: #0b1220;
  --surface-dark-2: #111b2d;
  --gold: #d3a95f;
  --gold-bright: #efc879;
  --gold-soft: #f8edda;
  --teal: #49c5b6;
  --success: #28b487;
  --danger: #b42318;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(11, 18, 32, 0.07);
  --shadow-md: 0 24px 70px rgba(11, 18, 32, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 78px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--ink);
  line-height: 1.13;
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(2.7rem, 6vw, 5.55rem); }
h2 { font-size: clamp(2rem, 4vw, 3.65rem); }
h3 { font-size: clamp(1.18rem, 2vw, 1.5rem); }
p:last-child { margin-bottom: 0; }

::selection { color: var(--ink); background: var(--gold-bright); }

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--gold-bright);
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section { padding: 110px 0; }
.section-soft { background: var(--surface-soft); }
.section-dark {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  background: var(--surface-dark);
  overflow: hidden;
}
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: var(--white); }

.section-kicker,
.eyebrow,
.service-label {
  margin-bottom: 14px;
  color: #8d6a2d;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}
.section-dark .section-kicker,
.section-dark .eyebrow { color: var(--gold-bright); }

.section-heading { margin-bottom: 58px; }
.section-heading h2 { max-width: 850px; margin-bottom: 20px; }
.section-heading > p { max-width: 760px; color: var(--muted); }
.centered-heading { text-align: center; }
.centered-heading h2,
.centered-heading > p { margin-inline: auto; }
.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 70px;
  align-items: end;
}
.split-heading > p { margin-bottom: 9px; }
.light-heading > p { color: rgba(255, 255, 255, 0.66); }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--gold-bright); }
.button-primary:hover { background: #ffd993; }
.button-ghost { color: var(--white); border-color: rgba(255, 255, 255, 0.28); background: rgba(255, 255, 255, 0.04); }
.button-ghost:hover { border-color: rgba(255, 255, 255, 0.55); background: rgba(255, 255, 255, 0.08); }
.button-secondary { color: var(--ink); border-color: var(--line); background: var(--white); }
.button-secondary:hover { border-color: #b6c0ce; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid rgba(220, 226, 234, 0.88);
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}
.brand-mark {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  color: var(--ink);
  background: linear-gradient(145deg, #f4d99f, var(--gold));
  box-shadow: 0 8px 24px rgba(211, 169, 95, 0.24);
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-size: 1rem; letter-spacing: -0.01em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 0.64rem; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; }

.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #344056;
  font-size: 0.91rem;
  font-weight: 720;
  text-decoration: none;
}
.primary-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 180ms ease;
}
.primary-nav > a:hover::after { transform: scaleX(1); }
.primary-nav .nav-cta { min-height: 44px; padding: 0 18px; border-radius: 999px; color: var(--white); background: var(--ink); }
.primary-nav .nav-cta:hover { background: #253149; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--ink); }

.hero { min-height: calc(100svh - var(--header-height)); padding: 94px 0 76px; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr); gap: 68px; align-items: center; }
.hero-copy h1 { max-width: 820px; margin-bottom: 28px; }
.hero-lead { max-width: 770px; margin-bottom: 34px; color: rgba(255, 255, 255, 0.72); font-size: clamp(1.05rem, 1.8vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust { display: flex; gap: 34px; margin: 52px 0 0; padding: 0; list-style: none; }
.hero-trust li { display: grid; gap: 2px; }
.hero-trust strong { color: var(--white); font-size: 1.1rem; }
.hero-trust span { color: rgba(255, 255, 255, 0.52); font-size: 0.82rem; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); opacity: 0.42; }
.hero-glow-one { top: -330px; right: -220px; width: 720px; height: 720px; background: radial-gradient(circle, rgba(73, 197, 182, 0.2), transparent 65%); }
.hero-glow-two { bottom: -350px; left: -250px; width: 720px; height: 720px; background: radial-gradient(circle, rgba(211, 169, 95, 0.14), transparent 65%); }

.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.system-orbit { position: relative; width: min(100%, 500px); aspect-ratio: 1; }
.orbit-ring { position: absolute; inset: 12%; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50%; }
.orbit-ring-two { inset: 27%; border-color: rgba(239, 200, 121, 0.23); }
.system-core {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 138px;
  height: 138px;
  transform: translate(-50%, -50%);
  display: grid;
  place-content: center;
  border: 1px solid rgba(239, 200, 121, 0.38);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #283650, #111a2c 70%);
  box-shadow: 0 0 0 16px rgba(255, 255, 255, 0.018), 0 28px 80px rgba(0, 0, 0, 0.38);
  text-align: center;
}
.core-monogram { color: var(--gold-bright); font-size: 2.4rem; font-weight: 950; letter-spacing: -0.08em; }
.system-core small { color: rgba(255,255,255,.58); font-size: .72rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.system-node {
  position: absolute;
  min-width: 124px;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(18, 28, 45, 0.84);
  box-shadow: 0 16px 50px rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
}
.system-node span { display: block; margin-bottom: 3px; color: var(--gold-bright); font-size: .68rem; font-weight: 850; letter-spacing: .12em; }
.system-node strong { color: var(--white); font-size: .9rem; }
.node-one { top: 3%; left: 34%; }
.node-two { top: 39%; right: -1%; }
.node-three { bottom: 5%; left: 40%; }
.node-four { top: 42%; left: -2%; }
.hero-note {
  position: absolute;
  right: 0;
  bottom: 22px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(13, 22, 37, .76);
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
}
.hero-note p { margin: 0; color: rgba(255,255,255,.6); font-size: .78rem; line-height: 1.4; }
.hero-note strong { color: var(--white); }
.status-dot { width: 9px; height: 9px; margin-top: 4px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 5px rgba(73,197,182,.12); }

.answer-strip { padding: 42px 0; border-bottom: 1px solid var(--line); background: #fff; }
.answer-grid { display: grid; grid-template-columns: 290px minmax(0, 1fr); gap: 70px; align-items: center; }
.answer-grid h2 { margin: 0; font-size: clamp(1.55rem, 3vw, 2.15rem); }
.answer-grid p { margin: 0; color: #445067; }

.outcome-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.outcome-card { min-height: 260px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.outcome-card:hover { transform: translateY(-5px); border-color: #c8d0da; box-shadow: var(--shadow-md); }
.card-number { display: inline-flex; margin-bottom: 50px; color: #9a6d28; font-size: .78rem; font-weight: 850; letter-spacing: .12em; }
.outcome-card h3 { margin-bottom: 13px; }
.outcome-card p { color: var(--muted); font-size: .94rem; }

.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.service-card { display: flex; min-height: 535px; flex-direction: column; padding: 38px; border: 1px solid #dce2e9; border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 12px 38px rgba(11,18,32,.045); }
.service-card-featured { color: rgba(255,255,255,.72); border-color: transparent; background: linear-gradient(145deg, #0f192a, #17243a); box-shadow: 0 28px 80px rgba(11,18,32,.18); }
.service-card-featured h3 { color: var(--white); }
.service-card-featured .service-label { color: var(--gold-bright); }
.service-card-featured ul { color: rgba(255,255,255,.72); }
.service-card-featured li::before { background: var(--gold-bright); }
.service-card-featured .text-link { color: var(--gold-bright); }
.service-icon { display: grid; width: 54px; height: 54px; place-items: center; margin-bottom: 32px; border-radius: 16px; color: #8f692b; background: var(--gold-soft); }
.service-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card-featured .service-icon { color: var(--gold-bright); background: rgba(239,200,121,.09); }
.service-card h3 { max-width: 520px; margin-bottom: 16px; }
.service-card > p:not(.service-label) { color: var(--muted); }
.service-card-featured > p:not(.service-label) { color: rgba(255,255,255,.68); }
.service-card ul { margin: 26px 0 30px; padding: 0; list-style: none; color: #465167; font-size: .93rem; }
.service-card li { position: relative; padding: 8px 0 8px 20px; border-bottom: 1px solid rgba(210,217,226,.72); }
.service-card-featured li { border-bottom-color: rgba(255,255,255,.1); }
.service-card li::before { content: ""; position: absolute; top: 18px; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; color: var(--ink); font-weight: 850; text-decoration: none; }
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }
.service-card-wide { grid-column: 1 / -1; min-height: 0; }
.service-content { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start; }
.service-content .service-icon { margin: 0; }
.wide-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.service-disclaimer { max-width: 900px; margin: 28px auto 0; color: var(--muted); font-size: .84rem; text-align: center; }

.audience-layout { display: grid; grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr); gap: 90px; align-items: start; }
.sticky-heading { position: sticky; top: calc(var(--header-height) + 40px); }
.sticky-heading .button { margin-top: 20px; }
.audience-list { border-top: 1px solid var(--line); }
.audience-list article { display: grid; grid-template-columns: 54px 1fr; gap: 22px; padding: 28px 4px; border-bottom: 1px solid var(--line); }
.audience-list article > span { color: #9a6d28; font-size: .72rem; font-weight: 850; letter-spacing: .12em; }
.audience-list h3 { margin-bottom: 8px; }
.audience-list p { color: var(--muted); font-size: .93rem; }

.process-section { padding-bottom: 120px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 0; padding: 1px; list-style: none; background: rgba(255,255,255,.12); border-radius: 24px; overflow: hidden; }
.process-grid li { min-height: 245px; padding: 32px; background: var(--surface-dark); }
.process-grid span { display: block; margin-bottom: 45px; color: var(--gold-bright); font-size: .74rem; font-weight: 850; letter-spacing: .14em; }
.process-grid h3 { margin-bottom: 12px; }
.process-grid p { color: rgba(255,255,255,.55); font-size: .9rem; }

.opportunity-section { background: linear-gradient(180deg, #fff 0%, #fffaf1 100%); }
.opportunity-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.opportunity-grid article { min-height: 310px; padding: 34px; border: 1px solid #eadfcf; border-radius: var(--radius-md); background: rgba(255,255,255,.74); }
.opportunity-tag { display: inline-flex; margin-bottom: 54px; padding: 6px 10px; border-radius: 999px; color: #805b22; background: var(--gold-soft); font-size: .68rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.opportunity-grid h3 { margin-bottom: 13px; }
.opportunity-grid p { color: var(--muted); }
.opportunity-grid a { display: inline-flex; gap: 8px; margin-top: 18px; color: var(--ink); font-size: .9rem; font-weight: 850; text-decoration: none; }

.about-grid { display: grid; grid-template-columns: minmax(350px, .88fr) minmax(0, 1.12fr); gap: 88px; align-items: center; }
.about-visual { position: relative; min-height: 570px; border-radius: var(--radius-lg); background: linear-gradient(145deg, #111b2d, #0b1220); overflow: hidden; box-shadow: var(--shadow-md); }
.about-visual::before { content: ""; position: absolute; inset: 10%; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.about-visual::after { content: ""; position: absolute; width: 360px; height: 360px; right: -90px; bottom: -100px; border-radius: 50%; background: radial-gradient(circle, rgba(211,169,95,.18), transparent 68%); }
.about-monogram { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%); color: var(--gold-bright); font-size: clamp(5rem, 12vw, 9rem); font-weight: 950; letter-spacing: -.1em; }
.about-badge { position: absolute; z-index: 2; min-width: 132px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(255,255,255,.06); backdrop-filter: blur(10px); }
.about-badge strong { display: block; color: var(--white); font-size: 1.45rem; }
.about-badge span { color: rgba(255,255,255,.55); font-size: .75rem; }
.badge-one { top: 36px; right: 36px; }
.badge-two { bottom: 36px; left: 36px; }
.about-line { position: absolute; top: 70px; bottom: 70px; left: 50%; width: 1px; background: linear-gradient(transparent, rgba(239,200,121,.32), transparent); }
.about-copy h2 { margin-bottom: 24px; }
.about-copy > p { color: #536076; }
.about-lead { color: var(--ink) !important; font-size: 1.14rem; font-weight: 650; }
.experience-points { display: grid; gap: 16px; margin-top: 32px; }
.experience-points > div { display: grid; grid-template-columns: 44px 1fr; gap: 12px; padding-top: 17px; border-top: 1px solid var(--line); }
.experience-points span { color: #9a6d28; font-size: .72rem; font-weight: 850; letter-spacing: .1em; }
.experience-points p { margin: 0; color: var(--muted); font-size: .92rem; }
.experience-points strong { color: var(--ink); }

.faq-layout { display: grid; grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr); gap: 92px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; min-height: 72px; display: flex; align-items: center; padding: 20px 50px 20px 0; color: var(--ink); font-weight: 780; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before,
.faq-list summary::after { content: ""; position: absolute; right: 8px; width: 18px; height: 2px; background: var(--ink); transition: transform 180ms ease; }
.faq-list summary::after { transform: rotate(90deg); }
.faq-list details[open] summary::after { transform: rotate(0); }
.faq-list details > div { padding: 0 58px 24px 0; color: var(--muted); }

.contact-section { padding: 112px 0; }
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .82fr) minmax(440px, 1.18fr); gap: 80px; align-items: start; }
.contact-copy h2 { margin-bottom: 24px; }
.contact-copy > p { color: rgba(255,255,255,.63); }
.contact-methods { display: grid; gap: 0; margin-top: 42px; border-top: 1px solid rgba(255,255,255,.12); }
.contact-methods a,
.contact-methods div { display: grid; gap: 3px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); text-decoration: none; }
.contact-methods span { color: rgba(255,255,255,.44); font-size: .76rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.contact-methods strong { color: var(--white); font-size: .98rem; }
.contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 34px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); background: rgba(255,255,255,.055); box-shadow: 0 28px 90px rgba(0,0,0,.25); backdrop-filter: blur(14px); }
.form-row { display: grid; gap: 8px; }
.form-row-full { grid-column: 1 / -1; }
.form-row label { color: rgba(255,255,255,.72); font-size: .82rem; font-weight: 760; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  color: var(--white);
  background: rgba(0,0,0,.13);
  outline: none;
}
.form-row select option { color: var(--ink); background: var(--white); }
.form-row textarea { min-height: 130px; resize: vertical; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--gold-bright); box-shadow: 0 0 0 3px rgba(239,200,121,.12); }
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(255,255,255,.35); }
.form-consent label { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.58); font-size: .78rem; }
.form-consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--gold-bright); }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.form-actions p { margin: 0; color: var(--gold-bright); font-size: .82rem; }
.field-error { border-color: #ff8a82 !important; }

.site-footer { padding: 70px 0 24px; color: #647087; background: #080d17; }
.footer-top { display: grid; grid-template-columns: 1.5fr .65fr .75fr; gap: 90px; padding-bottom: 48px; }
.footer-brand { color: var(--white); }
.footer-brand small { color: rgba(255,255,255,.38); }
.footer-top > div:first-child > p { max-width: 470px; margin: 22px 0 0; font-size: .9rem; }
.footer-top nav,
.footer-contact { display: grid; align-content: start; gap: 10px; }
.footer-top nav strong,
.footer-contact strong { margin-bottom: 8px; color: var(--white); }
.footer-top nav a,
.footer-contact a { min-height: 32px; text-decoration: none; }
.footer-top nav a:hover,
.footer-contact a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); font-size: .74rem; }
.footer-bottom p { margin: 0; }

.floating-whatsapp {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #20b65a;
  box-shadow: 0 14px 40px rgba(32,182,90,.34);
  transition: transform 180ms ease;
}
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.03); }
.floating-whatsapp svg { width: 29px; height: 29px; fill: currentColor; }

@media (max-width: 1050px) {
  :root { --header-height: 72px; }
  .primary-nav { gap: 18px; }
  .primary-nav a { font-size: .84rem; }
  .hero-grid { grid-template-columns: 1fr 430px; gap: 35px; }
  .hero-visual { min-height: 450px; }
  .outcome-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-layout,
  .faq-layout { gap: 50px; }
  .about-grid { gap: 50px; }
}

@media (max-width: 880px) {
  .section { padding: 82px 0; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 20px;
    left: 20px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-md);
  }
  .primary-nav.is-open { display: grid; }
  .primary-nav a { min-height: 46px; padding: 0 10px; }
  .primary-nav .nav-cta { justify-content: center; }
  .hero { min-height: auto; padding-top: 70px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions,
  .hero-trust { justify-content: center; }
  .hero-visual { min-height: 470px; }
  .answer-grid { grid-template-columns: 1fr; gap: 18px; }
  .split-heading { grid-template-columns: 1fr; gap: 15px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: auto; }
  .audience-layout,
  .about-grid,
  .faq-layout,
  .contact-grid { grid-template-columns: 1fr; }
  .sticky-heading { position: static; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { gap: 45px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 50px; }
  .footer-top > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .brand-copy small { display: none; }
  .hero { padding-top: 58px; }
  .hero-copy h1 { font-size: clamp(2.45rem, 13vw, 4rem); }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 38px; }
  .hero-trust li { padding: 14px 8px; border: 1px solid rgba(255,255,255,.09); border-radius: 12px; }
  .hero-trust strong { font-size: .92rem; }
  .hero-trust span { font-size: .68rem; }
  .hero-visual { min-height: 380px; }
  .system-orbit { width: 360px; max-width: 100%; }
  .system-core { width: 112px; height: 112px; }
  .core-monogram { font-size: 2rem; }
  .system-node { min-width: 103px; padding: 10px 12px; }
  .node-one { left: 32%; }
  .node-two { right: -3%; }
  .node-four { left: -3%; }
  .hero-note { right: 50%; bottom: -2px; transform: translateX(50%); width: max-content; }
  .outcome-grid,
  .opportunity-grid { grid-template-columns: 1fr; }
  .outcome-card { min-height: 225px; }
  .service-card { min-height: 0; padding: 28px; border-radius: 24px; }
  .service-content { grid-template-columns: 1fr; }
  .wide-list { grid-template-columns: 1fr; gap: 0; }
  .audience-list article { grid-template-columns: 38px 1fr; gap: 12px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 205px; }
  .about-visual { min-height: 430px; }
  .contact-form { grid-template-columns: 1fr; padding: 24px; }
  .form-row-full { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-top > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .floating-whatsapp { right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .site-header, .floating-whatsapp, .hero-actions, .contact-form { display: none !important; }
  .section-dark { color: #222; background: #fff; }
  .section-dark h1, .section-dark h2, .section-dark h3 { color: #000; }
}
