/* ===== Fonts (self-hosted, no external CDN) ===== */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/space-grotesk-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/space-grotesk-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+2020, U+2113;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+2020, U+2113;
}

/* ===== Design tokens ===== */
:root {
  --color-bg: #0e0e10;
  --color-bg-alt: #17171b;
  --color-bg-card: #1c1c21;
  --color-border: rgba(245, 243, 239, 0.1);
  --color-border-strong: rgba(245, 243, 239, 0.2);
  --color-text: #f5f3ef;
  --color-text-muted: #a8a8ae;
  --color-text-faint: #6f6f77;
  --color-accent: #ff4e32;
  --color-accent-hover: #ff6a4f;
  --color-accent-soft: rgba(255, 78, 50, 0.12);
  --color-highlight: #ffd23f;
  --color-success: #4caf7d;
  --color-error: #ff6b6b;

  --font-display: 'Space Grotesk', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;

  --container-width: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-card: 0 20px 50px -25px rgba(0, 0, 0, 0.6);
  --transition: 0.2s ease;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: 1.3rem; }
.text-gradient-warm {
  background: linear-gradient(90deg, var(--color-accent), var(--color-highlight));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
p { margin: 0 0 16px; color: var(--color-text-muted); }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--color-accent); color: #fff; padding: 12px 20px; border-radius: var(--radius-sm);
}
.skip-link:focus { left: 24px; top: 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-accent);
  margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--color-accent); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  border: 1px solid transparent; transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--color-accent); color: #0e0e10; }
.btn-primary:hover { background: var(--color-accent-hover); }
.btn-secondary { background: transparent; border-color: var(--color-border-strong); color: var(--color-text); }
.btn-secondary:hover { border-color: var(--color-accent); color: var(--color-accent); }
.btn-block { width: 100%; }
.btn-ghost { display: inline-flex; align-items: center; gap: 6px; color: var(--color-text-muted); font-weight: 500; }
.btn-ghost:hover { color: var(--color-text); }
.btn-ghost svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ===== Intro splash (homepage only) — simple fade reveal =====
   #intro-splash is a fixed full-viewport overlay sitting on top of the real
   (already fully rendered) header + hero underneath. On the first scroll,
   click, or key press it simply fades out (opacity transition), revealing
   the page that was there all along — no scroll-jacking, no scroll lock. */
#intro-splash {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.8s ease;
}
#intro-splash.is-hidden { opacity: 0; pointer-events: none; }

