/* ============================================================
   DripBack — "Deep Field" Design System v2
   Premium B2B IT Agency · Dark mode · Electric Blue
   ============================================================ */

:root {
  /* Core palette */
  --void:      #000C1A;
  --base:      #030F1F;
  --surface:   #071528;
  --surface-2: #0C1C35;
  --surface-3: #112240;

  /* Borders */
  --border:       rgba(56, 189, 248, 0.09);
  --border-mid:   rgba(56, 189, 248, 0.18);
  --border-hot:   rgba(56, 189, 248, 0.40);

  /* Brand blues */
  --sky:       #38BDF8;
  --sky-dim:   #0EA5E9;
  --sky-deep:  #0369A1;
  --cyan:      #22D3EE;
  --indigo:    #818CF8;

  /* Service accent colours */
  --clr-it:       #38BDF8;
  --clr-wp:       #A78BFA;
  --clr-hosting:  #34D399;
  --clr-ai:       #F472B6;
  --clr-security: #FB923C;

  /* Text */
  --fg:       #F0F6FF;
  --fg-muted: #94A3B8;
  --fg-dim:   #4E6A8A;

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", ui-monospace, monospace;

  /* Layout */
  --radius:    12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container: 1200px;
  --gutter:    clamp(1.25rem, 4vw, 2.5rem);

  /* Motion */
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--void);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a {
  color: var(--sky);
  text-decoration: none;
  transition: color .2s var(--ease);
}
a:hover { color: var(--cyan); }
button { font-family: inherit; cursor: pointer; }
p { color: var(--fg-muted); line-height: 1.65; }

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--fg);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.5rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.75rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.35rem); font-weight: 700; letter-spacing: -0.02em; }

/* ============================================================
   Animated background
   ============================================================ */
.atmosphere {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  overflow: hidden;
}
.atmosphere::before {
  content: "";
  position: absolute;
  width: 900px; height: 600px;
  top: -200px; right: -200px;
  background: radial-gradient(ellipse, rgba(56,189,248,0.18) 0%, rgba(14,165,233,0.08) 40%, transparent 70%);
  animation: aurora-drift 18s ease-in-out infinite alternate;
  border-radius: 50%;
}
.atmosphere::after {
  content: "";
  position: absolute;
  width: 700px; height: 500px;
  bottom: -100px; left: -150px;
  background: radial-gradient(ellipse, rgba(129,140,248,0.14) 0%, rgba(34,211,238,0.06) 50%, transparent 70%);
  animation: aurora-drift 22s ease-in-out infinite alternate-reverse;
  border-radius: 50%;
}
@keyframes aurora-drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, -30px) scale(1.08); }
  100% { transform: translate(-20px, 20px) scale(0.96); }
}

/* Dot grid texture */
.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(circle, rgba(56,189,248,0.09) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
  opacity: 0.6;
}

/* ============================================================
   Eyebrow label
   ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 600; color: var(--sky);
  padding: .35rem .8rem;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 999px;
  font-family: var(--font-mono);
}
.eyebrow::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 10px var(--sky);
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: clamp(3.5rem, 6vw, 5.5rem) 0; position: relative; }
.section--tight { padding: clamp(2rem, 4vw, 3.5rem) 0; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(3, 15, 31, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav::after {
  content: "";
  position: absolute; bottom: -1px; left: var(--gutter); right: var(--gutter);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,0.3), transparent);
  pointer-events: none;
}
.nav__inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem var(--gutter);
  gap: 1rem;
}

/* Brand */
.brand {
  display: inline-flex; align-items: center; gap: .6rem;
  font-weight: 800; color: var(--fg); font-size: 1rem;
  letter-spacing: -0.02em; white-space: nowrap;
  flex-shrink: 0;
}
.brand__mark {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--sky-dim), var(--cyan));
  border-radius: 8px;
  display: grid; place-items: center;
  box-shadow: 0 0 20px rgba(56,189,248,0.4), 0 0 40px rgba(56,189,248,0.15);
}
.brand__mark svg { width: 16px; height: 16px; color: white; stroke-width: 2.4; }
.brand__suffix { color: var(--sky); }

