:root {
  --ink: #07101e;
  --ink-2: #0b1728;
  --ink-3: #111f32;
  --blue: #075bff;
  --blue-2: #009cff;
  --blue-soft: #eaf3ff;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --line: #d9e1ec;
  --muted: #607086;
  --light-muted: #9eb0c8;
  --radius: 26px;
  --radius-sm: 16px;
  --shell: min(1180px, calc(100vw - 44px));
  --shadow: 0 24px 70px rgba(4, 21, 48, .12);
}

* { 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); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { max-width: 100%; display: block; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 124px 0; }
.section-dark { color: #fff; background: var(--ink); }
.section-soft { background: var(--soft); }

.scroll-progress { position: fixed; z-index: 1200; inset: 0 0 auto 0; height: 3px; background: transparent; pointer-events: none; }
.scroll-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--blue), var(--blue-2)); box-shadow: 0 0 18px rgba(0,156,255,.75); }

.site-header { position: fixed; z-index: 1000; inset: 0 0 auto 0; transition: background .28s ease, border-color .28s ease, transform .28s ease; border-bottom: 1px solid transparent; }
.site-header.scrolled { background: rgba(7,16,30,.86); border-color: rgba(255,255,255,.08); backdrop-filter: blur(18px); }
.header-inner { height: 92px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 38px; }
.brand { justify-self: start; }
.brand-plate { display: flex; align-items: center; justify-content: center; width: 178px; height: 60px; padding: 5px 12px; background: rgba(255,255,255,.97); border-radius: 12px; box-shadow: 0 10px 35px rgba(0,0,0,.16); overflow: hidden; }
.brand-plate img { width: 100%; height: 100%; object-fit: contain; }
.desktop-nav { display: flex; justify-content: center; gap: 34px; color: rgba(255,255,255,.76); font-size: 14px; font-weight: 650; }
.desktop-nav a { position: relative; padding: 12px 0; transition: color .2s ease; }
.desktop-nav a::after { content:""; position:absolute; left:0; right:100%; bottom:5px; height:2px; background:var(--blue-2); transition:right .25s ease; }
.desktop-nav a:hover { color:#fff; }
.desktop-nav a:hover::after { right:0; }
.header-cta { display: inline-flex; align-items: center; gap: 18px; padding: 12px 16px 12px 20px; color:#fff; border:1px solid rgba(255,255,255,.2); border-radius:999px; font-size:14px; font-weight:700; transition: border-color .2s ease, background .2s ease; overflow:hidden; position:relative; }
.header-cta:hover { border-color: rgba(255,255,255,.5); background:rgba(255,255,255,.06); }
.arrow { display:inline-block; transition: transform .25s ease; }
a:hover .arrow, button:hover .arrow { transform: translate(3px,-3px); }
.menu-toggle, .mobile-menu { display:none; }

.hero { min-height: 880px; padding: 160px 0 0; position: relative; overflow: hidden; }
.hero-grid { position:absolute; inset:0; opacity:.12; background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to bottom, black 0%, transparent 82%); }
.hero-glow { position:absolute; border-radius:50%; filter: blur(10px); pointer-events:none; }
.hero-glow-a { width:620px; height:620px; right:-160px; top:30px; background: radial-gradient(circle, rgba(0,135,255,.28), rgba(7,91,255,.08) 44%, transparent 70%); }
.hero-glow-b { width:480px; height:480px; left:-280px; bottom:-140px; background: radial-gradient(circle, rgba(7,91,255,.18), transparent 70%); }
.hero-layout { position:relative; z-index:1; display:grid; grid-template-columns: 1.05fr .95fr; gap:80px; align-items:center; }
.eyebrow, .section-kicker { display:inline-flex; align-items:center; gap:10px; font-size:12px; line-height:1; text-transform:uppercase; letter-spacing:.16em; font-weight:800; color:var(--blue); }
.eyebrow { color:#b8d6ff; margin-bottom:26px; }
.pulse-dot { width:8px; height:8px; border-radius:50%; background:var(--blue-2); box-shadow:0 0 0 0 rgba(0,156,255,.55); animation:pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow:0 0 0 10px rgba(0,156,255,0); } 100% { box-shadow:0 0 0 0 rgba(0,156,255,0); } }
.hero h1 { font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size:clamp(66px,7.3vw,108px); line-height:.86; letter-spacing:-.065em; margin:0; max-width:760px; }
.hero h1 span { color:transparent; -webkit-text-stroke:1.5px #2fa8ff; text-shadow:0 0 30px rgba(0,156,255,.15); }
.hero-lead { max-width:650px; margin:32px 0 0; color:#b7c5d8; font-size:18px; line-height:1.72; }
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:36px; }
.btn { position:relative; overflow:hidden; min-height:56px; padding:0 22px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; gap:28px; border:1px solid transparent; cursor:pointer; font-weight:800; font-size:14px; transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform:translateY(-2px); }
.btn-primary { color:#fff; background:linear-gradient(135deg,var(--blue),var(--blue-2)); box-shadow:0 12px 32px rgba(7,91,255,.26); }
.btn-primary:hover { box-shadow:0 16px 40px rgba(7,91,255,.4); }
.btn-ghost { color:#fff; border-color:rgba(255,255,255,.18); background:rgba(255,255,255,.03); }
.btn-ghost:hover { background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.34); }
.ripple-ink { position:absolute; border-radius:50%; transform:scale(0); animation:ripple .58s ease-out; background:rgba(255,255,255,.35); pointer-events:none; }
@keyframes ripple { to { transform:scale(4); opacity:0; } }
.hero-trust { margin-top:34px; display:flex; gap:24px; flex-wrap:wrap; color:#8fa2ba; font-size:12px; font-weight:700; }
.hero-trust div { display:flex; align-items:center; gap:8px; }
.trust-icon { width:18px; height:18px; border:1px solid rgba(44,166,255,.65); color:#5bb9ff; border-radius:50%; display:grid; place-items:center; font-size:10px; }
.hero-visual { min-width:0; position:relative; }
.photo-frame { position:relative; border-radius:var(--radius); overflow:hidden; background:linear-gradient(135deg,#162741,#09111d); box-shadow:var(--shadow); }
.hero-photo { min-height:570px; transform:perspective(1200px) rotateY(-5deg) rotateX(1deg); border:1px solid rgba(255,255,255,.12); }
.placeholder-art { min-height:100%; width:100%; display:flex; flex-direction:column; justify-content:flex-end; padding:34px; color:#fff; background: linear-gradient(145deg, rgba(5,21,40,.15), rgba(2,8,16,.88)), radial-gradient(circle at 80% 15%, rgba(0,156,255,.5), transparent 35%), linear-gradient(115deg,#24364c,#07101e 65%); position:relative; overflow:hidden; }
.placeholder-art::before { content:""; position:absolute; inset:-20% -40%; transform:rotate(-28deg); border-top:1px solid rgba(255,255,255,.14); border-bottom:1px solid rgba(0,156,255,.25); }
.placeholder-art::after { content:"⚡"; position:absolute; top:10%; right:10%; font-size:90px; color:rgba(0,156,255,.22); filter:drop-shadow(0 0 24px rgba(0,156,255,.45)); }
.placeholder-art strong { position:relative; z-index:1; font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size:36px; line-height:1.05; letter-spacing:-.035em; }
.placeholder-art small { position:relative; z-index:1; margin-top:10px; color:#9fb1c8; }
.placeholder-kicker { position:relative; z-index:1; margin-bottom:13px; font-size:10px; font-weight:800; letter-spacing:.18em; color:#58b8ff; }
.frame-corner { position:absolute; right:18px; top:18px; width:66px; height:66px; border-top:2px solid #47b2ff; border-right:2px solid #47b2ff; }
.floating-card { position:absolute; left:-38px; bottom:38px; padding:19px 22px; min-width:220px; border-radius:18px; background:rgba(255,255,255,.96); color:var(--ink); box-shadow:0 20px 50px rgba(0,0,0,.25); backdrop-filter:blur(12px); }
.mini-label { display:block; color:var(--blue); font-size:10px; text-transform:uppercase; letter-spacing:.16em; font-weight:800; margin-bottom:7px; }
.floating-card strong { font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size:17px; line-height:1.25; }
.stats-bar { position:relative; z-index:2; display:grid; grid-template-columns:repeat(3,1fr); margin-top:86px; border-top:1px solid rgba(255,255,255,.1); border-left:1px solid rgba(255,255,255,.1); }
.stat { min-height:128px; padding:26px 28px; border-right:1px solid rgba(255,255,255,.1); display:flex; flex-direction:column; justify-content:center; }
.stat strong { font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size:34px; line-height:1; }
.stat span { color:#7f94ad; font-size:12px; margin-top:9px; }

.trust-strip { position:relative; background:#fff; padding:0 0 34px; }
.trust-grid { display:grid; grid-template-columns:repeat(3,1fr); background:#fff; transform:translateY(-1px); border-left:1px solid var(--line); border-bottom:1px solid var(--line); }
.trust-card { padding:52px 44px; border-right:1px solid var(--line); position:relative; }
.trust-number { color:var(--blue); font-size:11px; font-weight:800; letter-spacing:.14em; }
.trust-card h3 { font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; margin:38px 0 10px; font-size:22px; }
.trust-card p { margin:0; color:var(--muted); line-height:1.75; font-size:14px; }

.section-heading { display:grid; grid-template-columns:1.15fr .85fr; gap:80px; align-items:end; margin-bottom:62px; }
.section-heading h2, .about-copy h2, .industry-copy h2, .contact-copy h2, .faq-intro h2 { margin:14px 0 0; font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size:clamp(44px,5.2vw,72px); line-height:.98; letter-spacing:-.052em; }
.section-heading > p, .light-heading > p { margin:0; color:var(--muted); line-height:1.8; font-size:15px; max-width:470px; justify-self:end; }
.service-grid { display:grid; grid-template-columns:repeat(3,1fr); border-left:1px solid var(--line); border-top:1px solid var(--line); }
.service-card { min-height:360px; padding:32px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); display:flex; flex-direction:column; position:relative; overflow:hidden; background:#fff; transition:background .3s ease, transform .3s ease, box-shadow .3s ease; }
.service-card::before { content:""; position:absolute; inset:auto 0 0 0; height:3px; background:linear-gradient(90deg,var(--blue),var(--blue-2)); transform:scaleX(0); transform-origin:left; transition:transform .3s ease; }
.service-card:hover { background:#fbfdff; transform:translateY(-6px); z-index:2; box-shadow:0 24px 60px rgba(8,30,62,.11); }
.service-card:hover::before { transform:scaleX(1); }
.service-top { display:flex; justify-content:space-between; align-items:center; color:var(--blue); font-weight:800; font-size:11px; letter-spacing:.12em; }
.service-icon { width:44px; height:44px; border:1px solid #dce7f5; border-radius:50%; display:grid; place-items:center; color:var(--blue); font-size:20px; }
.service-card h3 { margin:60px 0 12px; font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size:26px; letter-spacing:-.03em; }
.service-card p { margin:0; color:var(--muted); line-height:1.72; font-size:14px; }
.tags, .project-tags { margin-top:auto; padding-top:28px; display:flex; gap:7px; flex-wrap:wrap; }
.tags span, .project-tags span { padding:6px 9px; border-radius:999px; background:var(--soft); color:#567089; font-size:10px; font-weight:700; }
.service-card.featured { background:linear-gradient(145deg,#f7fbff,#edf6ff); }
.service-card.wide { grid-column:span 3; min-height:auto; display:grid; grid-template-columns:100px 1fr auto; align-items:center; gap:20px; }
.service-card.wide h3 { margin:0 0 8px; }
.service-card.wide .tags { padding:0; margin:0; justify-content:flex-end; }

.industry-band { padding:110px 0; overflow:hidden; position:relative; }
.industry-band::before { content:""; position:absolute; inset:0; background:linear-gradient(120deg,transparent 55%,rgba(0,156,255,.07)); }
.industry-layout { position:relative; display:grid; grid-template-columns:.85fr 1.15fr; gap:86px; align-items:center; }
.section-kicker.light { color:#78c7ff; }
.industry-copy h2 span, .contact-copy h2 span { color:#38adff; }
.industry-copy p { color:#9fb0c5; line-height:1.8; max-width:560px; margin:26px 0 28px; }
.text-link { display:inline-flex; gap:16px; align-items:center; font-weight:800; font-size:14px; }
.text-link span { color:var(--blue-2); transition:transform .2s ease; }
.text-link:hover span { transform:translate(3px,-3px); }
.landscape-photo { min-height:420px; border:1px solid rgba(255,255,255,.1); }

.about-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:90px; align-items:start; }
.about-photo { position:sticky; top:130px; }
.portrait-photo { height:650px; }
.portrait-placeholder { min-height:100%; }
.portrait-badge { position:absolute; right:-24px; bottom:38px; background:var(--blue); color:#fff; padding:20px 24px; border-radius:16px; box-shadow:0 18px 40px rgba(7,91,255,.28); }
.portrait-badge span { display:block; font-size:9px; letter-spacing:.18em; text-transform:uppercase; opacity:.7; }
.portrait-badge strong { display:block; margin-top:5px; font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
.about-statement { margin-top:34px; display:grid; gap:18px; }
.about-statement p { margin:0; color:var(--muted); line-height:1.82; font-size:15px; }
.career-timeline { margin-top:50px; border-top:1px solid var(--line); }
.career-timeline article { display:grid; grid-template-columns:64px 1fr; gap:22px; padding:26px 0; border-bottom:1px solid var(--line); }
.timeline-year { font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color:var(--blue); font-weight:700; }
.career-timeline strong { display:block; font-size:15px; }
.career-timeline p { margin:6px 0 0; color:var(--muted); font-size:13px; line-height:1.7; }

.values { padding:110px 0; }
.section-heading.compact { grid-template-columns:1fr; margin-bottom:46px; }
.value-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.value-card { background:#fff; border:1px solid #e0e6ee; border-radius:20px; padding:30px; min-height:250px; }
.value-card > span { color:var(--blue); font-size:11px; font-weight:800; }
.value-card h3 { font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; margin:72px 0 10px; font-size:21px; }
.value-card p { margin:0; color:var(--muted); line-height:1.7; font-size:13px; }

.project-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.project-card { border:1px solid var(--line); border-radius:var(--radius); padding:14px; background:#fff; }
.project-card:first-child { grid-column:span 2; }
.project-photo { min-height:360px; border-radius:18px; }
.project-card:first-child .project-photo { min-height:480px; }
.project-meta { display:flex; justify-content:space-between; gap:20px; padding:24px 12px 14px; align-items:end; }
.project-meta span { color:var(--blue); font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.13em; }
.project-meta h3 { margin:6px 0 0; font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size:24px; }
.project-tags { margin:0 12px 12px; padding-top:0; }

.process { padding:120px 0; }
.light-heading h2 { color:#fff; }
.light-heading > p { color:#91a4bb; }
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); border-left:1px solid rgba(255,255,255,.12); border-top:1px solid rgba(255,255,255,.12); }
.process-step { min-height:290px; padding:28px; border-right:1px solid rgba(255,255,255,.12); border-bottom:1px solid rgba(255,255,255,.12); }
.process-step > span { color:#48b5ff; font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size:12px; }
.process-step h3 { margin:100px 0 10px; font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size:22px; }
.process-step p { margin:0; color:#91a4bb; line-height:1.7; font-size:13px; }

.faq-layout { display:grid; grid-template-columns:.75fr 1.25fr; gap:90px; align-items:start; }
.faq-intro { position:sticky; top:140px; }
.faq-intro p { color:var(--muted); line-height:1.8; max-width:390px; }
.dark-link { margin-top:14px; }
.faq-item { border-top:1px solid var(--line); }
.faq-item:last-child { border-bottom:1px solid var(--line); }
.faq-item button { width:100%; border:0; background:none; padding:26px 0; display:flex; justify-content:space-between; gap:22px; text-align:left; cursor:pointer; font-weight:800; font-size:16px; }
.plus { flex:0 0 34px; width:34px; height:34px; display:grid; place-items:center; border:1px solid var(--line); border-radius:50%; color:var(--blue); font-size:20px; transition:transform .3s ease, background .3s ease, color .3s ease; }
.faq-item.open .plus { transform:rotate(45deg); background:var(--blue); color:#fff; border-color:var(--blue); }
.faq-answer { display:grid; grid-template-rows:0fr; transition:grid-template-rows .34s ease; }
.faq-answer > p { overflow:hidden; margin:0; color:var(--muted); line-height:1.8; font-size:14px; }
.faq-item.open .faq-answer { grid-template-rows:1fr; }
.faq-item.open .faq-answer > p { padding:0 60px 26px 0; }

.contact { padding:120px 0; position:relative; overflow:hidden; }
.contact-glow { position:absolute; width:780px; height:780px; right:-360px; bottom:-420px; background:radial-gradient(circle,rgba(0,156,255,.25),transparent 68%); }
.contact-grid { position:relative; display:grid; grid-template-columns:.9fr 1.1fr; gap:92px; align-items:start; }
.contact-copy > p { max-width:520px; color:#9fb0c5; line-height:1.8; margin:26px 0 42px; }
.contact-details { display:grid; gap:0; border-top:1px solid rgba(255,255,255,.12); }
.contact-details > * { display:flex; flex-direction:column; gap:6px; padding:18px 0; border-bottom:1px solid rgba(255,255,255,.12); }
.contact-details span { color:#7590ad; font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.15em; }
.contact-details strong { font-size:14px; font-weight:700; }
.contact-form { background:#fff; color:var(--ink); border-radius:var(--radius); padding:34px; box-shadow:0 30px 90px rgba(0,0,0,.25); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.contact-form label { display:grid; gap:8px; margin-bottom:16px; color:#52657b; font-size:11px; font-weight:800; letter-spacing:.02em; }
.contact-form input, .contact-form select, .contact-form textarea { width:100%; border:1px solid #dbe3ed; border-radius:12px; background:#f8fafc; padding:14px 15px; color:var(--ink); outline:none; transition:border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color:#63b8ff; box-shadow:0 0 0 4px rgba(7,91,255,.08); background:#fff; }
.contact-form textarea { resize:vertical; }
.consent { display:flex !important; grid-template-columns:auto 1fr; align-items:flex-start; gap:10px !important; font-weight:600 !important; line-height:1.5; }
.consent input { width:16px; height:16px; padding:0; margin-top:2px; }
.submit-btn { width:100%; border:0; margin-top:4px; }
.form-success { display:none; margin-top:14px; padding:12px 14px; border-radius:10px; background:#e9f8ef; color:#1b6a39; font-size:12px; font-weight:700; }
 .form-success.show { display:block; }
.form-success.error { background:#fff0f0; color:#9c2525; }
.bot-field { position:absolute !important; overflow:hidden !important; clip:rect(0 0 0 0) !important; width:1px !important; height:1px !important; margin:-1px !important; padding:0 !important; border:0 !important; white-space:nowrap !important; }
.submit-btn:disabled { opacity:.68; cursor:wait; }

.site-footer { background:#050b14; color:#fff; padding:72px 0 24px; border-top:1px solid rgba(255,255,255,.08); }
.footer-grid { display:grid; grid-template-columns:1.4fr repeat(3,1fr); gap:55px; }
.footer-brand p { color:#8193aa; line-height:1.7; font-size:13px; margin-top:20px; }
.footer-logo { width:170px; }
.footer-grid > div:not(.footer-brand) { display:flex; flex-direction:column; gap:12px; color:#9aacbf; font-size:12px; }
.footer-grid a:hover { color:#fff; }
.footer-label { color:#fff; text-transform:uppercase; letter-spacing:.14em; font-size:9px; font-weight:800; margin-bottom:8px; }
.footer-bottom { margin-top:60px; border-top:1px solid rgba(255,255,255,.08); padding-top:22px; display:flex; justify-content:space-between; gap:20px; color:#61748b; font-size:11px; }
.footer-bottom div { display:flex; gap:20px; }

.floating-actions { position:fixed; z-index:900; right:22px; bottom:22px; display:flex; flex-direction:column; gap:9px; }
.float-btn { width:50px; height:50px; border-radius:50%; border:0; display:grid; place-items:center; background:#fff; color:var(--ink); box-shadow:0 12px 34px rgba(0,0,0,.18); cursor:pointer; font-weight:800; font-size:12px; overflow:hidden; position:relative; transition:transform .2s ease, opacity .2s ease; }
.float-btn:hover { transform:translateY(-3px); }
.whatsapp { background:#20c763; color:#fff; }
.call { background:var(--blue); color:#fff; }
.to-top { opacity:0; pointer-events:none; transform:translateY(8px); }
.to-top.visible { opacity:1; pointer-events:auto; transform:none; }

.reveal { opacity:0; transform:translateY(26px); transition:opacity .72s cubic-bezier(.2,.7,.2,1), transform .72s cubic-bezier(.2,.7,.2,1); }
.reveal-delay-1 { transition-delay:.09s; }
.reveal-delay-2 { transition-delay:.18s; }
.reveal-delay-3 { transition-delay:.27s; }
.reveal.in-view { opacity:1; transform:none; }

@media (max-width: 980px) {
  :root { --shell:min(100% - 34px, 760px); }
  .desktop-nav, .header-cta { display:none; }
  .header-inner { grid-template-columns:1fr auto; height:80px; }
  .brand-plate { width:150px; height:52px; }
  .menu-toggle { width:44px; height:44px; display:grid; place-content:center; gap:7px; border:1px solid rgba(255,255,255,.18); border-radius:50%; background:rgba(255,255,255,.05); }
  .menu-toggle span { width:18px; height:1.5px; background:#fff; transition:transform .25s ease; }
  .menu-toggle.active span:first-child { transform:translateY(4px) rotate(45deg); }
  .menu-toggle.active span:last-child { transform:translateY(-4px) rotate(-45deg); }
  .mobile-menu { display:grid; position:fixed; inset:80px 0 auto 0; padding:26px 24px 34px; background:rgba(7,16,30,.98); border-top:1px solid rgba(255,255,255,.08); transform:translateY(-120%); opacity:0; pointer-events:none; transition:transform .3s ease, opacity .3s ease; }
  .mobile-menu.open { transform:none; opacity:1; pointer-events:auto; }
  .mobile-menu a { padding:15px 0; border-bottom:1px solid rgba(255,255,255,.08); color:#fff; font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size:22px; }
  .hero { min-height:auto; padding-top:138px; }
  .hero-layout, .industry-layout, .about-grid, .contact-grid { grid-template-columns:1fr; gap:54px; }
  .hero h1 { font-size:clamp(62px,14vw,92px); }
  .hero-visual { max-width:620px; }
  .hero-photo { min-height:480px; transform:none; }
  .floating-card { left:18px; }
  .stats-bar { grid-template-columns:1fr 1fr; }
  .stats-bar .stat:last-child { grid-column:1 / -1; }
  .trust-grid { grid-template-columns:1fr; }
  .trust-card { border-bottom:1px solid var(--line); }
  .section-heading { grid-template-columns:1fr; gap:22px; align-items:start; }
  .section-heading > p { justify-self:start; }
  .service-grid { grid-template-columns:1fr 1fr; }
  .service-card.wide { grid-column:span 2; grid-template-columns:70px 1fr; }
  .service-card.wide .tags { grid-column:2; justify-content:flex-start; }
  .industry-layout { grid-template-columns:1fr; }
  .industry-visual { order:-1; }
  .about-grid { grid-template-columns:1fr; }
  .about-photo { position:relative; top:auto; max-width:600px; }
  .portrait-photo { height:600px; }
  .value-grid { grid-template-columns:1fr 1fr; }
  .process-grid { grid-template-columns:1fr 1fr; }
  .faq-layout { grid-template-columns:1fr; gap:42px; }
  .faq-intro { position:relative; top:auto; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 620px) {
  :root { --shell:calc(100% - 28px); --radius:20px; }
  .section { padding:86px 0; }
  .hero { padding-top:118px; }
  .hero h1 { font-size:clamp(54px,18vw,76px); }
  .hero-lead { font-size:15px; line-height:1.7; }
  .hero-actions { display:grid; }
  .btn { width:100%; justify-content:space-between; }
  .hero-trust { display:grid; gap:10px; }
  .hero-photo { min-height:410px; }
  .placeholder-art { padding:24px; }
  .placeholder-art strong { font-size:28px; }
  .floating-card { left:14px; right:14px; bottom:14px; min-width:0; }
  .stats-bar { margin-top:58px; grid-template-columns:1fr 1fr; }
  .stats-bar .stat:last-child { grid-column:1 / -1; }
  .stat { min-height:102px; padding:20px 16px; }
  .stat strong { font-size:27px; }
  .trust-card { padding:36px 26px; }
  .trust-card h3 { margin-top:30px; }
  .section-heading h2, .about-copy h2, .industry-copy h2, .contact-copy h2, .faq-intro h2 { font-size:clamp(40px,13vw,56px); }
  .service-grid { grid-template-columns:1fr; }
  .service-card { min-height:320px; }
  .service-card.wide { grid-column:auto; display:flex; min-height:320px; }
  .service-card.wide h3 { margin-top:60px; }
  .service-card.wide .tags { margin-top:auto; }
  .industry-band { padding:86px 0; }
  .landscape-photo { min-height:330px; }
  .portrait-photo { height:520px; }
  .portrait-badge { right:10px; bottom:20px; }
  .career-timeline article { grid-template-columns:44px 1fr; gap:12px; }
  .value-grid { grid-template-columns:1fr; }
  .value-card { min-height:220px; }
  .value-card h3 { margin-top:55px; }
  .project-grid { grid-template-columns:1fr; }
  .project-card:first-child { grid-column:auto; }
  .project-photo, .project-card:first-child .project-photo { min-height:330px; }
  .project-meta { align-items:start; flex-direction:column; gap:8px; }
  .process { padding:86px 0; }
  .process-grid { grid-template-columns:1fr; }
  .process-step { min-height:220px; }
  .process-step h3 { margin-top:66px; }
  .faq-item button { font-size:14px; }
  .faq-item.open .faq-answer > p { padding-right:0; }
  .contact { padding:86px 0; }
  .contact-form { padding:22px; }
  .form-row { grid-template-columns:1fr; gap:0; }
  .footer-grid { grid-template-columns:1fr; gap:34px; }
  .footer-bottom { flex-direction:column; }
  .floating-actions { right:14px; bottom:14px; }
  .float-btn { width:46px; height:46px; }
}

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

/* Datenschutz-Link im Kontaktformular */
.contact-form .consent a{color:#8eb4ff;text-decoration:underline;text-underline-offset:3px;font-weight:700}
.contact-form .consent a:hover{color:#fff}
