/* ── PUREPRINT MAIN STYLESHEET ── */

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

html {
  scroll-behavior: smooth;
  height: 100%;
}

:root {
  --bg: #E5E4E2; /* Platinum/Silver */
  --bg2: #FFFFFF;
  --bg3: #F4F7FB;
  --c1: #1D3557; /* Deep Navy Blue */
  --c2: #4EA8DE; /* Sky Blue */
  --c3: #BEE3F8; /* Light Blue */
  --c4: #EAF6FF; /* Pale Blue Tint */
  --t1: #1D3557;
  --t2: #4A5568;
  --t3: #8A9AB0;
  --border: rgba(29, 53, 87, 0.1);
  --border2: rgba(78, 168, 222, 0.3);
  --max: 1260px;
  --pad: clamp(20px, 5vw, 80px);
  --r: 18px;
  --shadow: 0 10px 30px -10px rgba(29, 53, 87, 0.1);
  --shadow-hover: 0 20px 40px -15px rgba(29, 53, 87, 0.15);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--t1);
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* ── SCROLL ANIMATIONS ── */
[da] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s cubic-bezier(.16,1,.3,1), transform 0.85s cubic-bezier(.16,1,.3,1);
}
[da].on {
  opacity: 1;
  transform: translateY(0);
}
[da=left] { transform: translateX(-40px); }
[da=left].on { transform: translateX(0); }
[da=right] { transform: translateX(40px); }
[da=right].on { transform: translateX(0); }
[da=scale] { transform: scale(.95); }
[da=scale].on { transform: scale(1); }

[dd="1"] { transition-delay: .07s; }
[dd="2"] { transition-delay: .14s; }
[dd="3"] { transition-delay: .21s; }
[dd="4"] { transition-delay: .28s; }
[dd="5"] { transition-delay: .35s; }
[dd="6"] { transition-delay: .42s; }

/* ── HEADER ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 70px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s, box-shadow 0.35s;
}
header.scrolled {
  background: rgba(229, 228, 226, 0.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.hdr-logo svg {
  height: 28px;
  width: auto;
}
nav {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}
.nl {
  display: flex;
  gap: 1.8rem;
}
.nl a {
  font-size: 14px;
  color: var(--t2);
  font-weight: 500;
}
.nl a:hover, .nl a.active {
  color: var(--c2);
}
.btn-hdr {
  background: var(--c1);
  color: #fff;
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(29, 53, 87, 0.15);
}
.btn-hdr:hover {
  background: #2a4a7a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(29, 53, 87, 0.25);
}
.hbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hbg span {
  width: 22px;
  height: 1.5px;
  background: var(--t2);
  transition: var(--transition);
}

/* Mobile Nav Open State */
.hbg.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hbg.open span:nth-child(2) {
  opacity: 0;
}
.hbg.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mnav {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(229, 228, 226, 0.96);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 18px var(--pad) 24px;
  z-index: 199;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s, opacity 0.3s;
}
.mnav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mnav a {
  display: block;
  padding: 13px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--t2);
  border-bottom: 1px solid var(--border);
}
.mnav a:hover {
  color: var(--c1);
}
.mnav a.cta {
  border: none;
  margin-top: 10px;
  color: var(--c2);
  font-weight: 700;
}

/* ── SUBPAGE HERO ── */
.subpage-hero {
  position: relative;
  padding: 140px var(--pad) 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--c4) 0%, var(--bg) 100%);
  overflow: hidden;
}
.subpage-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.subpage-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--c1);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.subpage-hero p {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--t2);
  max-width: 600px;
  margin: 0 auto;
}

/* ── SECTIONS SHARED ── */
.sec {
  padding: clamp(60px, 8vw, 100px) var(--pad);
}
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.stag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c2);
  margin-bottom: 12px;
  display: block;
}
.stitle {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--c1);
}
.stitle em {
  font-style: normal;
  color: var(--c2);
}
.ssub {
  font-size: 17px;
  color: var(--t2);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
}

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  padding: 40px var(--pad);
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo svg {
  height: 20px;
  width: auto;
}
.footer-copy {
  font-size: 12px;
  color: var(--t3);
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 12px;
  color: var(--t3);
}
.footer-links a:hover {
  color: var(--c2);
}

