/* ============================================================
   AtmosTK — style.css
   Design: Dark premium gamer — minimal borders, SVG icons,
   CHF currency, atmostk.com, Suisse Valais
   ============================================================ */

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette */
  --bg:          #080810;
  --bg-2:        #0c0c18;
  --bg-3:        #121220;
  --surface:     #14142a;
  --surface-2:   #1a1a30;
  --surface-3:   #1e1e38;

  /* Accents */
  --cyan:        #00c8f0;
  --cyan-dim:    rgba(0,200,240,.12);
  --cyan-glow:   0 0 30px rgba(0,200,240,.3);
  --violet:      #7c3aed;
  --violet-dim:  rgba(124,58,237,.12);
  --violet-glow: 0 0 30px rgba(124,58,237,.35);
  --green:       #00d68f;
  --orange:      #f59e0b;
  --red:         #ef4444;

  /* Semantic */
  --border:      rgba(255,255,255,.06);
  --border-glow: rgba(0,200,240,.2);
  --text:        #eaeaf4;
  --text-muted:  #7a7a9a;
  --text-dim:    #4a4a6a;

  /* UI */
  --radius:      8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --shadow:      0 12px 40px rgba(0,0,0,.6);
  --shadow-glow: 0 8px 32px rgba(0,200,240,.18);

  --font-body:   'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono:   'JetBrains Mono', 'Consolas', monospace;
  --transition:  .2s cubic-bezier(.4,0,.2,1);
  --nav-h:       68px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────*/
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; letter-spacing: -.015em; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: .95rem; font-weight: 600; }
p { color: var(--text-muted); line-height: 1.7; }
a { color: var(--cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }
strong { color: var(--text); }
code { font-family: var(--font-mono); font-size: .82em; background: rgba(255,255,255,.07); padding: 2px 7px; border-radius: 4px; }

/* ─── LAYOUT ────────────────────────────────────────────────*/
.container        { width: min(1200px, 100% - 3rem); margin-inline: auto; }
.container--narrow{ width: min(720px,  100% - 3rem); }
.text-center      { text-align: center; }
.mt-2  { margin-top: 1.5rem; }
.mt-3  { margin-top: 2.5rem; }
.mt-4  { margin-top: 3.5rem; }
.mb-2  { margin-bottom: 1.5rem; }
.mb-3  { margin-bottom: 2.5rem; }

/* ─── BUTTONS ───────────────────────────────────────────────*/
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600; font-size: .9rem; font-family: inherit;
  cursor: pointer; border: none;
  transition: all var(--transition);
  white-space: nowrap; text-decoration: none;
  letter-spacing: .01em;
}
.btn--primary {
  background: var(--cyan);
  color: #060610;
  box-shadow: 0 0 20px rgba(0,200,240,.25);
}
.btn--primary:hover { filter: brightness(1.1); transform: translateY(-1px); color: #060610; box-shadow: 0 0 30px rgba(0,200,240,.45); }
.btn--outline {
  background: transparent;
  box-shadow: inset 0 0 0 1.5px var(--cyan);
  color: var(--cyan);
}
.btn--outline:hover { background: var(--cyan-dim); }
.btn--ghost {
  background: rgba(255,255,255,.05);
  color: var(--text);
}
.btn--ghost:hover { background: rgba(255,255,255,.09); }
.btn--danger { background: var(--red); color: #fff; }
.btn--danger:hover { filter: brightness(1.1); }
.btn--lg  { padding: .85rem 2rem; font-size: 1rem; }
.btn--sm  { padding: .4rem .9rem; font-size: .82rem; }
.btn--xs  { padding: .25rem .6rem; font-size: .76rem; }
.btn--full{ width: 100%; justify-content: center; }

/* ─── BADGE ─────────────────────────────────────────────────*/
.badge {
  display: inline-block; padding: .2rem .7rem;
  background: var(--cyan-dim); color: var(--cyan);
  border-radius: 99px; font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.badge--lg { padding: .3rem 1rem; font-size: .85rem; }

/* ─── FLASH ─────────────────────────────────────────────────*/
.flash {
  padding: 1rem 1.5rem; margin: 1rem auto;
  width: min(800px, 100% - 3rem);
  border-radius: var(--radius);
  font-weight: 600; text-align: center;
  animation: fadeDown .3s ease;
}
.flash--success { background: rgba(0,214,143,.1); border-left: 3px solid var(--green); color: var(--green); }
.flash--error   { background: rgba(239,68,68,.1);  border-left: 3px solid var(--red);  color: var(--red); }
@keyframes fadeDown { from { opacity:0; transform:translateY(-8px) } to { opacity:1; transform:none } }

/* ─── NAVBAR ────────────────────────────────────────────────*/
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(8,8,16,.8);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(8,8,16,.95);
  box-shadow: 0 1px 0 var(--border);
}
.navbar .container {
  display: flex; align-items: center; gap: 2rem; height: 100%;
}
.navbar__logo {
  display: flex; align-items: center; gap: .65rem;
  font-size: 1.3rem; font-weight: 800; color: var(--text);
  flex-shrink: 0; text-decoration: none;
}
.navbar__logo img { width: 30px; height: 30px; object-fit: contain; }
.navbar__logo em { color: var(--cyan); font-style: normal; }
.navbar__links {
  display: flex; gap: 0; list-style: none;
  margin: 0 auto;
}
.navbar__links a {
  display: block;
  color: var(--text-muted); font-size: .88rem; font-weight: 500;
  padding: .4rem 1rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.navbar__links a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.navbar__cta { flex-shrink: 0; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .4rem;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HERO ──────────────────────────────────────────────────*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 4rem) 0 5rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 30%, rgba(124,58,237,.1) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 70%, rgba(0,200,240,.07) 0%, transparent 50%),
    var(--bg);
}
.hero__grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,200,240,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,200,240,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero__particles { position: absolute; inset: 0; pointer-events: none; }
.hero__inner {
  position: relative; z-index: 1;
  text-align: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-bottom: 1.75rem;
  padding: .35rem 1rem .35rem .75rem;
  background: var(--cyan-dim);
  border-radius: 99px;
  color: var(--cyan); font-size: .82rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
}
.hero__eyebrow svg { width: 14px; height: 14px; }
.hero__title {
  background: linear-gradient(160deg, #ffffff 0%, rgba(255,255,255,.7) 50%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 1.5rem;
}
.hero__subtitle {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 580px; margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.hero__scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.2} 50%{opacity:.8} }

/* ─── SECTIONS ──────────────────────────────────────────────*/
.section { padding: 6rem 0; }
.section--dark { background: var(--bg-2); }
.section--alt  { background: var(--bg-3); }
.section__header { text-align: center; margin-bottom: 4rem; }
.section__eyebrow {
  display: inline-block; margin-bottom: .75rem;
  color: var(--cyan); font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .15em;
}
.section__header h2 { margin-bottom: 1rem; }
.section__header p  { color: var(--text-muted); font-size: 1rem; max-width: 520px; margin: 0 auto; }

/* ─── SERVICES ──────────────────────────────────────────────*/
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  transition: background var(--transition), box-shadow var(--transition);
  position: relative;
}
.service-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
}
.service-card:hover { background: var(--surface-2); }
.service-card--highlight {
  background: linear-gradient(145deg, var(--surface-2), rgba(124,58,237,.08));
}
.service-card--highlight:hover {
  background: linear-gradient(145deg, var(--surface-3), rgba(124,58,237,.14));
}
.service-card__icon {
  width: 48px; height: 48px; margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--cyan-dim);
  border-radius: 12px;
  color: var(--cyan);
}
.service-card__icon svg { width: 24px; height: 24px; }
.service-card h3 { margin-bottom: .6rem; color: var(--text); font-size: 1.1rem; }
.service-card p  { font-size: .88rem; line-height: 1.7; margin-bottom: 1.25rem; }
.service-card__link { font-size: .85rem; font-weight: 600; color: var(--cyan); display: inline-flex; align-items: center; gap: .3rem; }
.service-card__link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.service-card:hover .service-card__link svg { transform: translateX(3px); }

