/* BRIGHTCHIP TRADING — Global Stylesheet
   Aesthetic: Industrial Precision meets Corporate Authority
   Palette: Deep obsidian base, electric cyan accents, cold steel grays */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=JetBrains+Mono:wght@400;500;600&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --obsidian: #0a0e17;
  --deep-navy: #0d1321;
  --slate-900: #111827;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --cyan-600: #0891b2;
  --electric: #00e5ff;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --emerald: #10b981;
  --amber: #f59e0b;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  background: var(--obsidian);
  color: var(--slate-300);
  font-size: 0.875rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Global typography defaults */
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}
p {
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ── Utility ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* ── Noise Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(10, 14, 23, 0.96);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-600));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--obsidian);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--slate-400);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--cyan-400);
  border-radius: 1px;
}
.nav-cta {
  background: linear-gradient(135deg, var(--cyan-500), var(--blue-600)) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  transition: opacity 0.2s, transform 0.2s !important;
}
.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--cyan-500), var(--blue-600)) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 23, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.mobile-overlay.active { display: flex; }
.mobile-overlay a {
  text-decoration: none;
  color: var(--slate-300);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  padding: 12px 24px;
  transition: color 0.2s;
}
.mobile-overlay a:hover { color: var(--cyan-400); }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ── Hero Carousel ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}
.hero-carousel-slide.active {
  opacity: 1;
}
.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Ken Burns subtle zoom */
.hero-carousel-slide.active img {
  animation: kenBurns 8s ease-out forwards;
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
/* Dark overlay for text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,14,23,0.7) 0%, rgba(10,14,23,0.4) 40%, rgba(10,14,23,0.6) 70%, rgba(10,14,23,0.92) 100%),
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(6, 182, 212, 0.06) 0%, transparent 60%);
}
/* Grid pattern on top */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
  pointer-events: none;
}
/* Carousel indicators */
.hero-indicators {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}
.hero-indicator {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.4s, width 0.4s;
  border: none;
  padding: 0;
}
.hero-indicator.active {
  background: var(--cyan-400);
  width: 48px;
}
/* Progress bar on active indicator */
.hero-indicator .progress {
  display: block;
  height: 100%;
  border-radius: 2px;
  background: var(--cyan-400);
  width: 0;
}
.hero-indicator.active .progress {
  animation: indicatorFill 6s linear forwards;
}
@keyframes indicatorFill {
  0% { width: 0; }
  100% { width: 100%; }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
}
/* Legacy fallback bg */
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(6, 182, 212, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 80% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
              var(--obsidian);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan-400);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-400);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1rem;
  color: var(--slate-400);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--cyan-500), var(--blue-600));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}
.btn-primary:hover { box-shadow: 0 8px 30px rgba(6, 182, 212, 0.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--slate-700);
}
.btn-outline:hover { border-color: var(--slate-600); background: rgba(255,255,255,0.03); }

/* ── Sections ── */
section {
  padding: 100px 0;
  position: relative;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cyan-400);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  font-weight: 600;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 0.875rem;
  color: var(--slate-400);
  max-width: 640px;
  line-height: 1.8;
}
.section-header {
  margin-bottom: 64px;
}
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

.section-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  margin: 0;
}

/* ── Cards ── */
.card {
  background: linear-gradient(135deg, rgba(30,41,59,0.5), rgba(17,24,39,0.8));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 36px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 182, 212, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.card .card-sub {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cyan-400);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.card p {
  font-size: 0.875rem;
  color: var(--slate-400);
  line-height: 1.7;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

/* ── Stats Row ── */
.stats-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-item .stat-num span { color: var(--cyan-400); }
.stat-item .stat-label {
  font-size: 0.875rem;
  color: var(--slate-400);
  margin-top: 4px;
}

/* ── Region Banner ── */
.region-banner {
  background: linear-gradient(135deg, rgba(6,182,212,0.05), rgba(59,130,246,0.05));
  border: 1px solid rgba(6,182,212,0.1);
  border-radius: 20px;
  padding: 64px;
  text-align: center;
}
.region-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.region-banner p {
  font-size: 0.875rem;
  color: var(--slate-400);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── Footer ── */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--deep-navy);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--slate-400);
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--slate-400);
  font-size: 0.875rem;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--slate-300); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--slate-500);
}
.social-icons {
  display: flex;
  gap: 12px;
}
.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--slate-400);
  font-size: 0.85rem;
  transition: border-color 0.2s, color 0.2s;
}
.social-icons a:hover {
  border-color: rgba(6,182,212,0.3);
  color: var(--cyan-400);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .region-banner { padding: 40px 24px; }
  .stats-row { gap: 32px; }
  .nav { padding: 0 16px; }
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(6,182,212,0.06) 0%, transparent 60%),
              var(--obsidian);
}
.page-hero-content {
  position: relative;
  z-index: 2;
}

