/* =================================================================
   DOCOUN SARL — Design System
   Style: Modern Glassmorphism · Avant-garde · Elegant
   Type: Space Grotesk (headings) + DM Sans (body)
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --primary: #00487c;
  --primary-dark: #00375f;
  --primary-light: #f3f8f6;
  --primary-lightless: #e2f7ee;
  --accent: #2ecbe8;
  --accent-dark: #4141de;
  --accent-2: #ff7033;
  --accent-2-dark: #ff3934;
  --darker: #004d69;

  /* Neutrals */
  --dark: #222222;
  --gray2: #312e54;
  --gray3: #888792;
  --gray4: #a8a7b2;
  --gray5: #e1e0f0;
  --gray7: #f8f8f8;

  /* Semantic */
  --red: #e92d38;
  --green: #108757;
  --yellow: #fbd142;

  /* Text */
  --text: #0f1b2d;
  --text-muted: #475569;
  --text-faint: #6b7794;
  --bg: #ffffff;
  --bg-soft: #f6f9fc;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.55);
  --glass-shadow: 0 20px 50px -20px rgba(0, 55, 95, 0.28);

  /* System */
  --radius: 18px;
  --radius-lg: 28px;
  --radius-sm: 12px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 1px 2px rgba(15, 27, 45, 0.06), 0 4px 12px rgba(15, 27, 45, 0.05);
  --shadow-md: 0 12px 30px -12px rgba(0, 72, 124, 0.22);
  --shadow-lg: 0 30px 60px -25px rgba(0, 72, 124, 0.35);

  /* Z scale */
  --z-base: 1;
  --z-overlay: 10;
  --z-nav: 30;
  --z-modal: 50;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
p { color: var(--text-muted); max-width: 70ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--primary-lightless);
  border: 1px solid rgba(0, 72, 124, 0.1);
}
.eyebrow.on-dark {
  color: var(--accent);
  background: rgba(46, 203, 232, 0.12);
  border-color: rgba(46, 203, 232, 0.25);
}

.gradient-text {
  background: linear-gradient(100deg, var(--accent) 0%, var(--primary) 45%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Layout ---------- */
.container {
  width: min(100% - 2.5rem, var(--maxw));
  margin-inline: auto;
}
.container-wide { width: min(100% - 2rem, 1380px); margin-inline: auto; }
section { position: relative; padding: clamp(4rem, 8vw, 7rem) 0; }
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1rem; font-size: 1.1rem; }
.section-head.center p { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 24px -12px rgba(0, 72, 124, 0.7);
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 18px 30px -12px rgba(0, 72, 124, 0.8); transform: translateY(-2px); }
.btn-accent {
  background: linear-gradient(120deg, var(--accent-2) 0%, var(--accent-2-dark) 100%);
  color: #fff;
  box-shadow: 0 12px 24px -12px rgba(255, 112, 51, 0.7);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(255, 112, 51, 0.85); }
.btn-ghost {
  background: var(--glass-bg);
  color: var(--primary);
  border: 1px solid rgba(0, 72, 124, 0.16);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: #fff; border-color: var(--primary); transform: translateY(-2px); }
.btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-2px); }