/* ─── GAMES GRID ────────────────────────────────────────────*/
.games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1.25rem;
}
.games__grid--large {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.game-card {
  display: block; text-decoration: none;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.game-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}
.game-card__img { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--surface-2); }
.game-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.game-card:hover .game-card__img img { transform: scale(1.07); }
.game-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 1rem;
  opacity: 0; transition: opacity var(--transition);
}
.game-card:hover .game-card__overlay { opacity: 1; }
.game-card__overlay span {
  color: var(--cyan); font-weight: 700; font-size: .85rem;
  display: flex; align-items: center; gap: .4rem;
}
.game-card__overlay svg { width: 14px; height: 14px; }
.game-card__info { padding: 1rem; }
.game-card__info h4 { font-size: .9rem; color: var(--text); margin-bottom: .35rem; }
.game-card__info h3 { font-size: 1.05rem; color: var(--text); margin-bottom: .4rem; }
.game-card__desc { font-size: .82rem; color: var(--text-muted); margin: .4rem 0; }
.game-card__cta  { font-size: .8rem; color: var(--cyan); font-weight: 600; }

/* ─── PAGE HERO ─────────────────────────────────────────────*/
.page-hero {
  padding: calc(var(--nav-h) + 3.5rem) 0 3.5rem;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}
.page-hero .container { text-align: center; }
.page-hero h1 { margin-bottom: .75rem; }
.page-hero p  { color: var(--text-muted); font-size: 1rem; }
.page-hero__back { margin-bottom: 1.75rem; }
.page-hero__back a {
  color: var(--text-muted); font-size: .88rem;
  display: inline-flex; align-items: center; gap: .4rem;
  transition: color var(--transition);
}
.page-hero__back a:hover { color: var(--text); }
.page-hero__back svg { width: 16px; height: 16px; }
.page-hero__game {
  display: flex; align-items: center; gap: 2rem;
  text-align: left; flex-wrap: wrap;
}
.page-hero__game img {
  width: 140px; height: 79px; object-fit: cover;
  border-radius: var(--radius);
}
.page-hero__game h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: .5rem 0; }
.page-hero__game p  { font-size: .92rem; max-width: 560px; }

