:root {
  --navy: #17315d;
  --navy-deep: #0c1d39;
  --navy-soft: #254478;
  --blue: #37aee2;
  --red: #d3322f;
  --ink: #13233c;
  --muted: #5f6d80;
  --line: #dce4ec;
  --paper: #ffffff;
  --mist: #f2f6f9;
  --mist-blue: #eaf4f9;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(14, 32, 58, .12);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; padding: 12px 18px; border-radius: 8px; background: #fff; color: var(--navy); box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(18, 45, 79, .08);
  backdrop-filter: blur(18px);
}
.header-inner { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 44px; height: 61px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1; text-transform: uppercase; }
.brand-copy strong { font-size: 24px; letter-spacing: -.04em; color: var(--navy); }
.brand-copy small { margin-top: 5px; font-size: 9px; font-weight: 800; letter-spacing: .2em; color: var(--navy); }
.main-nav { display: flex; align-items: center; gap: 32px; font-size: 14px; font-weight: 650; }
.main-nav > a:not(.nav-cta) { position: relative; padding-block: 12px; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 7px; height: 2px; background: var(--blue); transition: right .2s ease; }
.main-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 11px 17px; color: #fff; background: var(--navy); border-radius: 999px; transition: transform .2s ease, background .2s ease; }
.nav-cta:hover { transform: translateY(-2px); background: var(--navy-soft); }
.menu-button { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--mist); place-content: center; gap: 5px; cursor: pointer; }
.menu-button span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }

