:root {
  --navy: #0b1f3a;
  --navy-2: #102c4e;
  --blue: #1e5eff;
  --blue-dark: #1748c6;
  --blue-soft: #f4f8ff;
  --blue-soft-2: #edf4ff;
  --ink: #101828;
  --body: #475467;
  --muted: #596579;
  --border: #e4e7ec;
  --border-blue: #dce7ff;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --whatsapp: #25d366;
  --whatsapp-dark: #1caf54;
  --warning-bg: #fff9e8;
  --warning-border: #f3d58c;
  --shadow-xs: 0 1px 2px rgba(16, 24, 40, .04);
  --shadow-sm: 0 8px 28px rgba(16, 24, 40, .055);
  --shadow-md: 0 18px 55px rgba(16, 24, 40, .09);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--body);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
:where(a, button, input, [tabindex]):focus-visible {
  outline: 3px solid rgba(30,94,255,.38);
  outline-offset: 3px;
  border-radius: 6px;
}
.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 9px;
  color: #fff;
  background: var(--navy);
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform .18s ease;
}
.skip-link:focus { transform: translateY(0); }
button, input { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 64px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 72px 0; }
.section-blue { background: var(--blue-soft); }
.section-neutral { background: var(--surface-alt); }
.section-dark { background: var(--navy); color: #fff; }
.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-head.align-left { margin-inline: 0; text-align: left; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid var(--border-blue);
  border-radius: 999px;
  background: #f8fbff;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .09em;
  text-transform: uppercase;
}
h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(42px, 3.7vw, 54px); }
h2 { font-size: clamp(31px, 3vw, 42px); }
h3 { font-size: 19px; letter-spacing: -.02em; }
h4 { font-size: 16px; letter-spacing: -.015em; }
p { margin: 0; }
.lead { margin-top: 18px; color: var(--body); font-size: 18px; line-height: 1.7; }
.subtle { color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--blue-dark); font-weight: 750; }
.text-link:hover { color: var(--blue); }
.text-link svg { width: 17px; height: 17px; transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(3px); }

/* Announcement */
.announcement {
  min-height: 38px;
  display: flex;
  align-items: center;
  background: var(--navy);
  color: rgba(255,255,255,.86);
  font-size: 14px;
}
.announcement-inner { display: flex; align-items: center; justify-content: center; gap: 12px; text-align: center; }
.announcement a { color: #63ee96; font-weight: 750; white-space: nowrap; }
.announcement a:hover { color: #fff; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 76px;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(228,231,236,.9);
  backdrop-filter: blur(14px);
  transition: box-shadow .25s ease, height .25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 32px rgba(16,24,40,.07); height: 70px; }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); font-family: Manrope, Inter, sans-serif; font-size: 18px; font-weight: 850; letter-spacing: -.035em; }
