@font-face {
    font-family: "Libre Baskerville";
    src: url("../fonts/libre-baskerville-v24-latin-regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "Libre Baskerville";
    src: url("../fonts/libre-baskerville-v24-latin-700.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-v20-latin-regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-v20-latin-700.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-v20-latin-800.woff2") format("woff2");
    font-style: normal;
    font-weight: 800;
    font-display: swap;
}

:root {
    --navy: #203f87;
    --navy-dark: #11295f;
    --navy-deep: #0c1e47;
    --blue-soft: #eaf0fb;
    --blue-pale: #f5f8fe;
    --cream: #f6f1e8;
    --white: #ffffff;
    --ink: #16223a;
    --muted: #647088;
    --line: rgba(32, 63, 135, 0.14);
    --shadow: 0 24px 70px rgba(17, 41, 95, 0.12);
    --shadow-soft: 0 14px 40px rgba(17, 41, 95, 0.08);
    --radius-lg: 34px;
    --radius-md: 24px;
    --radius-sm: 16px;
    --serif: "Libre Baskerville", Georgia, "Times New Roman", serif;
    --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: 108px 0; }
.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; left: 18px; top: 12px; z-index: 9999; padding: 10px 16px;
    background: var(--white); color: var(--navy); border-radius: 999px;
    transform: translateY(-140%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: fixed; inset: 0 0 auto; z-index: 1000; height: 150px;
    display: flex; align-items: center; transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}
.site-header.is-scrolled {
    height: 136px; background: rgba(255,255,255,.94); box-shadow: 0 10px 35px rgba(17,41,95,.08);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; min-height: 100%; padding: 10px 0; }
.brand-logo { flex: 0 0 auto; display: inline-flex; align-items: center; }
.brand-logo img { width: clamp(165px, 18vw, 205px); height: auto; transition: width .25s ease; }
.site-header.is-scrolled .brand-logo img { width: clamp(155px, 16vw, 185px); }
.main-nav { display: flex; align-items: center; gap: 20px; font-size: .9rem; font-weight: 700; color: var(--navy-dark); }
.main-nav > a:not(.nav-cta) { position: relative; padding: 12px 0; }
.main-nav > a:not(.nav-cta)::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: 7px; height: 2px;
    background: var(--navy); transition: right .2s ease;
}
.main-nav > a:not(.nav-cta):hover::after { right: 0; }
.language-switch { display: inline-flex; align-items: center; gap: 6px; padding: 7px 10px; color: var(--muted); background: rgba(255,255,255,.64); border: 1px solid rgba(32,63,135,.13); border-radius: 999px; font-size: .75rem; font-weight: 800; line-height: 1; }
.language-link { color: var(--muted); }
.language-link:hover, .language-link.is-active { color: var(--navy); }
.language-link.is-active { text-decoration: underline; text-underline-offset: 3px; }
.legal-header-actions { display: flex; align-items: center; gap: 14px; }
.nav-cta, .button {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 0;
    border-radius: 999px; font-weight: 800; line-height: 1.2; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav-cta { padding: 13px 21px; color: var(--white); background: var(--navy); box-shadow: 0 10px 25px rgba(32,63,135,.20); }
.nav-cta:hover, .button:hover { transform: translateY(-2px); }
.menu-toggle { display: none; border: 0; background: transparent; width: 46px; height: 46px; padding: 10px; }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; }

.hero {
    position: relative; overflow: hidden; min-height: 820px; padding: 212px 0 100px;
    background: linear-gradient(135deg, #f7f9fd 0%, #eef3fc 48%, #f8f4ec 100%);
}
.hero::after {
    content: ""; position: absolute; inset: auto 0 0; height: 110px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,.72)); pointer-events: none;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(3px); opacity: .55; pointer-events: none; }