/* Nav links */
.nav__menu {
  display: flex; align-items: center; gap: 1.8rem;
  list-style: none;
}
.nav__menu > li > a {
  color: var(--fg-muted); font-size: .875rem; font-weight: 500;
  transition: color .2s;
  padding: .3rem 0;
}
.nav__menu > li > a:hover { color: var(--fg); }

.nav__lang {
  padding: .3rem .65rem !important;
  border: 1px solid var(--border-mid) !important;
  border-radius: 6px !important;
  font-family: var(--font-mono) !important;
  font-size: .78rem !important;
  background: rgba(56,189,248,0.04) !important;
  transition: all .2s !important;
  color: var(--fg-muted) !important;
}
.nav__lang:hover {
  border-color: var(--border-hot) !important;
  color: var(--sky) !important;
  background: rgba(56,189,248,0.08) !important;
}

.nav__cta { margin-left: .5rem; }
.nav__burger { display: none; background: none; border: none; color: var(--fg); padding: .4rem; border-radius: 6px; }
.nav__burger:hover { background: rgba(255,255,255,0.05); }

@media (max-width: 900px) {
  .nav__menu { display: none; }
  .nav__burger { display: inline-flex; }
  .nav.is-open .nav__menu {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    padding: 1rem var(--gutter) 1.5rem;
    background: rgba(3,15,31,0.97);
    border-bottom: 1px solid var(--border);
    gap: .25rem;
  }
  .nav.is-open .nav__menu > li > a {
    padding: .7rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    display: block;
  }
  .nav.is-open .nav__cta { margin: 1rem 0 0; display: block; text-align: center; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.35rem;
  border-radius: 999px;
  font-size: .875rem; font-weight: 600; letter-spacing: .01em;
  border: 1px solid transparent;
  transition: all .3s var(--ease);
  white-space: nowrap; cursor: pointer;
  position: relative; overflow: hidden;
}
.btn--primary {
  background: linear-gradient(135deg, var(--sky-dim) 0%, var(--sky) 100%);
  color: #000C1A;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(56,189,248,0.3), 0 0 0 1px rgba(56,189,248,0.4) inset;
}
.btn--primary::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.btn--primary:hover {
  color: #000C1A;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(56,189,248,0.5), 0 0 0 1px rgba(56,189,248,0.5) inset;
}
.btn--primary:hover::after { opacity: 1; }

.btn--ghost {
  background: rgba(56, 189, 248, 0.05);
  border-color: var(--border-mid);
  color: var(--fg);
}
.btn--ghost:hover {
  background: rgba(56, 189, 248, 0.10);
  border-color: var(--border-hot);
  color: var(--fg);
  transform: translateY(-1px);
}
.btn--lg { padding: .95rem 1.75rem; font-size: .95rem; }
.btn .arrow { transition: transform .3s var(--ease); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Hero — Split layout
   ============================================================ */
.hero {
  min-height: 88vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  position: relative;
}
.hero__split {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.hero__content { max-width: 760px; width: 100%; text-align: center; }

/* Sub-page hero container */
.hero__inner {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.hero__pre {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-mono); font-size: .78rem;
  color: var(--sky); letter-spacing: .05em;
  margin-bottom: 1.5rem;
}
.hero__pre-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 12px var(--sky);
  animation: blink 2s ease-in-out infinite;
}
.hero h1 {
  background: linear-gradient(
    170deg,
    #FFFFFF   0%,
    #C8DCF0  40%,
    #38BDF8  80%,
    #22D3EE 100%
  );
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.4rem;
}
.hero__lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
}
.hero__cta {
  display: flex; flex-wrap: wrap; gap: .75rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.hero__badges {
  display: flex; flex-wrap: wrap; gap: .5rem;
  justify-content: center;
}
.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .28rem .65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(56,189,248,0.04);
  font-size: .72rem; color: var(--fg-dim);
  letter-spacing: .04em; font-family: var(--font-mono);
  transition: all .2s;
}
.badge svg { width: 10px; height: 10px; color: var(--sky); }

/* ============================================================
   Hero Visual — Terminal widget
   ============================================================ */
.hero__visual {
  position: relative;
  width: 100%;
  max-width: 580px;
}
.hero__terminal {
  background: rgba(7, 21, 40, 0.85);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(56,189,248,0.12),
    0 0 40px rgba(56,189,248,0.1);
  transition: transform .6s var(--ease);
  animation: float-terminal 6s ease-in-out infinite;
}
@keyframes float-terminal {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.term-bar {
  display: flex; align-items: center; gap: .5rem;
  padding: .85rem 1rem;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border);
}
.term-dot { width: 10px; height: 10px; border-radius: 50%; }
.term-dot--r { background: #FF5F57; }
.term-dot--y { background: #FEBC2E; }
.term-dot--g { background: #28C840; }
.term-title {
  margin-left: .5rem;
  font-family: var(--font-mono); font-size: .75rem;
  color: var(--fg-dim);
}
.term-body {
  padding: 1.2rem 1.25rem;
  font-family: var(--font-mono); font-size: .82rem;
  line-height: 2;
  min-height: 200px;
}
.t-line { display: flex; align-items: center; gap: .6rem; }
.t-dim   { color: var(--fg-dim); }
.t-green { color: #28C840; }
.t-cyan  { color: var(--cyan); }
.t-blue  { color: var(--sky); }
.t-orange{ color: #FB923C; }
.t-muted { color: var(--fg-dim); }
.t-value { color: var(--fg-muted); }
.t-cursor {
  display: inline-block;
  width: 8px; height: 1em;
  background: var(--sky);
  margin-left: 2px;
  animation: cursor-blink .8s step-end infinite;
  vertical-align: text-bottom;
}
@keyframes cursor-blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* Stats below terminal */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  margin-top: 1rem;
}
.stat {
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(7,21,40,0.6);
  backdrop-filter: blur(10px);
  transition: all .3s var(--ease);
}
.stat:hover { border-color: var(--border-mid); transform: translateY(-2px); }
.stat__num {
  font-size: 1.7rem; font-weight: 800; letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff, var(--sky));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat__label { font-size: .75rem; color: var(--fg-dim); margin-top: .15rem; }

/* ============================================================
   Trust bar
   ============================================================ */
.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(7, 21, 40, 0.5);
  backdrop-filter: blur(10px);
  padding: 1.25rem 0;
}
.trust__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
  display: flex; flex-wrap: wrap; gap: 1.5rem 3rem;
  align-items: center; justify-content: center;
}
.trust__item {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--fg-dim); font-weight: 500;
}
.trust__item svg { width: 14px; height: 14px; color: var(--sky); flex-shrink: 0; }

/* ============================================================
   Section headings
   ============================================================ */
.section__head {
  max-width: 700px;
  margin: 0 auto clamp(2rem, 3.5vw, 2.75rem);
  text-align: center;
}
.section__head--center {
  margin-left: auto; margin-right: auto; text-align: center;
}
.section__head .eyebrow { margin-bottom: 1.2rem; }
.section__head h2 {
  background: linear-gradient(160deg, #FFFFFF 0%, #94BFCF 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .85rem;
}
.section__head p {
  font-size: clamp(.95rem, 1.2vw, 1.05rem);
  max-width: 560px;
  line-height: 1.7;
  margin-left: auto; margin-right: auto;
}
.section__head--center p { margin-left: auto; margin-right: auto; }

/* ============================================================
   Bento grid — Services
   ============================================================ */
.bento {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(200px, auto);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--border);
  box-shadow: 0 0 0 1px var(--border);
}
.bento__card {
  position: relative; overflow: hidden;
  padding: 2rem;
  background: var(--surface);
  display: flex; flex-direction: column;
  transition: background .3s var(--ease);
}
.bento__card::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(
    350px 250px at var(--mx, 50%) var(--my, 0%),
    var(--card-glow, rgba(56,189,248,0.12)),
    transparent 60%
  );
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.bento__card:hover { background: var(--surface-2); }
.bento__card:hover::before { opacity: 1; }

.bento__card--xl { grid-column: span 4; grid-row: span 2; }
.bento__card--lg { grid-column: span 3; grid-row: span 2; }
.bento__card--md { grid-column: span 2; }
.bento__card--sm { grid-column: span 2; }

/* Service-specific glow tints */
.bento__card[data-service="it"]       { --card-glow: rgba(56,189,248,0.14); }
.bento__card[data-service="wp"]       { --card-glow: rgba(167,139,250,0.14); }
.bento__card[data-service="hosting"]  { --card-glow: rgba(52,211,153,0.14); }
.bento__card[data-service="ai"]       { --card-glow: rgba(244,114,182,0.14); }
.bento__card[data-service="security"] { --card-glow: rgba(251,146,60,0.14); }

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento__card--xl { grid-column: span 4; grid-row: auto; }
  .bento__card--lg { grid-column: span 4; grid-row: auto; }
  .bento__card--md { grid-column: span 2; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; border-radius: var(--radius-lg); }
  .bento__card,
  .bento__card--xl, .bento__card--lg,
  .bento__card--md, .bento__card--sm { grid-column: 1; }
}

.bento__icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: grid; place-items: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  border: 1px solid;
  transition: box-shadow .3s;
}
.bento__card[data-service="it"]       .bento__icon { color: var(--clr-it);       background: rgba(56,189,248,0.1);  border-color: rgba(56,189,248,0.2); }
.bento__card[data-service="wp"]       .bento__icon { color: var(--clr-wp);       background: rgba(167,139,250,0.1); border-color: rgba(167,139,250,0.2); }
.bento__card[data-service="hosting"]  .bento__icon { color: var(--clr-hosting);  background: rgba(52,211,153,0.1);  border-color: rgba(52,211,153,0.2); }
.bento__card[data-service="ai"]       .bento__icon { color: var(--clr-ai);       background: rgba(244,114,182,0.1); border-color: rgba(244,114,182,0.2); }
.bento__card[data-service="security"] .bento__icon { color: var(--clr-security); background: rgba(251,146,60,0.1);  border-color: rgba(251,146,60,0.2); }

