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

:root {
  /* Colors */
  --bg-dark: #060a12;
  --bg-dark-accent: #0b111e;
  --bg-card: rgba(13, 23, 42, 0.45);
  --bg-card-hover: rgba(20, 35, 64, 0.65);
  
  --accent-cyan: #00f0ff;
  --accent-cyan-dim: rgba(0, 240, 255, 0.15);
  --accent-purple: #8b5cf6;
  --accent-purple-dim: rgba(139, 92, 246, 0.15);
  
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  
  --border-color: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(0, 240, 255, 0.25);
  --border-glow-purple: rgba(139, 92, 246, 0.25);
  
  /* Fonts */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-cyan) var(--bg-dark);
}

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

/* Background Mesh & Grid Glows */
.ambient-glows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-1 {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, transparent 70%);
  filter: blur(80px);
}

.glow-2 {
  position: absolute;
  top: 40%;
  left: -20%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  filter: blur(100px);
}

.glow-3 {
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
  filter: blur(90px);
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  color: var(--text-secondary);
}

.highlight-text {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, #00b0ff 100%);
  color: var(--bg-dark);
  border: none;
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 240, 255, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
  transform: translateY(-3px);
}

/* ─── NAVIGATION ─── */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 24px 8vw;
}

header.scrolled {
  padding: 14px 8vw;
  background: rgba(6, 10, 18, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 85px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: var(--transition-smooth);
}

.logo-container:hover .logo-img {
  filter: brightness(0) saturate(100%) invert(82%) sepia(60%) saturate(500%) hue-rotate(155deg) brightness(105%);
  transform: scale(1.04);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 36px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-menu .nav-cta {
  background: linear-gradient(135deg, var(--accent-cyan-dim), rgba(139, 92, 246, 0.05));
  border: 1px solid rgba(0, 240, 255, 0.2);
  padding: 10px 20px;
  border-radius: 6px;
  color: var(--accent-cyan);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.nav-menu .nav-cta:hover {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  color: var(--bg-dark);
  border-color: transparent;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1;
}

/* Full-bleed background image */
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.55) brightness(0.42);
  transform: scale(1.04);
  animation: heroImgDrift 22s ease-in-out infinite alternate;
}

@keyframes heroImgDrift {
  0%   { transform: scale(1.04) translate(0px, 0px); }
  100% { transform: scale(1.09) translate(-12px, -8px); }
}

/* Multi-layered cinematic overlay */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(6,10,18,0.5) 0%, rgba(6,10,18,0.15) 45%, rgba(6,10,18,0.7) 80%, rgba(6,10,18,1) 100%),
    linear-gradient(to right, rgba(6,10,18,0.65) 0%, transparent 65%),
    radial-gradient(ellipse at 30% 50%, rgba(0,240,255,0.06) 0%, transparent 60%);
}

/* Subtle grid overlay */
.hero-bg-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
}

/* Hero Inner Content */
.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 8vw 100px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  padding: 9px 18px;
  border-radius: 30px;
  color: var(--accent-cyan);
  font-size: 0.78rem;
  font-family: var(--font-heading);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
  backdrop-filter: blur(8px);
}

.hero-badge i {
  color: var(--accent-cyan);
  font-size: 0.85rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%   { transform: scale(0.9); opacity: 0.6; }
  50%  { transform: scale(1.3); opacity: 1; box-shadow: 0 0 14px var(--accent-cyan); }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-inner h1 {
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 28px;
  color: var(--text-primary);
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
  max-width: 900px;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(203, 213, 225, 0.88);
  max-width: 700px;
  margin-bottom: 44px;
  font-weight: 300;
  line-height: 1.78;
  text-shadow: 0 1px 20px rgba(0,0,0,0.5);
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

/* HUD floating cards inline row */
.hero-huds {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.floating-hud {
  background: rgba(6, 10, 18, 0.65);
  border: 1px solid rgba(0, 240, 255, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 14px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: var(--transition-smooth);
}

.floating-hud:hover {
  border-color: rgba(0, 240, 255, 0.4);
  background: rgba(6, 10, 18, 0.82);
  transform: translateY(-4px);
  box-shadow: 0 14px 38px rgba(0, 240, 255, 0.12);
}

.hud-1 { animation: floatHUD1 6s ease-in-out infinite; }
.hud-2 { animation: floatHUD2 7.5s ease-in-out infinite; }
.hud-3 { animation: floatHUD1 9s ease-in-out infinite 1.2s; }

.hud-icon {
  width: 36px;
  height: 36px;
  background: rgba(0, 240, 255, 0.1);
  color: var(--accent-cyan);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.hud-info h5 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  color: var(--text-primary);
  font-weight: 600;
  white-space: nowrap;
}

.hud-info p {
  font-size: 0.7rem;
  color: var(--accent-cyan);
  opacity: 0.85;
}

@keyframes floatHUD1 {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-7px); }
  100% { transform: translateY(0px); }
}

@keyframes floatHUD2 {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(7px); }
  100% { transform: translateY(0px); }
}

/* ─── HERO STATS BAR ─── */
.hero-stats-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 10, 18, 0.78);
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 30px 8vw;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(0,240,255,0.2), transparent);
  flex-shrink: 0;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-title {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-family: var(--font-heading);
  font-weight: 500;
}

