:root {
  --c-bg: #050A18;
  --c-bg2: #07102A;
  --c-bg3: #0A1628;
  --c-card: #0D1F3C;
  --c-card2: rgba(13,31,60,0.6);
  --c-orange: #FF5C00;
  --c-orange-h: #FF7A28;
  --c-amber: #FFB800;
  --c-amber-l: #FFD060;
  --c-white: #FFFFFF;
  --c-off: #CDD3E0;
  --c-muted: #6B7A94;
  --c-border: rgba(255,255,255,0.07);
  --c-border-o: rgba(255,92,0,0.25);
  --radius: 14px;
  --radius-lg: 20px;
  --radius-pill: 100px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-o: 0 0 32px rgba(255,92,0,0.2);
  --shadow-card: 0 2px 24px rgba(0,0,0,0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--c-bg); color: var(--c-white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-orange); border-radius: 2px; }

/* ─── GLOBAL ATOMS ─── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

.pill-tag {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--c-border-o); border-radius: var(--radius-pill);
  color: var(--c-orange); font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  padding: 5px 14px; text-transform: uppercase; background: rgba(255,92,0,0.06);
}
.pill-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--c-orange); }

.section-label { margin-bottom: 12px; }
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 3rem); font-weight: 800;
  letter-spacing: -0.04em; line-height: 1.1; color: var(--c-white);
}
.section-title em { font-style: normal; color: var(--c-orange); }
.section-sub { color: var(--c-muted); font-size: 1rem; line-height: 1.75; margin-top: 1rem; max-width: 520px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: 0.875rem;
  padding: 12px 24px; border-radius: var(--radius); cursor: pointer;
  text-decoration: none; border: none; transition: all 0.2s ease; white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn-solid { background: var(--c-orange); color: #fff; box-shadow: 0 0 0 0 rgba(255,92,0,0.4); }
.btn-solid:hover { background: var(--c-orange-h); box-shadow: 0 0 0 6px rgba(255,92,0,0.15); transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,0.05); color: var(--c-off); border: 1px solid var(--c-border); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.08); color: #fff; }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; border-radius: 10px; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 64px; display: flex; align-items: center;
  background: rgba(5,10,24,0.85); backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--c-border);
  transition: border-color 0.3s ease;
}
.nav.active { border-color: rgba(255,92,0,0.15); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 2rem; width: 100%;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo-mark {
  width: 130px; height: 130px; border-radius: 9px;
  border: 0px solid rgba(255,92,0,0.35); overflow: hidden;
  background: rgba(5,10,24,0.8);
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark img { width: 100px; height: 100px; object-fit: cover; margin-top: 10px; }
.nav-logo-name {
  font-size: 1.05rem; font-weight: 800; letter-spacing: -0.03em;
  color: var(--c-white);
}
.nav-logo-name b { color: var(--c-orange); font-weight: 800; }

.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-links a {
  color: var(--c-muted); text-decoration: none; font-size: 0.85rem;
  font-weight: 500; padding: 6px 12px; border-radius: 8px;
  transition: all 0.15s ease;
}
.nav-links a:hover { color: var(--c-white); background: rgba(255,255,255,0.06); }

.nav-end { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Lang switcher — iOS pill style */
.lang-pill {
  display: flex; background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border); border-radius: 10px; padding: 3px; gap: 2px;
}
.lang-pill button {
  background: none; border: none; cursor: pointer; font-family: var(--font);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  color: var(--c-muted); padding: 4px 9px; border-radius: 7px; transition: all 0.15s ease;
}
.lang-pill button.on { background: var(--c-orange); color: #fff; }
.lang-pill button:not(.on):hover { color: var(--c-white); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 4px; }
.hamburger span { display: block; width: 20px; height: 1.5px; background: var(--c-off); border-radius: 2px; transition: all 0.2s ease; }

/* ─── MOBILE NAV ─── */
.mobile-nav {
  display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 999;
  background: rgba(5,10,24,0.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border); padding: 1.25rem 2rem 1.5rem;
  flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--c-off); text-decoration: none; font-size: 0.95rem; font-weight: 500;
  padding: 10px 12px; border-radius: 10px; transition: all 0.15s ease;
}
.mobile-nav a:hover { background: rgba(255,255,255,0.05); color: #fff; }
.mobile-nav .divider { height: 1px; background: var(--c-border); margin: 8px 0; }
/* ═══════ Expertise pillars grid ════════════════════════════════ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}


.pillar-card:hover .pillar-icon {
  background: rgba(255, 92, 0, 0.2);
  transform: rotate(-4deg) scale(1.06);
}

.pillar-icon svg { width: 28px; height: 28px; color: var(--neon-orange); }

.pillar-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--neon-orange);
  text-transform: uppercase;
  transition: gap var(--t-fast);
  cursor: pointer;
}

.pillar-more:hover { gap: 10px; }


/* ─── HERO ─── */
.hero {
  min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  padding: 96px 2rem 5rem;
  background:
    radial-gradient(ellipse 70% 50% at 65% 35%, rgba(255,92,0,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(255,184,0,0.03) 0%, transparent 55%),
    linear-gradient(160deg, #050A18 0%, #07102A 100%);
  position: relative; overflow: hidden;
}

/* Hex grid pattern */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='48'%3E%3Cpolygon points='28,2 54,16 54,44 28,58 2,44 2,16' fill='none' stroke='rgba(255,92,0,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 48px;
}

.hero-wrap {
  max-width: 1280px; margin: 0 auto; width: 100%; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}

/* Left */
.hero-left {}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 1.5rem;
  background: rgba(255,92,0,0.08); border: 1px solid rgba(255,92,0,0.2);
  border-radius: var(--radius-pill); padding: 6px 16px;
}
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-orange); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.3; } }
.hero-eyebrow-text { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-orange); }