.bento__card:hover[data-service="it"]       .bento__icon { box-shadow: 0 0 20px rgba(56,189,248,0.35); }
.bento__card:hover[data-service="wp"]       .bento__icon { box-shadow: 0 0 20px rgba(167,139,250,0.35); }
.bento__card:hover[data-service="hosting"]  .bento__icon { box-shadow: 0 0 20px rgba(52,211,153,0.35); }
.bento__card:hover[data-service="ai"]       .bento__icon { box-shadow: 0 0 20px rgba(244,114,182,0.35); }
.bento__card:hover[data-service="security"] .bento__icon { box-shadow: 0 0 20px rgba(251,146,60,0.35); }

.bento__icon svg { width: 20px; height: 20px; }
.bento__title { font-size: 1.1rem; font-weight: 700; color: var(--fg); margin: 0 0 .6rem; letter-spacing: -0.02em; }
.bento__desc { font-size: .9rem; color: var(--fg-muted); line-height: 1.65; flex: 1; }
.bento__price {
  margin-top: 1.2rem;
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-mono);
  font-size: .78rem; font-weight: 600;
  padding: .3rem .65rem;
  border-radius: 6px;
  border: 1px solid;
  width: fit-content;
}
.bento__card[data-service="it"]       .bento__price { color: var(--clr-it);       background: rgba(56,189,248,0.07);  border-color: rgba(56,189,248,0.18); }
.bento__card[data-service="wp"]       .bento__price { color: var(--clr-wp);       background: rgba(167,139,250,0.07); border-color: rgba(167,139,250,0.18); }
.bento__card[data-service="hosting"]  .bento__price { color: var(--clr-hosting);  background: rgba(52,211,153,0.07);  border-color: rgba(52,211,153,0.18); }
.bento__card[data-service="ai"]       .bento__price { color: var(--clr-ai);       background: rgba(244,114,182,0.07); border-color: rgba(244,114,182,0.18); }
.bento__card[data-service="security"] .bento__price { color: var(--clr-security); background: rgba(251,146,60,0.07);  border-color: rgba(251,146,60,0.18); }

