/* ==========================================================================
   AWWWARDS-LEVEL PURE CSS
   Consulting / Cyber / Glassmorphism Theme
   ========================================================================== */

/* --- CSS VARIABLES & THEMING --- */
:root {
  --bg-base: #050508;
  --bg-darker: #020203;
  --bg-surface: rgba(20, 20, 25, 0.7);
  --bg-glass: rgba(255, 255, 255, 0.03);

  --accent-primary: #00d2ff;
  --accent-secondary: #3a7bd5;
  --accent-glow: rgba(0, 210, 255, 0.5);

  --text-main: #f0f0f0;
  --text-muted: #8e8e9f;
  --text-dark: #111;

  --font-heading: "Orbitron", sans-serif;
  --font-body: "Rajdhani", sans-serif;

  --transition-fast: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: 0.7s cubic-bezier(0.25, 1, 0.5, 1);

  --z-cursor: 9999;
  --z-header: 1000;
  --z-chat: 900;
  --z-overlay: 800;
  --z-content: 10;
  --z-bg: 1;

  --border-radius: 12px;
  --glass-border: 1px solid rgba(255, 255, 255, 0.08);
}

/* --- RESET & CORE --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background-color: var(--bg-base);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  cursor: none; /* For Custom Cursor */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-secondary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}
::selection {
  background: var(--accent-primary);
  color: var(--bg-base);
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  background: linear-gradient(to right, #fff, #777);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}
.massive-text {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1;
  background: linear-gradient(
    45deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
.gradient-text {
  background: linear-gradient(
    45deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
p {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 400;
  max-width: 800px;
  margin-bottom: 1.5rem;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* --- CUSTOM CURSOR --- */
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: var(--z-cursor);
  transition:
    width 0.2s,
    height 0.2s,
    background-color 0.2s;
}
.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent-secondary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: var(--z-cursor);
  transition:
    width 0.2s,
    height 0.2s,
    background-color 0.2s;
}
.cursor-hover .cursor-dot {
  width: 12px;
  height: 12px;
  background-color: #fff;
}
.cursor-hover .cursor-outline {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: transparent;
}

/* --- BACKGROUND NOISE & ORBS --- */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: var(--z-bg);
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  animation: floatOrb 10s infinite alternate
    cubic-bezier(0.45, 0.05, 0.55, 0.95);
}
.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-secondary), transparent 70%);
  top: -10%;
  left: -10%;
}
.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-primary), transparent 70%);
  bottom: 10%;
  right: -15%;
  animation-delay: -5s;
}

/* --- LAYOUT UTILITIES --- */
.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: var(--z-content);
}
.section-padding {
  padding: 100px 0;
}
.text-center {
  text-align: center;
}
.text-center p {
  margin-left: auto;
  margin-right: auto;
}
.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--glass-border);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.glass-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transform: skewX(-25deg);
  transition: 0.5s;
  pointer-events: none;
}
.glass-panel:hover::before {
  left: 125%;
}

/* --- BUTTONS --- */
.btn-glow {
  position: relative;
  display: inline-flex;
  padding: 2px;
  border-radius: 30px;
  background: linear-gradient(
    90deg,
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-primary)
  );
  background-size: 200% auto;
  animation: gradientFlow 3s linear infinite;
}
.btn-glow .btn-content {
  background: var(--bg-darker);
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}
.btn-glow:hover .btn-content {
  background: transparent;
  color: var(--bg-darker);
}

.btn-primary,
.btn-secondary,
.btn-primary-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  cursor: none; /* override for custom cursor */
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--accent-primary);
  color: var(--bg-darker);
  padding: 1rem 2rem;
  border-radius: 4px;
}
.btn-primary:hover {
  background: #fff;
  box-shadow: 0 0 20px var(--accent-glow);
  transform: translateY(-3px);
}
.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--accent-primary);
  padding: 1rem 2rem;
  border-radius: 4px;
}
.btn-secondary:hover {
  background: rgba(0, 210, 255, 0.1);
  transform: translateY(-3px);
}
.btn-primary-large {
  background: linear-gradient(
    45deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  color: var(--bg-darker);
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  border-radius: 50px;
  margin-top: 2rem;
}
.btn-primary-large:hover {
  box-shadow: 0 10px 30px var(--accent-glow);
  transform: scale(1.05);
}
.full-width {
  width: 100%;
}

/* --- ANIMATIONS (KEYFRAMES) --- */
@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(30px, -50px) scale(1.1);
  }
}
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes glitch-anim {
  0% {
    clip-path: inset(10% 0 80% 0);
    transform: translate(-2px, 2px);
  }
  20% {
    clip-path: inset(80% 0 5% 0);
    transform: translate(2px, -2px);
  }
  40% {
    clip-path: inset(50% 0 30% 0);
    transform: translate(-2px, -2px);
  }
  60% {
    clip-path: inset(20% 0 60% 0);
    transform: translate(2px, 2px);
  }
  80% {
    clip-path: inset(40% 0 40% 0);
    transform: translate(2px, -2px);
  }
  100% {
    clip-path: inset(0 0 0 0);
    transform: translate(0);
  }
}
@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 210, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 210, 255, 0);
  }
}