.intro-text { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.intro-line {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.2;
  color: #fff;
  opacity: 0;
  transform: translateY(22px);
  animation: introLineIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.intro-line:nth-of-type(1) { animation-delay: 0.2s; }
.intro-line:nth-of-type(2) { animation-delay: 0.42s; }
.intro-gradient {
  background: linear-gradient(90deg, #ff8a3d, #ff2f6e 35%, #d926c9 60%, #7c3aed 80%, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@keyframes introLineIn { to { opacity: 1; transform: translateY(0); } }

.intro-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--color-text-faint);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  animation: introHintIn 0.8s ease forwards;
  animation-delay: 1s;
}
.intro-hint svg { width: 18px; height: 18px; animation: introChevronBob 1.6s ease-in-out infinite; }
@keyframes introHintIn { to { opacity: 1; } }
@keyframes introChevronBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

.intro-doodle {
  position: absolute;
  z-index: 1;
  color: rgba(245, 243, 239, 0.55);
  opacity: 0;
  animation: introDoodleIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.intro-doodle svg { width: 100%; height: 100%; display: block; }
@keyframes introDoodleIn { to { opacity: 1; } }
.doodle-1 { top: 7%; left: 4%; width: 110px; height: 55px; animation-delay: 0.1s; }
.doodle-2 { top: 8%; right: 9%; width: 34px; height: 34px; color: rgba(245, 243, 239, 0.7); transform: rotate(-8deg); animation-delay: 0.3s; }
.doodle-3 { top: 19%; right: 5%; width: 28px; height: 42px; color: #ff8a3d; animation-delay: 0.45s; }
.doodle-4 { bottom: 16%; left: 8%; width: 46px; height: 46px; color: #ff6a3d; animation-delay: 0.25s; }
.doodle-5 { bottom: 8%; left: 3%; width: 32px; height: 32px; animation-delay: 0.5s; }
.doodle-6 { bottom: 7%; right: 4%; width: 180px; height: 54px; animation-delay: 0.15s; }

@media (prefers-reduced-motion: reduce) {
  .intro-line, .intro-doodle, .intro-hint { animation: none !important; opacity: 1 !important; transform: none !important; }
  .intro-hint svg { animation: none !important; }
}

@media (max-width: 600px) {
  .doodle-1 { width: 70px; height: 35px; top: 6%; left: 5%; }
  .doodle-2 { width: 26px; height: 26px; top: 6%; right: 8%; }
  .doodle-3 { width: 20px; height: 30px; top: 15%; right: 6%; }
  .doodle-4 { width: 34px; height: 34px; bottom: 22%; left: 8%; }
  .doodle-5 { width: 24px; height: 24px; bottom: 15%; left: 6%; }
  .doodle-6 { width: 100px; height: 32px; bottom: 15%; right: 6%; }
}

/* ===== Header / nav ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14, 14, 16, 0.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 24px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 46px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--color-text-muted); transition: color var(--transition); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--color-text); }
.nav-actions { display: flex; align-items: center; gap: 18px; }

.lang-switch { display: flex; border: 1px solid var(--color-border-strong); border-radius: 999px; padding: 3px; gap: 2px; }
.lang-switch button {
  border: none; background: transparent; color: var(--color-text-muted);
  font-size: 0.8rem; font-weight: 600; padding: 6px 12px; border-radius: 999px; transition: background var(--transition), color var(--transition);
}
.lang-switch button[aria-pressed="true"] {
  background: linear-gradient(90deg, var(--color-accent), var(--color-highlight));
  color: #0e0e10;
}

.nav-toggle {
  display: none; background: transparent; border: none; color: var(--color-text); padding: 8px;
}
.nav-toggle svg { width: 24px; height: 24px; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 200; background: var(--color-bg);
  display: flex; flex-direction: column; padding: 24px; transform: translateX(100%);
  transition: transform 0.3s ease; overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.mobile-menu-close { background: transparent; border: none; color: var(--color-text); }
.mobile-menu-close svg { width: 24px; height: 24px; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 24px; }
.mobile-menu-links a { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; }
.mobile-menu .btn { margin-top: 32px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-actions .btn-primary { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 150px 0 110px;
  background:
    linear-gradient(100deg, rgba(14, 14, 16, 0.97) 0%, rgba(14, 14, 16, 0.9) 34%, rgba(14, 14, 16, 0.55) 64%, rgba(14, 14, 16, 0.25) 100%),
    url('../images/hero-banner.jpg') center right / cover no-repeat;
}
.hero-grid { max-width: 640px; margin: 0; }

@media (min-width: 901px) {
  .hero-grid { margin-left: 8%; }
}
.hero-title { margin-bottom: 24px; }
.hero-subtitle { font-size: 1.15rem; max-width: 46ch; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap; }
.hero-stat { display: flex; align-items: center; gap: 12px; }
.hero-stat-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: var(--color-accent-soft); color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
}
.hero-stat-icon.is-blue { background: #2563eb; color: #fff; }
.hero-stat-icon svg { width: 20px; height: 20px; }
.hero-stat span { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--color-text); }

@media (max-width: 900px) {
  .hero {
    padding: 120px 0 70px;
    background:
      linear-gradient(180deg, rgba(14, 14, 16, 0.75) 0%, rgba(14, 14, 16, 0.94) 55%, rgba(14, 14, 16, 0.99) 100%),
      url('../images/hero-banner.jpg') center 30% / cover no-repeat;
  }
}

/* ===== Section layout ===== */
section { padding: 90px 0; }
.section-alt { background: var(--color-bg-alt); }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ===== Cards / grids ===== */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: 32px; transition: border-color var(--transition), transform var(--transition);
}
.card:hover { border-color: var(--color-border-strong); transform: translateY(-4px); }
.card-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--color-accent-soft);
  color: var(--color-accent); display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; }
.card-icon.is-blue { background: #2563eb; color: #fff; }
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; font-size: 0.95rem; }

/* ===== Build Your Content Request ===== */
.request-builder { position: relative; overflow: hidden; }
.request-header { position: relative; margin-bottom: 48px; }
.request-doodle { position: absolute; color: rgba(245, 243, 239, 0.3); }
.request-doodle svg { width: 100%; height: 100%; display: block; }
.request-doodle.doodle-1 { top: -12px; left: -10px; width: 90px; height: 45px; }
.request-doodle.doodle-2 { top: -6px; right: 4%; width: 26px; height: 26px; transform: rotate(-10deg); }

.request-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: 48px; align-items: start; }
.request-layout[hidden] { display: none; }
@media (max-width: 900px) { .request-layout { grid-template-columns: 1fr; } }

.request-grid { grid-template-columns: repeat(3, 1fr); margin-bottom: 32px; }
@media (max-width: 900px) { .request-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .request-grid { grid-template-columns: 1fr; } }

.request-card {
  position: relative; display: block; cursor: pointer;
  background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: 28px; transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.request-card:hover { border-color: var(--color-border-strong); transform: translateY(-2px); }
.request-card:hover .card-icon { color: var(--color-accent); }
.request-card-input {
  position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none;
}
.request-card-input:focus-visible ~ .request-card-check,
.request-card:focus-within {
  outline: 2px solid var(--color-text); outline-offset: 2px;
}
.request-card .card-icon { margin-bottom: 20px; }
.request-card h4 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 8px; color: var(--color-text); }
.request-card p { font-size: 0.88rem; margin-bottom: 0; color: var(--color-text-muted); }
.request-card-check {
  position: absolute; top: 20px; right: 20px; width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid var(--color-border-strong); display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.request-card-check svg { width: 14px; height: 14px; color: #0e0e10; opacity: 0; transition: opacity var(--transition); }

.request-card.is-selected {
  border: 1px solid transparent; background-clip: padding-box, border-box; background-origin: padding-box, border-box;
  background-image: linear-gradient(var(--color-bg-card), var(--color-bg-card)), linear-gradient(135deg, #ff2f6e, #ff8a3d);
  box-shadow: 0 0 0 1px rgba(255, 78, 50, 0.08), 0 12px 30px -18px rgba(255, 78, 50, 0.45);
}
.request-card.is-selected .request-card-check {
  border-color: transparent; background: linear-gradient(135deg, #ff2f6e, #ff8a3d);
}
.request-card.is-selected .request-card-check svg { opacity: 1; }

.request-summary {
  border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 24px 28px; background: var(--color-bg-card);
}
.request-summary-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.request-summary-head h3 { font-size: 1.1rem; margin-bottom: 4px; }
.request-summary-count { font-size: 0.9rem; margin-bottom: 0; color: var(--color-text-faint); }
.request-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.request-pills:empty { margin-top: 0; }
.request-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 8px 8px 16px; border-radius: 999px;
  background: var(--color-bg-alt); border: 1px solid var(--color-border-strong); font-size: 0.85rem; color: var(--color-text);
}
.request-pill-remove {
  display: flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%;
  background: transparent; border: none; color: var(--color-text-faint); font-size: 1rem; line-height: 1; cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.request-pill-remove:hover { background: var(--color-border-strong); color: var(--color-text); }

.request-clear-btn {
  display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
  padding: 8px 18px; border-radius: 999px; font-weight: 600; font-size: 0.85rem;
  background: linear-gradient(135deg, #ff2f6e, #ff8a3d, #ffd23f); color: #0e0e10; border: none;
  transition: transform var(--transition), filter var(--transition);
}
.request-clear-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }

.request-panel {
  border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 28px; background: var(--color-bg-card);
}
@media (min-width: 901px) { .request-panel { position: sticky; top: 96px; } }
.request-panel h3 { font-size: 1.15rem; margin-bottom: 20px; }
.request-panel form { gap: 18px; }
.request-panel select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a8a8ae' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.request-panel-note { font-size: 0.8rem; color: var(--color-text-faint); margin: -6px 0 0; }
.request-services-error {
  display: none; font-size: 0.85rem; color: var(--color-error); background: rgba(255, 107, 107, 0.1);
  border-radius: var(--radius-sm); padding: 10px 14px;
}
.request-services-error.is-visible { display: block; }

.btn-gradient {
  background: linear-gradient(135deg, #ff2f6e, #ff8a3d, #ffd23f); color: #0e0e10;
}
.btn-gradient:hover { filter: brightness(1.08); }
.btn-gradient:disabled {
  opacity: 0.45; cursor: not-allowed; filter: none; transform: none;
  background: linear-gradient(135deg, #ff2f6e, #ff8a3d, #ffd23f);
}
.btn-gradient:disabled:hover { transform: none; }

.request-success { text-align: center; max-width: 480px; margin: 0 auto; padding: 40px 0; }
.request-success h3 { margin-bottom: 12px; }
.request-success p { margin-bottom: 28px; }

/* ===== Process / steps ===== */
.process-slider { margin-bottom: 40px; }
.process-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 24px;
  background: transparent;
  cursor: pointer;
}
.process-range:focus { outline: none; }
.process-range:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 6px var(--color-accent-soft), 0 0 0 9px var(--color-text); }
.process-range::-webkit-slider-runnable-track {
  height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent) var(--fill, 0%), var(--color-border-strong) var(--fill, 0%), var(--color-border-strong) 100%);
}
.process-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px; border-radius: 50%; margin-top: -7.5px;
  background: var(--color-accent); border: 2px solid var(--color-bg);
  box-shadow: 0 0 0 6px var(--color-accent-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.process-range::-webkit-slider-thumb:active { transform: scale(1.2); }
.process-range::-moz-range-track { height: 3px; border-radius: 3px; background: var(--color-border-strong); }
.process-range::-moz-range-progress { height: 3px; border-radius: 3px; background: var(--color-accent); }
.process-range::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--color-accent); border: 2px solid var(--color-bg);
  box-shadow: 0 0 0 6px var(--color-accent-soft);
  cursor: pointer;
}

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative; padding-top: 16px; border-top: 2px solid var(--color-border-strong);
  cursor: pointer; opacity: 0.4;
  transition: opacity 0.35s ease, border-color 0.35s ease;
}
.step.is-active { opacity: 1; border-top-color: var(--color-text); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 0.85rem; color: var(--color-accent); font-weight: 700;
  display: block; margin-bottom: 12px;
}

@media (prefers-reduced-motion: reduce) {
  .step { transition: none; }
}

/* ===== Placeholder callout (for "Se completează" content) ===== */
.placeholder-note {
  border: 1px dashed var(--color-border-strong); border-radius: var(--radius-sm);
  padding: 16px 18px; font-size: 0.85rem; color: var(--color-text-faint); background: rgba(255,255,255,0.02);
}

/* ===== CTA band ===== */
.cta-band {
  border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--color-accent-soft), transparent);
  border: 1px solid var(--color-border); padding: 64px 48px; text-align: center;
}
.cta-band h2 { margin-bottom: 20px; }
.cta-band .hero-subtitle { margin-left: auto; margin-right: auto; }
.cta-band .hero-actions { justify-content: center; }

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--color-border); padding: 20px 0;
}
.faq-item summary {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--color-accent); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin-top: 14px; margin-bottom: 0; }

