/* ===================================================
   NORDIC DART LEASING — style.css
   Theme: Dark charcoal/navy + bold orange accent
   =================================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #0e1117;
  --bg2:         #161b25;
  --bg3:         #1e2535;
  --accent:      #2563eb;
  --accent-dark: #1d4ed8;
  --text:        #e8eaf0;
  --text-muted:  #8a93a8;
  --border:      #2a3347;
  --white:       #ffffff;
  --radius:      10px;
  --radius-lg:   18px;
  --shadow:      0 4px 30px rgba(0,0,0,0.5);
  --transition:  0.25s ease;
  --nav-h:       85px;
  --max-w:       1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

img, video { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-dark); }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-muted); max-width: 68ch; }
.lead { font-size: 1.2rem; color: var(--text); }
.accent { color: var(--accent); }
.center { text-align: center; }
.center p { margin-inline: auto; }

/* ---- Layout helpers ---- */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: 1.5rem; }
.section { padding-block: 5rem; }
.section--alt { background: var(--bg2); }
.section--dark { background: var(--bg3); }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-label.center {
  margin-inline: auto;
  text-align: center;
}
.section-heading {
  margin-bottom: 1rem;
}
.section-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 60ch;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(14, 17, 23, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav__logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
}
.nav__logo img {
  height: 100px;
  width: auto;
}
.nav__logo span { color: var(--accent); }
.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav__links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition);
}
.nav__cta a {
  color: var(--white);
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }
.nav__cta { margin-left: 1rem; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 768px) {
  .nav__hamburger { display: flex; }
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg2);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .nav__links.open {
    display: flex;
  }
  .nav__cta { display: none; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.85rem; }

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0d14 0%, #141a2b 60%, #1a1008 100%);
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(37,99,235,0.15) 0%, transparent 60%);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 1;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  color: var(--accent);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.2rem; color: rgba(232,234,240,0.8); margin-bottom: 2.5rem; max-width: 56ch; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- Cards ---- */
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(37,99,235,0.4);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.card__icon {
  width: 52px;
  height: 52px;
  background: rgba(37,99,235,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.card h3 { margin-bottom: 0.6rem; color: var(--white); }
.card p { font-size: 0.95rem; }

/* ---- Feature strip ---- */
.features {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border);
}
.feature-item:last-child { border-right: none; }
.feature-item__icon { font-size: 2rem; flex-shrink: 0; }
.feature-item h4 { color: var(--white); margin-bottom: 0.3rem; }
.feature-item p { font-size: 0.9rem; max-width: none; }

/* ---- Game banners ---- */
.games-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.game-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 130px;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.game-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}
.game-banner__inner {
  padding: 1.1rem 1.4rem 1.2rem;
  background: linear-gradient(to right, rgba(8,10,16,0.96) 45%, rgba(8,10,16,0.6) 75%, transparent 100%);
  width: 70%;
  position: relative;
  z-index: 1;
}
.game-banner__title {
  display: block;
  font-style: italic;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.45rem;
  line-height: 1.1;
}
.game-banner__new {
  display: inline-block;
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  padding: 0.15em 0.5em;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 0.4rem;
}
.game-banner__desc {
  font-style: italic;
  font-size: 0.83rem;
  color: rgba(232,234,240,0.72);
  max-width: none;
  line-height: 1.45;
}