/* ── ORBS & BACKGROUND DECORATION ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  will-change: transform;
  pointer-events: none;
}
.o1 { width: 600px; height: 600px; background: #BEE3F8; opacity: .45; top: -100px; left: -150px; }
.o2 { width: 400px; height: 400px; background: #4EA8DE; opacity: .18; bottom: -80px; right: -100px; }

/* ── MAIN CONTENT SECTIONS ── */

/* ── INDEX HERO ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px var(--pad) 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(29,53,87,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,53,87,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(transparent, var(--bg));
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo svg {
  height: 90px;
  width: auto;
  filter: drop-shadow(0 4px 24px rgba(29,53,87,.12));
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c4);
  border: 1px solid var(--c3);
  color: var(--c2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hbd {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c2);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .3; transform: scale(.6); }
}
.hero h1 {
  font-size: clamp(38px, 7vw, 84px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.04em;
  color: var(--c1);
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--c2);
}
.hero h1 .dim {
  color: var(--t3);
  font-weight: 300;
}
.hero-sub {
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--t2);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto 40px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-p {
  background: var(--c1);
  color: #fff;
  padding: 15px 38px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(29,53,87,.2);
}
.btn-p:hover {
  background: #2a4a7a;
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(29,53,87,.3);
}
.btn-o {
  background: transparent;
  color: var(--c1);
  padding: 15px 38px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid var(--border2);
}
.btn-o:hover {
  background: var(--c4);
  border-color: var(--c2);
  transform: translateY(-2px);
}

/* ── STATS ── */
.stats-sec {
  background: var(--c1);
  padding: 56px var(--pad);
}
.stats-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-divider {
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-n {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  color: var(--c2);
  letter-spacing: -.03em;
  line-height: 1;
  display: block;
}
.stat-l {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin-top: 6px;
  font-weight: 500;
}

/* ── SERVICES ── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.svc {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 38px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.svc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c2), var(--c3));
  opacity: 0;
  transition: opacity 0.3s;
}
.svc:hover {
  border-color: var(--border2);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.svc:hover::before {
  opacity: 1;
}
.svc-icon {
  width: 52px;
  height: 52px;
  background: var(--c4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid var(--c3);
}
.svc-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--c2);
  stroke-width: 1.7;
}
.svc h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 11px;
  color: var(--c1);
}
.svc p {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.7;
}
.svc-num {
  position: absolute;
  bottom: 22px;
  right: 26px;
  font-size: 70px;
  font-weight: 900;
  color: rgba(29,53,87,.03);
  user-select: none;
}

/* ── PRODUCTS / SHOWROOM ── */
.pf-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 30px 0 20px;
}
.pfb {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--t2);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.pfb:hover, .pfb.act {
  background: var(--c1);
  border-color: var(--c1);
  color: #fff;
}
.prod-count {
  font-size: 13px;
  color: var(--t3);
  margin-bottom: 20px;
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.prod {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.prod:hover {
  transform: translateY(-6px);
  border-color: var(--border2);
  box-shadow: var(--shadow-hover);
}
.prod-vis {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.prod-vis img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.prod:hover .prod-vis img {
  transform: scale(1.06);
}
.prod-vis svg {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  fill: none;
  stroke-width: 1.5;
}
.pvb {
  position: absolute;
  inset: 0;
}
.vb { background: linear-gradient(135deg, #1D3557, #2A4E7A); }
.vo { background: linear-gradient(135deg, #1B5E8A, #4EA8DE); }
.ve { background: linear-gradient(135deg, #0D3D6B, #2A7AB5); }
.vg { background: linear-gradient(135deg, #1D3557, #3A6090); }
.vt { background: linear-gradient(135deg, #102840, #1D3557); }

.sb { stroke: #BEE3F8; }
.so { stroke: #EAF6FF; }
.se { stroke: #BEE3F8; }
.sg { stroke: #EAF6FF; }
.st { stroke: #BEE3F8; }

.prod-info {
  padding: 16px;
  flex-grow: 1;
}
.prod-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}
.cb { color: #4EA8DE; }
.co { color: #2A7AB5; }
.ce { color: #4EA8DE; }
.cg { color: #2A7AB5; }
.ct { color: #4EA8DE; }

.prod-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
  color: var(--c1);
}
.prod-desc {
  font-size: 12.5px;
  color: var(--t2);
  line-height: 1.5;
}
.prod-footer {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.4);
}
.prod-min {
  font-size: 11px;
  font-weight: 600;
  color: var(--t3);
  background: var(--bg3);
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.prod-cx {
  display: flex;
  gap: 3px;
}
.prod-cx span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.btn-prod-order {
  display: block;
  text-align: center;
  background: var(--c1);
  color: #fff;
  padding: 8px;
  font-size: 12px;
  font-weight: 600;
  width: 100%;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-prod-order:hover {
  background: var(--c2);
}

/* ── PROCESS ── */
.process-sec {
  background: var(--c4);
  border-top: 1px solid var(--c3);
  border-bottom: 1px solid var(--c3);
}
.proc-wrap {
  margin-top: 60px;
  position: relative;
}
.proc-track {
  position: absolute;
  top: 35px;
  left: calc(10% + 24px);
  right: calc(10% + 24px);
  height: 2px;
  background: var(--c3);
  z-index: 0;
}
.proc-fill {
  position: absolute;
  top: 35px;
  left: calc(10% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--c1), var(--c2));
  width: 0;
  z-index: 1;
  transition: width 1.8s cubic-bezier(.16,1,.3,1);
}
.proc-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  z-index: 2;
}
.pstep {
  text-align: center;
  padding: 0 10px;
}
.pcirc {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--bg2);
  border: 2px solid var(--c3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all .6s;
  position: relative;
  z-index: 1;
}
.pcirc svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--t3);
  stroke-width: 1.6;
  transition: stroke .5s;
}
.proc-wrap.lit .pcirc {
  background: var(--c1);
  border-color: var(--c1);
  box-shadow: 0 4px 20px rgba(29,53,87,.25);
}
.proc-wrap.lit .pcirc svg {
  stroke: #fff;
}
.pslabel {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--c1);
}
.psdesc {
  font-size: 12.5px;
  color: var(--t2);
  line-height: 1.5;
}

/* ── TRUST ── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.tcard {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 30px 24px;
  transition: var(--transition);
}
.tcard:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.tcard-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--c4);
  border: 1px solid var(--c3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.tcard-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--c2);
  stroke-width: 1.7;
}
.tcard h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--c1);
}
.tcard p {
  font-size: 13.5px;
  color: var(--t2);
  line-height: 1.6;
}

/* ── BRANCHEN ── */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 40px;
}
.ind-item {
  background: var(--bg2);
  padding: 38px 34px;
  transition: background .2s;
}
.ind-item:hover {
  background: var(--c4);
}
.ind-num {
  font-size: 42px;
  font-weight: 900;
  color: var(--c3);
  line-height: 1;
  margin-bottom: 10px;
}
.ind-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--c1);
  margin-bottom: 7px;
}
.ind-ex {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.6;
}

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.tescard {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  position: relative;
}
.tescard::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 64px;
  color: var(--c3);
  font-weight: 900;
  line-height: 1;
  font-family: Georgia, serif;
}
.tes-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.tes-stars svg {
  width: 13px;
  height: 13px;
  fill: var(--c2);
}
.tes-text {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.tes-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tes-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--c1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.tes-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--c1);
}
.tes-role {
  font-size: 12px;
  color: var(--t2);
}

/* ── CTA SECTION ── */
.cta-sec {
  background: var(--c1);
  padding: clamp(60px, 8vw, 100px) var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-ring1 {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(78, 168, 222, 0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cta-ring2 {
  position: absolute;
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  border: 1px solid rgba(78, 168, 222, 0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-sec h2 {
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 900;
  margin-bottom: 20px;
  color: #fff;
}
.cta-sec h2 em {
  font-style: normal;
  color: var(--c2);
}
.cta-sec p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
}
.btn-cta2 {
  background: var(--c2);
  color: #fff;
  padding: 17px 44px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(78, 168, 222, 0.3);
  display: inline-block;
}
.btn-cta2:hover {
  background: #6bbde6;
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(78, 168, 222, 0.4);
}
.cta-links {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}
.cta-link:hover {
  color: rgba(255,255,255,0.9);
}
.cta-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

/* ── MULTI-STEP INQUIRY FORM WIZARD ── */
.contact-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: -30px;
}

.form-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 90px;
}

/* Steps Progress Bar */
.form-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}
.form-steps::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bg3);
  z-index: 0;
}
.form-progress-bar {
  position: absolute;
  top: 15px;
  left: 0;
  height: 2px;
  background: var(--c2);
  z-index: 1;
  width: 0;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.fstep {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
}
.fstep-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px solid var(--border);
  color: var(--t3);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.fstep.active .fstep-circle {
  background: var(--c2);
  border-color: var(--c2);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(78, 168, 222, 0.2);
}
.fstep.completed .fstep-circle {
  background: var(--c1);
  border-color: var(--c1);
  color: #fff;
}
.fstep-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--t3);
  margin-top: 8px;
  text-align: center;
  transition: var(--transition);
}
.fstep.active .fstep-label {
  color: var(--c1);
}
.fstep.completed .fstep-label {
  color: var(--t2);
}

/* Step Content Panels */
.step-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}
.step-panel.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-panel h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--c1);
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

/* Form inputs & grid */
.fg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.fg-full {
  grid-column: span 2;
}
.fg label {
  font-size: 13px;
  font-weight: 600;
  color: var(--t2);
}
.fg label span {
  color: #e53e3e;
}
.fi {
  font-family: inherit;
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg3);
  color: var(--t1);
  outline: none;
  transition: var(--transition);
  width: 100%;
}
.fi:focus {
  border-color: var(--c2);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(78, 168, 222, 0.15);
}
textarea.fi {
  min-height: 100px;
  resize: vertical;
}

/* Custom visual selector for options */
.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.option-card {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg3);
}
.option-card:hover {
  border-color: var(--c3);
  background: #fff;
}
.option-card.selected {
  border-color: var(--c2);
  background: var(--c4);
  box-shadow: 0 4px 12px rgba(78, 168, 222, 0.1);
}
.option-card svg {
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
  stroke: var(--t3);
  fill: none;
  stroke-width: 1.8;
  transition: var(--transition);
}
.option-card.selected svg {
  stroke: var(--c2);
}
.option-card span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--t2);
}
.option-card.selected span {
  color: var(--c1);
}

/* File Upload Area */
.file-upload-zone {
  border: 2px dashed var(--border);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  background: var(--bg3);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}
.file-upload-zone:hover, .file-upload-zone.dragover {
  border-color: var(--c2);
  background: var(--c4);
}
.file-upload-zone svg {
  width: 32px;
  height: 32px;
  stroke: var(--t3);
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 8px;
}
.file-upload-zone h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--t2);
  margin-bottom: 4px;
}
.file-upload-zone p {
  font-size: 11px;
  color: var(--t3);
}
.file-upload-zone input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.file-list {
  margin-top: 12px;
}
.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
}
.file-item-name {
  font-weight: 600;
  color: var(--t2);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 250px;
}
.file-item-remove {
  color: #e53e3e;
  cursor: pointer;
  font-weight: bold;
}

/* GDPR Checkbox */
.fg-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}
.fg-checkbox input[type=checkbox] {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.fg-checkbox label {
  font-size: 12px;
  color: var(--t2);
  line-height: 1.4;
  cursor: pointer;
}
.fg-checkbox label a {
  color: var(--c2);
  font-weight: 600;
}

/* Wizard navigation buttons */
.form-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.btn-nav {
  font-family: inherit;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-back {
  background: var(--bg3);
  color: var(--t2);
  border: 1.5px solid var(--border);
}
.btn-back:hover {
  background: #fff;
  border-color: var(--t3);
}
.btn-next, .btn-submit {
  background: var(--c1);
  color: #fff;
  margin-left: auto;
  box-shadow: 0 4px 12px rgba(29, 53, 87, 0.15);
}
.btn-next:hover, .btn-submit:hover {
  background: #2a4a7a;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(29, 53, 87, 0.25);
}
.btn-submit {
  background: var(--c2);
  box-shadow: 0 4px 12px rgba(78, 168, 222, 0.25);
}
.btn-submit:hover {
  background: #3997cd;
  box-shadow: 0 6px 16px rgba(78, 168, 222, 0.35);
}

/* Form states feedback */
.form-feedback {
  display: none;
  padding: 24px;
  border-radius: 10px;
  text-align: center;
  margin-top: 20px;
  animation: fadeIn 0.4s ease;
}
.form-feedback.success {
  display: block;
  background: #f0fff4;
  border: 1px solid #c6f6d5;
  color: #22543d;
}
.form-feedback.error {
  display: block;
  background: #fff5f5;
  border: 1px solid #fed7d7;
  color: #742a2a;
}
.form-feedback-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.form-feedback.success .form-feedback-icon {
  background: #c6f6d5;
  color: #38a169;
}
.form-feedback.error .form-feedback-icon {
  background: #fed7d7;
  color: #e53e3e;
}
.form-feedback-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* Spinner */
.spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin: 0 auto;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Contact Info Column */
.contact-info-card {
  background: var(--c1);
  color: #fff;
  border-radius: var(--r);
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-info-card::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.03);
  bottom: -100px;
  right: -100px;
}
.contact-info-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.contact-info-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 30px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.cd-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cd-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cd-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--c2);
  stroke-width: 1.8;
}
.cd-text h4 {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}
.cd-text p {
  font-size: 14px;
  color: #fff;
  margin: 0;
}
.contact-socials {
  margin-top: auto;
}
.contact-socials h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.sl-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.sl-btn:hover {
  background: var(--c2);
  transform: translateY(-2px);
}
.sl-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
}

