/* ═══════════════════════════════════════════
   ORAMIZ — style.css
   Charte Officielle : Navy · Or · Rouge
═══════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  /* Backgrounds */
  --bg:      #04080f;
  --bg-2:    #070d18;
  --bg-3:    #0d1424;
  --surface: #0f1a2e;
  --surface-2: #162038;

  --border:      rgba(201,168,76,0.10);
  --border-glow: rgba(201,168,76,0.28);

  --text:   #edf1f9;
  --text-2: #8a9bbf;
  --text-3: #46587a;

  /* Brand palette */
  --navy:        #1B2C6B;
  --navy-light:  #233585;
  --gold:        #C9A84C;
  --gold-light:  #e0bc6a;
  --red:         #D32F2F;
  --red-light:   #e94444;

  --accent:      var(--gold);
  --accent-2:    #e8c96a;
  --accent-3:    var(--red);
  --accent-glow: rgba(201,168,76,0.30);

  --gradient:   linear-gradient(135deg, #1B2C6B 0%, #C9A84C 60%, #D32F2F 100%);
  --gradient-gold: linear-gradient(135deg, #C9A84C, #e8c96a);
  --gradient-navy: linear-gradient(135deg, #1B2C6B, #2a4199);

  --radius: 12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.7);
  --shadow-glow: 0 0 40px rgba(201,168,76,0.12);

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }

/* ── CONTAINERS ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

/* ── TYPOGRAPHY UTILITIES ── */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(5,7,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; }
.logo-img {
  height: 48px; width: auto;
  object-fit: contain;
  transition: var(--transition);
}
.logo-img:hover { opacity: 0.85; filter: drop-shadow(0 0 8px rgba(201,168,76,0.5)); }
.logo-img-footer {
  height: 56px; width: auto;
  object-fit: contain;
  opacity: 0.9;
}
.logo-mark {
  width: 34px; height: 34px;
  background: var(--gradient);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem; font-weight: 800;
}
.logo-text { color: var(--text); }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 8px 16px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500; color: var(--text-2);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-cta {
  background: var(--gradient) !important;
  color: white !important;
  font-weight: 600 !important;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(4,8,15,0.97); backdrop-filter: blur(20px);
  align-items: center; justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--text-2); padding: 12px 32px; border-radius: 12px;
  transition: var(--transition); display: block;
}
.mobile-menu a:hover { color: var(--text); background: var(--surface); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  padding: 100px 24px 60px;
  max-width: 1160px; margin: 0 auto;
  position: relative;
}
.hero-bg {
  position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none;
}
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.30;
  animation: orb-float 12s ease-in-out infinite;
}
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, #1B2C6B, transparent); top: -200px; right: -100px; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, #D32F2F, transparent); bottom: 0; left: -150px; animation-delay: 4s; }
.orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, #C9A84C, transparent); top: 40%; left: 40%; animation-delay: 8s; }

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-content { z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  padding: 8px 16px; border-radius: 100px;
  font-size: 0.8rem; color: var(--text-2); margin-bottom: 32px;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #10b981; box-shadow: 0 0 8px #10b981; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title .line { display: block; opacity: 0; transform: translateY(30px); animation: line-in 0.7s forwards; }
.hero-title .line-1 { animation-delay: 0.1s; }
.hero-title .line-2 { animation-delay: 0.25s; }
.hero-title .line-3 { animation-delay: 0.4s; }

@keyframes line-in {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 1.05rem; color: var(--text-2); line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0; animation: line-in 0.7s 0.6s forwards;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0; animation: line-in 0.7s 0.75s forwards;
}

.hero-stats {
  display: flex; align-items: center; gap: 32px;
  opacity: 0; animation: line-in 0.7s 0.9s forwards;
}
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.75rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em; }
.stat-div { width: 1px; height: 40px; background: var(--border); }