.logo-mark { position: relative; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 11px; color: #fff; background: linear-gradient(145deg, #071a31 0%, #0b2f5a 56%, #1e5eff 100%); box-shadow: 0 8px 20px rgba(30,94,255,.18); overflow: hidden; }
.logo-mark::after { content: ""; position: absolute; width: 18px; height: 18px; right: -7px; bottom: -7px; border-radius: 50%; background: rgba(255,255,255,.16); }
.logo-mark svg { width: 20px; height: 20px; }
.nav-wrap { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { position: relative; padding: 9px 0; color: #344054; font-size: 14px; font-weight: 650; }
.nav a:hover, .nav a.active { color: var(--blue); }
.nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px; border-radius: 99px; background: var(--blue); }
.mobile-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 11px; background: #fff; color: var(--navy); }
.mobile-toggle svg { width: 22px; height: 22px; }
.mobile-menu { display: none; position: fixed; inset: 114px 0 0; z-index: 49; background: #fff; padding: 24px; overflow: auto; }
.mobile-menu.open { display: block; }
.mobile-nav { display: grid; gap: 5px; }
.mobile-nav a { padding: 14px 4px; border-bottom: 1px solid var(--border); color: var(--ink); font-weight: 700; }
.mobile-contact { margin-top: 26px; padding: 20px; border-radius: var(--radius); background: var(--blue-soft); display: grid; gap: 12px; font-size: 14px; }

/* Buttons */
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 780;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 19px; height: 19px; }
.btn-primary { color: #fff; background: var(--blue); box-shadow: 0 10px 24px rgba(30,94,255,.18); }
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 14px 30px rgba(30,94,255,.24); }
.btn-whatsapp { color: #063f1b; background: var(--whatsapp); box-shadow: 0 10px 24px rgba(37,211,102,.18); }
.btn-whatsapp:hover { color: #fff; background: var(--whatsapp-dark); box-shadow: 0 14px 30px rgba(37,211,102,.24); }
.btn-outline { color: var(--navy); background: #fff; border-color: #d0d5dd; }
.btn-outline:hover { border-color: #a9b5c8; background: var(--surface-alt); }
.btn-dark { color: #fff; background: var(--navy); }
.btn-dark:hover { background: var(--navy-2); }
.btn-sm { min-height: 44px; padding-inline: 17px; font-size: 14px; }
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 84px 0 68px; background: #fff; }
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; right: -270px; top: -300px; background: radial-gradient(circle, rgba(30,94,255,.08), transparent 68%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.16fr .84fr; align-items: center; gap: 52px; }
.hero h1 { max-width: 690px; margin-top: 18px; text-wrap: balance; }
.hero-title-line { display: block; }
.hero h1 .accent { color: var(--blue); }
.hero-copy { max-width: 760px; }
.hero-copy .lead { max-width: 650px; }
.hero-actions { margin-top: 30px; }
.hero-contact { margin-top: 20px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; color: var(--muted); font-size: 14px; }
.hero-contact a { color: var(--navy); font-weight: 750; }
.hero-contact .dot { width: 4px; height: 4px; border-radius: 50%; background: #98a2b3; }
.hero-visual { position: relative; min-height: 440px; display: grid; place-items: center; }
.hero-orbit { position: absolute; width: 370px; height: 370px; border-radius: 50%; background: linear-gradient(145deg, #edf4ff, #f8fbff); border: 1px solid #e6efff; }
.hero-visual svg { position: relative; z-index: 2; width: min(100%, 450px); filter: drop-shadow(0 28px 40px rgba(11,31,58,.12)); }

/* Trust */
.trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { position: relative; display: grid; grid-template-columns: 42px 1fr; gap: 13px; align-items: start; padding: 28px 24px; }
.trust-item + .trust-item::before { content: ""; position: absolute; left: 0; top: 28px; bottom: 28px; width: 1px; background: var(--border); }
.icon-box { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: var(--blue); background: var(--blue-soft); border: 1px solid var(--border-blue); }
.icon-box svg { width: 21px; height: 21px; }
.trust-item h3 { font-size: 15px; }
.trust-item p { margin-top: 5px; color: var(--muted); font-size: 14px; line-height: 1.5; }

/* Cards */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { display: flex; flex-direction: column; min-height: 278px; padding: 26px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-xs); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.service-card:hover { transform: translateY(-5px); border-color: #cbd8ef; box-shadow: var(--shadow-sm); }
.service-card .icon-box { margin-bottom: 20px; }
.service-card p { margin-top: 11px; color: var(--muted); font-size: 15px; line-height: 1.62; }
.service-card .text-link { margin-top: auto; padding-top: 22px; font-size: 14px; }
.services-footer { margin-top: 36px; text-align: center; }

/* Audience */
.audience-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 54px; align-items: center; }
.audience-list { margin-top: 28px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.audience-item { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid var(--border-blue); border-radius: 10px; background: rgba(255,255,255,.72); color: #344054; font-size: 14px; font-weight: 700; }
.audience-item svg { width: 17px; height: 17px; color: var(--blue); flex: 0 0 auto; }
.info-panel { padding: 30px; border: 1px solid var(--border-blue); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.info-panel h3 { margin-bottom: 20px; }
.info-list { display: grid; gap: 18px; }
.info-row { display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: start; }
.info-row .mini-icon { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; background: var(--blue-soft); color: var(--blue); }
.info-row .mini-icon svg { width: 18px; height: 18px; }
.info-row h4 { margin-top: 1px; }
.info-row p { margin-top: 3px; color: var(--muted); font-size: 14px; line-height: 1.5; }

/* Process */
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; margin-top: 50px; }
.process-grid::before { content: ""; position: absolute; top: 26px; left: calc(12.5% + 2px); right: calc(12.5% + 2px); height: 2px; background: linear-gradient(90deg, #dbe7ff, #bcd0ff, #dbe7ff); }
.process-step { position: relative; text-align: center; }
.step-number { position: relative; z-index: 2; width: 54px; height: 54px; margin: 0 auto 19px; display: grid; place-items: center; border: 7px solid #f4f8ff; border-radius: 50%; color: #fff; background: var(--blue); font-weight: 850; box-shadow: 0 8px 20px rgba(30,94,255,.18); }
.process-step h3 { font-size: 17px; }
.process-step p { margin-top: 8px; color: var(--muted); font-size: 15px; line-height: 1.56; }
.warning { max-width: 860px; margin: 40px auto 0; display: flex; align-items: flex-start; gap: 12px; padding: 17px 19px; border: 1px solid var(--warning-border); border-radius: 12px; background: var(--warning-bg); color: #704b00; font-size: 14px; line-height: 1.65; }
.warning svg { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 1px; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.about-copy p { margin-top: 18px; max-width: 650px; }
.about-copy .button-row { margin-top: 28px; }
.focus-card { padding: 32px; border: 1px solid var(--border-blue); border-radius: var(--radius-lg); background: linear-gradient(145deg, #f8fbff, #edf4ff); }
.focus-card h3 { font-size: 22px; }
.focus-list { margin-top: 24px; display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.focus-item { display: flex; gap: 10px; align-items: flex-start; padding: 14px; border-radius: 12px; background: rgba(255,255,255,.8); border: 1px solid rgba(220,231,255,.9); color: #344054; font-size: 14px; font-weight: 750; }
.focus-item svg { width: 18px; height: 18px; color: var(--blue); flex: 0 0 auto; margin-top: 1px; }

/* Checklist */
.check-card { max-width: 850px; margin: 0 auto; padding: 32px; border: 1px solid var(--border-blue); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.check-columns { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px; }
.check-group h3 { font-size: 16px; margin-bottom: 16px; }
.check-list { display: grid; gap: 13px; }
.check-item { display: flex; align-items: flex-start; gap: 10px; color: #475467; font-size: 15px; }
.check-item input { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 4px; accent-color: var(--blue); }
.check-note { max-width: 850px; margin: 18px auto 0; text-align: center; color: var(--muted); font-size: 14px; }
.check-action { margin-top: 25px; text-align: center; }

/* Office */
.office-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.contact-panel { padding: 30px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.contact-lines { display: grid; gap: 18px; }
.contact-line { display: grid; grid-template-columns: 42px 1fr; gap: 13px; align-items: start; }
.contact-line .icon-box { width: 42px; height: 42px; }
.contact-line strong { display: block; color: var(--ink); font-size: 14px; }
.contact-line a, .contact-line span { display: block; margin-top: 2px; color: var(--body); font-size: 15px; line-height: 1.55; }
.contact-panel .button-row { margin-top: 26px; }

/* FAQ */
.faq-wrap { max-width: 850px; margin: 0 auto; display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; background: #fff; overflow: hidden; }
.faq-question { width: 100%; min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 19px; border: 0; background: #fff; color: var(--ink); text-align: left; font-size: 15px; font-weight: 750; }
.faq-question:hover { background: #fbfcfe; }
.faq-question svg { width: 20px; height: 20px; color: var(--muted); flex: 0 0 auto; transition: transform .2s ease; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-answer-inner { padding: 0 19px 19px; color: var(--body); font-size: 15px; line-height: 1.7; }
.faq-cta { margin-top: 30px; text-align: center; }
.faq-cta p { margin-bottom: 12px; color: var(--ink); font-weight: 750; }

/* Final CTA */
.final-cta { position: relative; overflow: hidden; padding: 76px 0; color: #fff; background: linear-gradient(115deg, #0b1f3a 0%, #133d78 52%, #1e5eff 100%); }
.final-cta::after { content: ""; position: absolute; width: 440px; height: 440px; right: -160px; top: -260px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); }
.final-cta-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; text-align: center; }
.final-cta h2 { color: #fff; }
.final-cta p { max-width: 620px; margin: 16px auto 0; color: rgba(255,255,255,.82); font-size: 17px; }
.final-cta .button-row { justify-content: center; margin-top: 27px; }
.final-contact { margin-top: 22px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; color: rgba(255,255,255,.78); font-size: 14px; }

/* Footer */
.footer { padding: 66px 0 0; background: #081a31; color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr 1.15fr; gap: 54px; padding-bottom: 48px; }
.footer .logo { color: #fff; }
.footer-about { margin-top: 17px; max-width: 320px; font-size: 14px; line-height: 1.7; }
.footer h3 { color: #fff; font-size: 16px; letter-spacing: -.015em; }
.footer-links { margin-top: 18px; display: grid; gap: 10px; }
.footer-links a, .footer-links span { font-size: 14px; line-height: 1.5; }
.footer-links a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 9px; }
.footer-contact-item svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 2px; color: #6ea0ff; }
.footer .btn { margin-top: 20px; }
.footer-social { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; color: #fff; font-size: 14px; font-weight: 700; }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 23px 0 26px; }
.footer-legal { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; }
.footer-disclaimer { max-width: 820px; font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.66); }
.footer-copy { font-size: 14px; white-space: nowrap; color: rgba(255,255,255,.66); }

/* Floating Whatsapp */
.float-whatsapp { position: fixed; z-index: 60; right: max(20px, env(safe-area-inset-right)); bottom: max(20px, env(safe-area-inset-bottom)); width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; color: #083f1c; background: var(--whatsapp); box-shadow: 0 14px 34px rgba(16,24,40,.24); transition: transform .2s ease, box-shadow .2s ease; }
.float-whatsapp:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 38px rgba(16,24,40,.3); }
.float-whatsapp svg { width: 29px; height: 29px; }
.float-tooltip { position: absolute; right: 69px; padding: 8px 11px; border-radius: 8px; background: var(--navy); color: #fff; font-size: 12px; white-space: nowrap; opacity: 0; pointer-events: none; transform: translateX(5px); transition: opacity .18s ease, transform .18s ease; }
.float-whatsapp:hover .float-tooltip { opacity: 1; transform: translateX(0); }

/* Inner pages */
.page-hero { padding: 74px 0 62px; background: linear-gradient(180deg, #f8fbff, #fff); border-bottom: 1px solid var(--border); }
.page-hero .container { max-width: 900px; text-align: center; }
.page-hero .lead { max-width: 720px; margin-inline: auto; }
.breadcrumbs { margin-bottom: 19px; display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--muted); font-size: 13px; }
.breadcrumbs a:hover { color: var(--blue); }
.breadcrumbs svg { width: 14px; height: 14px; }
.detail-list { display: grid; gap: 24px; }
.service-detail { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; padding: 36px 0; border-bottom: 1px solid var(--border); }
.service-detail:last-child { border-bottom: 0; }
.service-detail h2 { font-size: 28px; }
.detail-body { display: grid; gap: 18px; }
.detail-body p { font-size: 16px; }
.detail-points { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px 22px; }
.detail-point { display: flex; align-items: flex-start; gap: 9px; font-size: 15px; }
.detail-point svg { width: 17px; height: 17px; color: var(--blue); flex: 0 0 auto; margin-top: 4px; }
.inline-note { padding: 16px 18px; border-radius: 12px; background: var(--surface-alt); border: 1px solid var(--border); color: var(--muted); font-size: 14px; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-card { padding: 26px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; }
.value-card .icon-box { margin-bottom: 17px; }
.value-card p { margin-top: 9px; color: var(--muted); font-size: 15px; }
.resource-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.resource-card { display: flex; flex-direction: column; min-height: 300px; padding: 26px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-xs); }
.resource-card .tag { align-self: flex-start; padding: 6px 9px; border-radius: 999px; background: var(--blue-soft); color: var(--blue-dark); font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.resource-card h3 { margin-top: 18px; font-size: 20px; }
.resource-card p { margin-top: 12px; color: var(--muted); font-size: 15px; }
.resource-card .text-link { margin-top: auto; padding-top: 20px; }
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.contact-card { padding: 30px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.contact-card .icon-box { margin-bottom: 20px; }
.contact-card p { margin-top: 10px; min-height: 52px; color: var(--body); }
.contact-card .button-row { margin-top: 24px; }
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 { margin-top: 38px; font-size: 25px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { font-size: 16px; line-height: 1.75; }
.legal-content p { margin-top: 13px; }
.legal-content ul { margin: 13px 0 0; padding-left: 22px; }
.error-page { min-height: 62vh; display: grid; place-items: center; text-align: center; }
.error-page .container { max-width: 700px; }
.error-code { color: var(--blue); font-size: 94px; font-family: Manrope, sans-serif; font-weight: 900; line-height: 1; }
.error-page h1 { margin-top: 13px; font-size: 42px; }
.error-page p { margin: 16px auto 0; max-width: 540px; }
.error-page .button-row { justify-content: center; margin-top: 28px; }

/* Reveal */
/* Content remains visible even if JavaScript is blocked or fails to load. */
.reveal { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1199px) {
  .services-grid { grid-template-columns: repeat(3,1fr); }
  .hero-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1.3fr .8fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}
@media (max-width: 1023px) {
  .container { width: min(calc(100% - 48px), var(--container)); }
  .section { padding: 78px 0; }
  .nav-wrap { display: none; }
  .mobile-toggle { display: inline-flex; }
  .hero { padding: 70px 0 58px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-copy { max-width: 820px; }
  .hero-visual { min-height: 380px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(3)::before { display: none; }
  .trust-item:nth-child(n+3) { border-top: 1px solid var(--border); }
  .audience-grid, .about-grid, .office-grid { grid-template-columns: 1fr; gap: 38px; }
  .process-grid { grid-template-columns: repeat(2,1fr); row-gap: 44px; }
  .process-grid::before { display: none; }
  .values-grid, .resource-grid, .contact-cards { grid-template-columns: repeat(2,1fr); }
  .service-detail { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 767px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .section { padding: 62px 0; }
  .section-sm { padding: 54px 0; }
  .announcement { min-height: 44px; font-size: 13px; line-height: 1.4; }
  .announcement-inner { gap: 6px; flex-wrap: wrap; padding: 6px 0; }
  .site-header, .site-header.scrolled { height: 68px; }
  .mobile-menu { inset: 110px 0 0; }
  .logo { font-size: 17px; }
  .logo-mark { width: 32px; height: 32px; }
  .hero { padding: 54px 0 48px; }
  .hero h1 { max-width: 100%; font-size: clamp(37px, 10.5vw, 47px); line-height: 1.08; }
  .lead { font-size: 17px; }
  .hero-actions .btn { width: 100%; }
  .hero-contact { align-items: flex-start; flex-direction: column; gap: 6px; }
  .hero-contact .dot { display: none; }
  .hero-visual { min-height: 320px; }
  .hero-orbit { width: 280px; height: 280px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item::before { display: none; }
  .trust-item:nth-child(n+2) { border-top: 1px solid var(--border); }
  .services-grid, .values-grid, .resource-grid, .contact-cards { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .audience-list { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 0; }
  .process-step { display: grid; grid-template-columns: 54px 1fr; column-gap: 17px; text-align: left; padding-bottom: 28px; }
  .process-step:not(:last-child)::after { content: ""; position: absolute; left: 26px; top: 54px; bottom: 0; width: 2px; background: #dbe7ff; }
  .step-number { margin: 0; grid-row: span 2; }
  .process-step h3 { padding-top: 8px; }
  .process-step p { margin-top: 5px; }
  .focus-list, .check-columns, .detail-points { grid-template-columns: 1fr; }
  .check-card, .info-panel, .focus-card, .contact-panel { padding: 24px; }
  .office-grid { gap: 28px; }
  .final-cta { padding: 62px 0; }
  .final-contact { flex-direction: column; align-items: center; gap: 4px; }
  .footer { padding-top: 54px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-legal { flex-direction: column; gap: 16px; }
  .footer-copy { white-space: normal; }
  .float-tooltip { display: none; }
  .service-detail { padding: 28px 0; }
  .page-hero { padding: 58px 0 48px; }
  .page-hero h1 { font-size: 40px; }
}

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

/* Resource articles */
.article-shell { max-width: 900px; margin: 0 auto; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 18px; color: var(--muted); font-size: 14px; }
.article-content { margin-top: 42px; }
.article-content h2 { margin-top: 38px; font-size: 28px; }
.article-content h2:first-child { margin-top: 0; }
.article-content h3 { margin-top: 26px; font-size: 20px; }
.article-content p, .article-content li { font-size: 16px; line-height: 1.78; }
.article-content p { margin-top: 14px; }
.article-content ul, .article-content ol { margin: 14px 0 0; padding-left: 24px; }
.article-content li + li { margin-top: 8px; }
.article-callout { margin: 30px 0; padding: 20px 22px; border: 1px solid var(--border-blue); border-radius: 14px; background: var(--blue-soft); }
.article-callout strong { color: var(--ink); }
.article-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.resource-card .text-link + .text-link { margin-top: 10px; padding-top: 0; }
@media (max-width: 767px) {
  .article-content h2 { font-size: 24px; }
  .article-actions .btn { width: 100%; }
}