/* ============================================================
   Process — horizontal timeline
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
}
.process::before {
  content: "";
  position: absolute;
  top: 2.2rem; left: 3rem; right: 3rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-mid) 20%, var(--border-mid) 80%, transparent);
}
.step {
  padding: 0 1.5rem;
  position: relative;
  text-align: center;
}
.step__num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-mid);
  display: grid; place-items: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-mono); font-size: .8rem; font-weight: 600;
  color: var(--sky);
  position: relative; z-index: 1;
  transition: all .3s var(--ease);
  box-shadow: 0 0 0 4px var(--void);
}
.step:hover .step__num {
  background: rgba(56,189,248,0.1);
  border-color: var(--border-hot);
  box-shadow: 0 0 20px rgba(56,189,248,0.25), 0 0 0 4px var(--void);
}
.step h3 { font-size: 1rem; margin-bottom: .5rem; }
.step p { font-size: .875rem; line-height: 1.6; }

@media (max-width: 780px) {
  .process { grid-template-columns: 1fr 1fr; }
  .process::before { display: none; }
  .step { padding: 1.5rem; text-align: left; }
  .step__num { margin: 0 0 1rem; }
}
@media (max-width: 480px) {
  .process { grid-template-columns: 1fr; }
}

/* ============================================================
   Why bento (reuse bento grid, different card style)
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--border);
}
.why-card {
  background: var(--surface);
  padding: 1.75rem 1.75rem;
  transition: background .3s;
  position: relative; overflow: hidden;
}
.why-card:hover { background: var(--surface-2); }
.why-card__icon {
  font-size: 1.5rem;
  margin-bottom: .85rem;
}
.why-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.why-card p  { font-size: .875rem; }

@media (max-width: 740px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA panel
   ============================================================ */