/* ─── CONFIGURATEUR FILTERS ─────────────────────────────────*/
.configurateur__filters {
  display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; margin-bottom: 3rem;
}
.filter__search input, .filter__genre select {
  background: var(--surface); border: none;
  color: var(--text); padding: .65rem 1rem; border-radius: var(--radius);
  font-size: .88rem; font-family: inherit;
  box-shadow: inset 0 0 0 1px var(--border);
  transition: box-shadow var(--transition);
}
.filter__search input { min-width: 230px; }
.filter__search input:focus, .filter__genre select:focus {
  outline: none; box-shadow: inset 0 0 0 1.5px var(--cyan);
}
.filter__genre select { -webkit-appearance: none; }

/* ─── CONFIG CARDS ──────────────────────────────────────────*/
.configs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.config-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.config-card:hover { transform: translateY(-5px); }
.config-card--green  { box-shadow: inset 0 2px 0 var(--green); }
.config-card--green:hover  { box-shadow: inset 0 2px 0 var(--green), 0 12px 40px rgba(0,214,143,.15); }
.config-card--blue   { box-shadow: inset 0 2px 0 var(--cyan); }
.config-card--blue:hover   { box-shadow: inset 0 2px 0 var(--cyan), var(--shadow-glow); }
.config-card--purple { box-shadow: inset 0 2px 0 var(--violet); }
.config-card--purple:hover { box-shadow: inset 0 2px 0 var(--violet), var(--violet-glow); }