/* ── TERMINAL ── */
.hero-visual { z-index: 1; }
.terminal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  animation: terminal-in 0.8s 0.5s both;
}
@keyframes terminal-in {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.terminal-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: var(--surface-2); border-bottom: 1px solid var(--border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.terminal-title { margin-left: auto; font-size: 0.75rem; color: var(--text-3); font-family: 'Courier New', monospace; }
.terminal-body {
  padding: 20px; font-family: 'Courier New', monospace;
  font-size: 0.82rem; line-height: 1.8; color: var(--text-2);
  min-height: 280px;
}
.t-line { display: block; opacity: 0; }
.t-line.visible { opacity: 1; }
.t-prompt { color: var(--accent); }
.t-cmd { color: var(--text); }
.t-out { color: #10b981; }
.t-out2 { color: var(--accent-2); }
.t-out3 { color: #f59e0b; }
.t-cursor { display: inline-block; width: 8px; height: 14px; background: var(--accent); animation: blink 1s infinite; vertical-align: middle; }
@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker-wrap {
  overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--surface); padding: 14px 0;
}
.ticker {
  display: flex; gap: 32px; white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}
.ticker span { font-size: 0.85rem; color: var(--text-2); font-weight: 500; }
.ticker .sep { color: var(--accent); }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 10px;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 500;
  cursor: pointer; border: none; transition: var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--gold));
  color: white;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); }
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--surface); color: var(--text); border-color: var(--border-glow); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold); padding: 6px 16px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800; line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub { font-size: 1rem; color: var(--text-2); max-width: 560px; margin: 0 auto; }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services { background: var(--bg); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(20px);
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient); opacity: 0; transition: var(--transition);
  border-radius: inherit;
}
.service-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.service-card:hover::before { opacity: 0.04; }

.service-card.featured {
  border-color: rgba(201,168,76,0.35);
  background: linear-gradient(135deg, var(--surface), rgba(201,168,76,0.05));
}
.featured-tag {
  position: absolute; top: 16px; right: 16px;
  background: var(--gradient); color: white;
  font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.08em;
}

.service-icon {
  width: 48px; height: 48px; margin-bottom: 20px;
  color: var(--accent-2);
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  margin-bottom: 12px; color: var(--text);
}
.service-card p { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }

.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tags li {
  background: var(--bg-3); border: 1px solid var(--border);
  color: var(--text-3); font-size: 0.72rem;
  padding: 4px 10px; border-radius: 6px; font-weight: 500;
}

