/* FACESEO Landing Page
   Mobile-first, no external framework or font dependency.
*/
:root {
  --primary: #243f88;
  --primary-700: #1b326f;
  --primary-900: #10204c;
  --indigo: #4b53ad;
  --accent: #f59e0b;
  --accent-dark: #c97700;
  --ink: #14213d;
  --muted: #5e6b82;
  --soft: #eef3ff;
  --soft-2: #f7f9fd;
  --line: #dfe6f2;
  --white: #ffffff;
  --success: #16794c;
  --danger: #b42318;
  --info: #1d4ed8;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 12px 30px rgba(20, 33, 61, .08);
  --shadow: 0 22px 60px rgba(25, 50, 111, .14);
  --container: 1180px;
  --header-height: 72px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
address { font-style: normal; }
p, h1, h2, h3 { margin-top: 0; }
h1, h2, h3 { line-height: 1.16; letter-spacing: -.025em; }
h1 { font-size: clamp(2.35rem, 9vw, 4.85rem); }
h2 { font-size: clamp(2rem, 6vw, 3.25rem); }
h3 { font-size: 1.18rem; }
p { color: var(--muted); }

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

.section { padding: 76px 0; }
.section-heading { margin-bottom: 34px; }
.section-heading.centered { text-align: center; max-width: 820px; margin-inline: auto; }
.section-heading.narrow { max-width: 700px; }
.section-heading h2, .curriculum-intro h2, .gallery-copy h2, .faq-intro h2 { margin-bottom: 18px; }
.section-heading p:last-child { margin-bottom: 0; font-size: 1.03rem; }
.kicker, .eyebrow {
  margin-bottom: 13px;
  color: var(--primary);
  font-size: .78rem;
  line-height: 1.4;
  letter-spacing: .14em;
  font-weight: 800;
}
.kicker.light { color: #bfd0ff; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--primary-900);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255,255,255,.93);
  border-bottom: 1px solid rgba(223,230,242,.75);
  backdrop-filter: blur(14px);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; width: 150px; }
.brand img { width: 100%; }

.menu-toggle {
  width: 44px; height: 44px;
  display: grid; place-content: center; gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}
.menu-toggle span { width: 21px; height: 2px; border-radius: 3px; background: var(--primary-900); transition: transform .25s, opacity .25s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  position: absolute;
  top: calc(100% + 1px);
  left: 18px; right: 18px;
  display: grid;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.site-nav.open { opacity: 1; visibility: visible; transform: none; }
.site-nav > a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 650;
}
.site-nav > a:hover { background: var(--soft); color: var(--primary); }
.site-nav .nav-phone {
  margin-top: 6px;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  background: var(--primary);
}
.nav-phone svg { width: 18px; fill: currentColor; }

.hero {
  position: relative;
  isolation: isolate;
  padding: 68px 0 82px;
  background:
    radial-gradient(circle at 82% 12%, rgba(86,100,210,.13), transparent 34%),
    linear-gradient(180deg, #f9fbff 0%, #fff 82%);
  overflow: hidden;
}
.hero-glow { position: absolute; z-index: -1; border-radius: 999px; filter: blur(4px); opacity: .55; }
.hero-glow-one { width: 210px; height: 210px; left: -110px; top: 18%; background: #dce6ff; }
.hero-glow-two { width: 180px; height: 180px; right: -90px; bottom: 2%; background: #fde9bb; }
.hero-grid { display: grid; gap: 54px; align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 9px; }
.eyebrow span { width: 28px; height: 2px; background: var(--accent); }
.hero h1 { margin-bottom: 22px; color: var(--primary-900); max-width: 800px; }
.hero-lead { margin-bottom: 28px; font-size: 1.08rem; max-width: 710px; }
.hero-actions { display: flex; flex-direction: column; gap: 12px; }
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}
.btn svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--primary); box-shadow: 0 12px 26px rgba(36,63,136,.23); }
.btn-primary:hover { background: var(--primary-700); box-shadow: 0 15px 32px rgba(36,63,136,.3); }
.btn-secondary { color: var(--primary-900); background: var(--white); border-color: var(--line); }
.btn-secondary:hover { border-color: #aab9d4; box-shadow: var(--shadow-sm); }
.btn-outline { color: var(--primary); background: var(--white); border-color: #afbdd6; }
.btn-outline:hover { border-color: var(--primary); background: var(--soft); }
.btn-light { color: var(--primary-900); background: var(--white); }
.btn-secondary.dark { color: var(--white); background: transparent; border-color: rgba(255,255,255,.4); }
.btn-secondary.dark:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.trust-points { display: grid; gap: 8px; margin-top: 26px; }
.trust-points span { display: flex; align-items: center; gap: 8px; color: var(--ink); font-size: .92rem; font-weight: 700; }
.trust-points svg, .check-list svg { width: 19px; height: 19px; flex: 0 0 auto; fill: none; stroke: var(--success); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.hero-note { margin: 18px 0 0; font-size: .82rem; }

.hero-visual { position: relative; max-width: 630px; margin-inline: auto; padding: 10px 0 32px; }
.image-shell {
  position: relative;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}
.image-shell img { width: 100%; aspect-ratio: 1.455; object-fit: cover; }
.visual-overlay { position: absolute; inset: 0; background: linear-gradient(145deg, transparent 50%, rgba(15,32,76,.2)); }
.floating-card, .hero-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(223,230,242,.8);
  border-radius: 14px;
  background: rgba(255,255,255,.95);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}
.floating-card { padding: 10px 12px; }
.floating-card strong, .floating-card span { display: block; line-height: 1.35; }
.floating-card strong { font-size: .8rem; color: var(--primary-900); }
.floating-card span { font-size: .65rem; color: var(--muted); }
.card-search { left: -6px; top: -15px; }
.mini-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: var(--primary); background: var(--soft); }
.mini-icon svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.card-growth { right: -5px; bottom: 0; }
.chart-bars { height: 35px; display: flex; align-items: end; gap: 3px; }
.chart-bars i { width: 5px; border-radius: 3px 3px 0 0; background: var(--indigo); }
.chart-bars i:nth-child(1){height: 35%}.chart-bars i:nth-child(2){height: 55%}.chart-bars i:nth-child(3){height: 72%}.chart-bars i:nth-child(4){height: 100%}
.hero-badge { left: 22px; bottom: -20px; padding: 12px 14px; }
.hero-badge svg { width: 29px; height: 29px; fill: none; stroke: var(--success); stroke-width: 1.8; }
.hero-badge span { color: var(--muted); font-size: .69rem; line-height: 1.3; }
.hero-badge strong { display: block; color: var(--ink); font-size: .8rem; }

.audience-strip { border-block: 1px solid var(--line); background: var(--white); }
.audience-inner { padding-block: 22px; }
.audience-inner > p { margin: 0 0 12px; color: var(--ink); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.audience-list { display: flex; flex-wrap: wrap; gap: 8px; }
.audience-list span { padding: 7px 11px; border-radius: 99px; color: var(--primary-700); background: var(--soft); font-size: .78rem; font-weight: 750; }

.problems { background: var(--soft-2); }
.problem-grid { display: grid; gap: 15px; }
.problem-card { position: relative; min-height: 255px; padding: 26px 24px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .25s, box-shadow .25s, border-color .25s; }
.problem-card:hover { transform: translateY(-4px); border-color: #b8c6df; box-shadow: var(--shadow-sm); }
.card-number { display: inline-block; margin-bottom: 40px; color: var(--indigo); font-size: .82rem; font-weight: 900; }
.problem-card h3 { margin-bottom: 13px; }
.problem-card p { margin: 0; font-size: .92rem; }
.problem-card::after { content:""; position:absolute; width:95px; height:95px; right:-45px; top:-45px; border-radius:50%; background:var(--soft); }

.section-heading.split { display: grid; gap: 18px; align-items: end; }
.section-heading.split > p { max-width: 500px; }
.benefit-grid { display: grid; gap: 16px; }
.benefit-card { position: relative; min-height: 285px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.benefit-card.featured { background: linear-gradient(145deg, var(--primary-900), var(--primary)); border-color: transparent; }
.benefit-card.featured h3, .benefit-card.featured p { color: var(--white); }
.benefit-card.featured p { opacity: .8; }
.benefit-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 36px; border-radius: 15px; color: var(--primary); background: var(--soft); }
.featured .benefit-icon { color: var(--white); background: rgba(255,255,255,.13); }
.benefit-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.benefit-card h3 { margin-bottom: 12px; }
.benefit-card p { margin-bottom: 22px; font-size: .93rem; }
.benefit-tag { position: absolute; right: 18px; bottom: 17px; color: var(--indigo); font-size: .68rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.featured .benefit-tag { color: #cbd5ff; }

.curriculum { background: linear-gradient(180deg, #f4f7ff, #fff); }
.curriculum-grid { display: grid; gap: 40px; }
.curriculum-intro { align-self: start; }
.curriculum-intro > p:not(.kicker) { font-size: 1.02rem; }
.principle-box { display: flex; gap: 14px; margin: 28px 0; padding: 18px; border: 1px solid #cdd8ec; border-radius: 16px; background: rgba(255,255,255,.72); }
.principle-box svg { width: 30px; height: 30px; flex: 0 0 auto; fill: none; stroke: var(--indigo); stroke-width: 1.7; }
.principle-box strong, .principle-box span { display: block; }
.principle-box strong { margin-bottom: 4px; color: var(--primary-900); }
.principle-box span { color: var(--muted); font-size: .88rem; }
.text-link { display: inline-flex; gap: 8px; color: var(--primary); font-weight: 800; }
.text-link:hover { gap: 12px; }
.module-list { border-top: 1px solid #cbd6e8; }
.module-item { display: grid; grid-template-columns: 46px 1fr; gap: 12px; padding: 23px 0; border-bottom: 1px solid #cbd6e8; }
.module-item > span { color: var(--indigo); font-weight: 900; }
.module-item h3 { margin-bottom: 8px; }
.module-item p { margin: 0; font-size: .91rem; }

.process-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; counter-reset: step; }
.process-list li { position: relative; padding: 25px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.step-no { position: absolute; right: 18px; top: 17px; color: #b4c0d5; font-size: .75rem; font-weight: 900; }
.step-icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 28px; border-radius: 16px; color: var(--primary); background: var(--soft); }
.step-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.process-list h3 { margin-bottom: 10px; }
.process-list p { margin: 0; font-size: .9rem; }

.paths { background: var(--soft-2); }
.path-grid { display: grid; gap: 18px; }
.path-card { position: relative; display: flex; flex-direction: column; padding: 28px 24px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: 0 7px 24px rgba(20,33,61,.04); }
.path-card.popular { border: 2px solid var(--primary); box-shadow: var(--shadow); }
.popular-label { position: absolute; top: 0; right: 22px; padding: 7px 12px; border-radius: 0 0 10px 10px; color: var(--white); background: var(--primary); font-size: .65rem; font-weight: 900; letter-spacing: .08em; }
.path-label { display: inline-block; margin-bottom: 12px; color: var(--indigo); font-size: .7rem; font-weight: 900; letter-spacing: .1em; }
.path-head h3 { font-size: 1.55rem; margin-bottom: 11px; }
.path-head p { margin-bottom: 24px; font-size: .92rem; }
.path-card ul { flex: 1; margin: 0 0 26px; padding: 0; list-style: none; }
.path-card li { position: relative; padding: 10px 0 10px 27px; border-top: 1px solid #edf1f7; color: #42516c; font-size: .89rem; }
.path-card li::before { content:""; position:absolute; left:2px; top:17px; width:10px; height:6px; border-left:2px solid var(--success); border-bottom:2px solid var(--success); transform:rotate(-45deg); }
.path-footer { display: grid; gap: 15px; }
.path-footer strong { font-size: 1.1rem; color: var(--primary-900); }

.gallery-grid { display: grid; gap: 38px; align-items: center; }
.gallery-copy > p:not(.kicker) { font-size: 1.02rem; }
.check-list { margin: 26px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.check-list li { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 700; }
.gallery-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gallery-mosaic figure { margin: 0; overflow: hidden; border-radius: 18px; background: var(--soft); }
.gallery-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-mosaic figure:hover img { transform: scale(1.03); }
.gallery-main { grid-row: span 2; }
.gallery-main img { aspect-ratio: 4/5; }
.gallery-mosaic figure:not(.gallery-main) img { aspect-ratio: 1/1; }

.why { padding-top: 0; }
.why-grid { overflow: hidden; border-radius: var(--radius-lg); background: var(--primary-900); box-shadow: var(--shadow); }
.why-panel { padding: 38px 26px; background: linear-gradient(145deg, #1c397e, #4550ab); }
.why-panel h2, .why-panel p { color: var(--white); }
.why-panel p:not(.kicker) { opacity: .8; }
.why-panel .btn { margin-top: 8px; }
.why-list { padding: 10px 25px 24px; }
.why-list article { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.why-list article:last-child { border-bottom: 0; }
.why-list article > span { color: #8fa6e8; font-size: .8rem; font-weight: 900; }
.why-list h3 { margin-bottom: 7px; color: var(--white); }
.why-list p { margin: 0; color: #b7c3df; font-size: .89rem; }

.evidence { background: var(--soft-2); }
.evidence-grid { display: grid; gap: 20px; }
.evidence-list { border-top: 1px solid #ccd6e8; }
.evidence-list article { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 19px 0; border-bottom: 1px solid #ccd6e8; }
.evidence-list article > span { color: var(--indigo); font-size: .78rem; font-weight: 900; }
.evidence-list h3 { margin-bottom: 5px; font-size: 1.03rem; }
.evidence-list p { margin: 0; font-size: .87rem; }

.faq-grid { display: grid; gap: 38px; }
.faq-intro { align-self: start; }
.contact-inline { display: inline-flex; align-items: center; gap: 12px; margin-top: 16px; padding: 12px 15px; border: 1px solid var(--line); border-radius: 14px; background: var(--soft-2); }
.contact-inline > span { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; color: var(--white); background: var(--primary); }
.contact-inline svg { width: 19px; fill: currentColor; }
.contact-inline small, .contact-inline strong { display: block; line-height: 1.35; }
.contact-inline small { color: var(--muted); }
.contact-inline strong { color: var(--primary-900); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 21px 0; border: 0; color: var(--ink); background: transparent; text-align: left; font-weight: 800; }
.faq-item button span { position: relative; width: 24px; height: 24px; flex: 0 0 auto; border-radius: 50%; background: var(--soft); }
.faq-item button span::before, .faq-item button span::after { content:""; position:absolute; left:6px; right:6px; top:11px; height:2px; background:var(--primary); transition:transform .2s; }
.faq-item button span::after { transform: rotate(90deg); }
.faq-item button[aria-expanded="true"] span::after { transform: rotate(0); }
.faq-answer { padding: 0 36px 20px 0; }
.faq-answer p { margin: 0; font-size: .92rem; }

.lead-section { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(145deg, var(--primary-900), #293f8e); }
.lead-section::before { content:""; position:absolute; width:420px; height:420px; border:1px solid rgba(255,255,255,.1); border-radius:50%; left:-220px; bottom:-260px; }
.lead-grid { position: relative; display: grid; gap: 36px; align-items: center; }
.lead-copy h2, .lead-copy p { color: var(--white); }
.lead-copy > p:not(.kicker) { opacity: .76; }
.lead-contact { display: grid; gap: 12px; margin-top: 30px; }
.lead-contact > a, .address-item { display: flex; align-items: center; gap: 12px; }
.lead-contact > a > span, .address-item > span { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 13px; color: var(--white); background: rgba(255,255,255,.12); }
.lead-contact svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.lead-contact > a svg { fill: currentColor; stroke: none; }
.lead-contact small, .lead-contact strong { display: block; line-height: 1.35; }
.lead-contact small { color: #c1cbed; }
.lead-contact strong { color: var(--white); }

.lead-form { padding: 25px 20px; border-radius: 22px; color: var(--ink); background: var(--white); box-shadow: 0 28px 80px rgba(4,13,43,.34); }
.form-head { margin-bottom: 23px; }
.form-head h3 { margin-bottom: 6px; font-size: 1.4rem; }
.form-head p { margin: 0; font-size: .89rem; }
.field { margin-bottom: 16px; }
.field label { display: block; margin-bottom: 7px; color: var(--ink); font-size: .87rem; font-weight: 750; }
.field label span { color: var(--danger); }
.field input, .field select {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid #cbd5e5;
  border-radius: 11px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder { color: #8995aa; }
.field input:focus, .field select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(36,63,136,.11); }
.field.invalid input, .field.invalid select { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(180,35,24,.08); }
.field-error { min-height: 18px; display: block; margin-top: 4px; color: var(--danger); font-size: .76rem; }
.submit-btn { width: 100%; position: relative; }
.submit-btn:disabled { cursor: not-allowed; opacity: .72; transform: none; }
.button-loader { display:none; width:18px; height:18px; border:2px solid rgba(255,255,255,.45); border-top-color:var(--white); border-radius:50%; animation:spin .7s linear infinite; }
.submit-btn.loading .button-loader { display:block; }
.submit-btn.loading .button-text { opacity:.75; }
.form-status { display:none; margin-top:14px; padding:11px 12px; border-radius:10px; font-size:.83rem; }
.form-status.show { display:block; }
.form-status.success { color:#0b5d3a; background:#e8f7f0; }
.form-status.error { color:#8a1c13; background:#feeeec; }
.form-status.info { color:#173f9c; background:#eaf0ff; }
.form-status a { text-decoration:underline; font-weight:800; }
.privacy-note { margin: 13px 0 0; font-size: .71rem; line-height: 1.5; }
@keyframes spin { to { transform:rotate(360deg); } }

.final-cta { padding: 58px 0; color: var(--white); background: #0a1638; }
.final-cta-inner { display: grid; gap: 28px; align-items: center; }
.final-cta p { margin-bottom: 10px; color: #9db0df; font-size: .72rem; font-weight: 900; letter-spacing: .12em; }
.final-cta h2 { margin: 0; max-width: 780px; color: var(--white); font-size: clamp(1.75rem,5vw,2.55rem); }
.final-actions { display: flex; flex-direction: column; gap: 10px; }

.site-footer { padding: 55px 0 22px; color: #bcc6dc; background: #07102a; }
.footer-grid { display: grid; gap: 36px; }
.footer-brand img { width: 180px; border-radius: 8px; }
.footer-brand p { max-width: 330px; margin: 19px 0 0; color: #8f9bb6; font-size: .88rem; }
.footer-col h2 { margin-bottom: 14px; color: var(--white); font-size: .91rem; letter-spacing: .03em; }
.footer-col a, .footer-col address { display: block; margin: 9px 0; color: #aab6cf; font-size: .86rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; flex-direction: column; gap: 8px; margin-top: 38px; padding-top: 19px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p, .footer-bottom a { margin: 0; color: #7f8ba5; font-size: .78rem; }

.floating-call {
  position: fixed;
  z-index: 900;
  right: 15px;
  bottom: 15px;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--accent-dark);
  box-shadow: 0 12px 30px rgba(120,69,0,.3);
}
.floating-call svg { width: 23px; fill: currentColor; }
.floating-call span { display: none; }

:focus-visible { outline: 3px solid #ffbd45; outline-offset: 3px; }

@media (min-width: 560px) {
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .trust-points { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .problem-grid, .benefit-grid, .process-list { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .lead-contact { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .final-actions { flex-direction: row; }
  .footer-grid { grid-template-columns: 1.4fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (min-width: 768px) {
  :root { --header-height: 78px; }
  .container { width: min(100% - 56px, var(--container)); }
  .section { padding: 100px 0; }
  .brand { width: 175px; }
  .hero { padding: 90px 0 105px; }
  .hero-grid { grid-template-columns: minmax(0,1.05fr) minmax(330px,.95fr); gap: 42px; }
  .hero h1 { font-size: clamp(3rem,6vw,4.8rem); }
  .hero-lead { font-size: 1.1rem; }
  .trust-points { grid-template-columns: 1fr; }
  .hero-visual { padding-inline: 12px; }
  .floating-card { padding: 12px 14px; }
  .floating-card strong { font-size: .88rem; }
  .floating-card span { font-size: .72rem; }
  .card-search { left: -16px; top: -22px; }
  .card-growth { right: -12px; bottom: -4px; }
  .hero-badge { left: 35px; }
  .audience-inner { display: flex; align-items: center; gap: 26px; }
  .audience-inner > p { margin: 0; white-space: nowrap; }
  .section-heading.split { grid-template-columns: 1.25fr .75fr; }
  .benefit-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .benefit-card { min-height: 310px; }
  .curriculum-grid { grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 70px; }
  .curriculum-intro { position: sticky; top: calc(var(--header-height) + 35px); }
  .process-list { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .process-list li:not(:last-child)::after { content:""; position:absolute; right:-15px; top:51px; width:30px; height:1px; background:#cad5e7; z-index:2; }
  .gallery-grid { grid-template-columns: .78fr 1.22fr; gap: 65px; }
  .gallery-mosaic { gap: 16px; }
  .why-grid { display: grid; grid-template-columns: .92fr 1.08fr; }
  .why-panel { padding: 58px 48px; }
  .why-list { padding: 24px 46px; }
  .evidence-grid { grid-template-columns: .9fr 1.1fr; gap: 80px; }
  .evidence .section-heading { position: sticky; top: calc(var(--header-height) + 35px); align-self: start; margin-bottom: 0; }
  .faq-grid { grid-template-columns: .78fr 1.22fr; gap: 75px; }
  .faq-intro { position: sticky; top: calc(var(--header-height) + 35px); }
  .lead-grid { grid-template-columns: .95fr 1.05fr; gap: 70px; }
  .lead-form { padding: 34px; }
  .final-cta-inner { grid-template-columns: 1fr auto; }
  .final-actions { justify-content: flex-end; }
  .footer-grid { grid-template-columns: 1.7fr .8fr 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .floating-call { width: auto; height: 54px; display:flex; gap:8px; padding:0 17px; border-radius:99px; }
  .floating-call span { display:inline; font-size:.82rem; font-weight:900; }
}

@media (min-width: 960px) {
  .menu-toggle { display: none; }
  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1; visibility: visible; transform: none;
  }
  .site-nav > a { min-height: 44px; padding-inline: 10px; font-size: .88rem; }
  .site-nav .nav-phone { margin: 0 0 0 7px; padding-inline: 16px; }
  .trust-points { grid-template-columns: repeat(3, max-content); gap: 15px; }
  .problem-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .path-grid { grid-template-columns: repeat(3, minmax(0,1fr)); align-items: stretch; }
  .path-card.popular { transform: translateY(-10px); }
}

@media (min-width: 1200px) {
  .site-nav { gap: 9px; }
  .site-nav > a { font-size: .91rem; }
  .hero-grid { gap: 72px; }
  .hero-copy { padding-right: 10px; }
  .image-shell { border-width: 10px; border-radius: 34px; }
}

@media (max-width: 370px) {
  .container { width: min(100% - 28px, var(--container)); }
  h1 { font-size: 2.2rem; }
  .hero { padding-top: 54px; }
  .hero-actions .btn { width: 100%; }
  .lead-form { padding-inline: 16px; }
  .floating-card { transform: scale(.9); }
  .card-search { transform-origin: left center; }
  .card-growth { transform-origin: right center; }
}

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