/* =========================================================
   Kopp Engineering & Design — Stylesheet
   ========================================================= */
:root {
  --bg: #f5f7fb;
  --bg-2: #ffffff;
  --bg-3: #eef1f7;
  --ink: #0c1422;
  --ink-2: #2a3344;
  --muted: #5b6678;
  --line: #dde3ee;
  --line-2: #c8d2e3;
  --blue: #1d3df5;
  --blue-2: #4661ff;
  --blue-deep: #0a1f9c;
  --blue-tint: #e8edff;
  --accent: #1d3df5;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(13, 24, 56, 0.04), 0 1px 0 rgba(13, 24, 56, 0.02);
  --shadow-md: 0 6px 24px -8px rgba(13, 24, 56, 0.12), 0 2px 6px -2px rgba(13, 24, 56, 0.06);
  --shadow-lg: 0 24px 60px -24px rgba(13, 24, 56, 0.25), 0 8px 24px -8px rgba(13, 24, 56, 0.12);
  --grad-blue: linear-gradient(135deg, #1d3df5 0%, #4661ff 60%, #6f86ff 100%);
  --maxw: 1240px;
  --container-pad: clamp(20px, 4vw, 56px);
  --font-display: "Space Grotesk", "Inter Tight", system-ui, sans-serif;
  --font-body: "Manrope", "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: inherit;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* =========================================================
   NAV
========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 247, 251, 0.78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(245, 247, 251, 0.92);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__logo img {
  height: 38px;
  width: auto;
}
.nav__links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink-2);
  padding: 10px 16px;
  border-radius: 999px;
  position: relative;
  transition: color .25s, background .25s;
}
.nav__link:hover { color: var(--blue); background: var(--blue-tint); }
.nav__cta {
  font-weight: 600;
  font-size: 14.5px;
  background: var(--ink);
  color: white;
  padding: 11px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s, background .2s, box-shadow .2s;
}
.nav__cta:hover {
  background: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(29, 61, 245, .55);
}
.nav__cta svg { transition: transform .2s; }
.nav__cta:hover svg { transform: translateX(3px); }
.nav__burger { display: none; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--bg-2);
    border: 1px solid var(--line);
  }
  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 100% 16px auto 16px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    gap: 2px;
    align-items: stretch;
  }
  .nav.is-open .nav__link { padding: 12px 14px; }
}

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 110px) 0 clamp(80px, 11vw, 140px);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(29, 61, 245, 0.08), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(70, 97, 255, 0.06), transparent 60%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: -1; opacity: 0.55;
  background-image:
    linear-gradient(to right, rgba(29, 61, 245, .08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(29, 61, 245, .08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, black 30%, transparent 75%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(29, 61, 245, .15);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(29, 61, 245, .15); }
  50% { box-shadow: 0 0 0 8px rgba(29, 61, 245, 0); }
}

.hero h1 {
  font-size: clamp(38px, 5.6vw, 76px);
  font-weight: 600;
  margin: 22px 0 24px;
  letter-spacing: -0.035em;
}
.hero h1 .accent {
  font-style: italic;
  font-weight: 500;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: clamp(16px, 1.4vw, 18.5px);
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-body);
  transition: transform .2s ease, background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 8px 20px -8px rgba(12, 20, 34, .35);
}
.btn--primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(29, 61, 245, .55);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover {
  background: var(--bg-2);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn svg { transition: transform .2s; }
.btn:hover svg { transform: translateX(4px); }

.hero__stats {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat__num sup { font-size: 0.5em; color: var(--blue); font-weight: 500; margin-left: 2px; vertical-align: super; }
.stat__lbl {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 8px;
}

/* Hero visual — blueprint card */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 560px;
  justify-self: end;
  width: 100%;
}
@media (max-width: 980px) {
  .hero__visual { justify-self: stretch; max-width: 100%; aspect-ratio: 4/3; }
}
.blueprint {
  position: absolute; inset: 0;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-image:
    linear-gradient(to right, rgba(29, 61, 245, .07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(29, 61, 245, .07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.blueprint__corner {
  position: absolute;
  width: 14px; height: 14px;
  border: 1.5px solid var(--blue);
}
.blueprint__corner.tl { top: 18px; left: 18px; border-right: 0; border-bottom: 0; }
.blueprint__corner.tr { top: 18px; right: 18px; border-left: 0; border-bottom: 0; }
.blueprint__corner.bl { bottom: 18px; left: 18px; border-right: 0; border-top: 0; }
.blueprint__corner.br { bottom: 18px; right: 18px; border-left: 0; border-top: 0; }

.blueprint__title {
  position: absolute;
  top: 28px; left: 38px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}
.blueprint__title strong { color: var(--blue); font-weight: 600; }

.blueprint__svg {
  position: absolute; inset: 56px 28px 80px 28px;
  width: calc(100% - 56px); height: calc(100% - 136px);
}
.blueprint__svg .line { stroke: var(--blue); stroke-width: 1.5; fill: none; }
.blueprint__svg .line--thin { stroke: var(--blue); stroke-width: 0.8; opacity: 0.55; }
.blueprint__svg .dim { stroke: var(--ink-2); stroke-width: 0.7; fill: none; }
.blueprint__svg .dim-tx { font-family: var(--font-mono); font-size: 9px; fill: var(--ink-2); }
.blueprint__svg .fill-tint { fill: rgba(29, 61, 245, .08); }
.blueprint__svg .draw {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawIn 2.4s ease forwards;
}
.blueprint__svg .draw-2 { animation-delay: .25s; }
.blueprint__svg .draw-3 { animation-delay: .55s; }
@keyframes drawIn {
  to { stroke-dashoffset: 0; }
}

.blueprint__meta {
  position: absolute;
  bottom: 24px; left: 32px; right: 32px;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px dashed var(--line-2);
  padding-top: 10px;
}
.blueprint__meta b { display: block; color: var(--ink); font-weight: 600; font-size: 11.5px; letter-spacing: 0; text-transform: none; margin-top: 2px; }

.float-card {
  position: absolute;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  animation: floaty 6s ease-in-out infinite;
}
.float-card .ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--blue-tint);
  color: var(--blue);
  display: grid; place-items: center;
}
.float-card.fc-1 { top: -16px; right: -10px; animation-delay: 0s; }
.float-card.fc-2 { bottom: 70px; left: -28px; animation-delay: -2s; }
.float-card.fc-3 { bottom: -10px; right: 30px; animation-delay: -4s; }
@media (max-width: 560px) {
  .float-card.fc-1 { right: 0; }
  .float-card.fc-2 { left: 0; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-card .num { font-family: var(--font-mono); color: var(--blue); font-weight: 600; }

/* =========================================================
   SECTION SHELL
========================================================= */
section { position: relative; }
.section { padding: clamp(80px, 10vw, 130px) 0; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(40px, 6vw, 64px);
  flex-wrap: wrap;
}
.section-head__lead { max-width: 680px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.section-tag::before { content: "// "; opacity: .55; }
.section h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.section h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}
.section-desc {
  color: var(--muted);
  font-size: 17px;
  max-width: 540px;
  margin-top: 18px;
}

/* =========================================================
   SERVICES (Kompetenzen)
========================================================= */
.services {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 880px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services__grid { grid-template-columns: 1fr; } }

.svc {
  position: relative;
  background: var(--bg-2);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background .35s ease;
  overflow: hidden;
  min-height: 280px;
}
.svc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29, 61, 245, 0.06), rgba(70, 97, 255, 0.02));
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.svc:hover::before { opacity: 1; }
.svc__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.svc__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--blue-tint);
  color: var(--blue);
  display: grid; place-items: center;
  position: relative; z-index: 1;
  transition: transform .35s ease, background .35s ease;
}
.svc:hover .svc__icon { transform: scale(1.05) rotate(-3deg); background: var(--blue); color: white; }
.svc__icon svg { width: 26px; height: 26px; }

.svc h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  position: relative; z-index: 1;
}
.svc__desc {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  position: relative; z-index: 1;
}
.svc__arrow {
  margin-top: auto;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  transition: transform .3s ease, background .3s ease, color .3s, border-color .3s;
  position: relative; z-index: 1;
}
.svc:hover .svc__arrow {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  transform: rotate(-45deg);
}