.cta-panel {
  position: relative; overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 4rem);
  border: 1px solid var(--border-mid);
  background: var(--surface);
  text-align: center;
  isolation: isolate;
}
.cta-panel::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(700px 300px at 80% 10%, rgba(56,189,248,0.2), transparent 60%),
    radial-gradient(500px 300px at 20% 90%, rgba(34,211,238,0.12), transparent 60%);
}
.cta-panel::after {
  content: "";
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--sky), transparent);
}
.cta-panel .eyebrow { margin-bottom: 1.2rem; }
.cta-panel h2 {
  background: linear-gradient(160deg, #fff 0%, var(--sky) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .85rem;
}
.cta-panel p { max-width: 500px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  padding: 4rem 0 2.5rem;
  border-top: 1px solid var(--border);
  background: rgba(3,15,31,0.7);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute; top: -1px; left: var(--gutter); right: var(--gutter);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,0.25), transparent);
}
.footer__grid {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; gap: 3rem;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  margin-bottom: 3rem;
}
@media (max-width: 780px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__col h4 {
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--fg-dim); margin: 0 0 1rem;
  font-family: var(--font-mono); font-weight: 500;
}
.footer__col ul { list-style: none; }
.footer__col li { margin: .6rem 0; }
.footer__col a { color: var(--fg-muted); font-size: .875rem; transition: color .2s; }
.footer__col a:hover { color: var(--fg); }
.footer__about { color: var(--fg-muted); font-size: .875rem; line-height: 1.65; max-width: 260px; }
.footer__contact-email {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1rem;
  font-family: var(--font-mono); font-size: .82rem;
  color: var(--sky) !important;
  border: 1px solid var(--border-mid);
  padding: .4rem .8rem; border-radius: 6px;
  transition: all .2s !important;
}
.footer__contact-email:hover {
  border-color: var(--border-hot) !important;
  background: rgba(56,189,248,0.06) !important;
}
.footer__bottom {
  max-width: var(--container); margin: 0 auto;
  padding: 2rem var(--gutter) 0;
  border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
  font-size: .8rem; color: var(--fg-dim);
}
.footer__bottom a { color: var(--fg-dim); }
.footer__bottom a:hover { color: var(--fg-muted); }