.hero-h1 {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem); font-weight: 900;
  letter-spacing: -0.05em; line-height: 1.0; margin-bottom: 1.5rem;
}
.hero-h1 .line2 { color: var(--c-orange); }
.hero-h1 .line3 { color: var(--c-amber); }

.hero-sub {
  font-size: 1rem; color: var(--c-muted); line-height: 1.8;
  max-width: 480px; margin-bottom: 2.5rem; font-weight: 400;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-social-proof {
  display: flex; align-items: center; gap: 1.5rem;
  padding-top: 2rem; border-top: 1px solid var(--c-border);
}
.proof-item {}
.proof-val { font-size: 1.6rem; font-weight: 900; letter-spacing: -0.04em; color: var(--c-amber); line-height: 1; }
.proof-lbl { font-size: 0.72rem; color: var(--c-muted); margin-top: 3px; font-weight: 500; letter-spacing: 0.02em; }
.proof-divider { width: 1px; height: 36px; background: var(--c-border); }

/* Right — logo centré */
.hero-right {
  display: flex; align-items: center; justify-content: center; position: relative;
}
.hero-bee-wrap {
  position: relative; width: 380px; height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.hero-orbit {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,92,0,0.12); animation: spin linear infinite;
}
.hero-orbit:nth-child(1) { width: 360px; height: 360px; animation-duration: 40s; }
.hero-orbit:nth-child(2) { width: 280px; height: 280px; animation-duration: 25s; animation-direction: reverse; border-color: rgba(255,184,0,0.08); }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Orbit dots */
.hero-orbit:nth-child(1)::before,
.hero-orbit:nth-child(1)::after {
  content: ''; position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--c-orange);
  top: 50%; transform: translateY(-50%);
}
.hero-orbit:nth-child(1)::before { left: -3px; }
.hero-orbit:nth-child(1)::after { right: -3px; background: var(--c-amber); }

.hero-bee-img {
  position: relative; z-index: 2;
  filter: drop-shadow(0 0 48px rgba(255,92,0,0.35)) drop-shadow(0 0 12px rgba(255,184,0,0.1));
  animation: breathe 5s ease-in-out infinite;
}
@keyframes breathe { 0%,100% { transform: scale(1) translateY(0); } 50% { transform: scale(1.02) translateY(-6px); } }
.hero-bee-img img { width: 360px; height: 360px; object-fit: contain; display: block; }

