/* ============================================
   TELAMANIS — Main Stylesheet
   AI-Powered Legal Process Outsourcing
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=DM+Mono:wght@400;500&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --neon-blue: #35B5F0;
  --tela-blue: #35B5F0;
  --deep-navy: #0A2540;
  --dark-navy: #0D2D4A;
  --near-black: #1A1A2E;
  --teal: #00BFA5;
  --light-bg: #0D2D4A;
  --white: #FFFFFF;
  --text: rgba(255,255,255,0.88);
  --text-light: rgba(255,255,255,0.7);
  --success: #10B981;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'DM Mono', 'JetBrains Mono', monospace;
  --max-width: 1200px;
  --nav-height: 72px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --glow: 0 0 20px rgba(53,181,240,0.3), 0 0 60px rgba(53,181,240,0.1);
  --glow-strong: 0 0 30px rgba(53,181,240,0.5), 0 0 80px rgba(53,181,240,0.2);
  --transition: 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--deep-navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 800; }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: clamp(20px, 3vw, 28px); }
h4 { font-size: clamp(18px, 2.5vw, 22px); }
p { margin-bottom: 1em; color: var(--text-light); }

.gradient-text {
  background: linear-gradient(135deg, var(--neon-blue), var(--tela-blue), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.section::before,
.section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 28px;
  pointer-events: none;
  z-index: 0;
}
.section::before {
  top: 0;
  background: linear-gradient(180deg, rgba(53,181,240,0.15), transparent);
}
.section::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(53,181,240,0.12), transparent);
}
.section > .container {
  position: relative;
  z-index: 1;
}
.section-dark {
  background: #0A2540;
  color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-light {
  background: #0D2D4A;
  color: var(--white);
}
.section-light h2, .section-light h3, .section-light h4 { color: var(--white); }
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon-blue);
  margin-bottom: 12px;
}
.section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-header p { color: rgba(255,255,255,0.78); font-size: 18px; margin-top: 16px; }
.section-dark .section-header p { color: rgba(255,255,255,0.82); }
.section-light .section-header p { color: rgba(255,255,255,0.78); }

.section-header h2,
h2.section-header {
  position: relative;
  padding-bottom: 12px;
}
.section-header h2::after,
h2.section-header::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(53,181,240,0.9), rgba(53,181,240,0.2));
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(10,37,64,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(53,181,240,0.08);
  transition: background var(--transition);
}
.nav.scrolled { background: rgba(10,37,64,0.95); }
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--neon-blue); }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  background: rgba(10,37,64,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(53,181,240,0.15);
  border-radius: var(--radius);
  padding: 8px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s;
}
.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.dropdown-menu a:hover { color: var(--neon-blue); background: rgba(53,181,240,0.05); }
.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-navy);
  background: var(--neon-blue);
  padding: 10px 24px;
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: #5CC8F5;
  box-shadow: 0 0 15px rgba(53,181,240,0.4);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--deep-navy);
  padding: 32px 24px;
  z-index: 999;
  overflow-y: auto;
}
.mobile-menu.active { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:hover { color: var(--neon-blue); }
.mobile-menu .nav-cta {
  display: inline-block;
  margin-top: 24px;
  font-size: 16px;
  padding: 14px 28px;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav > .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav { padding: 0 20px; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 14px 32px;
  font-size: 16px;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  color: var(--deep-navy);
  background: var(--neon-blue);
  box-shadow: 0 0 18px rgba(53,181,240,0.45), 0 0 36px rgba(53,181,240,0.25);
}
.btn-primary:hover {
  background: #5CC8F5;
  box-shadow: 0 0 26px rgba(53,181,240,0.6), 0 0 60px rgba(53,181,240,0.28);
  transform: translateY(-2px);
}
.btn-secondary {
  color: var(--neon-blue);
  background: transparent;
  border: 1px solid rgba(53,181,240,0.45);
}
.btn-secondary:hover {
  background: var(--neon-blue);
  border-color: var(--neon-blue);
  color: var(--deep-navy);
  box-shadow: 0 0 18px rgba(53,181,240,0.35);
}
.btn-white {
  color: var(--deep-navy);
  background: var(--white);
}
.btn-white:hover {
  background: #F2F7FB;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-outline-white {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* --- Hero --- */
.hero {
  position: relative;
  width: 100%;
  min-height: auto;
  background: url('/assets/images/hero-bg.jpg') center center / cover no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
}