.config-card__header {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  padding: 1.75rem;
}
.config-tier-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.config-tier-icon svg { width: 20px; height: 20px; }
.config-tier-icon--green  { background: rgba(0,214,143,.12); color: var(--green); }
.config-tier-icon--blue   { background: var(--cyan-dim); color: var(--cyan); }
.config-tier-icon--purple { background: var(--violet-dim); color: var(--violet); }
.config-card__header h3 { font-size: 1.15rem; margin-bottom: .25rem; }
.config-target { font-size: .8rem; color: var(--text-muted); }
.config-price { text-align: right; flex-shrink: 0; }
.config-price strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--text); letter-spacing: -.02em; }
.config-price span   { font-size: .78rem; color: var(--text-muted); }

.config-card__specs {
  padding: 0 1.75rem 1.5rem; flex: 1;
}
.spec {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem;
  padding: .55rem 0;
  position: relative;
}
.spec + .spec::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--border);
}
.spec__label {
  display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; color: var(--text-muted); flex-shrink: 0;
}
.spec__label svg { width: 13px; height: 13px; opacity: .6; }
.spec__value { font-size: .85rem; font-weight: 600; text-align: right; color: var(--text); }
.spec--note .spec__value { font-style: italic; color: var(--text-muted); font-weight: 400; }

.config-card__footer { padding: 1.25rem 1.75rem; }

/* ─── COMPARE TABLE ─────────────────────────────────────────*/
.compare-table-wrap { background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; }
.compare-table-wrap h3 { padding: 1.5rem 1.75rem 0; font-size: 1rem; color: var(--text-muted); }
.table-responsive { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.compare-table th {
  background: var(--surface-2); padding: .85rem 1.25rem;
  text-align: left; color: var(--text-muted); font-weight: 600; font-size: .76rem;
  text-transform: uppercase; letter-spacing: .06em; white-space: nowrap;
}
.compare-table td { padding: .75rem 1.25rem; color: var(--text); }
.compare-table td:first-child { color: var(--text-muted); font-size: .82rem; }
.compare-table tr + tr td { border-top: 1px solid var(--border); }
.compare-table tr:hover td { background: rgba(255,255,255,.02); }
.price-row td { font-weight: 700; color: var(--cyan); }

/* ─── ABOUT ─────────────────────────────────────────────────*/
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about__text .section__eyebrow { display: block; margin-bottom: .75rem; }
.about__text h2 { margin-bottom: 1.25rem; }
.about__text > p { margin-bottom: 2.5rem; font-size: .95rem; }
.about__values { display: flex; flex-direction: column; gap: 1.5rem; }
.value { display: flex; gap: 1.25rem; align-items: flex-start; }
.value__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--cyan-dim); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: var(--cyan);
}
.value__icon svg { width: 18px; height: 18px; }
.value strong { display: block; margin-bottom: .3rem; color: var(--text); font-size: .95rem; }
.value p { font-size: .85rem; margin: 0; }

/* PC Visual */
.about__visual { display: flex; justify-content: center; }
.about__card {
  width: 340px; height: 340px;
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about__card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(0,200,240,.06), transparent);
}
.pc-visual { position: relative; z-index: 1; }
.pc-case {
  width: 170px; height: 230px;
  background: linear-gradient(150deg, var(--bg-3), var(--bg));
  border-radius: 14px;
  position: relative; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,200,240,.15), 0 0 40px rgba(0,200,240,.08);
}
.pc-glow {
  position: absolute; top: 0; left: 0; right: 0; height: 50px;
  background: linear-gradient(to bottom, rgba(0,200,240,.15), transparent);
}
.pc-fans { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 16px; }
.fan {
  width: 46px; height: 46px;
  border: 1.5px solid rgba(0,200,240,.35);
  border-radius: 50%;
  position: relative;
  animation: spin 3s linear infinite;
  animation-delay: var(--delay);
}
.fan::before {
  content: ''; position: absolute; inset: 5px;
  background: conic-gradient(from 0deg, transparent 30%, rgba(0,200,240,.25) 50%, transparent 80%);
  border-radius: 50%;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── CONTACT ───────────────────────────────────────────────*/
.contact__layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 2.5rem; align-items: stretch; }
.contact__left { display: flex; flex-direction: column; gap: 2rem; }
.contact__info-list { display: flex; flex-direction: column; gap: 1.4rem; }
.contact__item { display: flex; gap: 1rem; align-items: flex-start; }
.contact__item-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--cyan-dim); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: var(--cyan);
}
.contact__item-icon svg { width: 18px; height: 18px; }
.contact__item strong { display: block; color: var(--text); margin-bottom: .2rem; font-size: .9rem; }
.contact__item a, .contact__item span { color: var(--text-muted); font-size: .88rem; }
.contact__item a:hover { color: var(--cyan); }