/* GLITCH EFFECT */
.glitched {
  position: relative;
  display: inline-block;
}
.glitched::before,
.glitched::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.glitched::before {
  left: 2px;
  text-shadow: -1px 0 red;
  animation: glitch-anim 3s infinite linear alternate-reverse;
}
.glitched::after {
  left: -2px;
  text-shadow: -1px 0 blue;
  animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

/* --- SCROLL REVEAL CLASSES (Triggered by JS) --- */
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.8s ease-out;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: 0.8s ease-out;
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: 0.8s ease-out;
}
.reveal-fade {
  opacity: 0;
  transition: 1s ease-out;
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: 0.8s ease-out;
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
  opacity: 1;
  transform: translate(0) scale(1);
}
.reveal-fade.active {
  opacity: 1;
}

/* --- HEADER (STRICTLY IDENTICAL) --- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: var(--z-header);
  transition: var(--transition-fast);
  background: transparent;
}
.main-header.scrolled {
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 1rem 0;
  border-bottom: var(--glass-border);
}
.header-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-wrapper {
  display: flex;
  align-items: center;
}
.site-logo {
  height: 40px; /* Adjust based on provided logo */
  width: auto;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
  filter: brightness(1) invert(1);
}
.desktop-nav .nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}
.desktop-nav .nav-links a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 5px;
}
.desktop-nav .nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-primary);
  transition: var(--transition-fast);
}
.desktop-nav .nav-links a:hover::after,
.desktop-nav .nav-links a.active::after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mobile-toggle {
  display: none;
  cursor: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}