/* ── Product Spec Cards ── */
.spec-card {
  background: linear-gradient(180deg, rgba(30,41,59,0.4), rgba(10,14,23,0.8));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 40px;
  transition: transform 0.3s, border-color 0.3s;
}
.spec-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6,182,212,0.15);
}
.spec-card .spec-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan-400);
  background: rgba(6,182,212,0.08);
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 16px;
}
.spec-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.spec-card .spec-detail {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--slate-400);
  margin-bottom: 16px;
}
.spec-card p {
  font-size: 0.875rem;
  color: var(--slate-400);
  line-height: 1.7;
}

/* ── Solution Cards ── */
.solution-card {
  background: linear-gradient(180deg, rgba(30,41,59,0.3), rgba(10,14,23,0.6));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 44px;
  transition: transform 0.3s, border-color 0.3s;
}
.solution-card:hover {
  transform: translateY(-2px);
  border-color: rgba(6,182,212,0.15);
}
.solution-card .sol-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan-400);
  margin-bottom: 16px;
}
.solution-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.solution-card .sol-block {
  margin-bottom: 16px;
}
.solution-card .sol-block strong {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-300);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
}
.solution-card .sol-block p {
  font-size: 0.875rem;
  color: var(--slate-400);
  line-height: 1.7;
}

/* ── Pricing Cards ── */
.pricing-card {
  background: linear-gradient(180deg, rgba(30,41,59,0.4), rgba(10,14,23,0.9));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6,182,212,0.2);
}
.pricing-card.featured {
  border-color: rgba(6,182,212,0.3);
  background: linear-gradient(180deg, rgba(6,182,212,0.06), rgba(10,14,23,0.9));
}
.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin: 16px 0 4px;
}
.pricing-card .price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--slate-400);
}
.pricing-card .price-sub {
  font-size: 0.875rem;
  color: var(--slate-400);
  margin-bottom: 24px;
}
.pricing-card ul {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}
.pricing-card ul li {
  font-size: 0.875rem;
  color: var(--slate-400);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card ul li::before {
  content: '✓';
  color: var(--cyan-400);
  font-weight: 700;
  font-size: 0.8rem;
}

/* ── Blog Cards ── */
.blog-card {
  background: linear-gradient(180deg, rgba(30,41,59,0.4), rgba(10,14,23,0.8));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6,182,212,0.2);
}
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.blog-card-body {
  padding: 28px;
}
.blog-card .blog-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan-400);
  margin-bottom: 8px;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card h3 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
.blog-card h3 a:hover { color: var(--cyan-400); }
.blog-card p {
  font-size: 0.875rem;
  color: var(--slate-400);
  line-height: 1.7;
}
.blog-card .blog-meta {
  font-size: 0.75rem;
  color: var(--slate-400);
  margin-top: 16px;
}

/* ── Contact Section ── */
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-item .ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-info-item strong {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}
.contact-info-item span {
  font-size: 0.875rem;
  color: var(--slate-400);
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(6,182,212,0.08), rgba(59,130,246,0.08));
  border: 1px solid rgba(6,182,212,0.12);
  border-radius: 20px;
  padding: 56px;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 0.875rem;
  color: var(--slate-400);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .cta-banner { padding: 40px 24px; }
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── About side-by-side ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-split img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Company pillars ── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pillar-grid { grid-template-columns: 1fr; }
}

/* ── Map ── */
.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  margin-top: 32px;
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  filter: invert(0.92) hue-rotate(180deg) brightness(0.95) contrast(1.1);
}