/* ===== Team ===== */
.team-card { text-align: center; }
.team-avatar {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--color-bg-alt); border: 1px solid var(--color-border); overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { margin-bottom: 4px; font-size: 1.1rem; }
.team-role { color: var(--color-accent); font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.contact-info-item strong { display: block; font-family: var(--font-display); margin-bottom: 4px; }
.contact-info-item span { color: var(--color-text-muted); font-size: 0.95rem; }
.social-links { display: flex; gap: 14px; margin-top: 32px; }
.social-links a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--color-border-strong);
  display: flex; align-items: center; justify-content: center; transition: border-color var(--transition), color var(--transition);
}
.social-links a:hover { border-color: var(--color-accent); color: var(--color-accent); }
.social-links svg { width: 18px; height: 18px; }

form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; background: var(--color-bg-card); border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm); padding: 13px 16px; color: var(--color-text); transition: border-color var(--transition);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--color-accent);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field .error-msg { color: var(--color-error); font-size: 0.8rem; margin-top: 6px; display: block; min-height: 1em; }
.form-field.has-error input, .form-field.has-error textarea, .form-field.has-error select { border-color: var(--color-error); }
.form-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--color-text-muted); }
.form-consent input { margin-top: 3px; }
.form-consent.has-error { color: var(--color-error); }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { display: none; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.9rem; }
.form-status.is-visible { display: block; }
.form-status.success { background: rgba(76, 175, 125, 0.12); color: var(--color-success); }
.form-status.error { background: rgba(255, 107, 107, 0.12); color: var(--color-error); }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--color-border); padding: 72px 0 32px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; max-width: 32ch; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-faint); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col span { font-size: 0.9rem; color: var(--color-text-muted); }
.footer-col a:hover { color: var(--color-text); }
.footer-bottom {
  border-top: 1px solid var(--color-border); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 0.85rem; color: var(--color-text-faint);
}

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed; left: 24px; right: 24px; bottom: -200px; z-index: 150; max-width: 520px;
  background: var(--color-bg-card); border: 1px solid var(--color-border-strong); border-radius: var(--radius-md);
  padding: 24px; box-shadow: var(--shadow-card); transition: bottom 0.4s ease;
}
.cookie-banner.is-visible { bottom: 24px; }
.cookie-banner p { font-size: 0.85rem; margin-bottom: 16px; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ===== Legal pages ===== */
.legal-content h2 { margin-top: 40px; }
.legal-content p, .legal-content li { color: var(--color-text-muted); }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }

/* ===== 404 ===== */
.error-page { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.error-page .error-code { font-family: var(--font-display); font-size: clamp(4rem, 12vw, 8rem); font-weight: 700; color: var(--color-accent); margin-bottom: 0; }