/* Dark overlay for text readability */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 37, 64, 0.50) 0%,
    rgba(13, 27, 42, 0.30) 40%,
    rgba(13, 27, 42, 0.40) 70%,
    rgba(9, 21, 32, 0.75) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero BG layers */
.grid-floor {
  position: absolute;
  bottom: 0;
  left: -50%;
  width: 200%;
  height: 60%;
  background:
    linear-gradient(90deg, rgba(53,181,240,0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(53,181,240,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: center bottom;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 80%);
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(53,181,240,0.015) 1px, transparent 1px),
    linear-gradient(0deg, rgba(53,181,240,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.scan-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(53,181,240,0.008) 2px, rgba(53,181,240,0.008) 4px);
  pointer-events: none;
}
.center-glow {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(53,181,240,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.accent-line {
  position: absolute;
  height: 1px;
  pointer-events: none;
}
.accent-line-left { top: 20%; left: 0; width: 200px; background: linear-gradient(90deg, rgba(53,181,240,0.4), transparent); }
.accent-line-right { top: 30%; right: 0; width: 150px; background: linear-gradient(270deg, rgba(53,181,240,0.3), transparent); }
.accent-line-bottom { bottom: 25%; left: 10%; width: 100px; background: linear-gradient(90deg, rgba(53,181,240,0.2), transparent); }

.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--neon-blue);
  border-radius: 50%;
  opacity: 0;
  animation: float 8s infinite;
}
@keyframes float {
  0% { opacity: 0; transform: translateY(0) scale(1); }
  10% { opacity: 0.6; }
  90% { opacity: 0.1; }
  100% { opacity: 0; transform: translateY(-300px) scale(0.5); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}
.hero-content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 760px;
  height: 520px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(53,181,240,0.14) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.hero .badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon-blue);
  border: 1px solid rgba(53,181,240,0.3);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  background: rgba(53,181,240,0.05);
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero-subtitle {
  font-size: clamp(18px, 2.4vw, 24px);
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Page Hero (smaller, for interior pages) */
.page-hero {
  position: relative;
  background: url('/assets/images/tunnel-vortex.jpg') center center / cover no-repeat;
  padding: 140px 0 80px;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(53,181,240,0.015) 1px, transparent 1px),
    linear-gradient(0deg, rgba(53,181,240,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 2;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 37, 64, 0.75) 0%,
    rgba(13, 27, 42, 0.65) 100%
  );
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 3; }
.page-hero .center-glow {
  top: 50%;
  width: 600px;
  height: 400px;
  z-index: 2;
}
.page-hero h1 { color: var(--white); position: relative; z-index: 3; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 18px; max-width: 600px; margin: 16px auto 0; position: relative; z-index: 3; }
.page-hero .badge { position: relative; z-index: 3; display: inline-block; font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--neon-blue); border: 1px solid rgba(53,181,240,0.3); padding: 6px 16px; border-radius: 20px; margin-bottom: 16px; background: rgba(53,181,240,0.05); }

/* Breadcrumbs */
.breadcrumbs {
  position: relative;
  z-index: 2;
  margin-top: 20px;
}
.breadcrumbs a, .breadcrumbs span {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.breadcrumbs a:hover { color: var(--neon-blue); }
.breadcrumbs .sep { margin: 0 8px; }

/* --- Stats Bar --- */
.stats-bar {
  background: rgba(13,45,74,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(53,181,240,0.35);
  padding: 24px 0;
  position: relative;
  z-index: 10;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: -36px;
  left: 0;
  right: 0;
  height: 36px;
  background: linear-gradient(180deg, rgba(53,181,240,0.25), rgba(13,45,74,0));
  pointer-events: none;
}
.hero .stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.stats-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  padding: 0 24px;
}
.stat { text-align: center; }
.stat-number {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  color: var(--neon-blue);
  text-shadow: 0 0 20px rgba(53,181,240,0.3);
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .stats-container { flex-wrap: wrap; gap: 20px; }
  .stat { flex: 1 1 40%; }
}

/* --- Cards --- */
.card {
  background: rgba(10,37,64,0.6);
  border: 1px solid rgba(53,181,240,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 28px rgba(53,181,240,0.12);
}
.glass-card {
  background: rgba(10,37,64,0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(53,181,240,0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.glass-card:hover {
  border-color: rgba(53,181,240,0.3);
  background: rgba(10,37,64,0.65);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 30px rgba(53,181,240,0.1);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}
.card-icon-blue {
  background: rgba(53,181,240,0.1);
  color: var(--neon-blue);
}
.card-icon-glow {
  background: rgba(53,181,240,0.1);
  color: var(--neon-blue);
  box-shadow: 0 0 20px rgba(53,181,240,0.15);
}

/* --- Grid layouts --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* --- Services Grid --- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { text-align: left; }
.service-card h3 { font-size: 20px; margin-bottom: 12px; }
.service-card p { color: var(--text-light); font-size: 15px; margin-bottom: 16px; }
.service-card .learn-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--tela-blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-card .learn-more:hover { color: var(--neon-blue); gap: 8px; }
.section-dark .service-card h3 { color: var(--white); }
.section-dark .service-card p { color: rgba(255,255,255,0.78); }
.section-dark .service-card .learn-more { color: var(--neon-blue); }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* --- How It Works Steps --- */
.steps { display: flex; gap: 40px; align-items: flex-start; }
.step { flex: 1; text-align: center; position: relative; }
.step {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: rgba(10,37,64,0.55);
  border: 1px solid rgba(53,181,240,0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(53,181,240,0.1);
  border: 2px solid var(--neon-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--neon-blue);
  margin: 0 auto 20px;
  box-shadow: 0 0 18px rgba(53,181,240,0.2);
}
.step h3 { font-size: 20px; margin-bottom: 12px; }
.step p { font-size: 15px; color: rgba(255,255,255,0.78); }
.section-dark .step p { color: rgba(255,255,255,0.78); }
.step-connector {
  position: absolute;
  top: 28px;
  left: calc(50% + 36px);
  width: calc(100% - 72px);
  height: 2px;
  background: linear-gradient(90deg, rgba(53,181,240,0.4), rgba(53,181,240,0.1));
}
.step:last-child .step-connector { display: none; }

@media (max-width: 768px) {
  .steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
}

/* --- Testimonials --- */
.testimonial-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(10,37,64,0.6);
  box-shadow: var(--shadow);
  border: 1px solid rgba(53,181,240,0.18);
  border-left: 4px solid var(--tela-blue);
  position: relative;
  overflow: hidden;
}
.testimonial-card blockquote {
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.86);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  padding-left: 28px;
}
.testimonial-card blockquote::before {
  content: '“';
  position: absolute;
  left: -6px;
  top: -18px;
  font-size: 72px;
  color: rgba(53,181,240,0.18);
  line-height: 1;
}
.testimonial-card blockquote::after {
  content: '”';
  position: absolute;
  right: -6px;
  bottom: -42px;
  font-size: 72px;
  color: rgba(53,181,240,0.12);
  line-height: 1;
}
.testimonial-card .author {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.testimonial-card .author span {
  font-weight: 400;
  color: rgba(255,255,255,0.65);
}

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(10,37,64,0.6);
  border: 1px solid rgba(53,181,240,0.12);
}
.comparison-table thead { background: var(--deep-navy); color: var(--white); }
.comparison-table th {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}
.comparison-table td {
  padding: 14px 20px;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
}
.comparison-table tbody tr:nth-child(even) { background: rgba(13,45,74,0.7); }
.comparison-table .check { color: var(--success); font-weight: 700; }
.comparison-table .cross { color: #E53E3E; }
.comparison-table .highlight-col { background: rgba(53,181,240,0.05); }

/* --- FAQ --- */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  width: 100%;
  text-align: left;
  padding: 4px 0;
}
.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--neon-blue);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 12px 0 4px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* --- Forms --- */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  font-size: 16px;
  background: rgba(10,37,64,0.7);
  color: var(--white);
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--neon-blue);
  box-shadow: 0 0 0 3px rgba(53,181,240,0.18);
}
.form-textarea { resize: vertical; min-height: 120px; }
.section-dark .form-input, .section-dark .form-select, .section-dark .form-textarea {
  background: rgba(10,37,64,0.7);
  border-color: rgba(53,181,240,0.2);
  color: var(--white);
}
.section-dark .form-label { color: rgba(255,255,255,0.8); }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--deep-navy), var(--dark-navy));
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(53,181,240,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.7); font-size: 18px; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-banner .btn { position: relative; z-index: 1; }