/* Floating chips */
.chip {
  position: absolute; z-index: 3;
  background: rgba(7,16,42,0.85); backdrop-filter: blur(12px);
  border: 1px solid var(--c-border); border-radius: 12px;
  padding: 10px 14px; animation: float-chip ease-in-out infinite;
}
@keyframes float-chip { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-6px);} }
.chip:nth-child(4) { top: 20px; right: -10px; animation-duration: 4s; }
.chip:nth-child(5) { bottom: 60px; left: -20px; animation-duration: 5.5s; animation-delay: -1.5s; }
.chip:nth-child(6) { top: 160px; left: -30px; animation-duration: 3.8s; animation-delay: -0.8s; }
.chip-ico { font-size: 1rem; margin-bottom: 3px; }
.chip-label { font-size: 0.65rem; font-weight: 700; color: var(--c-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.chip-value { font-size: 0.82rem; font-weight: 700; color: var(--c-white); }
.chip-value.orange { color: var(--c-orange); }
.chip-value.amber { color: var(--c-amber); }

/* Scroll cue */
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  cursor: pointer; z-index: 1;
}
.scroll-track { width: 1.5px; height: 36px; background: linear-gradient(to bottom, var(--c-orange), transparent); animation: drip 1.8s ease-in-out infinite; }
@keyframes drip { 0%,100%{opacity:0.6;transform:scaleY(1) translateY(0);} 50%{opacity:1;transform:scaleY(1.1) translateY(4px);} }
.scroll-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-muted); }

/* ─── TECH STRIP ─── */
.tech-strip {
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  background: var(--c-bg2); padding: 1.5rem 2rem;
}
.tech-strip-inner { max-width: 1280px; margin: 0 auto; }
.tech-strip-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-muted); text-align: center; margin-bottom: 1rem; }
.tech-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.tech-chip {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--c-border);
  border-radius: 9px; padding: 6px 14px;
  font-size: 0.8rem; font-weight: 600; color: var(--c-off);
  transition: all 0.15s ease; letter-spacing: -0.01em;
}
.tech-chip:hover { border-color: rgba(255,92,0,0.3); color: var(--c-white); background: rgba(255,92,0,0.05); }
.tech-chip-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--c-orange); opacity: 0.7; }

/* ─── SERVICES ─── */
.services { padding: 8rem 2rem; background: var(--c-bg); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  border: 1px solid var(--c-border); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--c-border); margin-top: 4rem;
}
.svc-card {
  background: var(--c-bg2); padding: 2rem 1.75rem;
  transition: background 0.2s ease; position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,92,0,0.04) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.2s ease;
}
.svc-card:hover { background: var(--c-card); }
.svc-card:hover::after { opacity: 1; }

.svc-icon {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 1.25rem;
  background: rgba(255,92,0,0.08); border: 1px solid rgba(255,92,0,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  transition: all 0.2s ease;
}
.svc-card:hover .svc-icon { background: rgba(255,92,0,0.14); border-color: rgba(255,92,0,0.3); }
.svc-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.svc-desc { font-size: 0.82rem; color: var(--c-muted); line-height: 1.75; margin-bottom: 1.25rem; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.svc-tag {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em;
  background: rgba(255,184,0,0.07); border: 1px solid rgba(255,184,0,0.15);
  color: rgba(255,184,0,0.85); border-radius: 6px; padding: 3px 8px;
}
.svc-arrow {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--c-orange); font-size: 0.78rem; font-weight: 600;
  text-decoration: none; margin-top: 1rem; transition: gap 0.15s ease;
}
.svc-arrow:hover { gap: 9px; }

/* ─── WHY US ─── */
.why { padding: 8rem 2rem; background: var(--c-bg2); }
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  border: 1px solid var(--c-border); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--c-border); margin-top: 4rem;
}
.why-item {
  background: var(--c-bg2); padding: 2.5rem 2rem;
  transition: background 0.2s ease;
}
.why-item:hover { background: var(--c-card); }
.why-num {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em;
  color: var(--c-orange); text-transform: uppercase; margin-bottom: 0.75rem;
}
.why-title { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.6rem; }
.why-desc { font-size: 0.85rem; color: var(--c-muted); line-height: 1.78; }

