/* ==========================================================================
   Techcom24 — Design System
   Software · Apps · KI · Automatisierung
   Art direction: Tech-Studio. Space Grotesk / Inter / JetBrains Mono.
   Signature: mono code-comment labels + animated automation flow + Bavaria raute.
   ========================================================================== */

/* -----------------------------------------------------------------------
   1. Tokens
   ----------------------------------------------------------------------- */
:root {
  /* Luxus: Schwarz-Basis, Chrom/Weiß-Text, Gold-Akzent (einziges Theme) */
  --paper:        #09090B;
  --paper-2:      #0F0F13;
  --paper-3:      #17171C;
  --ink:          #F5F5F7;
  --ink-2:        #C7C9D1;
  --ink-3:        #8B8E97;
  --line:         #232329;
  --line-strong:  #34343C;

  /* Brand — Gold */
  --brand:        #D4AF37;
  --brand-strong: #C9A227;
  --brand-deep:   #EBCB6B;   /* helleres Gold für Links/Hover auf Schwarz */
  --brand-soft:   #1D1708;   /* dunkler Gold-Tint (Icon-Chips) */
  --brand-tint:   #14120B;   /* fast schwarzer Gold-Tint (Karten) */
  --glow:         rgba(212, 175, 55, .30);
  --gold-grad:    linear-gradient(177deg, #FBEFB6 0%, #EACA60 34%, #D3A83E 60%, #B0851F 100%);
  --gold-text:    linear-gradient(180deg, #FBEFB8, #E3C053 55%, #C79A1F);

  --bavaria:      #D4AF37;

  /* Surfaces / effects */
  --card:         #101014;
  --card-border:  #262630;
  --shadow-sm:    0 1px 2px rgba(0,0,0,.45);
  --shadow-md:    0 8px 30px rgba(0,0,0,.55);
  --shadow-lg:    0 28px 70px rgba(0,0,0,.65);
  --shadow-brand: 0 12px 30px rgba(212,175,55,.28);

  /* Type */
  --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Rhythm */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius:   16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* z-scale */
  --z-base: 1;
  --z-raise: 10;
  --z-nav: 30;
  --z-overlay: 40;
  --z-modal: 50;

  --ease: cubic-bezier(.22,.61,.36,1);
  color-scheme: dark;
}

/* -----------------------------------------------------------------------
   2. Reset & base
   ----------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background .4s var(--ease), color .4s var(--ease);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
::selection { background: var(--brand); color: #fff; }

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -.02em; color: var(--ink); }

/* -----------------------------------------------------------------------
   3. Layout helpers
   ----------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 11vw, 140px); position: relative; }
.section--tight { padding-block: clamp(56px, 8vw, 96px); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: .5ch;
  margin-bottom: 20px;
}
.eyebrow::before { content: "//"; opacity: .55; }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head h2 { font-size: clamp(30px, 4.4vw, 50px); }
.section-head p { margin-top: 18px; color: var(--ink-3); font-size: clamp(16px, 2vw, 19px); }

.lead { font-size: clamp(17px, 2vw, 20px); color: var(--ink-2); }
.muted { color: var(--ink-3); }
.center { text-align: center; }
.center .section-head { margin-inline: auto; }

/* -----------------------------------------------------------------------
   4. Buttons
   ----------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-weight: 600; font-size: 15.5px;
  letter-spacing: -.01em; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--gold-grad); color: #241905; font-weight: 700;
  border: 1px solid rgba(255,240,190,.5);
  text-shadow: 0 1px 0 rgba(255,246,214,.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), inset 0 -1px 0 rgba(120,86,14,.45), 0 8px 22px rgba(190,145,40,.28);
}
.btn-primary:hover {
  transform: translateY(-2px); filter: brightness(1.05) saturate(1.03);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), inset 0 -1px 0 rgba(120,86,14,.45), 0 14px 34px rgba(190,145,40,.42);
}
.btn-primary:active { transform: translateY(0); filter: brightness(.98); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.10); color: #fff; border: 1.5px solid rgba(255,255,255,.25); backdrop-filter: blur(8px); }
.btn-light:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.btn-lg { padding: 17px 32px; font-size: 16.5px; }
.btn-block { width: 100%; }

.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px; color: var(--brand);
  transition: gap .2s var(--ease);
}
.arrow-link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.arrow-link:hover { gap: 12px; }
.arrow-link:hover svg { transform: translateX(3px); }

/* -----------------------------------------------------------------------
   5. Navigation
   ----------------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -.02em; color: var(--ink); }
.brand__mark { width: 34px; height: 34px; flex: none; }
/* Logo without frame — the chrome wordmark sits directly on the dark shell
   (nav + footer are always dark, so it stays crisp in both themes). */
.brand { flex: 0 0 auto; }
.brand__logo { height: 26px; width: auto; max-width: none; flex: none; display: block; }
.footer__brand .brand__logo { height: 30px; }

/* ---- Dark chrome shell: nav + footer always dark, independent of theme ---- */
.nav {
  background: rgba(8, 8, 10, .72);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav.scrolled { background: rgba(8, 8, 10, .92); border-bottom-color: rgba(212,175,55,.16); }
.nav__links a { color: rgba(255,255,255,.82); }
.nav__links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav .icon-btn { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.18); }
.nav .icon-btn:hover { color: #fff; background: rgba(255,255,255,.10); border-color: rgba(212,175,55,.5); }
.nav .lang-toggle { border-color: rgba(255,255,255,.20); }
.nav .lang-toggle button { color: rgba(255,255,255,.62); }
.nav .lang-toggle button[aria-pressed="true"] { background: var(--gold-grad); color: #14100A; font-weight: 600; }

.footer { background: #0A0A0C; border-top: 1px solid rgba(212,175,55,.14); }
.footer__brand p { color: rgba(255,255,255,.60); }
.footer h4 { color: rgba(255,255,255,.48); }
.footer ul a { color: rgba(255,255,255,.75); }
.footer ul a:hover { color: var(--brand-deep); }
.footer__bottom { color: rgba(255,255,255,.55); border-top: 1px solid rgba(255,255,255,.08); }
.footer__social a { border-color: rgba(255,255,255,.16); color: rgba(255,255,255,.75); }
.footer__social a:hover { color: #14100A; border-color: var(--brand); background: var(--gold-grad); }
.brand b { color: var(--brand); }
/* Single luxury theme — no light/dark switch needed */
#theme-toggle { display: none !important; }

.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__links a {
  padding: 9px 13px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 500;
  color: var(--ink-2); transition: color .2s, background .2s; white-space: nowrap;
}
.nav__links a:hover { color: var(--ink); background: var(--paper-2); }

.nav__tools { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); color: var(--ink-2); border: 1px solid var(--line);
  transition: background .2s, color .2s, border-color .2s;
}
.icon-btn:hover { background: var(--paper-2); color: var(--ink); border-color: var(--line-strong); }
.icon-btn svg { width: 19px; height: 19px; }

.lang-toggle {
  display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-pill); overflow: hidden;
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 500;
}
.lang-toggle button { padding: 8px 12px; color: var(--ink-3); transition: background .2s, color .2s; }
.lang-toggle button[aria-pressed="true"] { background: var(--brand); color: #fff; }

.nav__cta { margin-left: 4px; }
.nav__burger { display: none; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  background: var(--paper);
  padding: 88px var(--gutter) 40px;
  transform: translateX(100%); transition: transform .35s var(--ease);
  display: flex; flex-direction: column; gap: 6px;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { padding: 16px 4px; font-family: var(--font-display); font-size: 24px; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 24px; }
.mobile-menu__close { position: absolute; top: 20px; right: var(--gutter); }

/* -----------------------------------------------------------------------
   6. Hero
   ----------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: #060608;
  color: #fff;
  padding-block: clamp(90px, 14vw, 170px);
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background: #060608 url("../img/hero-bg.jpg") center right / cover no-repeat;
}
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(52% 55% at 82% 4%, rgba(212,175,55,.14), transparent 60%),
    linear-gradient(90deg, #060608 0%, rgba(6,6,8,.96) 34%, rgba(6,6,8,.80) 66%, rgba(6,6,8,.9) 100%),
    linear-gradient(180deg, rgba(6,6,8,.5) 0%, rgba(6,6,8,.32) 45%, rgba(6,6,8,.82) 100%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 30%, transparent 78%);
}
.hero__glow {
  position: absolute; width: 520px; height: 520px; right: -80px; top: -120px; z-index: -1;
  background: radial-gradient(circle, var(--glow), transparent 70%);
  filter: blur(30px);
  animation: drift 14s ease-in-out infinite alternate;
}
@keyframes drift { to { transform: translate(-40px, 40px) scale(1.1); } }

.hero__inner { max-width: 860px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 8px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  font-size: 13.5px; color: rgba(255,255,255,.9); margin-bottom: 30px;
  backdrop-filter: blur(8px);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #E3C053; box-shadow: 0 0 0 4px rgba(212,175,55,.20); }
.hero h1 {
  color: #fff;
  font-size: clamp(38px, 6.6vw, 76px);
  line-height: 1.02; letter-spacing: -.035em;
}
.hero h1 .accent {
  background: linear-gradient(100deg, #FBEFB8, #E3C053 50%, #C79A1F);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub { margin-top: 26px; font-size: clamp(17px, 2.2vw, 21px); color: rgba(255,255,255,.72); max-width: 620px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__trust {
  margin-top: 42px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.10);
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 28px;
  font-size: 14.5px; color: rgba(255,255,255,.66);
}
.hero__trust .stars { color: #FFC245; letter-spacing: 2px; font-size: 16px; }
.hero__trust .sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.3); }
.trust-item { display: inline-flex; align-items: center; gap: 9px; }

/* Bavaria raute micro-mark */
.raute {
  display: inline-block; width: 26px; height: 16px; flex: none;
  background:
    linear-gradient(135deg, var(--bavaria) 0 25%, #fff 25% 50%, var(--bavaria) 50% 75%, #fff 75%);
  background-size: 13px 16px;
  border-radius: 2px; opacity: .95;
}

/* -----------------------------------------------------------------------
   7. Logos / trust strip
   ----------------------------------------------------------------------- */
.strip { border-block: 1px solid var(--line); background: var(--paper-2); }
.strip__inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px 44px; padding-block: 26px; }
.strip__item { display: inline-flex; align-items: center; gap: 10px; color: var(--ink-3); font-size: 14.5px; font-weight: 500; }
.strip__item svg { width: 20px; height: 20px; color: var(--brand); }

/* -----------------------------------------------------------------------
   8. Service cards (bento)
   ----------------------------------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  position: relative; background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 30px; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(120% 90% at 100% 0%, var(--glow), transparent 45%);
  opacity: 0; transition: opacity .3s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--brand) 40%, var(--card-border)); }
.card:hover::after { opacity: .5; }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-soft); color: var(--brand); margin-bottom: 22px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { color: var(--ink-3); font-size: 15.5px; line-height: 1.6; }
.card__more { margin-top: 18px; }
.card--wide { grid-column: span 2; }
.card--feature { background: linear-gradient(150deg, var(--brand-tint), var(--card)); }

/* -----------------------------------------------------------------------
   9. Spotlight — KI & Automatisierung (signature)
   ----------------------------------------------------------------------- */
.spotlight { background: #08080A; color: #fff; overflow: hidden; position: relative; }
.spotlight::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(55% 60% at 85% 20%, rgba(212,175,55,.20), transparent 60%);
  z-index: 0;
}
.spotlight .wrap { position: relative; z-index: 1; }
.spotlight .eyebrow { color: var(--brand-deep); }
.spotlight h2 { color: #fff; }
.spotlight__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.spotlight__text p { color: rgba(255,255,255,.72); margin-top: 18px; font-size: 18px; }
.usecases { margin-top: 32px; display: grid; gap: 12px; }
.usecase {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10);
  transition: background .25s, border-color .25s, transform .25s;
}
.usecase:hover { background: rgba(255,255,255,.09); border-color: rgba(212,175,55,.45); transform: translateX(4px); }
.usecase__ic { width: 40px; height: 40px; flex: none; border-radius: 10px; background: rgba(212,175,55,.14); color: #EBCB6B; display: grid; place-items: center; }
.usecase__ic svg { width: 20px; height: 20px; }
.usecase h4 { color: #fff; font-family: var(--font-body); font-weight: 600; font-size: 16px; }
.usecase p { margin: 4px 0 0; color: rgba(255,255,255,.62); font-size: 14px; }

/* Animated automation flow diagram */
.flow {
  position: relative; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12); padding: 28px;
  box-shadow: var(--shadow-lg);
}
.flow__title { font-family: var(--font-mono); font-size: 12.5px; color: rgba(255,255,255,.5); margin-bottom: 22px; display: flex; align-items: center; gap: 8px; }
.flow__title .dots { display: inline-flex; gap: 5px; }
.flow__title .dots i { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.flow__title .dots i:nth-child(1){ background:#FF5F57; } .flow__title .dots i:nth-child(2){ background:#FEBC2E; } .flow__title .dots i:nth-child(3){ background:#28C840; }
.flow__row { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 10px; }
.flow-node {
  border-radius: 14px; padding: 16px 12px; text-align: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
}
.flow-node svg { width: 24px; height: 24px; margin: 0 auto 8px; color: #EBCB6B; }
.flow-node span { font-size: 12.5px; color: rgba(255,255,255,.82); font-weight: 500; display: block; }
.flow-node.pulse { border-color: rgba(212,175,55,.6); box-shadow: 0 0 0 0 rgba(212,175,55,.5); animation: nodePulse 2.6s var(--ease) infinite; }
.flow-node.pulse svg { color: #F3D98A; }
@keyframes nodePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
  40% { box-shadow: 0 0 0 8px rgba(212,175,55,.16); }
}
.flow-arrow { color: rgba(212,175,55,.85); }
.flow-arrow svg { width: 22px; height: 22px; }
.flow-arrow .track { stroke-dasharray: 4 4; animation: dash 1.1s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -16; } }
.flow__foot {
  margin-top: 22px; padding-top: 18px; border-top: 1px dashed rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,.55);
}
.flow__foot .ok { color: #E3C053; display: inline-flex; align-items: center; gap: 6px; }
.flow__foot .ok svg { width: 15px; height: 15px; }

/* -----------------------------------------------------------------------
   10. Process steps
   ----------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; padding: 28px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--card-border); }
.step__num { font-family: var(--font-mono); font-size: 13px; color: var(--brand); font-weight: 600; }
.step h3 { font-size: 19px; margin: 14px 0 8px; }
.step p { color: var(--ink-3); font-size: 15px; }
.step__line { position: absolute; top: 40px; right: -9px; width: 18px; height: 2px; background: var(--line-strong); z-index: 1; }
.step:last-child .step__line { display: none; }

/* -----------------------------------------------------------------------
   11. Audience
   ----------------------------------------------------------------------- */
.audience { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.aud {
  padding: 26px; border-radius: var(--radius); border: 1px solid var(--card-border); background: var(--card);
  transition: transform .3s var(--ease), border-color .3s;
}
.aud:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--brand) 35%, var(--card-border)); }
.aud__tag { font-family: var(--font-mono); font-size: 12px; color: var(--brand); }
.aud h3 { font-size: 18px; margin: 10px 0 8px; }
.aud p { font-size: 14.5px; color: var(--ink-3); }

/* -----------------------------------------------------------------------
   12. Testimonials
   ----------------------------------------------------------------------- */
.testi-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 44px; }
.rating-agg { display: flex; align-items: center; gap: 16px; }
.rating-agg .score { font-family: var(--font-display); font-size: 54px; font-weight: 700; line-height: 1; color: var(--ink); }
.rating-agg .stars { color: #FFC245; font-size: 20px; letter-spacing: 2px; }
.rating-agg .meta { font-size: 14px; color: var(--ink-3); margin-top: 2px; }
.testi-grid { columns: 3; column-gap: 18px; }
.testi {
  break-inside: avoid; margin-bottom: 18px; padding: 26px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--card-border); box-shadow: var(--shadow-sm);
}
.testi .stars { color: #FFC245; letter-spacing: 2px; font-size: 15px; margin-bottom: 14px; }
.testi p { font-size: 15.5px; color: var(--ink-2); line-height: 1.62; }
.testi__who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testi__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold-grad); color: #14100A; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 15px; flex: none; }
.testi__who b { font-size: 14.5px; font-weight: 600; display: block; }
.testi__who span { font-size: 13px; color: var(--ink-3); }
.testi__note { text-align: center; margin-top: 8px; font-size: 13px; }

/* -----------------------------------------------------------------------
   13. About
   ----------------------------------------------------------------------- */
.about { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.about__card {
  position: relative; border-radius: var(--radius-lg); padding: 36px;
  background: linear-gradient(155deg, var(--brand-tint), var(--card));
  border: 1px solid var(--card-border); box-shadow: var(--shadow-md);
}
.about__portrait {
  width: 92px; height: 92px; border-radius: 22px; margin-bottom: 22px;
  background: var(--gold-grad);
  color: #14100A; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 34px;
  box-shadow: var(--shadow-brand);
}
.about__card h3 { font-size: 24px; }
.about__card .role { font-family: var(--font-mono); font-size: 13px; color: var(--brand); margin-top: 4px; }
.about__quote { margin-top: 20px; font-size: 16.5px; color: var(--ink-2); font-style: italic; }
.about__values { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.chip { font-size: 13px; font-weight: 500; padding: 7px 13px; border-radius: var(--radius-pill); background: var(--paper-2); border: 1px solid var(--line); color: var(--ink-2); }
.about__text h2 { font-size: clamp(28px, 4vw, 44px); }
.about__text p { margin-top: 18px; color: var(--ink-3); font-size: 17px; }
.stat-row { display: flex; gap: 36px; margin-top: 32px; flex-wrap: wrap; }
.stat b { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--brand); display: block; line-height: 1; }
.stat span { font-size: 13.5px; color: var(--ink-3); }

/* -----------------------------------------------------------------------
   14. IT-Service compact
   ----------------------------------------------------------------------- */
.itservice { background: var(--paper-2); }
.it-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(30px,5vw,64px); align-items: center; }
.it-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.it-item { display: flex; align-items: center; gap: 12px; padding: 15px 18px; background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius-sm); font-size: 15px; font-weight: 500; }
.it-item svg { width: 20px; height: 20px; color: var(--brand); flex: none; }

/* -----------------------------------------------------------------------
   15. FAQ
   ----------------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 24px 44px 24px 0; position: relative;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(17px, 2.2vw, 20px); color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 12px; height: 12px;
  border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3);
  transform: translateY(-70%) rotate(45deg); transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details p { padding: 0 44px 26px 0; color: var(--ink-3); font-size: 16px; }

/* -----------------------------------------------------------------------
   16. Contact
   ----------------------------------------------------------------------- */
.contact { position: relative; background: #08080A; color: #fff; overflow: hidden; }
.contact::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 20% 10%, rgba(212,175,55,.20), transparent 60%); }
.contact .wrap { position: relative; z-index: 1; }
.contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px,5vw,64px); }
.contact .eyebrow { color: var(--brand-deep); }
.contact h2 { color: #fff; font-size: clamp(30px,4.4vw,48px); }
.contact__intro { color: rgba(255,255,255,.72); margin-top: 18px; font-size: 18px; }
.contact__methods { margin-top: 34px; display: grid; gap: 12px; }
.cmethod { display: flex; align-items: center; gap: 14px; color: #fff; padding: 14px 16px; border-radius: var(--radius-sm); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10); transition: background .2s, border-color .2s; }
.cmethod:hover { background: rgba(255,255,255,.09); border-color: rgba(212,175,55,.45); }
.cmethod__ic { width: 42px; height: 42px; border-radius: 11px; background: rgba(212,175,55,.14); color: #EBCB6B; display: grid; place-items: center; flex: none; }
.cmethod__ic svg { width: 20px; height: 20px; }
.cmethod b { font-size: 15px; display: block; } .cmethod span { font-size: 13px; color: rgba(255,255,255,.6); }
.remote-note { margin-top: 20px; font-size: 13.5px; color: rgba(255,255,255,.55); display: flex; gap: 9px; align-items: flex-start; }
.remote-note svg { width: 16px; height: 16px; flex: none; margin-top: 2px; color: var(--brand-deep); }

.form { background: var(--card); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-lg); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line-strong); background: var(--paper); color: var(--ink);
  transition: border-color .2s, box-shadow .2s; font-size: 15.5px;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px var(--glow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; color: var(--ink-3); margin-bottom: 20px; }
.consent input { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--brand); }
.consent a { color: var(--brand); text-decoration: underline; }
.form__status { margin-top: 14px; font-size: 14px; text-align: center; }

/* -----------------------------------------------------------------------
   17. Footer
   ----------------------------------------------------------------------- */
.footer { background: var(--paper-2); border-top: 1px solid var(--line); padding-block: clamp(48px,7vw,80px) 32px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.footer__brand p { color: var(--ink-3); font-size: 14.5px; margin-top: 16px; max-width: 300px; }
.footer h4 { font-family: var(--font-body); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); margin-bottom: 16px; }
.footer ul { display: grid; gap: 10px; }
.footer ul a { font-size: 14.5px; color: var(--ink-2); transition: color .2s; }
.footer ul a:hover { color: var(--brand); }
.footer__bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: var(--ink-3); }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-2); transition: color .2s, border-color .2s, background .2s; }
.footer__social a:hover { color: var(--brand); border-color: var(--brand); background: var(--brand-soft); }
.footer__social svg { width: 18px; height: 18px; }