/* --- Footer --- */
.footer {
  background: var(--near-black);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 32px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer a:hover { color: var(--neon-blue); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { display: inline; padding: 0; }
.footer-legal { display: flex; gap: 24px; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- Pricing --- */
.pricing-card {
  background: rgba(10,37,64,0.7);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--neon-blue);
  position: relative;
}
.pricing-card .price {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
}
.pricing-card .price span { font-size: 18px; font-weight: 400; color: var(--text-light); }
.pricing-card .price-label { font-size: 14px; color: var(--text-light); margin-top: 4px; }
.pricing-card ul { text-align: left; margin: 32px 0; }
.pricing-card li {
  padding: 10px 0;
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

/* --- ROI Calculator --- */
.calculator {
  background: rgba(10,37,64,0.7);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.calculator-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.calculator-result {
  background: rgba(13,45,74,0.7);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.calculator-result .amount {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  color: var(--success);
}
@media (max-width: 768px) {
  .calculator-grid { grid-template-columns: 1fr; }
}

/* --- Section Images --- */

/* Section with background image */
.section-bg-image {
  position: relative;
}
.section-bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.22;
  z-index: 0;
}
.section-bg-image > .container { position: relative; z-index: 1; }

/* Specific section backgrounds */
.section-bg-services::before { background-image: url('/assets/images/laptops-grid.jpg'); }

/* Section with side image — grid layout with image + content */
.section-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.section-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(53,181,240,0.15);
}
.section-image img {
  width: 100%;
  height: auto;
  display: block;
}
.section-dark .section-image {
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Contained image (for portrait-oriented images) */
.section-image-contained {
  max-width: 360px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(53,181,240,0.15);
}
.section-image-contained img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .section-with-image { grid-template-columns: 1fr; }
  .section-image-contained { max-width: 280px; }
}

/* --- Scroll animations --- */
.fade-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* --- Utilities --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-800 { max-width: 800px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --- Mobile sticky CTA --- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: var(--deep-navy);
  border-top: 1px solid rgba(53,181,240,0.2);
  z-index: 998;
}
.mobile-sticky-cta .btn { width: 100%; justify-content: center; padding: 12px; }
@media (max-width: 768px) {
  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 64px; }
}

/* --- Chat widget placeholder --- */
.chat-widget-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--neon-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(53,181,240,0.4);
  cursor: pointer;
  z-index: 997;
  transition: all 0.3s;
}
.chat-widget-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(53,181,240,0.5);
}
@media (max-width: 768px) {
  .chat-widget-btn { bottom: 76px; }
}