/* =========================================================
   INDUSTRIES (Branchen)
========================================================= */
.industries {
  background: var(--bg);
  overflow: hidden;
}
.marquee {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  animation: scroll-x 38s linear infinite;
  width: max-content;
}
.industries:hover .marquee { animation-play-state: paused; }
@keyframes scroll-x {
  to { transform: translateX(calc(-50% - 14px)); }
}
.ind-card {
  position: relative;
  flex: 0 0 320px;
  height: 380px;
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.ind-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.ind-card__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .12em;
}
.ind-card__media {
  position: absolute;
  inset: 60px 24px 100px 24px;
  background-color: var(--bg-3);
  background-image:
    repeating-linear-gradient(135deg, rgba(29, 61, 245, .12) 0 1px, transparent 1px 12px);
  border-radius: 12px;
  overflow: hidden;
  display: grid; place-items: center;
}
.ind-card__media::before {
  content: attr(data-label);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 10px;
  background: var(--bg-2);
  border-radius: 6px;
  border: 1px dashed var(--line-2);
}
.ind-card__title {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}
.ind-card__title::after {
  content: '';
  width: 14px; height: 14px;
  border-top: 2px solid var(--ink); border-right: 2px solid var(--ink);
  transform: rotate(45deg);
  transition: color .25s, border-color .25s, transform .3s;
}
.ind-card:hover .ind-card__title::after { border-color: var(--blue); transform: rotate(45deg) translate(3px, -3px); }

/* =========================================================
   BENEFITS
========================================================= */
.benefits {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 880px) { .benefits__grid { grid-template-columns: 1fr; } }