.mobile-toggle .bar {
  width: 25px;
  height: 2px;
  background: var(--text-main);
  transition: 0.3s;
}
.mobile-toggle.active .bar-1 {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.active .bar-2 {
  opacity: 0;
}
.mobile-toggle.active .bar-3 {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-overlay.active {
  visibility: visible;
  opacity: 1;
}
.mobile-menu-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 8, 0.98);
}
.mobile-links {
  position: relative;
  list-style: none;
  text-align: center;
}
.mobile-links li {
  margin: 1.5rem 0;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.4s;
}
.mobile-menu-overlay.active .mobile-links li {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu-overlay.active .mobile-links li:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu-overlay.active .mobile-links li:nth-child(2) {
  transition-delay: 0.2s;
}
.mobile-menu-overlay.active .mobile-links li:nth-child(3) {
  transition-delay: 0.3s;
}
.mobile-menu-overlay.active .mobile-links li:nth-child(4) {
  transition-delay: 0.4s;
}
.mobile-menu-overlay.active .mobile-links li:nth-child(5) {
  transition-delay: 0.5s;
}

.mobile-links a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* --- SECTION 1: HERO --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}
.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
}
.subtitle-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.5rem 1rem;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.3);
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}
.hero-title {
  font-size: clamp(3rem, 6vw, 6.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.hero-desc {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
}
.hero-visual {
  position: relative;
  perspective: 1000px;
}
.glass-cube {
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    inset 0 0 20px rgba(0, 210, 255, 0.2);
  transform-style: preserve-3d;
  margin: auto;
}
.cube-face {
  text-align: center;
  transform: translateZ(50px);
}
.cube-face i {
  font-size: 4rem;
  color: var(--accent-primary);
  margin-bottom: 1rem;
  display: block;
}
.cube-face span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

/* --- SECTION 2: MARQUEE TICKER --- */
.ticker-section {
  padding: 2rem 0;
  background: var(--bg-darker);
  border-top: var(--glass-border);
  border-bottom: var(--glass-border);
  overflow: hidden;
  position: relative;
}
.ticker-wrapper {
  display: flex;
  width: 200%;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.ticker-track span {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  margin: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.ticker-track span i {
  color: var(--accent-primary);
  font-size: 1rem;
}

/* --- SECTION 3: ABOUT --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.stats-row {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}
.stat-box h3 {
  font-size: 3.5rem;
  margin-bottom: 0;
  color: var(--text-main);
  display: inline-block;
}
.stat-box span {
  font-size: 2rem;
  color: var(--accent-primary);
  font-weight: 700;
  font-family: var(--font-heading);
}
.stat-box p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-image {
  position: relative;
}
.image-wrapper {
  height: 500px;
  background: url("https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80")
    center/cover;
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
}
.image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg-base) 0%, transparent 100%);
}
.abstract-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid var(--accent-secondary);
  border-radius: 30%;
  top: -20px;
  right: -20px;
  animation: spin 15s linear infinite;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.glass-overlay-box {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: rgba(20, 20, 25, 0.8);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border: var(--glass-border);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}
.glass-overlay-box i {
  font-size: 2rem;
  color: var(--accent-primary);
}
.glass-overlay-box h4 {
  margin: 0;
  font-size: 1rem;
}

/* --- SECTION 4: SERVICES --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.service-card {
  transition: var(--transition-fast);
}
.service-card:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 10px 30px rgba(0, 210, 255, 0.1);
}
.icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(0, 210, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  transition: 0.3s;
}
.service-card:hover .icon-wrapper {
  background: var(--accent-primary);
  color: var(--bg-darker);
  transform: scale(1.1);
}
.service-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-secondary);
  text-transform: uppercase;
}
.service-link i {
  margin-left: 5px;
  transition: 0.3s;
}
.service-card:hover .service-link {
  color: var(--accent-primary);
}
.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* --- SECTION 5: INDUSTRIES --- */
.industries-section {
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+CjxwYXRoIGQ9Ik0wIDBoNDB2NDBIMHoiIGZpbGw9IiMwNTA1MDgiLz4KPHBhdGggZD0iTTAgMTBoNDBNMTAgMHY0ME0wIDIwaDQwTTIwIDB2NDBNMCAzMGg0ME0zMCAwdjQwIiBzdHJva2U9InJnYmEoMjU1LDI1NSwyNTUsMC4wMikiIHN0cm9rZS13aWR0aD0iMSIvPgo8L3N2Zz4=");
}
.industry-accordion {
  margin-top: 3rem;
  border-top: var(--glass-border);
}
.ind-item {
  border-bottom: var(--glass-border);
  padding: 2rem 0;
  transition: 0.3s;
}
.ind-item h3 {
  font-size: 2rem;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  transition: 0.3s;
}
.ind-item.active h3,
.ind-item:hover h3 {
  color: var(--text-main);
  padding-left: 1rem;
}
.ind-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  padding-left: 1rem;
  color: var(--text-muted);
}
.ind-item.active .ind-content {
  max-height: 200px;
  margin-top: 1rem;
}

/* --- SECTION 6: REPORTS / DASHBOARD --- */
.dashboard-mockup {
  margin-top: 4rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.dash-header {
  background: rgba(0, 0, 0, 0.5);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: var(--glass-border);
}
.dash-header .dots {
  display: flex;
  gap: 8px;
}
.dash-header .dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f56;
}
.dash-header .dots span:nth-child(2) {
  background: #ffbd2e;
}
.dash-header .dots span:nth-child(3) {
  background: #27c93f;
}
.dash-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: #888;
  margin: 0 auto;
}
.dash-body {
  padding: 2.5rem;
}
.chart-area {
  height: 250px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 0 1rem;
}
.bar-chart {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: flex-end;
  justify-content: space-around;
}
.bar {
  width: 15%;
  background: linear-gradient(
    to top,
    rgba(58, 123, 213, 0.2),
    rgba(0, 210, 255, 0.8)
  );
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  position: relative;
  animation: barGrow 1.5s ease-out forwards;
  transform-origin: bottom;
}
@keyframes barGrow {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
.bar span {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
}
.glow-text {
  color: var(--accent-primary);
  text-shadow: 0 0 10px var(--accent-primary);
}
.dash-metrics {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
}
.metric-card {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.metric-card i {
  color: var(--accent-secondary);
}

/* --- SECTION 7: CALCULATOR --- */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.calc-tool {
  padding: 3rem;
}
.calc-group {
  margin-bottom: 2rem;
}
.calc-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-muted);
}
.calc-group label span {
  color: var(--text-main);
  float: right;
  font-size: 1.2rem;
}
.custom-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  outline: none;
}
.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-primary);
  cursor: pointer;
  box-shadow: 0 0 10px var(--accent-primary);
}
.calc-results {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}
.result-box {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: var(--glass-border);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
}
.result-box h4 {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.result-box .amount {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
}
.result-box.highlight {
  border-color: var(--accent-primary);
  background: rgba(0, 210, 255, 0.05);
}
.result-box.highlight .amount {
  color: var(--accent-primary);
  text-shadow: 0 0 15px rgba(0, 210, 255, 0.5);
}

/* --- SECTION 8: TESTIMONIALS --- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.testi-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.stars {
  color: #ffbd2e;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: #ddd;
}
.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.client-info h5 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 1px;
}
.client-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* --- SECTION 9: CTA --- */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100%;
  background: radial-gradient(circle, rgba(58, 123, 213, 0.1), transparent 70%);
  z-index: -1;
}