/* Per-game background images + gradient overlay */
.game-banner--killer {
  background: linear-gradient(to right, #1c1108 25%, rgba(28,17,8,0.82) 50%, rgba(28,17,8,0.1) 100%),
              url('../images/games/killer-bg-min.jpg') center/cover no-repeat;
}
.game-banner--killer .game-banner__title { color: #f97316; }

.game-banner--shanghai {
  background: linear-gradient(to right, #0e1a1c 25%, rgba(14,26,28,0.82) 50%, rgba(14,26,28,0.1) 100%),
              url('../images/games/shang2.jpg') center/cover no-repeat;
}
.game-banner--shanghai .game-banner__title { color: #f97316; }

.game-banner--lumberjack {
  background: linear-gradient(to right, #0d180b 25%, rgba(13,24,11,0.82) 50%, rgba(13,24,11,0.1) 100%),
              url('../images/games/lumber-bg.jpg') center/cover no-repeat;
}
.game-banner--lumberjack .game-banner__title { color: #4ade80; }

.game-banner--zombie {
  background: linear-gradient(to right, #0a1818 25%, rgba(10,24,24,0.82) 50%, rgba(10,24,24,0.1) 100%),
              url('../images/games/zombiebg-min.jpg') center/cover no-repeat;
}
.game-banner--zombie .game-banner__title { color: #22d3ee; }

.game-banner--asteroid {
  background: linear-gradient(to right, #1a1005 25%, rgba(26,16,5,0.82) 50%, rgba(26,16,5,0.1) 100%),
              url('../images/games/asteroidbg.jpg') center/cover no-repeat;
}
.game-banner--asteroid .game-banner__title { color: #fb923c; }

.game-banner--voltage {
  background: linear-gradient(to right, #080e1c 25%, rgba(8,14,28,0.82) 50%, rgba(8,14,28,0.1) 100%),
              url('../images/games/voltage-filtered-scaled.jpg') center/cover no-repeat;
}
.game-banner--voltage .game-banner__title { color: #60a5fa; }

@media (max-width: 640px) {
  .games-grid { grid-template-columns: 1fr; }
  .game-banner__inner { width: 85%; }
}

/* ---- Plan boxes (pricing page) ---- */
.plan-boxes {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
}
.plan-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.plan-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.plan-box--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 40px rgba(37,99,235,0.15);
}
.plan-box__badge {
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25em 0.9em;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-box__icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.plan-box__title {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.plan-box__desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: none;
  line-height: 1.6;
}
.plan-box__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 2rem;
}
.plan-box__list li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.plan-box__list li span {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.mt-auto { margin-top: auto; }

@media (max-width: 768px) {
  .plan-boxes { flex-direction: column; }
}

/* ---- Quote / Callout ---- */
.quote-block {
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(37,99,235,0.05));
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 2.5rem 3rem;
  margin-block: 3rem;
}
.quote-block blockquote {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.quote-block cite { color: var(--accent); font-size: 0.9rem; font-weight: 600; }

/* ---- Testimonial ---- */
.testimonial {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.testimonial p { font-size: 1.05rem; font-style: italic; color: var(--text); margin-bottom: 1rem; }
.testimonial__author { color: var(--accent); font-weight: 700; font-size: 0.9rem; }

/* ---- Stats ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  background: var(--bg2);
  padding: 2rem;
  text-align: center;
}
.stat-item__number { font-size: 2.5rem; font-weight: 800; color: var(--accent); line-height: 1; }
.stat-item__label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.4rem; }

/* ---- Pricing ---- */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.pricing-toggle span { color: var(--text-muted); font-weight: 600; }
.pricing-toggle span.active { color: var(--white); }
.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  left: 4px;
  top: 4px;
  transition: transform var(--transition);
}
.toggle-switch input:checked + .toggle-slider { background: var(--accent); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(24px); }

.pricing-cards { display: none; }
.pricing-cards.active { display: grid; }

.price-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: var(--accent);
  position: relative;
}
.price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-card__name { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.price-card__price { font-size: 2.8rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 0.25rem; }
.price-card__price sup { font-size: 1.4rem; vertical-align: top; margin-top: 0.5rem; display: inline-block; }
.price-card__period { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 2rem; }
.price-card__features { list-style: none; flex: 1; margin-bottom: 2rem; }
.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-muted);
}
.price-card__features li:last-child { border-bottom: none; }
.price-card__features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* ---- Gallery ---- */
.gallery-filter {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.filter-btn {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--bg3);
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  font-size: 2rem;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 2.5rem;
}
.gallery-placeholder span { font-size: 0.8rem; letter-spacing: 0.05em; }

.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.video-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg3);
}
.video-wrap video { width: 100%; display: block; }
.video-wrap__label { padding: 0.75rem 1rem; font-size: 0.9rem; color: var(--text-muted); }

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox__close:hover { background: var(--accent); }

/* ---- FAQ Accordion ---- */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item.open { border-color: rgba(37,99,235,0.4); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-question .icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--accent);
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer__inner { padding: 0 1.5rem 1.25rem; }
.faq-answer__inner p { font-size: 0.97rem; max-width: none; }

/* ---- Contact form ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

label { font-size: 0.9rem; font-weight: 600; color: var(--text); }
input, select, textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition);
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
}
select option { background: var(--bg3); }
textarea { resize: vertical; min-height: 130px; }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info__item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info__icon {
  width: 44px;
  height: 44px;
  background: rgba(37,99,235,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info__item h4 { color: var(--white); margin-bottom: 0.2rem; font-size: 0.95rem; }
.contact-info__item p { font-size: 0.9rem; max-width: none; }

/* ---- Space diagram ---- */
.space-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 640px) { .space-grid { grid-template-columns: 1fr; } }

.space-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.space-item__value { font-size: 2.5rem; font-weight: 800; color: var(--accent); }
.space-item__label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }
.space-item__desc { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.5rem; max-width: none; }

/* ---- Team cards ---- */
.team-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
}
.team-card__photo {
  height: 220px;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--border);
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__body { padding: 1.5rem; }
.team-card__body h4 { color: var(--white); margin-bottom: 0.25rem; }
.team-card__role { color: var(--accent); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; }
.team-card__body p { font-size: 0.9rem; max-width: none; }

/* ---- Breadcrumb / page hero ---- */
.page-hero {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 3rem;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { font-size: 1.1rem; max-width: 56ch; }

/* ---- Footer ---- */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding-block: 3.5rem 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand p { font-size: 0.9rem; margin-top: 0.75rem; }
.footer__col h5 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: 0.05em; text-transform: uppercase; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col ul a { color: var(--text-muted); font-size: 0.9rem; transition: color var(--transition); }
.footer__col ul a:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p { font-size: 0.85rem; max-width: none; }
.footer__powered { font-size: 0.8rem; color: var(--text-muted); }
.footer__powered a { color: var(--text-muted); }
.footer__powered a:hover { color: var(--accent); }

/* ---- Scroll animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Utility ---- */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }
.fw-bold { font-weight: 700; }
.full-width { width: 100%; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