/* Social buttons in contact */
.contact__socials {
  display: flex; gap: .65rem; flex-wrap: wrap;
}
.contact__social-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1rem; border-radius: var(--radius);
  background: var(--surface); color: var(--text-muted);
  font-size: .82rem; font-weight: 500; text-decoration: none;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.contact__social-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.contact__social-btn:hover { background: var(--cyan-dim); color: var(--cyan); border-color: var(--border-glow); }

/* CTA card */
.contact__cta-card {
  background: var(--surface); border-radius: var(--radius-lg); padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.contact__cta-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}
.contact__cta-header { display: flex; gap: 1rem; align-items: flex-start; }
.contact__cta-icon {
  width: 52px; height: 52px; border-radius: var(--radius); flex-shrink: 0;
  background: var(--cyan-dim); color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
}
.contact__cta-icon svg { width: 24px; height: 24px; }
.contact__cta-header h3 { font-size: 1.2rem; color: var(--text); margin: 0 0 .25rem; }
.contact__cta-sub { font-size: .8rem; color: var(--text-muted); margin: 0; }
.contact__cta-card > p  { font-size: .88rem; margin: 0; line-height: 1.7; }
.contact__cta-perks { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.contact__cta-perks li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .88rem; color: var(--text-muted);
}
.contact__cta-perks li svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }
.contact__cta-divider { height: 1px; background: var(--border); margin: .25rem 0; }

/* ─── ABOUT LOGO SHOWCASE ───────────────────────────────────*/
.about__logo-showcase {
  position: relative;
  width: 340px; height: 340px;
  display: flex; align-items: center; justify-content: center;
}
.about__logo-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid transparent;
  animation: ringRotate 12s linear infinite;
}
.about__logo-ring--1 {
  width: 260px; height: 260px;
  border-color: rgba(0,200,240,.15);
  border-top-color: var(--cyan);
  animation-duration: 8s;
}
.about__logo-ring--2 {
  width: 310px; height: 310px;
  border-color: rgba(124,58,237,.12);
  border-right-color: var(--violet);
  animation-duration: 14s; animation-direction: reverse;
}
.about__logo-ring--3 {
  width: 200px; height: 200px;
  border-color: rgba(0,200,240,.08);
  border-bottom-color: rgba(0,200,240,.4);
  animation-duration: 20s;
}
@keyframes ringRotate { to { transform: rotate(360deg); } }
.about__logo-img {
  position: relative; z-index: 2;
  width: 130px; height: 130px;
  background: var(--surface);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(0,200,240,.2), 0 0 80px rgba(0,200,240,.08), var(--shadow);
  animation: logoPulse 4s ease-in-out infinite;
}
.about__logo-img img { width: 80px; height: 80px; object-fit: contain; filter: drop-shadow(0 0 12px rgba(0,200,240,.5)); }
@keyframes logoPulse {
  0%,100% { box-shadow: 0 0 30px rgba(0,200,240,.2), 0 0 60px rgba(0,200,240,.06); }
  50%      { box-shadow: 0 0 50px rgba(0,200,240,.35), 0 0 90px rgba(0,200,240,.12); }
}
.about__logo-particles { position: absolute; inset: 0; pointer-events: none; }
.about__logo-particles span {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: var(--cyan); opacity: 0;
  animation: particleFloat 4s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.65s);
}
.about__logo-particles span:nth-child(1) { top: 20%; left: 15%; }
.about__logo-particles span:nth-child(2) { top: 75%; left: 20%; width: 3px; height: 3px; background: var(--violet); }
.about__logo-particles span:nth-child(3) { top: 10%; right: 20%; }
.about__logo-particles span:nth-child(4) { top: 60%; right: 12%; width: 5px; height: 5px; }
.about__logo-particles span:nth-child(5) { bottom: 20%; left: 40%; width: 3px; height: 3px; background: var(--violet); }
.about__logo-particles span:nth-child(6) { top: 40%; right: 30%; }
@keyframes particleFloat {
  0%,100% { opacity:0; transform: scale(0) translateY(0); }
  30%,70% { opacity:0.8; }
  50%      { opacity:1; transform: scale(1) translateY(-12px); }
}