/* ══════════════════════════════════════
   PROOF / CHIFFRES
══════════════════════════════════════ */
.proof-section {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.proof-item { text-align: center; }
.proof-num {
  display: inline-block;
  font-family: var(--font-display); font-size: 3rem; font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.proof-unit {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.proof-item p { font-size: 0.85rem; color: var(--text-3); margin-top: 8px; }

/* ══════════════════════════════════════
   ÉQUIPE
══════════════════════════════════════ */
.team-section { background: var(--bg-2); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.team-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
  opacity: 0; transform: translateY(20px);
}
.team-card.visible { opacity: 1; transform: translateY(0); }
.team-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.team-photo-wrap {
  position: relative; aspect-ratio: 1;
  overflow: hidden;
}
.team-photo {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; }

.placeholder-photo {
  background: linear-gradient(135deg, #1B2C6B, #0d1424);
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 800;
  color: rgba(201,168,76,0.25);
}
.placeholder-photo.p2 { background: linear-gradient(135deg, #2a1a1a, #1B2C6B); }
.placeholder-photo.p3 { background: linear-gradient(135deg, #1B2C6B, #0d2211); }
.placeholder-photo.p4 { background: linear-gradient(135deg, #3a1a0a, #1B2C6B); }

.team-socials {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; gap: 8px; justify-content: center; padding: 12px;
  background: linear-gradient(transparent, rgba(5,7,15,0.85));
  opacity: 0; transform: translateY(8px);
  transition: var(--transition);
}
.team-card:hover .team-socials { opacity: 1; transform: translateY(0); }
.team-socials a {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--surface-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2); transition: var(--transition);
}
.team-socials a:hover { background: var(--accent); color: white; border-color: var(--accent); }
.team-socials svg { width: 14px; height: 14px; }

.team-info { padding: 20px; }
.team-info h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-role {
  display: inline-block; font-size: 0.75rem; color: var(--accent-2);
  font-weight: 500; margin-bottom: 10px;
}
.team-bio { font-size: 0.82rem; color: var(--text-3); line-height: 1.6; }

/* ══════════════════════════════════════
   À PROPOS
══════════════════════════════════════ */
.about-section { background: var(--bg); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-left .section-title { text-align: left; margin-bottom: 20px; }
.about-left p { color: var(--text-2); margin-bottom: 16px; line-height: 1.8; }

.about-values { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.value-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); transition: var(--transition);
}
.value-item:hover { border-color: var(--border-glow); }
.value-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.value-item strong { display: block; font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 4px; }
.value-item p { font-size: 0.85rem; color: var(--text-3); margin: 0; }

/* ── About Visual ── */
.about-visual {
  position: relative; width: 100%; aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 440px; margin: 0 auto;
}
.av-center-logo {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 80px; height: 80px; border-radius: 20px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: white;
  box-shadow: 0 0 60px var(--accent-glow);
  z-index: 2;
}
.av-card {
  position: absolute; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 500; color: var(--text-2);
  white-space: nowrap;
  animation: av-float 6s ease-in-out infinite;
}
.av-icon { font-size: 1.3rem; }
.av-card-1 { top: 20%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.av-card-2 { top: 50%; right: 5%; transform: translateY(-50%); animation-delay: 1.5s; }
.av-card-3 { bottom: 20%; left: 50%; transform: translateX(-50%); animation-delay: 3s; }
.av-card-4 { top: 50%; left: 0; transform: translateY(-50%); animation-delay: 4.5s; }

@keyframes av-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}
.av-card-2 { animation-name: av-float-lr; }
.av-card-4 { animation-name: av-float-lr2; }
@keyframes av-float-lr {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(6px); }
}
@keyframes av-float-lr2 {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(-6px); }
}

/* ══════════════════════════════════════
   CTA BAND
══════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, rgba(27,44,107,0.20), rgba(201,168,76,0.10), rgba(211,47,47,0.10));
  border-top: 1px solid rgba(201,168,76,0.15); border-bottom: 1px solid rgba(27,44,107,0.3);
  padding: 80px 24px; text-align: center;
}
.cta-content h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800; margin-bottom: 12px;
}
.cta-content p { color: var(--text-2); margin-bottom: 32px; font-size: 1.05rem; }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-section { background: var(--bg-2); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--accent-2);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item strong { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 2px; }
.contact-item p { font-size: 0.9rem; color: var(--text-2); }

.contact-socials { display: flex; gap: 12px; padding-top: 8px; }
.social-btn {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2); transition: var(--transition);
}
.social-btn:hover { background: var(--accent); color: white; border-color: var(--accent); transform: translateY(-2px); }
.social-btn svg { width: 18px; height: 18px; }

/* ── FORM ── */
.contact-form {
  display: flex; flex-direction: column; gap: 20px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
label { font-size: 0.82rem; font-weight: 500; color: var(--text-2); }
input, select, textarea {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 14px;
  color: var(--text); font-family: var(--font-body); font-size: 0.9rem;
  transition: var(--transition); outline: none; resize: vertical;
}
input::placeholder, textarea::placeholder { color: var(--text-3); }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
select { cursor: pointer; }
select option { background: var(--bg-3); }
.btn svg { width: 18px; height: 18px; }

.form-success {
  display: none; text-align: center;
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3);
  color: #10b981; padding: 12px; border-radius: 8px; font-size: 0.9rem;
}
.form-success.show { display: block; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 60px 24px 24px;
}
.footer-top {
  display: grid; grid-template-columns: 1fr 2fr; gap: 60px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-3); line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  margin-bottom: 16px; color: var(--text);
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.85rem; color: var(--text-3); transition: var(--transition); }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: var(--text-3);
}

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════ */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s;
}
[data-reveal].revealed {
  opacity: 1; transform: translateY(0);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-left .section-title { text-align: center; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 24px; }
}