/* ---------- Glass surfaces ---------- */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-lg);
}

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 1rem;
  left: 0; right: 0;
  z-index: var(--z-nav);
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  width: min(100% - 2rem, 1240px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.7rem 0.7rem 1.4rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-radius: 999px;
  box-shadow: 0 10px 30px -12px rgba(0, 55, 95, 0.25);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled .nav-inner { box-shadow: 0 14px 40px -14px rgba(0, 55, 95, 0.4); background: rgba(255, 255, 255, 0.88); }
.brand { display: flex; align-items: center; gap: 0.6rem; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.25rem; letter-spacing: -0.01em; color: var(--primary-dark); }
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand small { display: block; font-size: 0.62rem; font-weight: 500; letter-spacing: 0.22em; color: var(--gray3); margin-top: -2px; }
.nav-links { display: flex; align-items: center; gap: 0.3rem; }
.nav-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-links a:hover { color: var(--primary); background: var(--primary-lightless); }
.nav-links a.active { color: var(--primary); background: var(--primary-lightless); }
.nav-cta { display: flex; align-items: center; gap: 0.5rem; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 50%; align-items: center; justify-content: center; color: var(--primary); }
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 940px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0, 55, 95, 0.45);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-panel {
  position: absolute;
  top: 1rem; right: 1rem; left: 1rem;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(-12px);
  transition: transform 0.35s var(--ease);
}
.mobile-menu.open .mobile-panel { transform: translateY(0); }
.mobile-panel a { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: 1.1rem; color: var(--text); padding: 0.85rem 0.6rem; border-radius: 12px; }
.mobile-panel a:hover, .mobile-panel a.active { background: var(--primary-lightless); color: var(--primary); }
.mobile-panel .btn { width: 100%; margin-top: 0.5rem; }
.mobile-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; }

/* ---------- Background orbs ---------- */
.orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; }
.orb-1 { width: 480px; height: 480px; background: var(--accent); top: -140px; right: -100px; opacity: 0.35; animation: float 16s ease-in-out infinite; }
.orb-2 { width: 420px; height: 420px; background: var(--accent-2); bottom: -160px; left: -120px; opacity: 0.22; animation: float 20s ease-in-out infinite reverse; }
.orb-3 { width: 360px; height: 360px; background: var(--primary); top: 40%; left: 50%; opacity: 0.18; animation: float 24s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
}

