/* ===== insure2000 — Global Styles ===== */

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

:root {
  --bg: #06060e;
  --surface: #0d0d1a;
  --primary: #00d4ff;
  --primary-end: #0099ff;
  --secondary: #8b5cf6;
  --secondary-end: #6d28d9;
  --amber: #f59e0b;
  --amber-light: #fbbf24;
  --orange: #f97316;
  --text: #e8eaf0;
  --text-muted: #8b8fa3;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(0,212,255,0.15);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== Utilities ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-end), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.2), rgba(139,92,246,0.2), transparent);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 13px;
}

.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* ===== Glass Card ===== */
.glass-card {
  background: rgba(13,13,26,0.6);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.4s var(--ease);
}
.glass-card:hover {
  background: rgba(13,13,26,0.8);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(0,212,255,0.1);
}

/* ===== Dot Grid ===== */
.dot-grid {
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ===== Animations ===== */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-15px) translateX(10px); }
  66% { transform: translateY(10px) translateX(-5px); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes nav-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-slow { animation: float-slow 8s ease-in-out infinite; }
.animate-pulse-glow { animation: pulse-glow 4s ease-in-out infinite; }
.animate-marquee { animation: marquee 30s linear infinite; }

/* Scroll animation */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.5s ease;
}
.navbar.scrolled {
  background: rgba(10,8,20,0.9);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(245,158,11,0.08);
  box-shadow: 0 4px 30px rgba(245,158,11,0.03);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px; height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--amber-light), var(--amber), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 11px;
  color: #0a0814;
  transition: all 0.5s var(--ease);
  position: relative;
}
.logo:hover .logo-icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(245,158,11,0.2);
}
.logo-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--amber-light), var(--orange));
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.5s;
}
.logo:hover .logo-icon::after { opacity: 0.4; }

.logo-text { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
.logo-text .gold { color: var(--amber-light); }

/* Nav pill */
.nav-pill {
  display: none;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 6px 8px;
}
@media (min-width: 768px) { .nav-pill { display: flex; } }

.nav-link {
  position: relative;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--text-muted);
  border-radius: 12px;
  transition: all 0.4s var(--ease);
}
.nav-link:hover {
  color: #fde68a;
  transform: scale(1.05);
  background: rgba(255,255,255,0.04);
}
.nav-link.active {
  color: #fcd34d;
  transform: scale(1.1);
  background: rgba(245,158,11,0.1);
  font-weight: 600;
  box-shadow: 0 0 12px rgba(245,158,11,0.15);
}
.nav-link.active::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid rgba(251,191,36,0.2);
  animation: nav-glow 2s ease-in-out infinite;
}

/* CTA button */
.btn-cta {
  display: none;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #0a0814;
  background: linear-gradient(135deg, var(--amber-light), var(--amber), var(--orange));
  border-radius: 12px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .btn-cta { display: inline-flex; } }
.btn-cta:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 25px rgba(245,158,11,0.25);
}
.btn-cta:active { transform: scale(0.95); }

/* Mobile toggle */
.mobile-toggle {
  display: flex;
  padding: 8px;
  color: rgba(251,191,36,0.7);
  transition: color 0.3s;
}
.mobile-toggle:hover { color: #fcd34d; }
@media (min-width: 768px) { .mobile-toggle { display: none; } }

/* Mobile menu */
.mobile-menu {
  display: none;
  padding-bottom: 16px;
  border-top: 1px solid rgba(245,158,11,0.08);
}
.mobile-menu.open { display: block; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }

.mobile-menu-inner { padding-top: 16px; display: flex; flex-direction: column; gap: 4px; }

.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-muted);
  border-radius: 12px;
  transition: all 0.3s;
}
.mobile-nav-link:hover { color: #fde68a; background: rgba(255,255,255,0.04); }
.mobile-nav-link.active {
  color: #fcd34d;
  background: rgba(245,158,11,0.1);
  font-weight: 600;
  transform: scale(1.02);
}

.mobile-cta {
  display: block;
  margin: 12px 16px 0;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #0a0814;
  background: linear-gradient(135deg, var(--amber-light), var(--orange));
  border-radius: 12px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }
.hero-bg .base { position: absolute; inset: 0; background: var(--bg); }
.hero-bg .orb-1 {
  position: absolute; top: 25%; left: 25%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(0,212,255,0.04);
  filter: blur(120px);
  animation: float 6s ease-in-out infinite;
}
.hero-bg .orb-2 {
  position: absolute; bottom: 25%; right: 25%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(139,92,246,0.05);
  filter: blur(100px);
  animation: float-slow 8s ease-in-out infinite;
}
.hero-bg .orb-3 {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: rgba(0,153,255,0.02);
  filter: blur(150px);
  animation: pulse-glow 4s ease-in-out infinite;
}
.hero-bg .orb-warm {
  position: absolute; top: 33%; right: 33%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(245,158,11,0.02);
  filter: blur(100px);
  animation: float-slow 8s ease-in-out infinite;
}
.hero-bg .grid-overlay { position: absolute; inset: 0; opacity: 0.4; }
.hero-bg .radial-fade {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, var(--bg) 70%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1024px;
  margin: 0 auto;
  padding: 80px 24px 0;
  text-align: center;
}

.hero-badge {
  border: 1px solid rgba(245,158,11,0.15);
  background: rgba(245,158,11,0.05);
  backdrop-filter: blur(8px);
  margin-bottom: 32px;
}
.hero-badge .badge-dot { background: var(--amber-light); }
.hero-badge span { color: rgba(253,230,138,0.7); }

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 640px) { .hero-ctas { flex-direction: row; justify-content: center; } }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--bg);
  background: linear-gradient(135deg, var(--primary), var(--primary-end));
  border-radius: 12px;
  transition: all 0.3s var(--ease);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,212,255,0.2);
}
.btn-primary .arrow { transition: transform 0.3s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-outline {
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  transition: all 0.3s var(--ease);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
}

/* Stats */
.stats-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }

.stat-item { text-align: center; }
.stat-value {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 4px;
  transition: transform 0.3s var(--ease);
}
.stat-item:hover .stat-value { transform: scale(1.1); }
.stat-label { font-size: 14px; color: var(--text-muted); }

.hero-bottom-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 128px;
  background: linear-gradient(to top, var(--bg), transparent);
}

/* ===== TRUSTED BY ===== */
.trusted-section { position: relative; padding: 80px 0; }
.trusted-section .section-divider { margin-bottom: 80px; }

.trusted-label {
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.marquee-wrapper { position: relative; overflow: hidden; }
.marquee-fade-left, .marquee-fade-right {
  position: absolute; top: 0; bottom: 0; width: 128px; z-index: 10;
}
.marquee-fade-left { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.marquee-fade-right { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.marquee-track { display: flex; }
.marquee-inner {
  display: flex;
  animation: marquee 30s linear infinite;
}

.client-tag {
  flex-shrink: 0;
  margin: 0 32px;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  transition: all 0.3s;
}
.client-tag:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
}

/* ===== SECTIONS COMMON ===== */
.section { position: relative; padding: 96px 0; }
@media (min-width: 1024px) { .section { padding: 128px 0; } }
.section .section-divider { margin-bottom: 96px; }
@media (min-width: 1024px) { .section .section-divider { margin-bottom: 96px; } }

.section-header { max-width: 768px; margin-bottom: 64px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-badge {
  margin-bottom: 24px;
}
.section-badge.ai { border: 1px solid rgba(0,212,255,0.2); background: rgba(0,212,255,0.05); }
.section-badge.ai span { color: var(--primary); }
.section-badge.rnd { border: 1px solid rgba(139,92,246,0.2); background: rgba(139,92,246,0.05); }
.section-badge.rnd span { color: var(--secondary); }
.section-badge.products { border: 1px solid rgba(245,158,11,0.2); background: rgba(245,158,11,0.05); }
.section-badge.products span { color: var(--amber); }
.section-badge.whyus { border: 1px solid rgba(16,185,129,0.2); background: rgba(16,185,129,0.05); }
.section-badge.whyus span { color: #10b981; }

.section-badge-inner {
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card { padding: 24px; }

.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 20px;
  transition: transform 0.3s var(--ease);
}
.service-card:hover .service-icon { transform: scale(1.1); }

.service-card h3 { font-size: 18px; font-weight: 600; color: white; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }

.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag {
  padding: 4px 10px;
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
}

/* ===== R&D SECTION ===== */
.rnd-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) { .rnd-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

.capability-group { margin-bottom: 32px; }
.capability-group h3 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: white;
  margin-bottom: 16px;
}

.capability-item { margin-bottom: 12px; }
.capability-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}
.capability-name { font-size: 14px; color: #c8cad0; }
.capability-pct { font-size: 12px; font-family: 'JetBrains Mono', monospace; color: var(--text-muted); }

.capability-bar {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 9999px;
  overflow: hidden;
}
.capability-fill {
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  width: 0;
  transition: width 1s ease-out 0.5s;
}

.tech-stack-card { padding: 24px; margin-bottom: 16px; }
.tech-stack-card h3 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: white;
  margin-bottom: 16px;
}
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-tag {
  padding: 6px 12px;
  font-size: 14px;
  font-family: 'JetBrains Mono', monospace;
  color: #c8cad0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s;
  cursor: default;
}
.tech-tag:hover {
  border-color: rgba(0,212,255,0.3);
  color: var(--primary);
}

.rnd-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.rnd-highlight-card { padding: 20px; text-align: center; }
.rnd-highlight-card .emoji { font-size: 24px; margin-bottom: 8px; }
.rnd-highlight-card .value { font-size: 20px; font-weight: 700; color: white; margin-bottom: 4px; }
.rnd-highlight-card .label { font-size: 12px; color: var(--text-muted); }

.team-card { padding: 24px; }
.team-card h3 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: white;
  margin-bottom: 16px;
}
.team-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.team-role { width: 96px; font-size: 14px; color: var(--text-muted); }
.team-bar { flex: 1; height: 8px; background: rgba(255,255,255,0.06); border-radius: 9999px; overflow: hidden; }
.team-fill {
  height: 100%;
  border-radius: 9999px;
  width: 0;
  transition: width 1s ease-out 0.8s;
}
.team-pct { width: 40px; text-align: right; font-size: 12px; font-family: 'JetBrains Mono', monospace; color: var(--text-muted); }

/* ===== PRODUCTS ===== */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.filter-tab {
  padding: 8px 16px;
  font-size: 14px;
  color: var(--text-muted);
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.3s;
}
.filter-tab:hover { color: white; background: rgba(255,255,255,0.04); }
.filter-tab.active {
  color: white;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card { overflow: hidden; }
.product-card .top-bar { height: 4px; }
.product-card-inner { padding: 24px; }

.product-category {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 12px;
}

.product-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.product-card:hover h3 { color: var(--primary); }
.product-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }

.product-metric {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.product-metric .dot { width: 8px; height: 8px; border-radius: 50%; background: #10b981; }
.product-metric span { font-size: 14px; font-weight: 500; color: #c8cad0; }

/* ===== WHY US ===== */
.whyus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .whyus-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .whyus-grid { grid-template-columns: repeat(3, 1fr); } }

.whyus-card { padding: 24px; }
.whyus-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 16px;
  transition: all 0.3s var(--ease);
}
.whyus-card:hover .whyus-icon {
  background: rgba(0,212,255,0.1);
  border-color: rgba(0,212,255,0.2);
}
.whyus-card h3 { font-size: 18px; font-weight: 600; color: white; margin-bottom: 8px; }
.whyus-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== CONTACT ===== */
.contact-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
}
.contact-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--surface), var(--surface), #1a0d2e);
}
.contact-bg .dot-overlay { position: absolute; inset: 0; opacity: 0.2; }
.contact-bg .glow-1 {
  position: absolute; top: 0; right: 0;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(0,212,255,0.05);
  filter: blur(100px);
}
.contact-bg .glow-2 {
  position: absolute; bottom: 0; left: 0;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(139,92,246,0.05);
  filter: blur(80px);
}

