/* ==========================================================================
   CSS VARIABLES & BASE SETUP
   ========================================================================== */
:root {
  --bg-dark: #050b14;
  --bg-darker: #02050a;
  --surface: #0a1325;
  --surface-light: #121f38;
  --primary: #00f0ff; /* Neon Cyan */
  --secondary: #7000ff; /* Deep Purple */
  --accent: #ff0055; /* Neon Pink/Red */
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(10, 19, 37, 0.7);
  --font-main: "Plus Jakarta Sans", sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}
a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}
ul {
  list-style: none;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}
.bg-darker {
  background-color: var(--bg-darker);
}
.text-center {
  text-align: center;
}
.w-100 {
  width: 100%;
}
.mt-4 {
  margin-top: 1.5rem;
}
.relative {
  position: relative;
}
.z-10 {
  z-index: 10;
}
.justify-center {
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  color: var(--white);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 240, 255, 0.3);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: rgba(0, 240, 255, 0.1);
  transform: translateY(-3px);
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.btn-glow {
  position: relative;
  z-index: 1;
}
.btn-glow::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary),
    var(--primary)
  );
  z-index: -1;
  border-radius: 32px;
  filter: blur(10px);
  opacity: 0;
  transition: var(--transition);
}
.btn-glow:hover::before {
  opacity: 0.8;
}

/* Glassmorphism utility */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}

/* ==========================================================================
   HEADER & NAVIGATION (Strictly Consistent)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(5, 11, 20, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--transition);
  padding: 15px 0;
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(5, 11, 20, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.main-nav .nav-list {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1100;
  margin-left: 20px;
}

.mobile-toggle .bar {
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle .bar:nth-child(1) {
  top: 0;
}
.mobile-toggle .bar:nth-child(2) {
  top: 9px;
}
.mobile-toggle .bar:nth-child(3) {
  top: 18px;
}

/* Mobile Menu Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-darker);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-overlay.active {
  transform: translateX(0);
}

.mobile-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
}

.mobile-nav-list {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-list a {
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 600;
}

/* ==========================================================================
   HERO SECTION (Index)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
}

.shape-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(112, 0, 255, 0.3);
  top: -100px;
  right: -100px;
  animation: float 10s infinite ease-in-out alternate;
}

.shape-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(0, 240, 255, 0.2);
  bottom: 100px;
  left: -100px;
  animation: float 8s infinite ease-in-out alternate-reverse;
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
  perspective: 1000px;
  transform: rotateX(60deg) translateY(-100px) scale(2);
  opacity: 0.5;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  padding-right: 20px;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 20px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-btns {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border);
  padding-top: 30px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 3D Visual in Hero */
.3d-tilt-container {
  perspective: 1000px;
}
.tilt-element {
  transform-style: preserve-3d;
  transition: transform 0.1s;
}

.dashboard-mockup {
  background: rgba(10, 19, 37, 0.8);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(0, 240, 255, 0.2);
  overflow: hidden;
}