/* ---------- Hero ---------- */
.hero { padding-top: clamp(8rem, 14vw, 11rem); padding-bottom: clamp(4rem, 8vw, 6rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; align-items: center; position: relative; z-index: 1; }
.hero h1 { margin-bottom: 1.4rem; }
.hero-lead { font-size: 1.2rem; margin-bottom: 2rem; max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.4rem; }
.hero-stats { display: flex; gap: 2.4rem; flex-wrap: wrap; }
.stat strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 1.9rem; font-weight: 700; color: var(--primary); line-height: 1; }
.stat span { font-size: 0.9rem; color: var(--text-faint); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Hero visual — bento */
.hero-visual { position: relative; }
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 90px;
  gap: 0.9rem;
}
.bento-card {
  border-radius: var(--radius);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.bento-card .ico { width: 30px; height: 30px; }
.bc-a { grid-column: span 4; grid-row: span 2; background: linear-gradient(135deg, var(--primary) 0%, var(--darker) 100%); color: #fff; }
.bc-b { grid-column: span 2; grid-row: span 2; background: linear-gradient(150deg, var(--accent) 0%, var(--accent-dark) 130%); color: #fff; }
.bc-c { grid-column: span 2; grid-row: span 2; background: #fff; border: 1px solid var(--gray5); color: var(--primary); }
.bc-d { grid-column: span 4; grid-row: span 1; background: linear-gradient(120deg, var(--accent-2) 0%, var(--accent-2-dark) 100%); color: #fff; flex-direction: row; align-items: center; gap: 0.8rem; }
.bento-card h4 { color: inherit; font-size: 1.05rem; }
.bento-card p { color: inherit; opacity: 0.85; font-size: 0.85rem; margin: 0; }
.bento-card .big { font-family: 'Space Grotesk', sans-serif; font-size: 2.1rem; font-weight: 700; line-height: 1; }

@media (max-width: 520px) {
  .bento { grid-auto-rows: 76px; }
  .hero-stats { gap: 1.5rem; }
}

/* ---------- Feature cards / grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.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: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--gray5);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(0, 72, 124, 0.2); }
.icon-box {
  width: 54px; height: 54px;
  flex: none;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-lightless);
  color: var(--primary);
  margin-bottom: 1.3rem;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.icon-box svg { width: 26px; height: 26px; flex: none; }
.card:hover .icon-box { background: var(--primary); color: #fff; }
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.98rem; margin: 0; }
.card-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.2rem; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.92rem; color: var(--primary); }
.card-link svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

/* Accent variants for icon boxes */
.icon-box.cyan { background: rgba(46, 203, 232, 0.14); color: var(--accent-dark); }
.card:hover .icon-box.cyan { background: var(--accent); color: #fff; }
.icon-box.orange { background: rgba(255, 112, 51, 0.14); color: var(--accent-2-dark); }
.card:hover .icon-box.orange { background: var(--accent-2); color: #fff; }
.icon-box.green { background: rgba(16, 135, 87, 0.13); color: var(--green); }
.card:hover .icon-box.green { background: var(--green); color: #fff; }

/* ---------- Dark / primary band ---------- */
.band-dark {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--darker) 100%);
  color: #fff;
  overflow: hidden;
}
.band-dark h2, .band-dark h3 { color: #fff; }
.band-dark p { color: rgba(255, 255, 255, 0.78); }
.band-soft { background: var(--bg-soft); }

/* ---------- Logo strip ---------- */
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2.5rem 3.5rem; }
.logos span { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.2rem; color: var(--gray4); letter-spacing: 0.02em; transition: color 0.25s var(--ease); }
.logos span:hover { color: var(--primary); }

/* ---------- Split / value rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 2rem; } .split.reverse .split-media { order: 0; } }
.check-list li { display: flex; gap: 0.8rem; align-items: flex-start; margin-bottom: 1rem; color: var(--text-muted); }
.check-list svg { width: 22px; height: 22px; flex: none; color: var(--green); margin-top: 2px; }
.check-list strong { color: var(--text); font-weight: 600; }

/* ---------- Tabs (solutions by industry) ---------- */
.tabs { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.5rem; }
.tab {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--gray5);
  background: #fff;
  transition: all 0.2s var(--ease);
}
.tab:hover { border-color: var(--primary); color: var(--primary); }
.tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.tab-panel { display: none; animation: fade 0.4s var(--ease); }
.tab-panel.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Stats band ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 760px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-block { text-align: center; padding: 1.5rem; }
.stat-block strong { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; line-height: 1; display: block; }
.band-dark .stat-block strong { color: var(--accent); }
.stat-block span { font-size: 0.95rem; opacity: 0.85; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .glass { padding: clamp(2.5rem, 5vw, 4rem); }
.cta-actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 2rem 1.5rem; background: #fff; border: 1px solid var(--gray5); border-radius: var(--radius); }
.step .num { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--primary); color: #fff; margin-bottom: 1.2rem; }
.step h4 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.step p { font-size: 0.92rem; margin: 0; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.price-card { background: #fff; border: 1px solid var(--gray5); border-radius: var(--radius-lg); padding: 2.2rem; display: flex; flex-direction: column; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured { background: linear-gradient(160deg, var(--primary) 0%, var(--darker) 100%); color: #fff; border: none; box-shadow: var(--shadow-lg); }
.price-card.featured h3, .price-card.featured .amount { color: #fff; }
.price-card.featured p, .price-card.featured .check-list li { color: rgba(255,255,255,0.85); }
.price-card.featured .check-list svg { color: var(--accent); }
.price-badge { align-self: flex-start; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 999px; background: var(--accent); color: var(--primary-dark); margin-bottom: 1rem; font-family: 'Space Grotesk', sans-serif; }
.amount { font-family: 'Space Grotesk', sans-serif; font-size: 2.6rem; font-weight: 700; color: var(--primary); line-height: 1; margin: 0.6rem 0; }
.amount small { font-size: 1rem; font-weight: 500; color: var(--text-faint); }
.price-card .check-list { margin: 1.5rem 0; flex-grow: 1; }
.price-card .check-list li { font-size: 0.95rem; margin-bottom: 0.7rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding-top: clamp(8rem, 14vw, 10rem); padding-bottom: clamp(3rem, 6vw, 4rem); text-align: center; overflow: hidden; }
.page-hero p { margin: 1.2rem auto 0; font-size: 1.15rem; }
.breadcrumb { display: inline-flex; gap: 0.5rem; align-items: center; font-size: 0.85rem; color: var(--text-faint); margin-bottom: 1.5rem; }
.breadcrumb a:hover { color: var(--primary); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--text); }
.field label .req { color: var(--red); margin-left: 2px; font-weight: 700; }
.field .optional { color: var(--text-faint); font-weight: 400; font-size: 0.82rem; }
.form-legend { font-size: 0.85rem; color: var(--text-faint); margin-bottom: 1.6rem; }
.form-legend .req { color: var(--red); font-weight: 700; }
.field input, .field textarea, .field select {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gray5);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 72, 124, 0.1);
}
.field textarea { resize: vertical; min-height: 130px; }
.contact-info-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.4rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--gray5); margin-bottom: 1.2rem; transition: box-shadow 0.25s var(--ease); }
.contact-info-card:hover { box-shadow: var(--shadow-md); }
.contact-info-card .ci-ico { width: 48px; height: 48px; flex: none; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--primary-lightless); color: var(--primary); }
.contact-info-card .ci-ico svg { width: 24px; height: 24px; }
.contact-info-card h4 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.contact-info-card p { font-size: 0.95rem; margin: 0; }
.form-note { font-size: 0.85rem; color: var(--text-faint); margin-top: 0.5rem; }
.form-success { display: none; align-items: center; gap: 0.6rem; padding: 1rem 1.2rem; border-radius: 12px; background: rgba(16,135,87,0.1); color: var(--green); font-weight: 600; margin-top: 1rem; }
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; flex: none; }
.form-error { display: none; align-items: center; gap: 0.6rem; padding: 1rem 1.2rem; border-radius: 12px; background: rgba(233, 45, 56, 0.1); color: var(--red); font-weight: 600; margin-top: 1rem; }
.form-error.show { display: flex; }
.form-error svg { width: 22px; height: 22px; flex: none; }

/* ---------- Team ---------- */
.team-card { text-align: center; padding: 2rem 1.5rem; }
.team-avatar { width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 1.2rem; background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%); display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.8rem; color: #fff; }
.team-card h4 { font-size: 1.15rem; margin-bottom: 0.2rem; }
.team-role { color: var(--accent-dark); font-weight: 600; font-size: 0.9rem; font-family: 'Space Grotesk', sans-serif; }

/* ---------- Values / mission ---------- */
.value-item { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.5rem; border-radius: var(--radius); transition: background 0.25s var(--ease); }
.value-item:hover { background: var(--bg-soft); }
.value-item .v-ico { width: 50px; height: 50px; flex: none; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--primary); color: #fff; }
.value-item .v-ico svg { width: 24px; height: 24px; }
.value-item h4 { margin-bottom: 0.3rem; }
.value-item p { margin: 0; font-size: 0.96rem; }

/* ---------- FAQ / accordion ---------- */
.faq-item { border-bottom: 1px solid var(--gray5); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; text-align: left; padding: 1.4rem 0; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.1rem; color: var(--text); }
.faq-q svg { width: 22px; height: 22px; flex: none; color: var(--primary); transition: transform 0.3s var(--ease); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a p { padding-bottom: 1.4rem; margin: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--primary-dark); color: rgba(255,255,255,0.7); padding: 4rem 0 2rem; position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; position: relative; z-index: 1; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer .brand { color: #fff; margin-bottom: 1rem; }
.footer .brand small { color: var(--accent); }
.footer-about p { color: rgba(255,255,255,0.65); font-size: 0.95rem; max-width: 34ch; }
.footer h5 { font-family: 'Space Grotesk', sans-serif; color: #fff; font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 600; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.95rem; transition: color 0.2s var(--ease); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 3rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.88rem; position: relative; z-index: 1; }
.socials { display: flex; gap: 0.6rem; }
.socials a { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); color: #fff; transition: background 0.25s var(--ease), transform 0.25s var(--ease); }
.socials a:hover { background: var(--accent); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 28s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .orb { animation: none; }
}