/* ─── SECTION COMMON ─── */
section {
  position: relative;
  padding: 120px 8vw;
  z-index: 1;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.section-header {
  margin-bottom: 70px;
  max-width: 700px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.section-header-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 2px;
  margin-top: 24px;
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 100% 0%, rgba(0, 240, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.service-card-glow {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.4), rgba(139, 92, 246, 0.4)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover .service-card-glow {
  opacity: 1;
}

.service-card:hover::before {
  background: radial-gradient(circle at 100% 0%, rgba(0, 240, 255, 0.12) 0%, transparent 60%);
}

.service-img-container {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.8);
  transition: var(--transition-smooth);
}

.service-card:hover .service-img-container img {
  filter: saturate(1) brightness(0.95);
  transform: scale(1.06);
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  transition: var(--transition-smooth);
  font-size: 1.25rem;
}

.service-card:hover .service-icon-box {
  background: var(--accent-cyan);
  color: var(--bg-dark);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.service-card:hover .service-icon-box i {
  animation: rotateGently 0.5s ease-in-out;
}

@keyframes rotateGently {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(15deg); }
  100% { transform: rotate(0deg); }
}

.service-num {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
}

/* ─── WHY US (ABOUT) ─── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.why-canvas {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 450px;
}

.why-mesh {
  position: absolute;
  inset: -20px;
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 20px;
  transform: skewY(-4deg);
  pointer-events: none;
}

.why-img-wrapper {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.why-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.5) contrast(1.1);
  transition: var(--transition-smooth);
}

.why-canvas:hover .why-img-wrapper img {
  filter: saturate(0.8) contrast(1.05);
  transform: scale(1.03);
}

.why-floating-card {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: rgba(11, 17, 30, 0.85);
  border: 1px solid rgba(139, 92, 246, 0.3);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 24px;
  width: 240px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  animation: floatWhyCard 6.5s ease-in-out infinite;
}

@keyframes floatWhyCard {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.why-floating-card .fact-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-purple);
  margin-bottom: 4px;
}

.why-floating-card .fact-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.why-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
}

.why-item {
  display: flex;
  gap: 22px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
}

.why-item-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--accent-purple-dim);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple);
  transition: var(--transition-smooth);
  font-size: 1.15rem;
}

.why-item:hover .why-item-icon {
  background: var(--accent-purple);
  color: var(--bg-dark);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.why-item-content h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.why-item-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
}

/* ─── INTERACTIVE FAQ ACCORDION SECTION ─── */
.faq-section {
  max-width: 860px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--transition-smooth);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.faq-item:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.12);
}

.faq-item.active {
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.05);
}

.faq-header {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--text-primary);
  padding-right: 20px;
  transition: var(--transition-fast);
}

.faq-item:hover .faq-question {
  color: var(--accent-cyan);
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--accent-cyan);
  color: var(--bg-dark);
  transform: rotate(135deg);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-content {
  padding: 0 28px 24px 28px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  font-weight: 300;
  border-top: 1px solid transparent;
}

/* ─── FORM SUCCESS / ERROR MESSAGES ─── */
.form-success-msg,
.form-error-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 32px;
  border-radius: 16px;
  margin-bottom: 28px;
}

.form-success-msg {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.3);
}

.form-error-msg {
  background: rgba(251, 146, 60, 0.06);
  border: 1px solid rgba(251, 146, 60, 0.3);
}

.form-msg-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.form-success-msg .form-msg-icon { color: var(--accent-cyan); }
.form-error-msg   .form-msg-icon { color: #fb923c; }

.form-success-msg h3,
.form-error-msg   h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.form-success-msg p,
.form-error-msg   p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.form-success-msg p strong { color: var(--accent-cyan); }

.form-error-msg p a {
  color: #fb923c;
  text-decoration: underline;
}

/* ─── CONTACT SECTION ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-channels {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.channel-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.channel-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-cyan-dim);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.1rem;
}

.channel-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.channel-text a, .channel-text span {
  font-size: 0.95rem;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
}

.channel-text a:hover {
  color: var(--accent-cyan);
}

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 44px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.form-control {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--accent-cyan);
  background: rgba(0, 240, 255, 0.02);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
  height: 52px;
}

select.form-control option {
  background-color: var(--bg-dark-accent);
  color: var(--text-primary);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ─── FOOTER ─── */
footer {
  background: #03060b;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 80px 8vw 40px;
}

.footer-top {
  max-width: 1400px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand p {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: var(--bg-dark);
  transform: translateY(-3px);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.3);
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-cyan);
  padding-left: 4px;
}