/* ─── PROCESS ─── */
.process { padding: 8rem 2rem; background: var(--c-bg); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 4rem; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 24px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-orange), var(--c-amber), transparent);
  z-index: 0;
}
.pstep { position: relative; z-index: 1; text-align: center; }
.pstep-num {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 1.25rem;
  background: var(--c-bg); border: 1.5px solid var(--c-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 800; color: var(--c-orange);
  box-shadow: 0 0 16px rgba(255,92,0,0.2);
}
.pstep-title { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.pstep-desc { font-size: 0.78rem; color: var(--c-muted); line-height: 1.7; }

/* ─── METRICS ─── */
.metrics {
  padding: 6rem 2rem;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,92,0,0.07) 0%, transparent 60%),
              var(--c-bg2);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.metrics-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid var(--c-border); border-radius: var(--radius-lg); overflow: hidden; background: var(--c-border); margin-top: 3rem; }
.metric-block { background: var(--c-bg); padding: 2rem 1.5rem; text-align: center; }
.metric-val { font-size: 2.8rem; font-weight: 900; letter-spacing: -0.06em; line-height: 1; }
.metric-val.o { color: var(--c-orange); }
.metric-val.a { color: var(--c-amber); }
.metric-lbl { font-size: 0.75rem; color: var(--c-muted); margin-top: 8px; font-weight: 500; }
.metric-sub { font-size: 0.65rem; color: rgba(76,175,80,0.9); font-weight: 700; margin-top: 4px; }

/* ─── ABOUT ─── */
.about { padding: 8rem 2rem; background: var(--c-bg); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

/* Map card */
.map-card {
  background: var(--c-bg2); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
}
.map-card-header {
  padding: 1rem 1.5rem; border-bottom: 1px solid var(--c-border);
  display: flex; align-items: center; gap: 8px;
}
.map-card-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-orange); }
.map-card-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-muted); }
.map-card-body { padding: 1.5rem; }

/* About text */
.about-title { font-size: clamp(1.6rem, 2.8vw, 2.6rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.15; margin-bottom: 1rem; }
.about-desc { color: var(--c-muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 2rem; }
.about-list { display: flex; flex-direction: column; gap: 10px; }
.about-row {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255,255,255,0.02); border: 1px solid var(--c-border);
  border-radius: 12px; padding: 14px 16px; transition: all 0.15s ease;
}
.about-row:hover { border-color: rgba(255,92,0,0.2); background: rgba(255,92,0,0.03); }
.about-row-ico { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.about-row-title { font-size: 0.875rem; font-weight: 700; margin-bottom: 2px; }
.about-row-desc { font-size: 0.78rem; color: var(--c-muted); line-height: 1.5; }

/* ─── TESTIMONIALS ─── */
.testi { padding: 8rem 2rem; background: var(--c-bg2); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--c-border); border-radius: var(--radius-lg); overflow: hidden; background: var(--c-border); margin-top: 4rem; }
.testi-card { background: var(--c-bg2); padding: 2rem 1.75rem; transition: background 0.2s ease; }
.testi-card:hover { background: var(--c-card); }
.testi-q { font-size: 2rem; color: var(--c-orange); line-height: 1; margin-bottom: 0.875rem; opacity: 0.5; font-family: Georgia, serif; }
.testi-text { font-size: 0.875rem; color: var(--c-off); line-height: 1.8; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-orange), var(--c-amber));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 800; color: #fff; flex-shrink: 0;
}
.testi-name { font-size: 0.85rem; font-weight: 700; line-height: 1.2; }
.testi-role { font-size: 0.72rem; color: var(--c-muted); margin-top: 2px; }

