:root {
    --red: rgb(233, 72, 59);
    --red-dark: #d83d32;
    --blue: rgb(27, 70, 169);
    --blue-dark: #102b6f;
    --navy: #0b1738;
    --ink: #121a2e;
    --muted: #667085;
    --soft: #f5f7fb;
    --line: #e7eaf1;
    --white: #fff;
    --radius: 24px;
    --shadow: 0 24px 70px rgba(16, 43, 111, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Manrope', sans-serif; color: var(--ink); background: #fff; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; position: relative; }
.site-orb { position: fixed; border-radius: 50%; filter: blur(110px); pointer-events: none; z-index: -1; opacity: .12; }
.site-orb-one { width: 360px; height: 360px; background: var(--red); top: 12%; right: -180px; }
.site-orb-two { width: 420px; height: 420px; background: var(--blue); top: 60%; left: -250px; }
.top-strip { background: var(--navy); color: rgba(255,255,255,.82); font-size: 12px; }
.top-strip-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.top-strip-links { display: flex; align-items: center; gap: 12px; }
.top-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--red); }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.93); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(231,234,241,.8); transition: .3s; }
.site-header.scrolled { box-shadow: 0 12px 40px rgba(18,26,46,.08); }
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 280px; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-family: 'Montserrat', sans-serif; font-size: 16px; color: var(--blue); }
.brand-copy span { font-size: 13px; font-weight: 700; color: var(--red); margin-top: 4px; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 700; }
.main-nav > a:not(.nav-cta) { position: relative; padding-block: 28px; }
.main-nav > a:not(.nav-cta)::after { content: ''; position: absolute; left: 0; right: 0; bottom: 17px; height: 2px; background: var(--red); transform: scaleX(0); transition: .25s; }
.main-nav > a:hover::after, .main-nav > a.active::after { transform: scaleX(1); }
.nav-cta { background: var(--blue); color: #fff; padding: 13px 18px; border-radius: 14px; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 10px 30px rgba(27,70,169,.2); transition: .25s; }
.nav-cta:hover { background: var(--red); transform: translateY(-2px); }
.menu-toggle { display: none; border: 0; background: none; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; background: var(--navy); margin: 6px 0; transition: .25s; }
.hero { min-height: 780px; display: flex; align-items: center; position: relative; background: radial-gradient(circle at 85% 20%, rgba(27,70,169,.09), transparent 34%), linear-gradient(180deg, #fff, #fbfcff); overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(27,70,169,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(27,70,169,.035) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, black, transparent 90%); }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 70px; align-items: center; padding: 75px 0 110px; }
.eyebrow, .kicker { text-transform: uppercase; letter-spacing: .14em; font-weight: 800; font-size: 12px; color: var(--blue); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; background: #eef3ff; border: 1px solid #dfe7fb; padding: 8px 12px; border-radius: 999px; }
.eyebrow span { width: 7px; height: 7px; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 6px rgba(233,72,59,.1); }
.hero h1, .inner-hero h1 { font-family: 'Montserrat', sans-serif; font-size: clamp(48px, 6vw, 78px); line-height: .99; letter-spacing: -.045em; margin: 25px 0 24px; color: var(--navy); }
.hero h1 em, .section h2 em, .inner-hero h1 em { font-style: normal; color: var(--red); }
.hero-lead { font-size: 18px; line-height: 1.75; color: var(--muted); max-width: 660px; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 22px; border-radius: 14px; font-weight: 800; font-size: 14px; transition: .25s; border: 1px solid transparent; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 13px 35px rgba(233,72,59,.25); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-3px); }
.btn-light { background: #fff; border-color: var(--line); color: var(--navy); }
.btn-light:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-3px); }
.btn-outline { border-color: var(--blue); color: var(--blue); background: #fff; }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { transform: translateY(-3px); }
.btn-ghost-white { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-ghost-white:hover { background: rgba(255,255,255,.1); }
.full { width: 100%; }
.hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 38px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero-trust div { display: grid; gap: 4px; }
.hero-trust strong { font-family: 'Montserrat', sans-serif; color: var(--blue); font-size: 21px; }
.hero-trust span { color: var(--muted); font-size: 12px; }
.hero-visual { position: relative; min-height: 560px; }
.hero-card-main { background: linear-gradient(145deg, #eef3ff, #fff); border-radius: 36px; padding: 26px; box-shadow: 0 35px 80px rgba(16,43,111,.15); border: 1px solid rgba(27,70,169,.09); transform: rotate(2deg); }
.hero-card-main img { width: 100%; height: 470px; object-fit: cover; border-radius: 26px; }
.hero-card-caption { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.hero-card-caption div { display: grid; gap: 2px; }
.hero-card-caption small { color: var(--muted); }
.pulse-dot { width: 12px; height: 12px; border-radius: 50%; background: #32c48d; box-shadow: 0 0 0 8px rgba(50,196,141,.12); }
.floating-card { position: absolute; background: rgba(255,255,255,.95); box-shadow: 0 18px 55px rgba(16,43,111,.16); border: 1px solid rgba(255,255,255,.8); border-radius: 17px; padding: 13px 16px; display: flex; align-items: center; gap: 11px; animation: float 4.5s ease-in-out infinite; }
.floating-card > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--soft); font-size: 20px; }
.floating-card div { display: grid; }
.floating-card strong { font-size: 13px; }
.floating-card small { color: var(--muted); font-size: 11px; }
.float-a { top: 11%; left: -35px; }
.float-b { right: -38px; top: 41%; animation-delay: -1.3s; }
.float-c { left: 10px; bottom: 6%; animation-delay: -2.4s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: grid; place-items: center; gap: 6px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .18em; }
.hero-scroll i { width: 1px; height: 28px; background: linear-gradient(var(--red), transparent); }
.trust-band { background: var(--navy); color: #fff; }
.trust-band-inner { min-height: 95px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.trust-band-inner > span { color: rgba(255,255,255,.55); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.trust-items { display: flex; align-items: center; gap: 18px; font-weight: 800; font-size: 13px; }
.trust-items i { width: 4px; height: 4px; border-radius: 50%; background: var(--red); }
.section { padding: 105px 0; }
.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 70px; margin-bottom: 50px; }
.section-heading.compact { margin-bottom: 32px; }
.section-heading.centered { grid-template-columns: 1fr; text-align: center; max-width: 780px; margin-inline: auto; }
.section-heading h2, .showcase-copy h2, .why-copy h2, .results-copy h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(35px, 4vw, 52px); letter-spacing: -.035em; line-height: 1.08; margin: 14px 0 0; color: var(--navy); }
.section-heading p, .showcase-copy > p, .why-copy > p { color: var(--muted); line-height: 1.8; margin: 0; }
.services-section { background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { padding: 28px; border-radius: 22px; border: 1px solid var(--line); background: #fff; min-height: 310px; display: flex; flex-direction: column; transition: .3s; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(27,70,169,.18); }
.service-top { display: flex; align-items: center; justify-content: space-between; }
.service-icon { width: 50px; height: 50px; border-radius: 15px; background: #f0f4ff; display: grid; place-items: center; font-size: 22px; }
.service-tag { font-size: 10px; color: var(--blue); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.service-card h3 { font-family: 'Montserrat', sans-serif; font-size: 19px; margin: 28px 0 12px; }
.service-card p { color: var(--muted); line-height: 1.7; font-size: 14px; margin: 0 0 24px; }
.service-card a { margin-top: auto; color: var(--blue); font-weight: 800; font-size: 13px; display: flex; justify-content: space-between; }
.center-action { text-align: center; margin-top: 35px; }
.split-showcase { background: var(--soft); }
.split-grid, .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 75px; align-items: center; }
.showcase-visual, .why-visual { position: relative; }
.showcase-visual > img, .why-visual > img { width: 100%; border-radius: 30px; box-shadow: var(--shadow); }
.showcase-stat { position: absolute; right: -25px; bottom: 35px; background: var(--red); color: #fff; border-radius: 18px; padding: 18px 22px; display: grid; box-shadow: 0 18px 45px rgba(233,72,59,.25); }
.showcase-stat strong { font-family: 'Montserrat', sans-serif; font-size: 26px; }
.showcase-stat span { font-size: 12px; opacity: .85; }
.showcase-copy > p + p { margin-top: 18px; }
.feature-list { display: grid; gap: 20px; margin: 34px 0; }
.feature-list > div { display: grid; grid-template-columns: 48px 1fr; gap: 16px; }
.feature-list > div > span { color: var(--red); font-family: 'Montserrat'; font-weight: 800; font-size: 12px; padding-top: 4px; }
.feature-list h3 { margin: 0 0 5px; font-size: 15px; }
.feature-list p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 13px; }
.text-link { color: var(--blue); font-weight: 800; display: inline-flex; gap: 10px; align-items: center; }
.slider-section { overflow: hidden; }
.slider-controls { display: flex; gap: 8px; justify-content: flex-end; }
.slider-controls button { width: 45px; height: 45px; border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer; color: var(--blue); font-weight: 800; transition: .2s; }
.slider-controls button:hover { background: var(--blue); color: #fff; }
.training-slider { min-height: 270px; position: relative; }
.training-slide { position: absolute; inset: 0; padding: 46px; border-radius: 28px; background: linear-gradient(120deg, var(--blue-dark), var(--blue)); color: #fff; display: grid; grid-template-columns: 70px 1fr 50px; gap: 26px; align-items: center; opacity: 0; transform: translateX(60px) scale(.98); transition: .55s cubic-bezier(.2,.7,.2,1); pointer-events: none; overflow: hidden; }
.training-slide::after { content: ''; position: absolute; width: 330px; height: 330px; border: 70px solid rgba(255,255,255,.05); border-radius: 50%; right: -120px; top: -140px; }
.training-slide.active { opacity: 1; transform: translateX(0) scale(1); pointer-events: auto; }
.training-slide > span { font-family: 'Montserrat', sans-serif; font-size: 48px; opacity: .18; }
.training-slide small { color: #ffaaa2; font-weight: 800; letter-spacing: .14em; }
.training-slide h3 { font-family: 'Montserrat', sans-serif; font-size: clamp(26px, 4vw, 44px); margin: 8px 0 10px; }
.training-slide p { color: rgba(255,255,255,.75); max-width: 680px; margin: 0; line-height: 1.7; }
.training-slide b { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: grid; place-items: center; }
.slider-dots { display: flex; gap: 8px; justify-content: center; margin-top: 22px; }
.slider-dots button { border: 0; width: 8px; height: 8px; border-radius: 999px; background: #d9deeb; cursor: pointer; transition: .25s; }
.slider-dots button.active { width: 28px; background: var(--red); }
.results-section { padding: 0 0 105px; }
.results-wrap { background: linear-gradient(135deg, var(--blue-dark), var(--blue) 62%, #275bc7); color: #fff; padding: 58px; border-radius: 32px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: center; overflow: hidden; }
.results-wrap::after { content: ''; position: absolute; width: 360px; height: 360px; border: 80px solid rgba(255,255,255,.045); border-radius: 50%; right: -170px; top: -190px; }
.kicker.light { color: #ffaca5; }
.results-copy h2 { color: #fff; }
.results-copy h2 em { color: #ff9f96; }
.results-copy p { color: rgba(255,255,255,.68); line-height: 1.75; }
.counter-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; position: relative; z-index: 2; }
.counter-card { min-height: 190px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.08); backdrop-filter: blur(10px); border-radius: 20px; padding: 24px 18px; display: flex; flex-direction: column; justify-content: flex-end; }
.counter-card .counter { font-family: 'Montserrat', sans-serif; font-size: clamp(29px, 3vw, 43px); font-weight: 800; margin-bottom: 12px; }
.counter-card strong { font-size: 12px; }
.counter-card small { color: rgba(255,255,255,.55); margin-top: 4px; }
.why-section { background: var(--soft); }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 700; }
.check-list span { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: #eaf0ff; color: var(--blue); }
.quote-badge { position: absolute; left: -28px; bottom: 32px; padding: 18px 22px; border-radius: 16px; background: #fff; color: var(--navy); font-family: 'Montserrat'; font-weight: 800; font-size: 13px; box-shadow: var(--shadow); }
.process-grid, .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-card, .value-card { border: 1px solid var(--line); padding: 28px; border-radius: 20px; background: #fff; transition: .3s; }
.process-card:hover, .value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.process-card > span, .value-card > span { font-family: 'Montserrat'; color: var(--red); font-weight: 800; font-size: 13px; }
.process-card h3, .value-card h3 { font-family: 'Montserrat'; margin: 36px 0 10px; }
.process-card p, .value-card p { color: var(--muted); font-size: 13px; line-height: 1.7; }
.testimonial-section { background: #fff; }
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial { border: 1px solid var(--line); border-radius: 22px; padding: 28px; background: #fff; }
.stars { color: var(--red); letter-spacing: .15em; }
.testimonial > p { color: var(--muted); line-height: 1.8; font-size: 14px; min-height: 125px; }
.reviewer { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding-top: 18px; }
.reviewer > span { width: 42px; height: 42px; border-radius: 50%; background: #eef3ff; color: var(--blue); display: grid; place-items: center; font-weight: 800; }
.reviewer div { display: grid; }
.reviewer strong { font-size: 13px; }
.reviewer small { color: var(--muted); }
.cta-section { padding-top: 0; }
.cta-card { background: linear-gradient(120deg, var(--red-dark), var(--red)); color: #fff; border-radius: 30px; padding: 54px 58px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; overflow: hidden; }
.cta-card::after { content: ''; position: absolute; width: 260px; height: 260px; border: 55px solid rgba(255,255,255,.08); border-radius: 50%; right: -90px; top: -110px; }
.cta-card h2 { font-family: 'Montserrat'; font-size: clamp(30px, 4vw, 43px); max-width: 720px; margin: 10px 0 12px; }
.cta-card p { color: rgba(255,255,255,.75); margin: 0; }
.cta-actions { position: relative; z-index: 2; margin-top: 0; }
.contact-section { padding-top: 25px; }
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.contact-copy h2 { font-family: 'Montserrat'; font-size: clamp(37px, 4vw, 54px); line-height: 1.05; letter-spacing: -.04em; color: var(--navy); margin: 14px 0 18px; }
.contact-copy h2 em { color: var(--red); font-style: normal; }
.contact-copy > p { color: var(--muted); line-height: 1.8; max-width: 680px; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; }
.contact-cards > * { border: 1px solid var(--line); border-radius: 16px; padding: 16px; display: flex; align-items: center; gap: 12px; transition: .2s; background: #fff; }
.contact-cards a:hover { border-color: var(--blue); transform: translateY(-3px); }
.contact-cards > * > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: #eef3ff; color: var(--blue); }
.contact-cards div div, .contact-cards a div { display: grid; min-width: 0; }
.contact-cards small { color: var(--muted); }
.contact-cards strong { font-size: 12px; overflow-wrap: anywhere; }
.contact-panel { background: var(--navy); color: #fff; border-radius: 26px; padding: 34px; box-shadow: 0 28px 70px rgba(11,23,56,.18); }
.contact-panel-head { display: flex; align-items: center; gap: 14px; }
.contact-panel-head > span { width: 52px; height: 52px; border-radius: 15px; background: var(--red); display: grid; place-items: center; font-family: 'Montserrat'; font-weight: 800; }
.contact-panel-head div { display: grid; }
.contact-panel-head small { color: rgba(255,255,255,.5); }
.contact-panel p { color: rgba(255,255,255,.65); line-height: 1.75; margin: 28px 0; }
.legal-mini { display: flex; justify-content: space-between; gap: 12px; color: rgba(255,255,255,.38); font-size: 10px; margin-top: 18px; }
.site-footer { background: #07102a; color: #fff; padding-top: 65px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .65fr .9fr 1.2fr; gap: 45px; padding-bottom: 50px; }
.footer-brand-mark { width: 58px; height: 58px; border-radius: 17px; background: linear-gradient(135deg, var(--blue), var(--red)); display: grid; place-items: center; font-family: 'Montserrat'; font-weight: 900; margin-bottom: 20px; }
.footer-brand h3 { font-family: 'Montserrat'; font-size: 18px; margin: 0 0 7px; }
.footer-brand > p { color: #ff8d83; font-weight: 700; font-size: 13px; }
.footer-mini { color: rgba(255,255,255,.48) !important; line-height: 1.7; font-weight: 400 !important; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col h4 { margin: 0 0 8px; font-family: 'Montserrat'; font-size: 13px; }
.footer-col a, .footer-col span { color: rgba(255,255,255,.55); font-size: 12px; transition: .2s; }
.footer-col a:hover { color: #fff; }
.quality-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 20px; }
.qualiopi-logo {width: auto; background: #fff; padding: 8px; border-radius: 10px; }
.qualiopi-fallback { background: #fff; color: #111; padding: 13px 18px; display: inline-flex; flex-direction: column; border-radius: 9px; border-left: 5px solid var(--red); }
.qualiopi-fallback strong { font-size: 18px; letter-spacing: .04em; }
.qualiopi-fallback small { color: #555; }
.quality-card p { color: rgba(255,255,255,.55); font-size: 11px; line-height: 1.6; }
.certificate-btn { display: inline-flex; padding: 10px 13px; border-radius: 10px; background: #fff; color: var(--navy); font-weight: 800; font-size: 11px; }
.certificate-btn.disabled { opacity: .45; cursor: not-allowed; }
.footer-bottom { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.35); font-size: 10px; }
.inner-hero { background: linear-gradient(135deg, #0b1738, #163e96); color: #fff; padding: 95px 0; overflow: hidden; }
.inner-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.inner-hero h1 { color: #fff; font-size: clamp(44px, 5vw, 68px); }
.inner-hero p { color: rgba(255,255,255,.68); max-width: 720px; line-height: 1.8; font-size: 17px; }
.inner-hero-art img { border-radius: 28px; }
.values-section { background: var(--soft); }
.about-detail { background: #fff; }
.legal-hero { background: linear-gradient(135deg, var(--navy), var(--blue)); color: #fff; padding: 85px 0 70px; }
.legal-hero h1 { font-family: 'Montserrat'; font-size: clamp(42px, 6vw, 66px); margin: 14px 0 12px; }
.legal-hero p { color: rgba(255,255,255,.66); }
.legal-page { padding: 85px 0 110px; }
.legal-layout { display: grid; grid-template-columns: 280px 1fr; gap: 70px; align-items: start; }
.legal-layout aside { position: sticky; top: 130px; display: grid; gap: 10px; padding: 24px; border-radius: 18px; background: var(--soft); font-size: 12px; color: var(--muted); }
.legal-layout aside strong { font-family: 'Montserrat'; color: var(--navy); font-size: 15px; margin-bottom: 6px; }
.legal-layout aside a { color: var(--blue); overflow-wrap: anywhere; }
.legal-layout article { max-width: 820px; }
.legal-layout article h2 { font-family: 'Montserrat'; color: var(--navy); margin: 38px 0 12px; font-size: 22px; }
.legal-layout article h2:first-child { margin-top: 0; }
.legal-layout article p { color: var(--muted); line-height: 1.85; font-size: 14px; }
.legal-layout article a { color: var(--blue); font-weight: 700; }
.legal-note { margin-top: 45px; padding: 22px; border-radius: 15px; background: #fff5f4; border: 1px solid #ffd9d5; }
.legal-note strong { color: var(--red-dark); }
.legal-note p { margin-bottom: 0; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.reveal-delay { transform: translateY(28px) scale(.98); }
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }
@media (max-width: 1020px) {
    .top-strip { display: none; }
    .nav-wrap { height: 72px; }
    .menu-toggle { display: block; }
    .main-nav { position: absolute; top: 72px; left: 20px; right: 20px; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 18px; background: #fff; border-radius: 18px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .25s; }
    .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
    .main-nav > a:not(.nav-cta) { padding: 13px 12px; }
    .main-nav > a:not(.nav-cta)::after { display: none; }
    .nav-cta { margin-top: 8px; justify-content: center; }
    .hero-grid, .split-grid, .why-grid, .contact-grid, .inner-hero-grid { grid-template-columns: 1fr; }
    .hero { min-height: auto; }
    .hero-grid { padding-top: 65px; }
    .hero-visual { max-width: 640px; margin-inline: auto; width: 100%; }
    .section-heading { grid-template-columns: 1fr; gap: 18px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .results-wrap { grid-template-columns: 1fr; }
    .process-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-card { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .legal-layout { grid-template-columns: 1fr; gap: 35px; }
    .legal-layout aside { position: static; }
}
@media (max-width: 720px) {
    .container { width: min(100% - 28px, 1180px); }
    .brand { min-width: 0; }
    .brand img { width: 48px; height: 48px; }
    .brand-copy strong { font-size: 13px; }
    .brand-copy span { font-size: 11px; }
    .hero-grid { gap: 40px; padding-bottom: 80px; }
    .hero h1 { font-size: 47px; }
    .hero-lead { font-size: 16px; }
    .hero-trust { grid-template-columns: 1fr; gap: 12px; }
    .hero-trust div { grid-template-columns: 100px 1fr; align-items: center; }
    .hero-visual { min-height: 430px; }
    .hero-card-main { padding: 15px; border-radius: 26px; }
    .hero-card-main img { height: 350px; }
    .float-a { left: -5px; }
    .float-b { right: -5px; }
    .trust-band-inner { padding: 22px 0; flex-direction: column; align-items: flex-start; }
    .trust-items { flex-wrap: wrap; gap: 10px; }
    .section { padding: 78px 0; }
    .services-grid, .process-grid, .values-grid, .testimonials, .contact-cards { grid-template-columns: 1fr; }
    .showcase-stat { right: 10px; bottom: 15px; }
    .quote-badge { left: 10px; bottom: 15px; }
    .training-slide { padding: 28px; grid-template-columns: 1fr; min-height: 330px; align-content: center; }
    .training-slide > span, .training-slide b { display: none; }
    .training-slider { min-height: 330px; }
    .results-wrap { padding: 34px 22px; }
    .counter-grid { grid-template-columns: 1fr; }
    .counter-card { min-height: 130px; }
    .cta-card { padding: 36px 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; justify-content: center; text-align: center; padding: 20px 0; }
    .legal-mini { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
}