/* -----------------------------------------------------------------------
   18. Subpage hero / legal
   ----------------------------------------------------------------------- */
.subhero { background: #08080A; color: #fff; padding-block: clamp(72px,10vw,120px) clamp(48px,7vw,80px); position: relative; overflow: hidden; }
.subhero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(55% 60% at 80% 10%, rgba(212,175,55,.20), transparent 60%); }
.subhero .wrap { position: relative; z-index: 1; }
.subhero h1 { color: #fff; font-size: clamp(34px,5.5vw,60px); }
.subhero p { color: rgba(255,255,255,.72); margin-top: 18px; font-size: 18px; max-width: 620px; }
.breadcrumb { font-family: var(--font-mono); font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.breadcrumb a:hover { color: #fff; }

.prose { max-width: 780px; margin-inline: auto; }
.prose h2 { font-size: 26px; margin: 40px 0 14px; }
.prose h3 { font-size: 19px; margin: 28px 0 10px; }
.prose p, .prose li { color: var(--ink-2); font-size: 16px; line-height: 1.75; }
.prose p { margin-bottom: 14px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; display: grid; gap: 6px; }
.prose a { color: var(--brand); text-decoration: underline; }
.prose .placeholder { background: var(--brand-soft); border: 1px dashed var(--brand); border-radius: 6px; padding: 2px 8px; font-family: var(--font-mono); font-size: 13.5px; color: var(--brand-strong); }
.prose .callout { background: var(--paper-2); border: 1px solid var(--line); border-left: 3px solid var(--brand); border-radius: var(--radius-sm); padding: 18px 20px; margin: 24px 0; font-size: 15px; }

/* Detail page service blocks */
.detail-block { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.detail-block:last-child { border-bottom: none; }
.detail-block__ic { width: 48px; height: 48px; border-radius: 13px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; }
.detail-block__ic svg { width: 24px; height: 24px; }
.detail-block h3 { font-size: 22px; margin-bottom: 8px; }
.detail-block p { color: var(--ink-3); font-size: 16px; }
.detail-block ul { list-style: none; margin-top: 14px; display: grid; gap: 8px; }
.detail-block li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--ink-2); }
.detail-block li svg { width: 18px; height: 18px; color: var(--brand); flex: none; margin-top: 3px; }

/* -----------------------------------------------------------------------
   19. Reveal animation
   ----------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* -----------------------------------------------------------------------
   20. Responsive
   ----------------------------------------------------------------------- */
/* collapse nav to menu before links would crowd */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
}
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .card--wide { grid-column: span 2; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step__line { display: none; }
  .audience { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { columns: 2; }
  .spotlight__grid, .about, .it-inner, .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .brand__logo { height: 23px; }
  .footer__brand .brand__logo { height: 27px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  .cards, .audience, .steps, .it-list, .field-row { grid-template-columns: 1fr; }
  .testi-grid { columns: 1; }
  .card--wide { grid-column: span 1; }
  .flow__row { grid-template-columns: 1fr; gap: 14px; }
  .flow-arrow { transform: rotate(90deg); justify-self: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__trust .sep { display: none; }
  .lang-toggle { display: none; }
  .mobile-menu .lang-toggle { display: inline-flex; align-self: flex-start; margin-top: 20px; }
}