/* ─── CONTACT ─── */
.contact { padding: 8rem 2rem; background: var(--c-bg); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.contact-info-title { font-size: clamp(1.6rem, 2.8vw, 2.5rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.15; margin-bottom: 1rem; }
.contact-sub { color: var(--c-muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 8px; }
.cdetail {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: rgba(255,255,255,0.02);
  border: 1px solid var(--c-border); border-radius: 12px;
}
.cdetail-ico { font-size: 1rem; }
.cdetail-label { font-size: 0.7rem; color: var(--c-muted); font-weight: 500; }
.cdetail-val { font-size: 0.875rem; font-weight: 600; }

/* Form */
.form-card {
  background: var(--c-bg2); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); padding: 2.25rem;
}
.field { margin-bottom: 1rem; }
.field-label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 6px; }
.field-input, .field-textarea, .field-select {
  width: 100%; background: rgba(5,10,24,0.7); border: 1px solid var(--c-border);
  border-radius: 10px; color: var(--c-white); font-family: var(--font); font-size: 0.875rem;
  padding: 11px 14px; outline: none; transition: all 0.15s ease;
  -webkit-appearance: none;
}
.field-input:focus, .field-textarea:focus, .field-select:focus {
  border-color: var(--c-orange); box-shadow: 0 0 0 3px rgba(255,92,0,0.1);
}
.field-input::placeholder, .field-textarea::placeholder { color: var(--c-muted); font-weight: 400; }
.field-textarea { min-height: 100px; resize: vertical; }
.field-select option { background: var(--c-card); }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-note { text-align: center; font-size: 0.72rem; color: var(--c-muted); margin-top: 10px; }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--c-border);
  background: rgba(5,10,24,0.98); padding: 4rem 2rem 2rem;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--c-border); margin-bottom: 2rem; }
.footer-brand-name { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 0.75rem; }
.footer-brand-name b { color: var(--c-orange); }
.footer-tagline { color: var(--c-muted); font-size: 0.8rem; line-height: 1.7; margin-bottom: 1.25rem; max-width: 220px; }
.footer-socials { display: flex; gap: 8px; }
.footer-social-btn {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; color: var(--c-muted);
  cursor: pointer; transition: all 0.15s ease; text-decoration: none;
}
.footer-social-btn:hover { border-color: var(--c-orange); color: var(--c-orange); background: rgba(255,92,0,0.08); }
.footer-col-title { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-off); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-col ul li a { color: var(--c-muted); text-decoration: none; font-size: 0.82rem; transition: color 0.15s ease; }
.footer-col ul li a:hover { color: var(--c-white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.75rem; color: var(--c-muted); }
.footer-copy a { color: var(--c-orange); text-decoration: none; }
.footer-legal-links { display: flex; gap: 1.25rem; }
.footer-legal-links a { font-size: 0.75rem; color: var(--c-muted); text-decoration: none; transition: color 0.15s ease; }
.footer-legal-links a:hover { color: var(--c-white); }

/* ─── TECH CAROUSEL ─── */
.tech-section {
  padding: 6rem 2rem;
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.tech-carousel-wrap {
  overflow: hidden; position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.tech-carousel-track {
  display: flex; gap: 12px; align-items: center;
  width: max-content;
  animation: carousel-scroll 38s linear infinite;
}
.tech-carousel-track:hover { animation-play-state: paused; }
@keyframes carousel-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.tl-card {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.02); border: 1px solid var(--c-border);
  border-radius: 14px; padding: 16px 20px; min-width: 100px;
  transition: all 0.2s ease; cursor: default;
}
.tl-card:hover {
  border-color: rgba(255,92,0,0.3); background: rgba(255,92,0,0.04);
  transform: translateY(-3px);
}
.tl-card img { width: 40px; height: 40px; object-fit: contain; display: block; }
.tl-card span { font-size: 0.7rem; font-weight: 600; color: var(--c-muted); letter-spacing: 0.02em; white-space: nowrap; }
.tl-card:hover span { color: var(--c-white); }
.cdetail { transition: border-color 0.15s ease, background 0.15s ease; }
a.cdetail:hover { border-color: rgba(255,92,0,0.3); background: rgba(255,92,0,0.04); }
.cdetail-link { color: var(--c-orange); }
a.cdetail:hover .cdetail-link { text-decoration: underline; }
/* ─── GLOBE CANVAS ─── */
#globeCanvas { cursor: grab; border-radius: 10px; }
#globeCanvas:active { cursor: grabbing; }

/* ─── FADE IN ─── */
.appear { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.appear.in { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .hero-wrap, .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: none; }
  .services-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-end .btn { display: none; }
  .services-grid, .testi-grid, .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .metrics-row { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .row2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-h1 { font-size: 2.1rem; }
  .metrics-row { grid-template-columns: 1fr; }
  .hero-social-proof { flex-wrap: wrap; gap: 1rem; }
}