.contact-content {
  position: relative;
  z-index: 10;
  padding: 64px 32px;
  text-align: center;
}
@media (min-width: 768px) { .contact-content { padding: 80px 64px; } }

.contact-content h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.contact-content .desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}
@media (min-width: 640px) { .contact-cards { flex-direction: row; justify-content: center; } }

.contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
}
.contact-card:hover { border-color: rgba(0,212,255,0.2); }

.contact-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon.cyan { background: rgba(0,212,255,0.1); color: var(--primary); }
.contact-icon.violet { background: rgba(139,92,246,0.1); color: var(--secondary); }

.contact-card .label { font-size: 12px; color: var(--text-muted); margin-bottom: 2px; }
.contact-card .value { font-size: 14px; font-weight: 500; color: white; transition: color 0.3s; }
.contact-card:hover .value { color: var(--primary); }

.quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.quick-link {
  padding: 8px 16px;
  font-size: 14px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s;
}
.quick-link:hover { border-color: rgba(0,212,255,0.2); color: var(--primary); }

/* ===== FOOTER ===== */
.footer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .footer { flex-direction: row; justify-content: space-between; }
}

.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--amber-light), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 8px;
  color: #0a0814;
}
.footer-brand { font-size: 14px; font-weight: 500; }
.footer-brand .gold { color: var(--amber-light); }

.footer-copy { font-size: 14px; color: var(--text-muted); }

.footer-links { display: flex; gap: 16px; }
.footer-link { font-size: 14px; color: var(--text-muted); transition: color 0.3s; }
.footer-link:hover { color: white; }

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1a1a2e; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #2a2a4e; }