.mockup-header {
  background: #1a2639;
  padding: 10px 15px;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot.red {
  background: #ff5f56;
}
.dot.yellow {
  background: #ffbd2e;
}
.dot.green {
  background: #27c93f;
}

.mockup-body {
  padding: 30px;
}
.chart-bar-group {
  display: flex;
  align-items: flex-end;
  height: 150px;
  gap: 15px;
  margin-bottom: 30px;
}
.bar-col {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  height: 100%;
  border-radius: 4px;
  position: relative;
}
.bar-fill {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(0deg, var(--secondary), var(--primary));
  border-radius: 4px;
  animation: barGrow 2s ease-out forwards;
  transform-origin: bottom;
}

.mockup-metrics {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.1rem;
}
.text-green {
  color: #27c93f;
}

/* ==========================================================================
   TICKER
   ========================================================================== */
.ticker-section {
  background: var(--surface);
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 50px;
  animation: ticker 20s linear infinite;
}
.ticker-item {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ticker-item i {
  color: var(--primary);
  font-size: 1.5rem;
}

/* ==========================================================================
   ABOUT / GRID 
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.glass-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 240, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 20px;
}
.feature-list li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-list i {
  color: var(--primary);
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.section-header {
  margin-bottom: 60px;
  max-width: 600px;
  margin-inline: auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-10px);
  background: var(--surface-light);
  border-color: rgba(0, 240, 255, 0.3);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-weight: 600;
}
.service-link i {
  transition: transform 0.3s;
}
.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* ==========================================================================
   Value calculator (index)
   ========================================================================== */
.calculator-wrapper {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
  background: var(--surface);
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 50px;
}
.calc-controls .input-group {
  margin-bottom: 25px;
}
.calc-controls label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--white);
}
.calc-controls span {
  color: var(--primary);
}
input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  background: #333;
  border-radius: 3px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 10px var(--primary);
}
.calc-results {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.result-amount {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 20px 0;
}
.sub-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   REPORTS / DATA
   ========================================================================== */
.reports-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.report-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
}
.report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.badge.green {
  background: rgba(39, 201, 63, 0.1);
  color: #27c93f;
  border-color: rgba(39, 201, 63, 0.3);
}
.badge.purple {
  background: rgba(112, 0, 255, 0.1);
  color: #b275ff;
  border-color: rgba(112, 0, 255, 0.3);
}
.chart-container {
  height: 200px;
  width: 100%;
  margin-bottom: 20px;
}
.chart-container svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.chart-container.bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.bar-item {
  flex: 1;
  border-radius: 4px 4px 0 0;
  transition: height 1s ease;
}

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
@media (max-width: 991px) {
  .process-steps::before {
    display: none;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.step {
  position: relative;
  z-index: 1;
  background: var(--bg-dark);
  padding-top: 10px;
}
.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

/* ==========================================================================
   INDUSTRY
   ========================================================================== */
.industry-flex {
  display: flex;
  gap: 60px;
  align-items: center;
}
.industry-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.industry-list li {
  background: var(--surface);
  padding: 15px 20px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
}
.industry-list i {
  color: var(--secondary);
  font-size: 1.2rem;
}
.industry-image {
  width: 100%;
}
.highlight-card {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(
    180deg,
    var(--surface) 0%,
    rgba(112, 0, 255, 0.1) 100%
  );
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.stars {
  color: #ffbd2e;
  margin-bottom: 15px;
  font-size: 0.9rem;
}
.quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 25px;
}
.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.client-avatar {
  width: 50px;
  height: 50px;
  background: var(--surface-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
}
.client-info h4 {
  margin-bottom: 0;
  font-size: 1rem;
}
.client-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-container {
  max-width: 800px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}
.faq-question {
  padding: 20px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question i {
  transition: transform 0.3s;
  color: var(--primary);
}
.faq-item.active .faq-question i {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}
.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 300px;
}

/* ==========================================================================
   SUBPAGES (Contact, Legal)
   ========================================================================== */
.subpage {
  padding-top: 80px;
}
.page-hero {
  padding: 80px 0 60px;
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.minimal-hero {
  padding: 60px 0 40px;
}
.subpage-subtitle {
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 1.1rem;
}
.breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.breadcrumbs a {
  color: var(--primary);
}
.breadcrumbs i {
  font-size: 0.7rem;
}

/* Contact Specific */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}
.method-card {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px;
  margin-bottom: 20px;
}
.method-card .icon {
  width: 50px;
  height: 50px;
  background: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.method-card h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}
.method-card p {
  margin-bottom: 0;
}

.custom-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.custom-form .input-group {
  margin-bottom: 20px;
}
.custom-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}
.custom-form input,
.custom-form select,
.custom-form textarea {
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}
.custom-form input:focus,
.custom-form select:focus,
.custom-form textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
  background: rgba(0, 0, 0, 0.4);
}

/* Legal Content */
.legal-page .content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px;
}
.legal-content h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: var(--primary);
}
.legal-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.legal-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style: disc;
  color: var(--text-muted);
}
.legal-content li {
  margin-bottom: 10px;
}

/* ==========================================================================
   FOOTER (Strictly Consistent)
   ========================================================================== */
.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-logo {
  height: 60px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}
.footer-about {
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.social-links {
  display: flex;
  gap: 15px;
}
.social-links a {
  width: 40px;
  height: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--primary);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

.widget-title {
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.contact-info-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--text-muted);
  align-items: flex-start;
}
.contact-info-list i {
  color: var(--primary);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Chat Widget */
.live-chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}
.chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 240, 255, 0.3);
  transition: transform 0.3s;
  animation: pulseGlow 2s infinite;
}
.chat-toggle:hover {
  transform: scale(1.1);
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(30px, 30px) scale(1.05);
  }
}
@keyframes barGrow {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(0, 240, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
  }
}

/* Reveal Classes */
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.revealed {
  opacity: 1;
  transform: translate(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container,
  .about-grid,
  .calculator-wrapper,
  .industry-flex,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-content {
    padding-right: 0;
    text-align: center;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav,
  .header-actions .btn {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .reports-grid,
  .industry-list {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 2.5rem;
  }
  .section-padding {
    padding: 60px 0;
  }
  .calculator-wrapper {
    padding: 30px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .custom-form .form-row {
    grid-template-columns: 1fr;
  }
  .legal-page .content-wrapper {
    padding: 30px 20px;
  }
}