.benefit {
  position: relative;
  padding: 36px 32px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s;
  overflow: hidden;
}
.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.benefit__viz {
  height: 160px;
  border-radius: 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.benefit__viz svg { width: 100%; height: 100%; }

.benefit__label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--blue);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.benefit h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.benefit__text {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

/* benefit viz styles */
.viz-line { stroke: var(--blue); fill: none; }
.viz-axis { stroke: var(--line-2); }
.viz-dot { fill: var(--blue); }
.viz-text { font-family: var(--font-mono); font-size: 9px; fill: var(--muted); letter-spacing: .05em; }
.viz-tint { fill: rgba(29, 61, 245, .1); }

/* =========================================================
   PROCESS / TIMELINE
========================================================= */
.process { background: var(--bg); }
.process__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
@media (max-width: 880px) { .process__list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process__list { grid-template-columns: 1fr; } }
.process__step {
  position: relative;
  padding: 26px 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.process__step:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.process__step .step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--blue);
  letter-spacing: .1em;
  font-weight: 600;
}
.process__step h4 {
  font-size: 18px;
  font-family: var(--font-display);
  font-weight: 600;
}
.process__step p { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* =========================================================
   CTA
========================================================= */
.cta {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--bg);
}
.cta__card {
  position: relative;
  background: var(--ink);
  color: white;
  border-radius: var(--radius-lg);
  padding: clamp(48px, 7vw, 88px);
  overflow: hidden;
  isolation: isolate;
}
.cta__card::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background-image:
    radial-gradient(900px 500px at 100% -10%, rgba(70, 97, 255, .55), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, rgba(29, 61, 245, .45), transparent 60%);
}
.cta__card::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 50%, transparent 85%);
}
.cta__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) { .cta__inner { grid-template-columns: 1fr; } }
.cta__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 18px;
}
.cta__tag::before { content: "// "; opacity: .55; }
.cta h2 {
  color: white;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.cta h2 em { font-style: italic; color: #9aaeff; font-weight: 500; }
.cta__sub {
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
  margin-top: 18px;
  max-width: 540px;
}
.cta__btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.cta__btns .btn--primary {
  background: white; color: var(--ink);
}
.cta__btns .btn--primary:hover { background: var(--blue); color: white; }
.cta__btns .btn--ghost { border-color: rgba(255, 255, 255, .25); color: white; }
.cta__btns .btn--ghost:hover { background: rgba(255, 255, 255, .08); border-color: white; }

.cta__panel {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  backdrop-filter: blur(6px);
}
.cta__panel .row {
  display: flex; align-items: center; gap: 14px;
  font-size: 14.5px;
}
.cta__panel .row svg { color: #9aaeff; flex-shrink: 0; }
.cta__panel .row strong { font-weight: 600; }
.cta__panel .row a { transition: color .2s; }
.cta__panel .row a:hover { color: #c8d3ff; }
.cta__panel .sep { height: 1px; background: rgba(255,255,255,.1); }

/* =========================================================
   CONTACT
========================================================= */
.contact {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 880px) { .contact__inner { grid-template-columns: 1fr; } }

.form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-2);
  color: var(--ink);
  width: 100%;
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(29, 61, 245, .12);
}
.field textarea { resize: vertical; min-height: 120px; }
.form__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-top: 8px; }
.form__hint { font-size: 12.5px; color: var(--muted); }
.form__success {
  display: none;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--blue-tint);
  border: 1px solid #c5d0ff;
  color: var(--blue-deep);
  font-size: 14px;
}
.form.is-sent .form__success { display: block; }
.form.is-sent .form__fields { display: none; }

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--bg);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.info-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.info-card .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue-tint);
  color: var(--blue);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.info-card__h {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.info-card a, .info-card span { display: block; font-size: 15.5px; color: var(--ink); font-weight: 500; }
.info-card a { transition: color .2s; }
.info-card a:hover { color: var(--blue); }

.map {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  height: 220px;
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
  background-image:
    linear-gradient(to right, rgba(29, 61, 245, .08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(29, 61, 245, .08) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 60%, rgba(29, 61, 245, .12), transparent 70%);
}
.map__pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  width: 32px; height: 40px;
  display: grid; place-items: center;
}
.map__pin::before {
  content: '';
  position: absolute;
  bottom: -12px;
  width: 24px; height: 8px;
  border-radius: 50%;
  background: rgba(29, 61, 245, .2);
  filter: blur(2px);
  animation: pinPulse 2s ease-in-out infinite;
}
@keyframes pinPulse {
  0%, 100% { transform: scale(1); opacity: .5; }
  50% { transform: scale(1.6); opacity: 0; }
}
.map__pin svg { color: var(--blue); filter: drop-shadow(0 4px 10px rgba(29, 61, 245, .4)); }
.map__label {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg-2);
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid var(--line);
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 60px 0 24px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 720px) { .footer__top { grid-template-columns: 1fr 1fr; } }
.footer__logo { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: white; letter-spacing: -0.02em; }
.footer__logo em { font-style: italic; color: #9aaeff; font-weight: 500; }
.footer__tag { margin-top: 12px; font-size: 14px; color: rgba(255,255,255,.55); }
.footer__col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer__col a {
  display: block;
  font-size: 14.5px;
  padding: 5px 0;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.footer__col a:hover { color: white; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  letter-spacing: .05em;
}

/* =========================================================
   REVEAL
========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.21,.8,.31,1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }
.reveal[data-delay="6"] { transition-delay: .48s; }

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