/* =============================================
   Skins4You – Master Stylesheet (calm edition)
   Author: Skins4You · Edgar Oganisjan
   Last update: 2026-05-08
   ============================================= */

/* ---------- Tokens ---------- */
:root{
  --bg-deep:#070709;
  --bg-elev:#0c0c10;
  --bg-card:rgba(255,255,255,.025);
  --bg-card-hi:rgba(255,255,255,.045);
  --line:rgba(255,255,255,.08);
  --line-strong:rgba(255,255,255,.16);
  --text:#f5f6f8;
  --text-mute:#9aa0aa;
  --text-soft:#c8ccd4;
  --brand:#2997ff;
  --brand-2:#bf5af2;
  --brand-3:#30d158;
  --grad:linear-gradient(135deg,#2997ff 0%,#bf5af2 100%);
  --grad-soft:linear-gradient(135deg,rgba(41,151,255,.18),rgba(191,90,242,.18));
  --radius-sm:12px;
  --radius:20px;
  --radius-lg:28px;
  --shadow-sm:0 4px 16px rgba(0,0,0,.35);
  --shadow:0 18px 48px rgba(0,0,0,.55);
  --shadow-lg:0 28px 70px rgba(0,0,0,.7);
  --font-head:'Space Grotesk',system-ui,-apple-system,sans-serif;
  --font-body:'Inter',system-ui,-apple-system,sans-serif;
  --maxw:1240px;
  --maxw-narrow:920px;
  --ease:cubic-bezier(.25,.1,.25,1);

  /* a11y switches */
  --a11y-font-scale:1;
  --a11y-letter-spacing:0;
  --a11y-line-height:1.65;
}

/* a11y modes */
html.a11y-contrast{
  --bg-deep:#000;
  --bg-card:rgba(255,255,255,.08);
  --line:rgba(255,255,255,.4);
  --line-strong:rgba(255,255,255,.6);
  --text:#fff;
  --text-mute:#fff;
  --text-soft:#fff;
  --brand:#7ec8ff;
}
html.a11y-readable{
  --a11y-letter-spacing:.02em;
  --a11y-line-height:1.85;
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; font-size:calc(100% * var(--a11y-font-scale)); }
body{
  background:var(--bg-deep);
  color:var(--text);
  font-family:var(--font-body);
  font-size:1rem;
  line-height:var(--a11y-line-height);
  letter-spacing:var(--a11y-letter-spacing);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img,svg,video{ max-width:100%; display:block; height:auto; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; background:transparent; border:none; color:inherit; }
ul{ list-style:none; }

/* Skip link */
.skip-link{
  position:absolute; left:-9999px; top:0;
  background:var(--brand); color:#fff;
  padding:10px 16px; border-radius:0 0 8px 0;
  z-index:99999; font-weight:600;
}
.skip-link:focus{ left:0; outline:3px solid #fff; }

/* Custom Focus */
:focus-visible{
  outline:2px solid var(--brand);
  outline-offset:3px;
  border-radius:4px;
}

/* ---------- Page Loader (one-time, calm) ---------- */
.page-loader{
  position:fixed; inset:0;
  background:var(--bg-deep);
  z-index:99998;
  display:grid; place-items:center;
  transition:opacity .5s var(--ease);
  will-change:opacity;
}
.page-loader.gone{ opacity:0; pointer-events:none; }
.page-loader-mark{
  width:64px; height:64px;
  border-radius:16px;
  background:var(--grad);
  display:grid; place-items:center;
  box-shadow:0 0 40px rgba(41,151,255,.25);
  opacity:.95;
}
.page-loader-mark svg{ width:34px; height:34px; }
.page-loader-text{
  position:absolute; bottom:30%;
  font-family:var(--font-head); font-weight:600;
  font-size:.78rem; letter-spacing:.4em;
  color:var(--text-mute);
  text-transform:uppercase;
  opacity:.6;
}

/* ---------- Ambient Background (very subtle, static) ---------- */
.ambient{ position:fixed; inset:0; z-index:-2; overflow:hidden; pointer-events:none; }
.orb{
  position:absolute; border-radius:50%;
  filter:blur(140px); opacity:.18;
}
.orb-1{
  top:-20%; left:-10%; width:55vw; height:55vw;
  background:radial-gradient(circle,var(--brand) 0%,transparent 70%);
}
.orb-2{
  bottom:-25%; right:-15%; width:65vw; height:65vw;
  background:radial-gradient(circle,var(--brand-2) 0%,transparent 70%);
}

body::before{
  content:""; position:fixed; inset:0; z-index:-1; pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  opacity:.55;
}

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5,h6{
  font-family:var(--font-head); font-weight:600;
  letter-spacing:-.02em; line-height:1.15; color:#fff;
}
h1{ font-size:clamp(2.4rem,5vw,4.4rem); font-weight:700; letter-spacing:-.03em; }
h2{ font-size:clamp(1.9rem,3.4vw,2.9rem); }
h3{ font-size:clamp(1.2rem,1.6vw,1.45rem); }
p{ color:var(--text-soft); }

.grad-text{
  background:linear-gradient(135deg,#fff 25%,#a5b4fc 95%);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; color:transparent;
}
.brand-text{
  background:var(--grad);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; color:transparent;
}

.cursor-blink::after{
  content:'|'; display:inline-block; margin-left:.05em; color:var(--brand);
  animation:blink 1.1s step-end infinite;
}
@keyframes blink{ 50%{opacity:0;} }

/* ---------- Layout primitives ---------- */
.container{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 24px; position:relative; z-index:1; }
.narrow{ max-width:var(--maxw-narrow); margin:0 auto; }
.section{ padding:clamp(70px,10vw,130px) 0; position:relative; }
.section-head{ text-align:center; margin-bottom:clamp(40px,6vw,72px); }
.kicker{
  display:inline-block; padding:6px 14px;
  border:1px solid var(--line); background:var(--bg-card);
  border-radius:999px; color:var(--brand);
  font-size:.78rem; font-weight:600;
  text-transform:uppercase; letter-spacing:.18em;
  margin-bottom:18px;
}
.section-head h2{ margin-bottom:14px; }
.section-head p{ max-width:640px; margin:0 auto; color:var(--text-mute); font-size:1.05rem; }

/* ---------- Glass Card (calm, subtle hover) ---------- */
.glass{
  background:var(--bg-card);
  backdrop-filter:blur(22px) saturate(140%);
  -webkit-backdrop-filter:blur(22px) saturate(140%);
  border:1px solid var(--line);
  border-top-color:var(--line-strong);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  transition:transform .4s var(--ease), border-color .25s, background .25s, box-shadow .4s var(--ease);
}
.glass.hov:hover{
  transform:translateY(-4px);
  border-color:var(--line-strong);
  background:var(--bg-card-hi);
  box-shadow:var(--shadow-lg);
}

/* ---------- Buttons (calm) ---------- */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 24px; border-radius:999px;
  font-weight:600; font-size:.95rem;
  border:1px solid transparent;
  transition:transform .25s var(--ease), background .25s, box-shadow .3s, border-color .25s;
  white-space:nowrap;
}
.btn-primary{
  background:var(--brand); color:#fff;
  border-color:rgba(255,255,255,.18);
  box-shadow:0 6px 18px rgba(41,151,255,.28);
}
.btn-primary:hover{
  background:#1a85e8;
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(41,151,255,.4);
}
.btn-ghost{
  background:transparent; color:#fff;
  border-color:var(--line-strong);
}
.btn-ghost:hover{
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.28);
  transform:translateY(-1px);
}
.btn .arrow{ transition:transform .25s var(--ease); }
.btn:hover .arrow{ transform:translateX(3px); }

/* Chip */
.chip{
  padding:6px 14px; background:var(--bg-card);
  border:1px solid var(--line); border-radius:999px;
  font-size:.82rem; color:var(--text-soft);
}
.tag-row{ display:flex; flex-wrap:wrap; gap:8px; margin-top:22px; }

/* ---------- Navigation ---------- */
.nav{
  position:fixed; top:0; left:0; right:0;
  height:72px; z-index:1000;
  background:rgba(7,7,9,.72);
  backdrop-filter:blur(24px) saturate(140%);
  -webkit-backdrop-filter:blur(24px) saturate(140%);
  border-bottom:1px solid transparent;
  transition:background .3s, border-color .3s, height .3s;
}
.nav.scrolled{
  background:rgba(7,7,9,.92);
  border-bottom-color:var(--line);
  height:64px;
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; height:100%; }
.brand{
  display:flex; align-items:center; gap:11px;
  font-family:var(--font-head); font-weight:700; font-size:1.15rem; color:#fff;
}
.brand-mark{
  width:34px; height:34px;
  background:var(--grad); border-radius:9px;
  display:grid; place-items:center;
  box-shadow:0 6px 16px rgba(41,151,255,.32);
}
.brand-mark svg{ width:18px; height:18px; }

.nav-links{ display:flex; gap:30px; align-items:center; }
.nav-links a{
  font-size:.92rem; font-weight:500;
  color:var(--text-mute);
  transition:color .25s;
  position:relative; padding:6px 0;
}
.nav-links a::after{
  content:""; position:absolute;
  left:50%; bottom:0; width:0; height:1.5px;
  background:var(--brand);
  transition:width .3s var(--ease), left .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active, .nav-links a:focus-visible{ color:#fff; }
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; left:0; }

.nav-actions{ display:flex; align-items:center; gap:14px; }
.lang-switch{
  display:flex; gap:2px;
  background:var(--bg-card); border:1px solid var(--line);
  border-radius:999px; padding:3px;
}
.lang-switch a{
  padding:6px 12px; border-radius:999px;
  font-size:.78rem; font-weight:600; color:var(--text-mute);
  transition:.25s;
}
.lang-switch a.active{ background:var(--grad); color:#fff; }
.lang-switch a:hover:not(.active){ color:#fff; }

.menu-btn{
  display:none; width:40px; height:40px;
  background:var(--bg-card); border:1px solid var(--line);
  border-radius:10px; color:#fff;
}

/* ---------- Hero ---------- */
.hero{
  padding-top:140px; padding-bottom:90px;
  min-height:88vh;
  display:flex; align-items:center;
  position:relative;
}
.hero-grid{
  display:grid; grid-template-columns:1.1fr .9fr;
  gap:60px; align-items:center;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 16px;
  background:var(--bg-card);
  border:1px solid var(--line);
  border-radius:999px;
  font-size:.82rem; color:var(--text-soft); font-weight:500;
  margin-bottom:26px;
}
.eyebrow .dot{
  width:7px; height:7px; border-radius:50%;
  background:var(--brand-3);
  box-shadow:0 0 8px var(--brand-3);
}

.hero p.lead{
  font-size:clamp(1.05rem,1.4vw,1.2rem);
  color:var(--text-soft);
  margin:24px 0 32px; max-width:560px;
}
.hero-tags{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:34px; }
.hero-cta{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:36px; }
.hero-meta{ display:flex; gap:28px; flex-wrap:wrap; font-size:.88rem; color:var(--text-mute); }
.hero-meta strong{ color:#fff; font-weight:600; }
.hero-meta li{ display:flex; align-items:center; gap:8px; }
.hero-meta svg{ width:16px; height:16px; color:var(--brand); }

.hero-visual{ position:relative; min-height:420px; }
.hero-card{
  position:relative; height:100%; min-height:420px;
  padding:36px;
  display:flex; flex-direction:column; justify-content:space-between;
  border-radius:var(--radius-lg);
  background:linear-gradient(160deg,rgba(41,151,255,.1),rgba(191,90,242,.06) 50%,rgba(255,255,255,0) 100%),var(--bg-card);
  border:1px solid var(--line);
  backdrop-filter:blur(22px); -webkit-backdrop-filter:blur(22px);
  box-shadow:var(--shadow-lg);
  overflow:hidden;
}
.hero-card h3{ font-size:1rem; color:var(--text-mute); font-weight:500; }
.hero-card .big-num{
  font-family:var(--font-head); font-weight:700;
  font-size:clamp(2.2rem,4vw,3.2rem);
  background:var(--grad);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; color:transparent;
  letter-spacing:-.02em;
}
.hero-card .chart-wrap{ margin:auto 0; }
.hero-card svg.chart{ width:100%; height:auto; }

.badge{
  position:absolute;
  padding:14px 20px;
  background:rgba(12,12,16,.85);
  border:1px solid var(--line-strong);
  border-radius:14px;
  backdrop-filter:blur(14px);
  box-shadow:var(--shadow);
}
.badge .lbl{ display:block; font-size:.72rem; color:var(--text-mute); margin-bottom:2px; }
.badge .val{ font-weight:700; font-size:1rem; }
.badge.b1{ top:18px; right:-12px; }
.badge.b2{ bottom:24px; left:-14px; }

/* ---------- Trust Marquee (slow, calm) ---------- */
.trust{
  padding:50px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:rgba(0,0,0,.2);
}
.trust-label{
  text-align:center; color:var(--text-mute);
  font-size:.78rem; text-transform:uppercase; letter-spacing:.2em;
  margin-bottom:30px; font-weight:600;
}
.marquee{ overflow:hidden; }
.marquee-track{
  display:flex; flex-wrap:wrap; gap:36px 56px;
  align-items:center; justify-content:center;
  width:100%; padding:6px 0;
}
.marquee-track > a{ display:inline-flex; align-items:center; }
.marquee-track a[aria-hidden="true"]{ display:none!important; }

.marquee-track img{
  max-height:42px; height:42px; width:auto;
  filter:grayscale(1) brightness(.95);
  opacity:.55; transition:opacity .3s, filter .3s;
}
.marquee-track a:hover img{ filter:grayscale(0); opacity:1; }

.marquee:hover .marquee-track{ animation-play-state:paused; }
@keyframes scroll{ to{ transform:translateX(-50%);} }

/* ---------- Service Cards (Bento) ---------- */
.bento{
  display:grid; grid-template-columns:repeat(12,1fr);
  gap:20px;
}
.bento-card{
  grid-column:span 6; padding:36px;
  position:relative; overflow:hidden;
  min-height:280px;
  display:flex; flex-direction:column;
}
.bento-card .ic{
  width:48px; height:48px; border-radius:12px;
  background:var(--grad-soft);
  border:1px solid var(--line);
  display:grid; place-items:center;
  margin-bottom:22px;
}
.bento-card .ic svg{ width:22px; height:22px; color:var(--brand); }
.bento-card h3{ margin-bottom:10px; }
.bento-card p{ color:var(--text-mute); font-size:.96rem; flex:1; }

.bento-card .more{
  display:inline-flex; align-items:center; gap:8px;
  margin-top:18px;
  font-size:.88rem; font-weight:600;
  color:var(--brand);
  transition:gap .25s var(--ease);
}
.bento-card:hover .more{ gap:12px; }

/* ---------- Products / Eigene Projekte ---------- */
.products{ display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.products.three{ grid-template-columns:repeat(3,1fr); }
.product{ padding:32px; position:relative; overflow:hidden; }
.product-head{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:20px; gap:14px;
}
.product-logo{
  width:56px; height:56px; border-radius:14px;
  display:grid; place-items:center;
  font-family:var(--font-head); font-weight:700; font-size:1.4rem; color:#fff;
  background:var(--grad);
  box-shadow:0 6px 18px rgba(41,151,255,.25);
  flex-shrink:0;
}
.product-logo.alt2{ background:linear-gradient(135deg,#30d158,#2997ff); box-shadow:0 6px 18px rgba(48,209,88,.25); }
.product-logo.alt3{ background:linear-gradient(135deg,#ff9f0a,#ff453a); box-shadow:0 6px 18px rgba(255,69,58,.25); }
.product-meta{ flex:1; }
.product-meta .role{
  font-size:.78rem; color:var(--brand);
  text-transform:uppercase; letter-spacing:.14em;
  margin-bottom:4px; font-weight:600;
}
.product-meta h3{ font-size:1.3rem; margin-bottom:0; }
.product .visit{
  width:38px; height:38px; border-radius:10px;
  background:var(--bg-card); border:1px solid var(--line);
  display:grid; place-items:center; transition:.25s;
}
.product:hover .visit{ background:var(--brand); border-color:var(--brand); color:#fff; }
.product .visit svg{ width:16px; height:16px; transition:.25s; }
.product:hover .visit svg{ color:#fff; }
.product p{ color:var(--text-mute); font-size:.94rem; margin-bottom:18px; }
.feature-list{ display:flex; flex-direction:column; gap:8px; }
.feature-list li{
  display:flex; align-items:center; gap:10px;
  font-size:.88rem; color:var(--text-soft);
}
.feature-list svg{ width:14px; height:14px; color:var(--brand-3); flex-shrink:0; }

/* ---------- References ---------- */
.refs-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:16px; }
.ref-card{
  padding:28px 20px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:14px; min-height:160px; transition:.3s var(--ease);
  text-decoration:none;
}
.ref-card img{
  aspect-ratio: attr(width) / attr(height);
  max-height:48px; max-width:140px;
  filter:grayscale(1) brightness(.9);
  opacity:.7; transition:.3s;
}
.ref-card:hover img{ filter:grayscale(0) brightness(1); opacity:1; }
.ref-card .name{ font-size:.78rem; color:var(--text-mute); font-weight:500; transition:.25s; }
.ref-card:hover .name{ color:#fff; }
.ref-card .meta{ font-size:.7rem; color:var(--text-mute); opacity:.7; }

/* ---------- Skills ---------- */
.skills-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:20px; }
.skill-group{ padding:30px; }
.skill-group h4{
  font-size:1.05rem;
  display:flex; justify-content:space-between; align-items:baseline;
  margin-bottom:24px;
  padding-bottom:14px; border-bottom:1px solid var(--line);
}
.skill-group h4 span:last-child{
  font-size:.7rem; color:var(--text-mute);
  text-transform:uppercase; letter-spacing:.14em; font-weight:500;
}
.skill-row{ margin-bottom:18px; }
.skill-row:last-child{ margin-bottom:0; }
.skill-label{
  display:flex; justify-content:space-between;
  font-size:.86rem; margin-bottom:8px; color:var(--text-soft);
}
.skill-label span:last-child{ font-weight:600; color:var(--brand); }
.skill-track{
  height:5px; background:rgba(255,255,255,.06);
  border-radius:3px; overflow:hidden;
}
.skill-fill{
  will-change: width;
  height:100%; width:0;
  background:var(--grad);
  border-radius:3px;
  transition:width 1.4s var(--ease);
}
.skill-cms{ grid-column:1/-1; }
.skill-cms-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:30px; }

/* Stats */
.stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:40px; }
.stat{ padding:28px 20px; text-align:center; }
.stat .v{
  font-family:var(--font-head); font-weight:700;
  font-size:clamp(1.8rem,3vw,2.4rem);
  background:var(--grad);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; color:transparent;
  display:block; margin-bottom:6px;
}
.stat .l{ font-size:.85rem; color:var(--text-mute); }

/* ---------- Process ---------- */
.process-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.process-card{ padding:32px 26px; position:relative; overflow:hidden; }
.step-num{
  font-family:var(--font-head); font-weight:700;
  font-size:3.4rem;
  background:var(--grad);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; color:transparent;
  line-height:1; margin-bottom:14px; opacity:.8;
}
.process-card h4{ font-size:1.05rem; margin-bottom:8px; }
.process-card p{ font-size:.88rem; color:var(--text-mute); }

/* ---------- Quotes ---------- */
.quotes{ display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr)); gap:20px; }
.quote{ padding:30px; display:flex; flex-direction:column; gap:18px; }
.quote .stars{ display:flex; gap:2px; color:#ffd60a; }
.quote .stars svg{ width:14px; height:14px; }
.quote blockquote{ font-size:.96rem; color:var(--text-soft); line-height:1.65; flex:1; }
.quote-foot{ display:flex; align-items:center; gap:12px; }
.quote-avatar{
  width:42px; height:42px; border-radius:50%;
  background:var(--grad);
  display:grid; place-items:center;
  font-weight:700; color:#fff; font-size:.95rem;
}
.quote-foot .who{ display:flex; flex-direction:column; }
.quote-foot .who strong{ font-weight:600; font-size:.92rem; }
.quote-foot .who span{ font-size:.78rem; color:var(--text-mute); }

/* ---------- FAQ ---------- */
.faq-list{ display:flex; flex-direction:column; gap:14px; }
.faq-item{ overflow:hidden; }
.faq-q{
  padding:22px 28px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  cursor:pointer; font-weight:600; font-size:1.02rem;
  transition:color .25s; color:#fff; width:100%; text-align:left;
}
.faq-q:hover{ color:var(--brand); }
.faq-toggle{
  width:30px; height:30px; flex-shrink:0;
  border-radius:50%;
  background:var(--bg-card); border:1px solid var(--line);
  display:grid; place-items:center;
  transition:.3s var(--ease);
  font-size:1.2rem; color:var(--text-soft);
}
.faq-item.open .faq-toggle{ transform:rotate(45deg); background:var(--grad); border-color:transparent; color:#fff; }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.faq-a-inner{ padding:0 28px 24px; color:var(--text-mute); font-size:.95rem; line-height:1.7; }

/* ---------- Contact ---------- */
.contact-wrap{ padding:48px; }
.contact-grid{ display:grid; grid-template-columns:1fr 1.1fr; gap:48px; }
.contact-info h3{ margin-bottom:16px; }
.contact-info p{ color:var(--text-mute); margin-bottom:30px; font-size:.96rem; }
.contact-row{
  display:flex; align-items:center; gap:14px;
  padding:14px 0; border-bottom:1px solid var(--line);
}
.contact-row:last-of-type{ border-bottom:none; }
.contact-ic{
  width:40px; height:40px; flex-shrink:0;
  border-radius:10px;
  background:var(--grad-soft);
  border:1px solid var(--line);
  display:grid; place-items:center;
}
.contact-ic svg{ width:18px; height:18px; color:var(--brand); }
.contact-row small{ display:block; font-size:.75rem; color:var(--text-mute); margin-bottom:2px; }
.contact-row .v{ font-weight:600; color:#fff; font-size:.95rem; }
.contact-row a.v:hover{ color:var(--brand); }

.form{ display:flex; flex-direction:column; gap:18px; }
.form .row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-group label{ display:block; font-size:.82rem; color:var(--text-soft); margin-bottom:6px; font-weight:500; }
.form-group input,.form-group textarea,.form-group select{
  width:100%; padding:13px 16px;
  background:var(--bg-card); border:1px solid var(--line);
  border-radius:12px; color:#fff;
  font-family:inherit; font-size:.95rem;
  transition:.25s;
}
.form-group textarea{ min-height:130px; resize:vertical; }
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{
  outline:none; border-color:var(--brand);
  box-shadow:0 0 0 3px rgba(41,151,255,.15);
  background:rgba(255,255,255,.04);
}
.form-group input::placeholder,.form-group textarea::placeholder{ color:#5d626d; }
.privacy-line{ font-size:.78rem; color:var(--text-mute); }
.privacy-line a{ color:var(--brand); text-decoration:underline; text-underline-offset:3px; }

.form-check{ display:flex; align-items:flex-start; gap:10px; font-size:.85rem; color:var(--text-soft); }
.form-check input{ margin-top:3px; accent-color:var(--brand); }


.form-group select{
  appearance:none; -webkit-appearance:none; -moz-appearance:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239aa0aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat:no-repeat;
  background-position:right 14px center;
  background-size:14px;
  padding-right:40px;
  cursor:pointer;
  color-scheme:dark;
}
.form-group select option{
  background-color:#0c0c10;
  color:#f5f6f8;
  padding:10px;
}
.form-group select option:checked,
.form-group select option:hover{
  background-color:#2997ff;
  color:#fff;
}

/* ---------- Footer ---------- */
footer{
  border-top:1px solid var(--line);
  padding:64px 0 32px;
  background:linear-gradient(180deg,transparent,rgba(0,0,0,.4));
}
.foot-grid{ display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
.foot-brand p{ font-size:.9rem; color:var(--text-mute); margin-top:14px; max-width:300px; }
.foot-col h5{
  font-family:var(--font-head); font-size:.85rem;
  text-transform:uppercase; letter-spacing:.16em;
  margin-bottom:18px; color:#fff;
}
.foot-col ul li{ margin-bottom:10px; }
.foot-col a{ font-size:.9rem; color:var(--text-mute); transition:color .25s; }
.foot-col a:hover{ color:#fff; }
.foot-bottom{
  padding-top:28px; border-top:1px solid var(--line);
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:16px;
  font-size:.85rem; color:var(--text-mute);
}
.foot-bottom .legal{ display:flex; gap:22px; flex-wrap:wrap; }
.foot-bottom a:hover{ color:#fff; }

/* ---------- Reveal Animations (calm, single fade-up) ---------- */
.reveal,[data-reveal]{
  opacity:0; transform:translateY(20px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-in,[data-reveal].is-in{ opacity:1; transform:translateY(0); }
[data-reveal="zoom"]{ transform:scale(.96); opacity:0; }
[data-reveal="zoom"].is-in{ transform:scale(1); opacity:1; }

/* Stagger children */
[data-stagger] > *{ opacity:0; transform:translateY(14px); transition:opacity .65s var(--ease), transform .65s var(--ease); }
[data-stagger].is-in > *{ opacity:1; transform:translateY(0); }
[data-stagger].is-in > *:nth-child(1){ transition-delay:.04s; }
[data-stagger].is-in > *:nth-child(2){ transition-delay:.10s; }
[data-stagger].is-in > *:nth-child(3){ transition-delay:.16s; }
[data-stagger].is-in > *:nth-child(4){ transition-delay:.22s; }
[data-stagger].is-in > *:nth-child(5){ transition-delay:.28s; }
[data-stagger].is-in > *:nth-child(6){ transition-delay:.34s; }
[data-stagger].is-in > *:nth-child(7){ transition-delay:.40s; }
[data-stagger].is-in > *:nth-child(8){ transition-delay:.44s; }
[data-stagger].is-in > *:nth-child(9){ transition-delay:.48s; }
[data-stagger].is-in > *:nth-child(n+10){ transition-delay:.52s; }

/* Counter */
[data-count]{ display:inline-block; }

/* ---------- Cookie Banner ---------- */
.cookie-banner{
  position:fixed; left:50%; bottom:30px;
  transform:translate3d(-50%,150%,0);
  width:calc(100% - 40px); max-width:560px;
  padding:24px;
  background:rgba(12,12,16,.92);
  backdrop-filter:blur(20px) saturate(140%);
  -webkit-backdrop-filter:blur(20px) saturate(140%);
  border:1px solid var(--line-strong);
  border-radius:18px;
  box-shadow:var(--shadow-lg);
  z-index:9990;
  opacity:0;
  pointer-events:none;
  will-change:transform,opacity;
  transition:opacity .4s var(--ease), transform .5s var(--ease);
  content-visibility:auto;
}
.cookie-banner.show{ opacity:1; pointer-events:auto; transform:translate3d(-50%,0,0); }
.cookie-banner h3{
  display:flex; align-items:center; gap:10px;
  font-size:1.05rem; margin-bottom:8px;
}
.cookie-banner h3 .ic{
  width:32px; height:32px; border-radius:9px;
  background:var(--grad); display:grid; place-items:center;
}
.cookie-banner h3 svg{ width:16px; height:16px; }
.cookie-banner p{ font-size:.88rem; color:var(--text-mute); margin-bottom:18px; line-height:1.55; }
.cookie-banner p a{ color:var(--brand); text-decoration:underline; text-underline-offset:2px; }
.cookie-actions{ display:flex; gap:8px; flex-wrap:wrap; }
.cookie-actions .btn{ flex:1; min-width:120px; justify-content:center; padding:11px 18px; font-size:.88rem; }

.cookie-settings{
  position:fixed; inset:0;
  z-index:9991;
  display:none; align-items:center; justify-content:center;
  padding:20px;
  background:rgba(0,0,0,.6);
  backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
}
.cookie-settings.show{ display:flex; }
.cookie-settings-panel{
  width:100%; max-width:540px; max-height:90vh; overflow-y:auto;
  background:rgba(12,12,16,.96);
  border:1px solid var(--line-strong);
  border-radius:20px;
  padding:36px;
  box-shadow:var(--shadow-lg);
  position:relative;
}
.cookie-settings-panel h3{ font-size:1.3rem; margin-bottom:6px; }
.cookie-settings-panel > p{ font-size:.9rem; color:var(--text-mute); margin-bottom:24px; }
.cookie-cat{
  padding:18px; margin-bottom:12px;
  border:1px solid var(--line); border-radius:14px;
  background:rgba(255,255,255,.02);
}
.cookie-cat-head{ display:flex; align-items:center; justify-content:space-between; gap:14px; margin-bottom:8px; }
.cookie-cat-head strong{ font-size:.98rem; color:#fff; }
.cookie-cat-head small{ font-size:.78rem; color:var(--brand); font-weight:600; }
.cookie-cat p{ font-size:.85rem; color:var(--text-mute); line-height:1.55; }
.toggle{
  position:relative; width:42px; height:24px;
  background:rgba(255,255,255,.1);
  border-radius:999px; transition:.3s;
  cursor:pointer; flex-shrink:0;
}
.toggle.on{ background:var(--grad); }
.toggle.locked{ background:rgba(48,209,88,.4); cursor:not-allowed; }
.toggle::after{
  content:""; position:absolute; top:3px; left:3px;
  width:18px; height:18px; border-radius:50%;
  background:#fff; transition:.3s var(--ease);
}
.toggle.on::after{ left:21px; }
.toggle.locked::after{ left:21px; }
.cookie-settings-actions{ display:flex; gap:10px; margin-top:20px; flex-wrap:wrap; }
.cookie-settings-actions .btn{ flex:1; min-width:150px; justify-content:center; }
.cookie-settings-close{
  position:absolute; top:18px; right:18px;
  width:34px; height:34px; border-radius:50%;
  background:var(--bg-card); border:1px solid var(--line);
  display:grid; place-items:center; color:#fff;
  transition:.25s;
}
.cookie-settings-close:hover{ background:rgba(255,255,255,.1); }

.cookie-fab{
  position:fixed; bottom:20px; left:20px;
  width:46px; height:46px; border-radius:50%;
  background:rgba(12,12,16,.85);
  backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px);
  border:1px solid var(--line-strong);
  display:none; align-items:center; justify-content:center;
  color:var(--brand); z-index:9985;
  box-shadow:var(--shadow);
  transition:.25s var(--ease);
}
.cookie-fab.show{ display:flex; }
.cookie-fab:hover{ border-color:var(--brand); }
.cookie-fab svg{ width:20px; height:20px; }

/* ---------- Accessibility Widget ---------- */
.a11y-fab{
  position:fixed; bottom:20px; right:20px;
  width:46px; height:46px; border-radius:50%;
  background:rgba(12,12,16,.85);
  backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px);
  border:1px solid var(--line-strong);
  display:flex; align-items:center; justify-content:center;
  color:var(--brand); z-index:9985;
  box-shadow:var(--shadow);
  transition:.25s var(--ease);
}
.a11y-fab:hover{ border-color:var(--brand); }
.a11y-fab.active{ background:var(--brand); color:#fff; }
.a11y-fab svg{ width:22px; height:22px; }

.a11y-panel{
  position:fixed; bottom:78px; right:20px;
  width:300px; max-height:calc(100vh - 110px); overflow-y:auto;
  padding:22px;
  background:rgba(12,12,16,.96);
  backdrop-filter:blur(20px) saturate(140%);
  -webkit-backdrop-filter:blur(20px) saturate(140%);
  border:1px solid var(--line-strong);
  border-radius:18px;
  box-shadow:var(--shadow-lg);
  z-index:9986;
  display:none; flex-direction:column; gap:14px;
}
.a11y-panel.show{ display:flex; }
.a11y-panel h4{
  font-size:1rem; display:flex; align-items:center; gap:10px;
}
.a11y-panel h4 .ic{
  width:30px; height:30px; border-radius:9px;
  background:var(--grad); display:grid; place-items:center;
}
.a11y-panel h4 svg{ width:14px; height:14px; }
.a11y-row{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 14px;
  background:rgba(255,255,255,.025);
  border:1px solid var(--line);
  border-radius:12px;
  gap:12px;
}
.a11y-row span{ font-size:.86rem; color:var(--text-soft); }
.a11y-row.btn-row{ cursor:pointer; transition:.25s; }
.a11y-row.btn-row:hover{ border-color:var(--brand); background:rgba(41,151,255,.06); }
.a11y-row.active{ border-color:var(--brand); background:rgba(41,151,255,.08); }
.a11y-row.active span{ color:#fff; font-weight:600; }
.a11y-mini-btn{
  width:24px; height:24px; border-radius:6px;
  background:var(--bg-card); border:1px solid var(--line);
  display:grid; place-items:center; color:#fff;
  font-size:.85rem; font-weight:700;
  transition:.2s;
}
.a11y-mini-btn:hover{ background:var(--brand); border-color:var(--brand); }
.a11y-fontsize{ display:flex; gap:6px; align-items:center; }
.a11y-fontsize-val{ min-width:34px; text-align:center; font-size:.85rem; font-weight:600; color:var(--brand); }
.a11y-reset{
  font-size:.78rem; color:var(--text-mute);
  text-align:center; padding:10px;
  border-top:1px solid var(--line);
  margin-top:6px;
  cursor:pointer; transition:color .25s;
}
.a11y-reset:hover{ color:var(--brand); }

html.a11y-motion .reveal,
html.a11y-motion [data-reveal],
html.a11y-motion [data-stagger] > *{ opacity:1!important; transform:none!important; }
html.a11y-motion *,
html.a11y-motion *::before,
html.a11y-motion *::after{
  animation-duration:.001ms!important;
  animation-iteration-count:1!important;
  transition-duration:.001ms!important;
}
@media(prefers-reduced-motion:reduce){
  .reveal,[data-reveal]{ opacity:1; transform:none; }
  *{ animation-duration:.01s!important; transition-duration:.01s!important; }
}

/* ---------- Page Hero (sub-pages, smaller) ---------- */
.page-hero{
  padding:130px 0 70px;
  text-align:center;
  position:relative;
}
.page-hero h1{ font-size:clamp(2.4rem,5vw,3.8rem); margin-bottom:16px; }
.page-hero p{ max-width:620px; margin:0 auto; color:var(--text-mute); font-size:1.05rem; }

.breadcrumb{
  display:flex; justify-content:center; gap:8px;
  font-size:.82rem; color:var(--text-mute);
  margin-bottom:22px;
}
.breadcrumb a:hover{ color:var(--brand); }
.breadcrumb .sep{ color:rgba(255,255,255,.2); }

/* ---------- Article (Blog) ---------- */
.posts-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:20px; }
.post{ padding:28px; }
.post .cat{
  font-size:.72rem; color:var(--brand); font-weight:600;
  text-transform:uppercase; letter-spacing:.16em;
  margin-bottom:10px;
}
.post h3{ margin-bottom:8px; }
.post p{ font-size:.92rem; color:var(--text-mute); margin-bottom:14px; }
.post .meta{ font-size:.78rem; color:var(--text-mute); }

/* ---------- Responsive ---------- */
@media(max-width:980px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ display:none; }
  .bento-card{ grid-column:span 12; }
  .products,.products.three{ grid-template-columns:1fr; }
  .process-grid{ grid-template-columns:repeat(2,1fr); }
  .stats{ grid-template-columns:repeat(2,1fr); }
  .contact-grid{ grid-template-columns:1fr; gap:32px; }
  .foot-grid{ grid-template-columns:1fr 1fr; gap:32px; }
  .form .row{ grid-template-columns:1fr; }
  .nav-links{
    position:fixed; top:64px; right:0; left:0;
    flex-direction:column; gap:0;
    background:rgba(7,7,9,.98);
    backdrop-filter:blur(20px);
    border-bottom:1px solid var(--line);
    padding:24px;
    transform:translateY(-110%);
    transition:transform .35s var(--ease);
  }
  .nav-links.open{ transform:translateY(0); }
  .nav-links a{ padding:14px 0; width:100%; border-bottom:1px solid var(--line); }
  .nav-links a:last-child{ border-bottom:none; }
  .nav-links a::after{ display:none; }
  .menu-btn{ display:grid; place-items:center; }
  .nav-cta{ display:none; }
}
@media(max-width:540px){
  .stats{ grid-template-columns:1fr 1fr; }
  .process-grid{ grid-template-columns:1fr; }
  .foot-grid{ grid-template-columns:1fr; gap:32px; }
  .contact-wrap{ padding:30px 22px; }
  .hero-cta{ flex-direction:column; }
  .hero-cta .btn{ width:100%; justify-content:center; }
  .hero-meta{ flex-direction:column; gap:10px; }
  .a11y-panel{ left:20px; right:20px; width:auto; }
  .cookie-banner{ left:20px; right:20px; transform:translateX(0) translateY(20px); width:auto; }
  .cookie-banner.show{ transform:translateX(0) translateY(0); }
}

/* Print */
@media print{
  .nav,.cookie-banner,.cookie-fab,.a11y-fab,.a11y-panel,.ambient,.page-loader{ display:none!important; }
  body{ background:#fff; color:#000; }
  *{ color:#000!important; background:transparent!important; box-shadow:none!important; }
}

html.a11y-links a:not(.btn):not(.brand):not(.lang-switch a):not(.faq-q):not(.skip-link){
  text-decoration:underline!important;
  text-underline-offset:3px;
  text-decoration-color:var(--brand);
}
html.a11y-readable{
  --font-body:'Inter',system-ui,sans-serif;
  --font-head:'Inter',system-ui,sans-serif;
}
html.a11y-readable *{ font-family:var(--font-body)!important; letter-spacing:.04em!important; line-height:1.85!important; }