.hero-glow-one { width: 440px; height: 440px; top: 20px; right: -170px; background: rgba(74,111,196,.22); }
.hero-glow-two { width: 340px; height: 340px; left: -150px; bottom: -120px; background: rgba(211,190,150,.28); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(430px, .97fr); gap: 76px; align-items: center; }
.hero-copy { max-width: 660px; }
.eyebrow { margin: 0 0 20px; color: var(--navy); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero h1, .section-heading h2, .structure-copy h2, .contact-copy h2, .legal-page h1 {
    margin: 0; font-family: var(--serif); font-weight: 700; letter-spacing: -.035em; line-height: 1.11; color: var(--navy-dark);
}
.hero h1 { font-size: clamp(3rem, 5vw, 5.35rem); }
.hero h1 span { color: var(--navy); font-size: .7em; }
.hero-lead { max-width: 630px; margin: 28px 0 0; color: #4d5b73; font-size: 1.12rem; line-height: 1.82; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { padding: 16px 25px; }
.button-primary { background: var(--navy); color: var(--white); box-shadow: 0 15px 32px rgba(32,63,135,.22); }
.button-primary:hover { background: var(--navy-dark); box-shadow: 0 18px 36px rgba(32,63,135,.28); }
.button-secondary { color: var(--navy); background: rgba(255,255,255,.74); border: 1px solid rgba(32,63,135,.20); }
.button-light { color: var(--navy-dark); background: var(--white); box-shadow: var(--shadow-soft); }
.button-small { padding: 12px 22px; color: var(--white); background: var(--navy); font-size: .88rem; white-space: nowrap; flex: 0 0 auto; }
.hero-sectors { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.hero-sectors span { padding: 8px 13px; color: var(--navy-dark); background: rgba(255,255,255,.68); border: 1px solid rgba(32,63,135,.11); border-radius: 999px; font-size: .78rem; font-weight: 700; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }
.hero-facts div { padding-top: 15px; border-top: 1px solid rgba(32,63,135,.18); }
.hero-facts strong, .hero-facts span { display: block; }
.hero-facts strong { color: var(--navy-dark); font-size: .94rem; }
.hero-facts span { margin-top: 2px; color: var(--muted); font-size: .76rem; }
.hero-visual { position: relative; min-width: 0; padding-bottom: 104px; }
.premium-frame { position: relative; height: 570px; overflow: hidden; border: 10px solid rgba(255,255,255,.88); border-radius: 38px; box-shadow: var(--shadow); background: #dce5f5; }
.premium-frame-image { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.premium-frame-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 36%, rgba(10,26,63,.64) 100%); }
.hero-badge-logo { position: absolute; top: 24px; left: 24px; width: 104px; height: 104px; object-fit: cover; border-radius: 50%; box-shadow: 0 16px 36px rgba(10,26,63,.24); }
.hero-visual-copy { position: absolute; left: 34px; right: 34px; bottom: 30px; color: var(--white); }
.hero-visual-label { display: inline-block; margin-bottom: 12px; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero-product-logo { width: 205px; max-height: 54px; margin-bottom: 11px; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); }
.hero-visual-copy p { max-width: 440px; margin: 0; font-size: .91rem; line-height: 1.65; color: rgba(255,255,255,.88); }
.hero-mini-card { position: absolute; right: 26px; bottom: 0; width: min(420px, calc(100% - 52px)); padding: 24px 26px; background: var(--white); border: 1px solid rgba(32,63,135,.10); border-radius: 22px; box-shadow: var(--shadow-soft); }
.hero-mini-card span { display: block; margin-bottom: 6px; color: var(--navy); font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero-mini-card strong { display: block; color: var(--navy-dark); font-family: var(--serif); font-size: 1rem; line-height: 1.45; }

.intro { background: var(--white); }
.section-heading { max-width: 830px; margin-bottom: 48px; }
.section-heading h2, .structure-copy h2, .contact-copy h2 { font-size: clamp(2.35rem, 4vw, 4.2rem); }
.split-heading { max-width: none; display: grid; grid-template-columns: 1fr .88fr; gap: 90px; align-items: end; }
.split-heading > p { margin: 0 0 5px; color: var(--muted); font-size: 1.02rem; line-height: 1.82; }
.centered { margin-right: auto; margin-left: auto; text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { min-height: 330px; padding: 32px 28px; background: var(--blue-pale); border: 1px solid var(--line); border-radius: var(--radius-md); transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.service-card:nth-child(even) { transform: translateY(24px); }
.service-card:hover { transform: translateY(-5px); background: var(--white); box-shadow: var(--shadow-soft); }
.service-card:nth-child(even):hover { transform: translateY(16px); }
.service-number { display: block; margin-bottom: 76px; color: var(--navy); font-size: .78rem; font-weight: 800; letter-spacing: .15em; }
.service-card h3 { margin: 0 0 12px; color: var(--navy-dark); font-family: var(--serif); font-size: 1.33rem; line-height: 1.35; }
.service-card p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.75; }

.products { background: var(--blue-pale); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { overflow: hidden; background: var(--white); border: 1px solid rgba(32,63,135,.11); border-radius: 24px; box-shadow: 0 12px 34px rgba(17,41,95,.06); transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.product-image { display: block; aspect-ratio: 1 / 1; overflow: hidden; background: #f1f4fa; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-image img { transform: scale(1.035); }
.product-card-body { padding: 24px; }
.product-category { color: var(--navy); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.product-card h3 { margin: 9px 0 10px; color: var(--navy-dark); font-family: var(--serif); font-size: 1.24rem; line-height: 1.32; }
.product-card p { min-height: 92px; margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.72; }
.product-actions { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; margin-top: 20px; flex-wrap: wrap; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-size: .86rem; font-weight: 800; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(2px, -2px); }
.assortment-note { display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; margin-top: 28px; padding: 27px 30px; color: var(--white); background: linear-gradient(120deg, var(--navy-dark), var(--navy)); border-radius: 24px; box-shadow: var(--shadow); }
.assortment-note-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.12); font-size: 1.6rem; }
.assortment-note strong { display: block; font-family: var(--serif); font-size: 1.2rem; }
.assortment-note p { margin: 3px 0 0; color: rgba(255,255,255,.78); font-size: .9rem; }

.structure { background: var(--cream); }
.structure-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.structure-visual { position: relative; min-height: 510px; display: flex; align-items: center; padding-right: 100px; }
.structure-card { width: 100%; padding: 34px; background: var(--white); border: 1px solid rgba(32,63,135,.10); border-radius: 30px; box-shadow: var(--shadow); }
.structure-label { margin: 0 0 22px; color: var(--navy); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.structure-card a { display: grid; grid-template-columns: 42px 1fr 26px; gap: 16px; align-items: center; padding: 20px 0; border-top: 1px solid var(--line); }
.structure-card a:first-of-type { border-top: 0; }
.structure-card a > span { color: var(--navy); font-size: .72rem; font-weight: 800; }
.structure-card strong, .structure-card small { display: block; }
.structure-card strong { color: var(--navy-dark); font-family: var(--serif); font-size: 1.14rem; }
.structure-card small { margin-top: 2px; color: var(--muted); font-size: .78rem; }
.structure-card b { color: var(--navy); font-size: 1.1rem; transition: transform .2s ease; }
.structure-card a:hover b { transform: translate(3px, -2px); }
.structure-logo { position: absolute; right: 4px; bottom: 34px; width: 132px; height: 132px; object-fit: cover; border-radius: 50%; box-shadow: var(--shadow-soft); }
.structure-copy p:not(.eyebrow) { color: var(--muted); font-size: 1rem; line-height: 1.86; }
.structure-copy .text-link { margin-top: 12px; }

.process { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-grid article { position: relative; min-height: 280px; padding: 29px 27px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.process-grid article::after { content: ""; position: absolute; left: 27px; right: 27px; bottom: 0; height: 4px; background: var(--navy); border-radius: 4px 4px 0 0; transform: scaleX(.3); transform-origin: left; transition: transform .25s ease; }
.process-grid article:hover::after { transform: scaleX(1); }
.process-grid span { color: var(--navy); font-size: .72rem; font-weight: 800; letter-spacing: .13em; }
.process-grid h3 { margin: 66px 0 12px; color: var(--navy-dark); font-family: var(--serif); font-size: 1.28rem; }
.process-grid p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.72; }

.contact { color: var(--white); background: linear-gradient(135deg, var(--navy-deep), var(--navy-dark)); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 72px; align-items: start; }
.contact-copy { padding-top: 20px; }
.contact-copy .eyebrow { color: #b9c9ee; }
.contact-copy h2 { color: var(--white); }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.72); font-size: 1.02rem; line-height: 1.82; }
.contact-details { display: grid; gap: 11px; margin-top: 38px; }
.contact-details a, .contact-details div { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.13); }
.contact-details span { color: rgba(255,255,255,.52); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-details strong { color: var(--white); font-size: .9rem; font-weight: 700; line-height: 1.5; }
.contact-panel { padding: 34px; color: var(--ink); background: var(--white); border-radius: 30px; box-shadow: 0 28px 70px rgba(0,0,0,.20); }
.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { color: var(--navy-dark); font-size: .77rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid rgba(32,63,135,.18); border-radius: 13px; background: #f8fafd; color: var(--ink); padding: 13px 14px; outline: none; transition: border .2s ease, box-shadow .2s ease, background .2s ease; }
.field textarea { resize: vertical; min-height: 150px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); background: var(--white); box-shadow: 0 0 0 4px rgba(32,63,135,.10); }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 3px; }
.form-footer p { max-width: 430px; margin: 0; color: var(--muted); font-size: .74rem; line-height: 1.6; }
.form-footer p a { color: var(--navy); text-decoration: underline; }
.form-message { margin-bottom: 20px; padding: 18px 20px; border-radius: 14px; }
.form-message strong { display: block; color: var(--navy-dark); }
.form-message p { margin: 4px 0 0; }
.form-success { background: #e9f7ef; border: 1px solid #a9d9ba; }
.form-error { background: #fff0ef; border: 1px solid #e6b1ab; }
.form-error ul { margin: 7px 0 0; padding-left: 20px; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { color: rgba(255,255,255,.72); background: #081632; }
.footer-main { display: grid; grid-template-columns: 1fr auto; gap: 70px; padding-top: 70px; padding-bottom: 56px; }
.footer-logo { display: inline-block; width: min(220px, 100%); padding: 8px 12px; background: var(--white); border-radius: 16px; box-shadow: 0 12px 30px rgba(0,0,0,.10); }
.footer-main p { max-width: 470px; margin: 20px 0 0; color: rgba(255,255,255,.55); }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(150px, 1fr)); gap: 65px; }
.footer-links div { display: grid; align-content: start; gap: 10px; }
.footer-links span { margin-bottom: 5px; color: var(--white); font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a { font-size: .88rem; }
.footer-links a:hover, .footer-bottom a:hover { color: var(--white); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; padding-top: 21px; padding-bottom: 25px; border-top: 1px solid rgba(255,255,255,.10); font-size: .76rem; }

.legal-shell { min-height: 80vh; padding: 140px 0 90px; background: var(--blue-pale); }
.legal-page { max-width: 900px; padding: 52px 58px; background: var(--white); border-radius: 28px; box-shadow: var(--shadow-soft); }
.legal-page h1 { margin-bottom: 44px; font-size: clamp(2.8rem, 5vw, 4.6rem); }
.legal-page h2 { margin: 36px 0 10px; color: var(--navy-dark); font-family: var(--serif); font-size: 1.35rem; }
.legal-page p, .legal-page li { color: #536079; }
.legal-page a { color: var(--navy); text-decoration: underline; }
.legal-back { display: inline-flex; margin-bottom: 26px; font-size: .84rem; font-weight: 800; text-decoration: none !important; }
.legal-language-notice { margin: -20px 0 32px; padding: 14px 17px; color: var(--navy-dark) !important; background: var(--blue-soft); border-left: 4px solid var(--navy); border-radius: 10px; font-size: .86rem; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
    .main-nav { gap: 14px; font-size: .8rem; }
    .brand-logo img { width: 185px; }
    .site-header.is-scrolled .brand-logo img { width: 172px; }
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 42px; }
    .services-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card:nth-child(even) { transform: none; }
    .service-card:nth-child(even):hover { transform: translateY(-5px); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .product-card p { min-height: 0; }
    .structure-grid { gap: 54px; }
}

@media (max-width: 900px) {
    .site-header { height: 128px; background: rgba(255,255,255,.94); box-shadow: 0 8px 28px rgba(17,41,95,.08); }
    .site-header.is-scrolled { height: 118px; }
    .brand-logo img { width: 170px; }
    .site-header.is-scrolled .brand-logo img { width: 158px; }
    .menu-toggle { display: block; position: relative; z-index: 1002; }
    .main-nav { position: fixed; inset: 0; z-index: 1001; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 9px; padding: 80px 34px 40px; background: rgba(255,255,255,.98); transform: translateX(100%); transition: transform .28s ease; }
    .main-nav.is-open { transform: translateX(0); }
    .main-nav a { padding: 13px 8px !important; font-size: 1.1rem; }
    .main-nav .language-switch { justify-content: center; margin: 8px 0; padding: 12px; font-size: .9rem; }
    .main-nav .nav-cta { color: var(--white); text-align: center; margin-top: 10px; }
    .hero { min-height: auto; padding-top: 176px; }
    .hero-grid, .structure-grid, .contact-grid, .split-heading { grid-template-columns: 1fr; }
    .hero-grid { gap: 60px; }
    .hero-copy { max-width: 760px; }
    .hero-visual { max-width: 680px; width: 100%; margin: 0 auto; }
    .split-heading { gap: 24px; }
    .structure-grid { gap: 40px; }
    .structure-visual { max-width: 650px; width: 100%; }
    .contact-grid { gap: 48px; }
}

@media (max-width: 680px) {
    .container { width: min(100% - 28px, 1180px); }
    .section { padding: 78px 0; }
    .brand-logo img { width: 155px; }
    .site-header.is-scrolled .brand-logo img { width: 145px; }
    .hero { padding: 166px 0 76px; }
    .hero h1 { font-size: clamp(2.75rem, 12vw, 4rem); }
    .hero-lead { font-size: 1rem; }
    .hero-actions { display: grid; }
    .hero-actions .button { width: 100%; }
    .hero-facts { grid-template-columns: 1fr; gap: 10px; }
    .premium-frame { height: 470px; border-width: 7px; border-radius: 27px; }
    .hero-badge-logo { width: 78px; height: 78px; top: 17px; left: 17px; }
    .hero-visual-copy { left: 22px; right: 22px; bottom: 22px; }
    .hero-mini-card { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 14px; }
    .hero-visual { padding-bottom: 0; }
    .section-heading h2, .structure-copy h2, .contact-copy h2 { font-size: clamp(2.2rem, 10vw, 3.25rem); }
    .services-grid, .product-grid, .process-grid, .form-row { grid-template-columns: 1fr; }
    .service-card { min-height: 260px; }
    .service-number { margin-bottom: 50px; }
    .assortment-note { grid-template-columns: 1fr; text-align: left; }
    .assortment-note .button { width: 100%; }
    .structure-visual { min-height: auto; padding: 0 0 92px; }
    .structure-card { padding: 25px 22px; }
    .structure-card a { grid-template-columns: 32px 1fr 20px; gap: 10px; }
    .structure-logo { right: 50%; bottom: 0; width: 96px; height: 96px; transform: translateX(50%); }
    .process-grid article { min-height: 240px; }
    .process-grid h3 { margin-top: 46px; }
    .contact-panel { padding: 24px 20px; border-radius: 24px; }
    .form-footer { align-items: stretch; flex-direction: column; }
    .form-footer .button { width: 100%; }
    .contact-details a, .contact-details div { grid-template-columns: 1fr; gap: 4px; }
    .footer-main { grid-template-columns: 1fr; gap: 42px; padding-top: 55px; }
    .footer-links { gap: 30px; }
    .footer-bottom { flex-direction: column; }
    .legal-shell { padding-top: 140px; }
    .legal-page { padding: 34px 24px; border-radius: 20px; }
}

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


@media (max-width: 640px) {
    .site-header { height: 120px; }
    .site-header.is-scrolled { height: 112px; }
    .brand-logo img { width: 148px; }
    .site-header.is-scrolled .brand-logo img { width: 138px; }
    .footer-logo { width: min(190px, 100%); }
    .legal-header-actions { gap: 8px; }
    .legal-header-actions .nav-cta { padding: 11px 15px; font-size: .8rem; }
}

@media (max-width: 480px) {
    .legal-header-actions .nav-cta { display: none; }
}