/* ============================================================
   Legal pages
   ============================================================ */
.legal {
  max-width: 820px; margin: 0 auto;
  padding: clamp(4rem, 8vw, 6rem) var(--gutter) clamp(3rem, 6vw, 5rem);
}
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1.5rem; }
.legal h2 {
  font-size: 1.25rem; margin-top: 2.5rem; margin-bottom: .8rem;
  color: var(--fg); padding-top: 1.5rem; border-top: 1px solid var(--border);
  font-weight: 700; letter-spacing: -0.02em;
}
.legal h2:first-of-type { border-top: none; padding-top: 0; }
.legal h3 { font-size: 1rem; margin-top: 1.5rem; color: var(--sky); font-weight: 600; }
.legal p, .legal li { color: var(--fg-muted); font-size: .95rem; line-height: 1.7; }
.legal ul, .legal ol { padding-left: 1.4rem; }
.legal strong { color: var(--fg); }
.legal__meta {
  font-size: .82rem; color: var(--fg-dim);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: .85rem 1.1rem; margin-bottom: 2.5rem;
  background: rgba(7,21,40,0.5);
  font-family: var(--font-mono);
}

/* ============================================================
   Contact form
   ============================================================ */
.form {
  display: grid; gap: 1rem;
  max-width: 560px; margin: 0 auto;
}
.form__row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 540px) { .form__row { grid-template-columns: 1fr; } }
.form label {
  font-size: .8rem; color: var(--fg-dim);
  margin-bottom: .35rem; display: block;
  font-family: var(--font-mono); letter-spacing: .03em;
}
.form input, .form textarea, .form select {
  width: 100%;
  padding: .8rem 1rem;
  background: rgba(7,21,40,0.8);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  color: var(--fg); font-size: .9rem; font-family: inherit;
  transition: all .2s var(--ease);
}
.form input::placeholder, .form textarea::placeholder { color: var(--fg-dim); }
.form input:focus, .form textarea:focus {
  outline: none; border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(56,189,248,0.15), 0 0 0 1px var(--sky);
  background: rgba(7,21,40,1);
}
.form textarea { resize: vertical; min-height: 130px; }
.form__check {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .83rem; color: var(--fg-muted); line-height: 1.5;
}
.form__check input { width: 16px; height: 16px; margin-top: .2rem; flex-shrink: 0; accent-color: var(--sky); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 640px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Services page price table
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--border);
}
.pricing-card {
  background: var(--surface);
  padding: 2rem;
  display: flex; flex-direction: column;
}
.pricing-card--featured {
  background: var(--surface-2);
  position: relative;
}
.pricing-card--featured::before {
  content: "Empfohlen";
  position: absolute; top: 0; right: 1.5rem;
  transform: translateY(-50%);
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #000;
  background: var(--sky);
  padding: .2rem .6rem; border-radius: 999px;
}
.pricing-name { font-size: .78rem; font-family: var(--font-mono); color: var(--sky); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .5rem; }
.pricing-price { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.04em; color: var(--fg); margin-bottom: .25rem; }
.pricing-price span { font-size: .9rem; font-weight: 400; color: var(--fg-muted); }
.pricing-desc { font-size: .875rem; color: var(--fg-muted); margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; }
.pricing-features { list-style: none; flex: 1; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .875rem; color: var(--fg-muted);
  padding: .4rem 0; border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: "✓";
  color: var(--sky); font-weight: 700; flex-shrink: 0; margin-top: .05rem;
}
.pricing-card .btn { margin-top: 1.5rem; width: 100%; justify-content: center; }

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 80ms; }
.stagger > *:nth-child(3) { transition-delay: 160ms; }
.stagger > *:nth-child(4) { transition-delay: 240ms; }
.stagger > *:nth-child(5) { transition-delay: 320ms; }
.stagger > *:nth-child(6) { transition-delay: 400ms; }

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

/* ============================================================
   Utilities
   ============================================================ */
::selection { background: rgba(56,189,248,0.3); color: white; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: rgba(56,189,248,0.25); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--sky-dim); }