/* ─── DEVIS FORM ────────────────────────────────────────────*/
.form-card {
  background: var(--surface); border-radius: var(--radius-lg); padding: 3rem;
}
.form-section { margin-bottom: 2.5rem; padding-bottom: 2.5rem; }
.form-section + .form-section { border-top: 1px solid var(--border); }
.form-section h3 {
  margin-bottom: 1.5rem; font-size: .78rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .12em; font-weight: 700;
  display: flex; align-items: center; gap: .6rem;
}
.form-section h3 svg { width: 15px; height: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; }
label { font-size: .82rem; font-weight: 600; color: var(--text-muted); }
.required { color: var(--red); }
input[type=text], input[type=email], input[type=tel], input[type=number],
select, textarea {
  background: var(--bg-3); border: none;
  box-shadow: inset 0 0 0 1px var(--border);
  color: var(--text); padding: .75rem 1rem; border-radius: var(--radius);
  font-size: .9rem; font-family: inherit; width: 100%;
  transition: box-shadow var(--transition);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  box-shadow: inset 0 0 0 1.5px var(--cyan), 0 0 0 3px rgba(0,200,240,.08);
}
select { -webkit-appearance: none; cursor: pointer; }
textarea { resize: vertical; min-height: 110px; }
.form-hint { font-size: .76rem; color: var(--text-dim); }
.form-footer { display: flex; flex-direction: column; gap: 1rem; padding-top: 1.5rem; }
.form-legal { font-size: .8rem; color: var(--text-dim); text-align: center; }
.alert { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.5rem; }
.alert--error   { background: rgba(239,68,68,.08);  border-left: 3px solid var(--red);   color: #ef4444; }
.alert--success { background: rgba(0,214,143,.08); border-left: 3px solid var(--green); color: var(--green); }
.alert ul { margin: .5rem 0 0 1.25rem; }
.alert li { font-size: .88rem; margin-top: .3rem; }

/* ─── CONFIRMATION ──────────────────────────────────────────*/
.confirmation-card {
  background: var(--surface); border-radius: var(--radius-xl);
  padding: 3.5rem; text-align: center; margin: 3rem auto;
}
.confirmation-card__icon {
  width: 72px; height: 72px; margin: 0 auto 1.5rem;
  background: rgba(0,214,143,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--green);
}
.confirmation-card__icon svg { width: 34px; height: 34px; }
.confirmation-card h1 { margin-bottom: .5rem; }
.confirmation-card__ref { color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1rem; }
.confirmation-card__details {
  background: var(--bg-3); border-radius: var(--radius);
  padding: 1.5rem; margin-bottom: 2.5rem; text-align: left;
}
.detail-row {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: .6rem 0;
}
.detail-row + .detail-row { border-top: 1px solid var(--border); }
.detail-row span   { color: var(--text-muted); font-size: .85rem; display: flex; align-items: center; gap: .4rem; }
.detail-row span svg { width: 14px; height: 14px; }
.detail-row strong { font-size: .88rem; }
.confirmation-card__message { color: var(--text-muted); font-size: .9rem; margin-bottom: 2.5rem; line-height: 1.7; }
.confirmation-card__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ────────────────────────────────────────────────*/
.footer {
  background: var(--bg-2); padding: 5rem 0 2.5rem;
  position: relative;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem; margin-bottom: 3.5rem;
}
.footer__brand .logo {
  display: flex; align-items: center; gap: .65rem;
  font-size: 1.25rem; font-weight: 800; margin-bottom: 1rem;
}
.footer__brand .logo img { width: 28px; height: 28px; object-fit: contain; }
.footer__brand .logo em  { color: var(--cyan); font-style: normal; }
.footer__brand p { font-size: .85rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer__social { display: flex; gap: .75rem; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--surface); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.footer__social a:hover { background: var(--cyan-dim); color: var(--cyan); }
.footer__social svg { width: 17px; height: 17px; }
.footer__col h4 {
  color: var(--text); font-size: .78rem; text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: 1.25rem;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer__col li a { color: var(--text-muted); font-size: .85rem; transition: color var(--transition); }
.footer__col li a:hover { color: var(--text); }
.footer__col li span { color: var(--text-muted); font-size: .85rem; }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
  font-size: .8rem; color: var(--text-dim);
}
.footer__swiss {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--text-dim); font-weight: 700; letter-spacing: .08em; font-size: .75rem;
  text-transform: uppercase;
}
.footer__swiss svg { color: var(--cyan); opacity: .7; flex-shrink: 0; }

/* ─── EMPTY STATE ───────────────────────────────────────────*/
.empty-state {
  text-align: center; padding: 5rem; color: var(--text-muted);
}
.empty-state svg { width: 52px; height: 52px; opacity: .2; display: block; margin: 0 auto 1.25rem; }
.empty-state p { font-size: .95rem; }

/* ─── ERROR PAGE ────────────────────────────────────────────*/
.error-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--bg); }
.error-page__inner { text-align: center; }
.error-page__code { font-size: 9rem; font-weight: 900; color: var(--cyan); opacity: .15; display: block; line-height: 1; }
.error-page__inner h1 { margin-bottom: 1rem; }
.error-page__inner p { margin-bottom: 2.5rem; }