.footer-col form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col form input {
  width: 100%;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-legal-links a {
  text-decoration: none;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-legal-links a:hover {
  color: var(--accent-cyan);
}

/* ─── TECH MARQUEE STRIP ─── */
.tech-marquee-wrapper {
  overflow: hidden;
  background: rgba(0, 240, 255, 0.03);
  border-top: 1px solid rgba(0, 240, 255, 0.08);
  border-bottom: 1px solid rgba(0, 240, 255, 0.08);
  padding: 18px 0;
  position: relative;
  z-index: 1;
}

.tech-marquee-wrapper::before,
.tech-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.tech-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}

.tech-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
}

.marquee-track {
  display: flex;
  width: 100%;
}

.marquee-content {
  display: flex;
  gap: 50px;
  animation: marqueeScroll 28s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 100%;
}

.marquee-content span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition-fast);
  cursor: default;
}

.marquee-content span i {
  color: var(--accent-cyan);
  font-size: 0.9rem;
}

.marquee-content span:hover {
  color: var(--accent-cyan);
}

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

/* ─── APPROACH / METHODOLOGY SECTION ─── */
.approach-section {
  padding-top: 100px;
  padding-bottom: 120px;
}

.approach-hero-img {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  margin-bottom: 100px;
  border-radius: 0;
}

.approach-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.5) brightness(0.55) contrast(1.1);
  transition: var(--transition-smooth);
}

.approach-hero-img:hover img {
  filter: saturate(0.7) brightness(0.65);
  transform: scale(1.02);
}

.approach-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 10, 18, 0.2) 0%,
    rgba(6, 10, 18, 0.1) 40%,
    rgba(6, 10, 18, 0.75) 100%
  );
  pointer-events: none;
}

.approach-img-label {
  position: absolute;
  bottom: 40px;
  left: 8vw;
  z-index: 2;
}

.approach-img-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(6, 10, 18, 0.7);
  border: 1px solid rgba(0, 240, 255, 0.3);
  backdrop-filter: blur(12px);
  padding: 14px 24px;
  border-radius: 40px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.approach-img-badge i {
  font-size: 1rem;
}

.approach-header {
  max-width: 700px;
  margin-bottom: 80px;
}

/* ─── PROCESS STEPS TIMELINE ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 100px;
  position: relative;
}

/* Horizontal connecting line behind steps */
.process-steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple), var(--accent-cyan));
  opacity: 0.2;
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 2px;
  margin-bottom: 16px;
  opacity: 0.7;
}

.step-icon-ring {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid rgba(0, 240, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.4rem;
  margin-bottom: 28px;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.05);
}

.process-step:hover .step-icon-ring {
  border-color: var(--accent-cyan);
  background: rgba(0, 240, 255, 0.08);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
  transform: scale(1.08);
}

.step-connector {
  display: none; /* Hidden, using ::before pseudo-element instead */
}

.process-step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.65;
}

/* ─── WHY US FEATURE CARDS ─── */
.why-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.why-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  opacity: 0;
  transition: var(--transition-smooth);
}

.why-feature-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: rgba(0, 240, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.why-feature-card:hover::before {
  opacity: 1;
}

.why-feature-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-cyan-dim);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.4rem;
  margin: 0 auto 24px;
  transition: var(--transition-smooth);
}

.why-feature-card:hover .why-feature-icon {
  background: var(--accent-cyan);
  color: var(--bg-dark);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.35);
  transform: rotate(-5deg) scale(1.05);
}

.why-feature-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.why-feature-card p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
}

/* ─── SCROLL REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* ─── RESPONSIVE STYLES ─── */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .hero-badge {
    align-self: center;
  }
  
  .hero-content p {
    margin: 0 auto 36px;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .hero-visual {
    margin-top: 20px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .why-canvas {
    height: 380px;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  header {
    padding: 20px 6vw;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(6, 10, 18, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transition: var(--transition-smooth);
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .visual-canvas {
    height: 320px;
  }
  
  .floating-hud {
    padding: 10px;
  }
  
  .hud-1 {
    left: -10px;
    bottom: 10px;
  }
  
  .hud-2 {
    right: -10px;
    top: 20px;
  }
  
  .why-canvas {
    height: 300px;
  }
  
  .why-floating-card {
    display: none;
  }
}