/* ====== Hero Logo + Layout Adjustments (2026-03-01) ====== */

/* Move hero content higher — reduce top padding */
.hero-inner {
  min-height: auto !important;
  padding-top: 40px;
  padding-bottom: 40px;
  align-items: flex-start;
}

/* Reduce overall hero height to fit content tighter */
.hero {
  min-height: auto;
  padding-bottom: 0;
}

/* Tighten hero text spacing */
.hero-content {
  text-align: center;
}
.hero-content h1 {
  margin-top: 8px;
  margin-bottom: 12px;
}
.hero-subtitle {
  margin-bottom: 20px;
}

/* Stats bar tighter */
.stats-bar {
  position: relative;
  z-index: 2;
  padding: 24px 0;
}

/* Compact hero further */
.hero {
  min-height: 0 !important;
  height: auto !important;
  padding-top: var(--nav-height);
  padding-bottom: 0;
}
.hero-inner {
  padding-top: 16px !important;
  padding-bottom: 12px !important;
}
.hero-content h1 {
  font-size: 2.8rem;
  line-height: 1.15;
}
.hero-subtitle {
  font-size: 1.1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-group {
  margin-top: 16px;
}
.stats-bar {
  padding: 20px 0 !important;
}

/* Nav logo sizing */
.nav-logo img {
  height: 40px;
  width: auto;
}

/* Move content higher — reduce gap between nav and content */
.hero-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.hero-inner {
  padding-top: 16px !important;
}

/* Badge spacing */
.badge {
  margin-bottom: 12px;
}


/* Hero circle logo — centered */
.hero-logo { display: flex !important; justify-content: center !important; align-items: center !important; width: 100% !important; margin-bottom: 16px !important; }
.hero-logo img { flex-shrink: 0; width: 110px; height: 110px; border-radius: 50%; box-shadow: 0 0 30px rgba(53,181,240,0.3), 0 0 60px rgba(53,181,240,0.1); border: 2px solid rgba(53,181,240,0.2); }