/* ─── RESPONSIVE ────────────────────────────────────────────*/
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid   { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 900px) {
  .navbar__links {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    flex-direction: column; gap: 0; background: rgba(8,8,16,.98);
    padding: 1.5rem; z-index: 999; align-items: flex-start;
  }
  .navbar__links.open { display: flex; }
  .navbar__links a { font-size: 1.1rem; padding: .85rem 0; width: 100%; border-radius: 0; }
  .navbar__links a:hover { background: none; color: var(--cyan); }
  .navbar__cta  { display: none; }
  .hamburger    { display: flex; }
  .about__grid  { grid-template-columns: 1fr; gap: 3rem; }
  .about__visual{ display: flex; justify-content: center; }
  .about__logo-showcase { width: 260px; height: 260px; }
  .about__logo-ring--1 { width: 200px; height: 200px; }
  .about__logo-ring--2 { width: 240px; height: 240px; }
  .about__logo-ring--3 { width: 160px; height: 160px; }
  .about__logo-img { width: 100px; height: 100px; }
  .about__logo-img img { width: 60px; height: 60px; }
  .contact__layout { grid-template-columns: 1fr; }
  .contact__left { gap: 1.5rem; }
  .form-row     { grid-template-columns: 1fr; }
  .configs__grid{ grid-template-columns: 1fr; }
  .page-hero__game { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .services__grid { grid-template-columns: 1fr; gap: .75rem; }
  .service-card { border-radius: var(--radius-lg); }
}
@media (max-width: 600px) {
  :root { --nav-h: 60px; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .games__grid  { grid-template-columns: repeat(2, 1fr); }
  .hero__actions{ flex-direction: column; align-items: center; }
  .form-card    { padding: 1.5rem; }
  .section      { padding: 4rem 0; }
}