/* FAQ Sektion */
.faq-sec {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.faq-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.faq-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--c1);
  margin-bottom: 8px;
}
.faq-card p {
  font-size: 13.5px;
  color: var(--t2);
  line-height: 1.6;
}

/* ── LEGAL PAGES Impressum/Datenschutz ── */
.legal-container {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 50px clamp(20px, 5vw, 60px);
  margin-top: -30px;
  box-shadow: var(--shadow);
}
.legal-content h2 {
  font-size: 22px;
  color: var(--c1);
  margin: 30px 0 16px;
  font-weight: 700;
}
.legal-content h2:first-of-type {
  margin-top: 0;
}
.legal-content p {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.7;
  margin-bottom: 16px;
}
.legal-content ul, .legal-content ol {
  margin-bottom: 16px;
  padding-left: 20px;
  font-size: 15px;
  color: var(--t2);
}
.legal-content li {
  margin-bottom: 8px;
}

/* ── RESPONSIVE GRID UTILITIES ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.grid-2-split-left {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.grid-2-split-right {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

/* ── RESPONSIVE DESIGN ── */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nl, .btn-hdr { display: none; }
  .hbg { display: flex; }
  .svc-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .grid-2-split-left, .grid-2-split-right { grid-template-columns: 1fr; gap: 30px; }
  .proc-steps { grid-template-columns: 1fr; gap: 26px; }
  .proc-track, .proc-fill { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-divider:nth-child(2) { border-right: none; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .prod-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; width: 100%; }
  .hero-btns a { width: 100%; text-align: center; }
  .hero-logo svg { height: 70px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-divider { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 16px; margin-bottom: 16px; }
  .stat-divider:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .form-card { padding: 24px 16px; }
  .fg-grid { grid-template-columns: 1fr; }
  .fg-full { grid-column: span 1; }
  .option-grid { grid-template-columns: 1fr; }
}