.hero { position: relative; isolation: isolate; overflow: hidden; padding: 78px 0 88px; background: linear-gradient(135deg, #f7fafc 0%, #edf5f9 52%, #f9fbfc 100%); }
.hero::before { content: ""; position: absolute; z-index: -1; width: 560px; height: 560px; right: -160px; top: -200px; border-radius: 50%; background: radial-gradient(circle, rgba(55,174,226,.20), rgba(55,174,226,0) 68%); }
.hero::after { content: ""; position: absolute; z-index: -1; width: 460px; height: 460px; left: -250px; bottom: -270px; border-radius: 50%; background: radial-gradient(circle, rgba(211,50,47,.12), rgba(211,50,47,0) 68%); }
.hero-grid-overlay { position: absolute; z-index: -2; inset: 0; opacity: .33; background-image: linear-gradient(rgba(23,49,93,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(23,49,93,.055) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(90deg, #000, transparent 78%); }
.hero-layout { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(430px, .96fr); align-items: center; gap: 70px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--navy); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 800; }
.eyebrow span { width: 28px; height: 2px; background: linear-gradient(90deg, var(--red), var(--blue)); }
.hero h1 { margin: 0; max-width: 760px; color: var(--navy-deep); font-size: clamp(48px, 6vw, 78px); line-height: 1.01; letter-spacing: -.055em; }
.hero h1 em { display: inline-block; color: var(--navy); font-style: normal; position: relative; z-index: 0; }
.hero h1 em::after { content: ""; position: absolute; z-index: -1; left: 0; right: 0; bottom: .08em; height: .18em; background: rgba(55,174,226,.29); transform: rotate(-.7deg); }
.hero-intro { max-width: 680px; margin: 28px 0 0; color: var(--muted); font-size: 19px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 53px; padding: 13px 23px; border: 1px solid transparent; border-radius: 12px; font-weight: 750; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--navy); box-shadow: 0 13px 30px rgba(23,49,93,.24); }
.button-primary:hover { background: var(--navy-soft); box-shadow: 0 16px 34px rgba(23,49,93,.3); }
.button-secondary { color: var(--navy); background: rgba(255,255,255,.78); border-color: rgba(23,49,93,.15); }
.button-secondary:hover { background: #fff; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 30px 0 0; padding: 0; list-style: none; color: #3f5268; font-size: 13px; font-weight: 650; }
.hero-points li { display: flex; align-items: center; gap: 7px; }
.check { display: grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; color: #fff; background: var(--blue); font-size: 11px; }

.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.hero-card { position: relative; z-index: 2; width: min(100%, 430px); min-height: 455px; padding: 22px 26px 28px; border: 1px solid rgba(255,255,255,.9); border-radius: 30px; background: rgba(255,255,255,.82); box-shadow: 0 35px 90px rgba(17,44,78,.18); backdrop-filter: blur(16px); }
.hero-card::before { content: ""; position: absolute; inset: 9px; pointer-events: none; border: 1px solid rgba(23,49,93,.08); border-radius: 23px; }
.hero-card-top { display: flex; align-items: center; gap: 8px; padding-bottom: 18px; border-bottom: 1px solid var(--line); color: #637286; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #28b676; box-shadow: 0 0 0 5px rgba(40,182,118,.1); }
.status-label { margin-left: auto; padding: 5px 8px; border-radius: 999px; color: var(--navy); background: var(--mist-blue); }
.hero-logo { width: 178px; height: 245px; object-fit: contain; margin: 20px auto 8px; filter: drop-shadow(0 18px 18px rgba(17,44,78,.08)); }
.mini-service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mini-service-grid div { display: flex; align-items: center; gap: 8px; padding: 9px 11px; border: 1px solid #e4eaf0; border-radius: 10px; background: rgba(248,251,253,.75); color: #56677b; font-size: 11px; font-weight: 700; }
.mini-service-grid span { color: var(--blue); font-size: 9px; letter-spacing: .08em; }
.visual-orbit { position: absolute; border: 1px solid rgba(23,49,93,.12); border-radius: 50%; }
.orbit-one { width: 500px; height: 500px; }
.orbit-two { width: 590px; height: 360px; transform: rotate(-24deg); border-color: rgba(55,174,226,.16); }
.floating-note { position: absolute; z-index: 3; display: grid; padding: 13px 16px; min-width: 140px; border: 1px solid rgba(255,255,255,.9); border-radius: 14px; background: rgba(255,255,255,.9); box-shadow: 0 16px 35px rgba(13,31,57,.12); backdrop-filter: blur(12px); }
.floating-note strong { color: var(--navy); font-size: 15px; }
.floating-note span { color: var(--muted); font-size: 10px; }
.note-left { left: -4px; bottom: 96px; }
.note-right { right: -8px; top: 94px; }

.service-band { color: #fff; background: var(--navy); }
.service-band-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.service-band-grid div { display: flex; align-items: center; gap: 14px; min-height: 92px; padding: 20px 28px; border-right: 1px solid rgba(255,255,255,.12); }
.service-band-grid div:last-child { border-right: 0; }
.service-band-grid span { color: var(--blue); font-size: 11px; letter-spacing: .12em; }
.service-band-grid strong { font-size: 14px; letter-spacing: .01em; }

.section { padding: 112px 0; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); gap: 70px; align-items: end; margin-bottom: 54px; }
.section-heading.compact { grid-template-columns: 1fr; }
.section-heading h2, .about-copy h2, .contact-copy h2, .faq-heading h2, .legal-hero h1 { margin: 0; color: var(--navy-deep); font-size: clamp(38px, 4.6vw, 58px); line-height: 1.08; letter-spacing: -.045em; }
.section-heading > p { margin: 0 0 5px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.cards { display: grid; gap: 18px; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.service-card { position: relative; min-height: 306px; padding: 29px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card::after { content: ""; position: absolute; width: 150px; height: 150px; right: -85px; bottom: -90px; border-radius: 50%; background: var(--mist-blue); transition: transform .3s ease; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(55,174,226,.45); box-shadow: var(--shadow); }
.service-card:hover::after { transform: scale(1.25); }
.icon-box { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 16px; background: var(--mist-blue); }
.icon-box svg { width: 31px; height: 31px; fill: none; stroke: var(--navy); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card-number { position: absolute; top: 31px; right: 29px; color: #9bacbd; font-size: 11px; font-weight: 800; letter-spacing: .15em; }
.service-card h3 { margin: 26px 0 10px; color: var(--navy); font-size: 21px; letter-spacing: -.025em; }
.service-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.section-dark { position: relative; overflow: hidden; color: #fff; background: var(--navy-deep); }
.section-dark::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 50px 50px; }
.about-layout { position: relative; display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 90px; }
.about-visual { position: relative; min-height: 570px; display: grid; place-items: center; }
.about-shape { position: relative; width: 420px; height: 510px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 210px 210px 40px 40px; background: linear-gradient(160deg, rgba(55,174,226,.15), rgba(255,255,255,.03)); }
.about-shape::before { content: ""; position: absolute; inset: 38px; border: 1px solid rgba(255,255,255,.08); border-radius: 180px 180px 28px 28px; }
.about-logo-wrap { position: absolute; inset: 72px 70px 65px; display: grid; place-items: center; border-radius: 150px 150px 24px 24px; background: rgba(255,255,255,.93); box-shadow: inset 0 0 0 1px rgba(255,255,255,.65), 0 30px 65px rgba(0,0,0,.18); }
.about-logo-wrap img { width: 180px; height: 270px; object-fit: contain; }
.about-caption { position: absolute; bottom: 5px; right: 0; padding: 14px 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 13px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.76); font-size: 11px; letter-spacing: .06em; backdrop-filter: blur(12px); }
.shine { position: absolute; z-index: 2; height: 2px; transform-origin: left center; background: linear-gradient(90deg, rgba(55,174,226,0), rgba(55,174,226,.95), rgba(255,255,255,0)); }
.shine-one { width: 260px; left: -80px; top: 155px; transform: rotate(-28deg); }
.shine-two { width: 220px; right: -70px; top: 265px; transform: rotate(35deg); }
.shine-three { width: 190px; left: 20px; bottom: 70px; transform: rotate(12deg); background: linear-gradient(90deg, rgba(211,50,47,0), rgba(211,50,47,.88), rgba(255,255,255,0)); }
.eyebrow-light { color: #9fdcf4; }
.about-copy h2, .contact-copy h2 { color: #fff; }
.large-copy { margin: 26px 0 34px; color: rgba(255,255,255,.68); font-size: 18px; line-height: 1.8; }
.benefit-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; border-top: 1px solid rgba(255,255,255,.12); }
.benefit-list > div { display: grid; grid-template-columns: 34px 1fr; gap: 12px; padding: 23px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.benefit-list > div:nth-last-child(-n+2) { border-bottom: 0; }
.benefit-list span { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.benefit-list p { margin: 0; color: rgba(255,255,255,.63); font-size: 13px; }
.benefit-list strong { display: block; margin-bottom: 4px; color: #fff; font-size: 15px; }

.audience-section { background: var(--mist); }
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.audience-card { min-height: 238px; padding: 29px; background: #fff; transition: background .2s ease; }
.audience-card:hover { background: var(--mist-blue); }
.audience-card > span { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.audience-card h3 { margin: 54px 0 10px; color: var(--navy); font-size: 20px; }
.audience-card p { margin: 0; color: var(--muted); font-size: 13px; }

.process-section { background: #fff; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.process-grid::before { content: ""; position: absolute; top: 43px; left: 16%; right: 16%; height: 1px; background: repeating-linear-gradient(90deg, var(--line) 0 9px, transparent 9px 17px); }
.process-card { position: relative; z-index: 1; min-height: 310px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.process-number { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; color: var(--navy); background: var(--mist-blue); border: 8px solid #fff; box-shadow: 0 0 0 1px var(--line); font-size: 12px; font-weight: 800; }
.process-icon { position: absolute; top: 27px; right: 28px; color: var(--blue); font-size: 24px; }
.process-card h3 { margin: 70px 0 12px; color: var(--navy); font-size: 22px; }
.process-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.faq-section { background: var(--mist); }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.faq-heading { position: sticky; top: 120px; }
.faq-heading p:not(.eyebrow) { color: var(--muted); margin: 20px 0; }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--navy); font-weight: 800; }
.text-link span { color: var(--blue); }
.accordion { border-top: 1px solid #ccd7e1; }
details { border-bottom: 1px solid #ccd7e1; }
summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; cursor: pointer; color: var(--navy); font-size: 17px; font-weight: 750; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary span { display: grid; place-items: center; flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: #fff; color: var(--navy); transition: transform .2s ease; }
details[open] summary span { transform: rotate(45deg); }
details p { max-width: 700px; margin: -4px 50px 25px 0; color: var(--muted); line-height: 1.8; }

.contact-section { position: relative; overflow: hidden; padding: 110px 0; color: #fff; background: var(--navy); }
.contact-section::before { content: ""; position: absolute; width: 650px; height: 650px; right: -240px; top: -210px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018); }
.contact-layout { position: relative; display: grid; grid-template-columns: .83fr 1.17fr; gap: 80px; align-items: start; }
.contact-copy > p:not(.eyebrow) { margin: 24px 0 34px; color: rgba(255,255,255,.67); font-size: 16px; }
.contact-options { display: grid; border-top: 1px solid rgba(255,255,255,.15); }
.contact-options > a, .contact-options > div { position: relative; display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 12px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.contact-options i { color: var(--blue); font-style: normal; }
.contact-label { color: #9fdcf4; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.contact-options strong { font-size: 15px; font-weight: 650; }
.contact-form { padding: 34px; border: 1px solid rgba(255,255,255,.18); border-radius: 24px; background: rgba(255,255,255,.085); box-shadow: 0 30px 70px rgba(0,0,0,.15); backdrop-filter: blur(15px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 16px; color: rgba(255,255,255,.79); font-size: 12px; font-weight: 750; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; outline: 0; color: #fff; background: rgba(7,21,44,.24); padding: 13px 14px; transition: border-color .2s ease, background .2s ease; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--blue); background: rgba(7,21,44,.38); }
.contact-form select option { color: #111; background: #fff; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form ::placeholder { color: rgba(255,255,255,.39); }
.checkbox-label { display: grid !important; grid-template-columns: auto 1fr; align-items: start; gap: 10px !important; font-weight: 500 !important; line-height: 1.5; }
.checkbox-label input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--blue); }
.checkbox-label a { text-decoration: underline; text-underline-offset: 3px; }
.button-light { width: 100%; color: var(--navy); background: #fff; }
.button-light:hover { background: #eef8fc; }
.form-note, .form-status { margin: 13px 0 0; color: rgba(255,255,255,.5); font-size: 10px; text-align: center; }
.form-status { color: #bce9fb; }

.site-footer { padding: 55px 0 25px; color: rgba(255,255,255,.68); background: #07162c; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 30px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.1); }
.brand-footer .brand-copy strong, .brand-footer .brand-copy small { color: #fff; }
.footer-top p { margin: 0; text-align: center; font-size: 13px; }
.back-top { justify-self: end; font-size: 13px; font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; font-size: 11px; }
.footer-bottom div { display: flex; gap: 20px; }
.footer-bottom a:hover, .back-top:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Legal pages */
.legal-page { background: var(--mist); }
.legal-hero { padding: 70px 0 42px; background: linear-gradient(135deg, #f7fafc, #eaf4f9); }
.legal-hero p { max-width: 720px; margin: 18px 0 0; color: var(--muted); }
.legal-wrap { display: grid; grid-template-columns: 230px minmax(0, 760px); gap: 70px; align-items: start; padding: 62px 0 100px; }
.legal-nav { position: sticky; top: 115px; display: grid; gap: 7px; }
.legal-nav a { padding: 9px 12px; border-radius: 8px; color: var(--muted); font-size: 13px; }
.legal-nav a:hover { color: var(--navy); background: #fff; }
.legal-content { padding: 38px 44px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 20px 50px rgba(15,35,65,.06); }
.legal-content h2 { margin: 36px 0 10px; color: var(--navy); font-size: 24px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin: 25px 0 8px; color: var(--navy); font-size: 17px; }
.legal-content p, .legal-content li { color: #526378; font-size: 14px; line-height: 1.8; }
.legal-content a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.legal-warning { margin-bottom: 28px; padding: 16px 18px; border-left: 4px solid var(--red); border-radius: 8px; background: #fff1ef; color: #83302e; font-size: 13px; }
.placeholder { display: inline-block; padding: 2px 6px; border-radius: 5px; background: #fff3c4; color: #6a5716; font-weight: 700; }

@media (max-width: 1040px) {
  .main-nav { gap: 20px; }
  .hero-layout { grid-template-columns: 1fr .9fr; gap: 35px; }
  .hero-visual { transform: scale(.9); margin-inline: -30px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-layout { gap: 45px; }
  .about-shape { width: 355px; height: 470px; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { gap: 45px; }
}

@media (max-width: 820px) {
  .header-inner { height: 75px; }
  .brand img { width: 37px; height: 52px; }
  .brand-copy strong { font-size: 21px; }
  .menu-button { display: grid; }
  .main-nav { position: absolute; left: 20px; right: 20px; top: 66px; display: none; padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
  .main-nav.open { display: grid; gap: 4px; }
  .main-nav a { padding: 11px 13px !important; border-radius: 9px; }
  .main-nav a:hover { background: var(--mist); }
  .main-nav > a::after { display: none; }
  .nav-cta { margin-top: 5px; text-align: center; }
  .hero { padding: 60px 0 50px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(45px, 12vw, 68px); }
  .hero-visual { min-height: 480px; transform: none; margin: 15px 0 0; }
  .service-band-grid { grid-template-columns: 1fr 1fr; }
  .service-band-grid div:nth-child(2) { border-right: 0; }
  .service-band-grid div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .section { padding: 82px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .about-layout { grid-template-columns: 1fr; }
  .about-visual { min-height: 510px; order: 2; }
  .about-copy { order: 1; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .process-card { min-height: auto; }
  .process-card h3 { margin-top: 45px; }
  .faq-layout { grid-template-columns: 1fr; gap: 45px; }
  .faq-heading { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .back-top { justify-self: center; }
  .legal-wrap { grid-template-columns: 1fr; gap: 24px; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .hero { padding-top: 46px; }
  .hero h1 { font-size: 44px; }
  .hero-intro { font-size: 16px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-points { display: grid; }
  .hero-visual { min-height: 450px; }
  .hero-card { width: 92%; min-height: 410px; padding: 18px 20px 23px; border-radius: 24px; }
  .hero-logo { width: 145px; height: 215px; margin-top: 14px; }
  .orbit-one { width: 420px; height: 420px; }
  .orbit-two { width: 480px; height: 300px; }
  .floating-note { min-width: 122px; padding: 10px 12px; }
  .note-left { left: -2px; bottom: 72px; }
  .note-right { right: -2px; top: 75px; }
  .service-band-grid div { min-height: 78px; padding: 16px 14px; }
  .service-band-grid strong { font-size: 12px; }
  .section { padding: 72px 0; }
  .section-heading h2, .about-copy h2, .contact-copy h2, .faq-heading h2, .legal-hero h1 { font-size: 37px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .about-shape { width: min(100%, 340px); height: 450px; }
  .about-logo-wrap { inset: 66px 54px 58px; }
  .benefit-list { grid-template-columns: 1fr; }
  .benefit-list > div:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .benefit-list > div:last-child { border-bottom: 0; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 190px; }
  .audience-card h3 { margin-top: 30px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 23px 18px; }
  .contact-options > a, .contact-options > div { grid-template-columns: 70px 1fr auto; }
  .contact-options strong { font-size: 13px; }
  .footer-bottom { display: grid; justify-items: center; text-align: center; }
  .legal-content { padding: 28px 20px; }
}

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


/* Kontaktformular – serverseitiger Versand */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.contact-form button[disabled] {
  opacity: .7;
  cursor: wait;
}
.form-status.success {
  color: #dff7e6;
  font-weight: 700;
}
.form-status.error {
  color: #ffd7d7;
  font-weight: 700;
}