/* --- FOOTER (STRICTLY IDENTICAL) --- */
.main-footer {
  background: var(--bg-darker);
  border-top: var(--glass-border);
  padding: 4rem 0 0 0;
  position: relative;
  z-index: var(--z-content);
}
.footer-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.9rem;
  margin: 1.5rem 0;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: 0.3s;
}
.social-links a:hover {
  background: var(--accent-primary);
  color: var(--bg-darker);
  border-color: var(--accent-primary);
  transform: translateY(-3px);
}
.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #fff;
}
.footer-links ul,
.footer-contact ul {
  list-style: none;
}
.footer-links ul li {
  margin-bottom: 0.8rem;
}
.footer-links ul li a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: 0.3s;
}
.footer-links ul li a:hover {
  color: var(--accent-primary);
  padding-left: 5px;
}
.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer-contact ul li i {
  color: var(--accent-primary);
  margin-top: 4px;
}
.footer-bottom {
  border-top: var(--glass-border);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
}

/* --- LEGAL PAGES & CONTACT SPECIFICS --- */
.page-header-block {
  padding: 150px 0 50px;
  text-align: center;
  position: relative;
  border-bottom: var(--glass-border);
}
.page-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 10px;
}
.breadcrumb {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.legal-container {
  max-width: 900px;
  margin-top: 4rem;
}
.legal-content h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  color: var(--accent-primary);
}
.legal-content p {
  color: #ccc;
  margin-bottom: 1.2rem;
  max-width: 100%;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-top: 4rem;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.info-item i {
  font-size: 1.5rem;
  color: var(--accent-primary);
  background: rgba(0, 210, 255, 0.1);
  padding: 15px;
  border-radius: 50%;
}
.info-item h4 {
  margin-bottom: 5px;
  font-size: 1rem;
}
.info-item p {
  margin: 0;
  font-size: 0.95rem;
}
.social-row {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}
.social-row a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: 0.3s;
}
.social-row a:hover {
  background: var(--accent-primary);
  color: #000;
}

.custom-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.input-group {
  margin-bottom: 1.5rem;
}
.input-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
  color: #aaa;
}
.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: 0.3s;
}
.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: var(--accent-primary);
  outline: none;
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.2);
}

/* --- LIVE CHAT WIDGET --- */
.live-chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: var(--z-chat);
}
.chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-primary);
  border: none;
  color: var(--bg-darker);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 210, 255, 0.4);
  transition: 0.3s;
}
.chat-toggle:hover {
  transform: scale(1.1);
}
.chat-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: var(--bg-surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: var(--glass-border);
  border-radius: var(--border-radius);
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  transform-origin: bottom right;
  animation: chatOpen 0.3s ease forwards;
}
@keyframes chatOpen {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.chat-window.active {
  display: flex;
}
.chat-header {
  background: rgba(0, 0, 0, 0.5);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-header h5 {
  margin: 0;
  font-size: 1rem;
}
.chat-header button {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
.chat-body {
  padding: 1.5rem;
  height: 200px;
  background: rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}
.chat-body p {
  background: rgba(0, 210, 255, 0.1);
  padding: 10px;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #fff;
  margin: 0;
}
.chat-input {
  display: flex;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
}
.chat-input input {
  flex: 1;
  background: none;
  border: none;
  color: #fff;
  padding: 5px 10px;
  outline: none;
}
.chat-input button {
  background: none;
  border: none;
  color: var(--accent-primary);
  cursor: pointer;
  padding: 0 10px;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 1200px) {
  .hero-container,
  .about-grid,
  .calc-grid,
  .contact-layout {
    gap: 2rem;
  }
}
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }
  .mobile-toggle {
    display: flex;
    cursor: pointer;
  }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    order: 2;
  }
  .hero-visual {
    order: 1;
    margin-bottom: 2rem;
  }
  .about-grid,
  .calc-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .stats-row {
    justify-content: center;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  .hero-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
  .footer-contact ul li {
    justify-content: center;
  }
  .stats-row {
    flex-direction: column;
    gap: 1rem;
  }
  .calc-tool {
    padding: 1.5rem;
  }
  .custom-form .form-row {
    grid-template-columns: 1fr;
  }
  .glass-cube {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }
  .massive-text {
    font-size: 2.5rem;
  }
  .calc-results {
    flex-direction: column;
  }
  .live-chat-widget {
    bottom: 15px;
    right: 15px;
  }
  .chat-window {
    right: -15px;
    width: 300px;
  }
}
