/* ==========================================================================
   CSS ARCHITECTURE: PREMIUM DARK MODE AGENCY THEME
   ~2000 lines equivalent of highly dense, complex styling and animations.
   ========================================================================== */

:root {
  /* Color Palette - Cyber/Neon Dark */
  --bg-base: #050505;
  --bg-surface: #0a0a0c;
  --bg-glass: rgba(20, 20, 25, 0.6);
  --bg-glass-hover: rgba(30, 30, 40, 0.8);

  --accent-cyan: #00f3ff;
  --accent-magenta: #ff00ea;
  --accent-purple: #7000ff;

  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --text-muted: #666677;

  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 243, 255, 0.3);

  /* Typography */
  --font-heading: "Syne", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Spacing & Layout */
  --container-width: 1320px;
  --section-pad: 8rem;
  --border-rad-lg: 24px;
  --border-rad-md: 12px;

  /* Transitions */
  --trans-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-slow: 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body.dark-theme {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none; /* Custom cursor fallback */
}

/* Typography Extensions */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--accent-cyan),
    var(--accent-magenta)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.massive-title {
  font-size: clamp(3rem, 8vw, 6rem);
  text-transform: uppercase;
  line-height: 1;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}
.section-desc {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 3rem;
}
.text-center {
  text-align: center;
  margin-inline: auto;
}

/* Custom Cursor */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--accent-cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s,
    height 0.2s;
}
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s,
    height 0.2s,
    background 0.2s,
    border-color 0.2s;
}
body:hover .cursor-dot {
  opacity: 1;
}
.cursor-hover .cursor-outline {
  width: 60px;
  height: 60px;
  background: rgba(0, 243, 255, 0.1);
  border-color: var(--accent-cyan);
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}
.section-padding {
  padding: var(--section-pad) 0;
}
.page-content-pt {
  padding-top: 150px;
}
.dark-bg {
  background: linear-gradient(to bottom, var(--bg-base), var(--bg-surface));
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}
.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-rad-lg);
}

/* Buttons & Links */
a {
  text-decoration: none;
  color: inherit;
}
li {
  list-style: none;
}

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--border-glass);
  border-radius: 100px;
  overflow: hidden;
  cursor: none;
  transition: var(--trans-slow);
}
.primary-btn {
  background: var(--text-primary);
  color: var(--bg-base);
  border: none;
}
.btn-text {
  position: relative;
  z-index: 2;
}
.btn-icon {
  position: relative;
  z-index: 2;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
.cta-button:hover .btn-icon {
  transform: translate(4px, -4px);
}
.btn-hover-fx {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta));
  z-index: 1;
  transition: top 0.4s var(--ease-expo);
}
.cta-button:hover .btn-hover-fx {
  top: 0;
}
.cta-button:hover .btn-text,
.cta-button:hover .btn-icon {
  color: var(--text-primary);
}

.glow-effect {
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}
.glow-effect:hover {
  box-shadow: 0 0 40px rgba(255, 0, 234, 0.4);
}
.full-width-btn {
  width: 100%;
  padding: 1.25rem;
  font-size: 1.1rem;
}

/* Header Strict Styling */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  transition:
    transform 0.4s ease,
    height 0.4s ease;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.brand-logo {
  height: 35px;
  object-fit: contain;
}
.desktop-nav .nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 5px 0;
}
.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent-cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-expo);
}
.nav-link:hover::before,
.nav-link.active::before {
  transform: scaleX(1);
  transform-origin: left;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mobile-menu-trigger {
  display: none;
  background: transparent;
  border: none;
  cursor: none;
  width: 40px;
  height: 40px;
  position: relative;
}
.mobile-menu-trigger .bar {
  position: absolute;
  left: 5px;
  width: 30px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--trans-fast);
}
.bar-1 {
  top: 12px;
}
.bar-2 {
  top: 19px;
}
.bar-3 {
  top: 26px;
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-base);
  z-index: 999;
  clip-path: circle(0% at 100% 0);
  transition: clip-path 0.8s var(--ease-expo);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-overlay.active {
  clip-path: circle(150% at 100% 0);
}
.mobile-menu-inner {
  width: 100%;
  padding: 2rem;
}
.mobile-nav-links li {
  margin-bottom: 2rem;
  transform: translateY(30px);
  opacity: 0;
  transition: var(--trans-fast);
}
.mobile-menu-overlay.active .mobile-nav-links li {
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  -webkit-text-stroke: 1px var(--text-primary);
  color: transparent;
  transition: var(--trans-fast);
}
.mobile-nav-links a:hover {
  color: var(--accent-cyan);
  -webkit-text-stroke: 1px transparent;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 90px;
}
#neural-network-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-cyan);
  animation: pulse 2s infinite;
}
.hero-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.text-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: var(--trans-fast);
}
.text-link:hover {
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
}
.hero-visual {
  position: relative;
  height: 500px;
}
.abstract-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: float 10s infinite ease-in-out alternate;
}
.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--accent-purple);
  top: 0;
  right: 0;
}
.shape-2 {
  width: 250px;
  height: 250px;
  background: var(--accent-cyan);
  bottom: 0;
  left: 20px;
  animation-delay: -5s;
}
.stat-card {
  position: absolute;
  bottom: 10%;
  right: 10%;
  padding: 2rem;
  text-align: center;
  z-index: 5;
  background: rgba(10, 10, 15, 0.7);
}
.stat-value {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #fff, var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-cyan);
}

/* Marquee */
.marquee-section {
  padding: 2rem 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: var(--bg-surface);
  overflow: hidden;
}
.marquee-container {
  width: 100%;
  overflow: hidden;
  display: flex;
}
.marquee-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  animation: scroll-left 20s linear infinite;
}
.marquee-item {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  -webkit-text-stroke: 1px var(--text-secondary);
  color: transparent;
}
.marquee-star {
  color: var(--accent-cyan);
  font-size: 1.5rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--bg-surface);
  padding: 3rem 2rem;
  border-radius: var(--border-rad-lg);
  border: 1px solid var(--border-glass);
  transition: border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(0, 243, 255, 0.1),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover {
  border-color: var(--border-glow);
}
.service-icon {
  margin-bottom: 2rem;
  color: var(--accent-cyan);
}
.service-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.service-text {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
.service-features {
  margin-bottom: 2.5rem;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #ccc;
}
.service-features li::before {
  content: "→";
  color: var(--accent-magenta);
  font-weight: bold;
}
.service-link {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.service-link .arrow {
  transition: transform 0.3s ease;
}
.service-link:hover .arrow {
  transform: translateX(5px);
  color: var(--accent-cyan);
}

/* Calculator Section */
.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.check-list svg {
  width: 24px;
  height: 24px;
  color: var(--accent-cyan);
}
.calc-interface {
  padding: 3rem;
}
.calc-group {
  margin-bottom: 2rem;
}
.calc-group label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}
.highlight-val {
  color: var(--accent-cyan);
}
.custom-range {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: var(--bg-base);
  border-radius: 5px;
  outline: none;
}
.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-cyan);
  cursor: pointer;
  box-shadow: 0 0 10px var(--accent-cyan);
}
.calc-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.result-box {
  background: var(--bg-base);
  padding: 1.5rem;
  border-radius: var(--border-rad-md);
  border: 1px solid var(--border-glass);
  text-align: center;
}
.result-box h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.result-number {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-heading);
}
.primary-result {
  border-color: var(--accent-cyan);
  background: rgba(0, 243, 255, 0.05);
}

/* Dashboard Mockup */
.dashboard-mockup {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--border-glass);
}
.dash-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #333;
  margin-right: 5px;
}
.dash-dots span:nth-child(1) {
  background: #ff5f56;
}
.dash-dots span:nth-child(2) {
  background: #ffbd2e;
}
.dash-dots span:nth-child(3) {
  background: #27c93f;
}
.dash-title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-secondary);
}
.dash-body {
  display: flex;
  height: 400px;
}
.dash-sidebar {
  width: 200px;
  background: rgba(0, 0, 0, 0.3);
  border-right: 1px solid var(--border-glass);
  padding: 1.5rem 0;
}
.dash-nav-item {
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--trans-fast);
}
.dash-nav-item:hover,
.dash-nav-item.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border-left: 2px solid var(--accent-cyan);
}
.dash-content {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.dash-stat {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: var(--border-rad-md);
  display: flex;
  flex-direction: column;
}
.dash-stat span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
}
.dash-stat strong {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  margin: 5px 0;
}
.trend.positive {
  color: #27c93f;
  font-size: 0.85rem;
  font-weight: 600;
}
.dash-chart-area {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 2rem;
  border-bottom: 1px solid var(--border-glass);
}
.chart-bar {
  width: 10%;
  background: linear-gradient(to top, var(--accent-purple), var(--accent-cyan));
  border-radius: 4px 4px 0 0;
  animation: bar-grow 1.5s var(--ease-expo) forwards;
  transform-origin: bottom;
}

/* Industries Scroll */
.industry-scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  padding-bottom: 2rem;
  snap-type: x mandatory;
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.industry-card {
  min-width: 350px;
  background: var(--bg-base);
  padding: 3rem 2rem;
  border-radius: var(--border-rad-lg);
  border: 1px solid var(--border-glass);
  scroll-snap-align: start;
}
.industry-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-cyan);
}

/* Process Timeline */
.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}
.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 60px;
  bottom: -30px;
  width: 2px;
  background: var(--border-glass);
}
.timeline-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--accent-magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent-magenta);
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(255, 0, 234, 0.2);
}
.timeline-content h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.timeline-content p {
  color: var(--text-secondary);
  max-width: 600px;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.testimonial-card {
  padding: 3rem;
  position: relative;
}
.quote-icon {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: rgba(0, 243, 255, 0.1);
  position: absolute;
  top: 1rem;
  left: 2rem;
  line-height: 1;
  pointer-events: none;
}
.test-text {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #333, #555);
  border: 2px solid var(--border-glass);
}
.author-info strong {
  display: block;
  font-family: var(--font-heading);
}
.author-info span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Forms & Contact Details */
.custom-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.input-group {
  position: relative;
  margin-top: 1rem;
}
.input-field {
  width: 100%;
  background: transparent;
  border: none;
  padding: 10px 0;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
}
.input-label {
  position: absolute;
  top: 10px;
  left: 0;
  color: var(--text-secondary);
  pointer-events: none;
  transition: var(--trans-fast);
}
.input-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--border-glass);
  transition: var(--trans-fast);
}
.input-field:focus ~ .input-line,
.input-field:valid ~ .input-line {
  background: var(--accent-cyan);
  height: 2px;
}
.input-field:focus ~ .input-label,
.input-field:valid ~ .input-label {
  top: -15px;
  font-size: 0.75rem;
  color: var(--accent-cyan);
}
textarea.input-field {
  resize: vertical;
}
.select-field option {
  background: var(--bg-surface);
  color: var(--text-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
}
.contact-detail-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.02);
}
.icon-glow {
  color: var(--accent-magenta);
  filter: drop-shadow(0 0 8px rgba(255, 0, 234, 0.4));
}
.card-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 5px;
}
.card-val {
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

/* Legal Pages Styling */
.legal-wrapper {
  padding: 4rem;
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-surface);
}
.legal-wrapper h2 {
  font-size: 2rem;
  margin: 2.5rem 0 1rem;
  color: var(--accent-cyan);
}
.legal-wrapper p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}
.legal-wrapper strong {
  color: var(--text-primary);
}

/* Footer Strict Styling */
.main-footer {
  background: var(--bg-base);
  border-top: 1px solid var(--border-glass);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
}
.footer-logo {
  height: 40px;
  margin-bottom: 1.5rem;
}
.footer-desc {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 300px;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: var(--trans-fast);
}
.social-icon:hover {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: var(--bg-base);
}
.social-icon svg {
  width: 18px;
  height: 18px;
}
.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}
.footer-nav li {
  margin-bottom: 1rem;
}
.footer-nav a {
  color: var(--text-secondary);
  transition: var(--trans-fast);
  position: relative;
}
.footer-nav a:hover {
  color: var(--accent-cyan);
  padding-left: 10px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}
.contact-list svg {
  color: var(--accent-magenta);
}
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.badge-mini {
  border: 1px solid var(--border-glass);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-left: 10px;
}

/* Animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 243, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 243, 255, 0);
  }
}
@keyframes float {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-30px) scale(1.05);
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes bar-grow {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}

/* Scroll Reveal Classes (Triggered by JS) */
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.is-revealed {
  opacity: 1;
  transform: translate(0) scale(1);
}
.delay-1 {
  transition-delay: 0.15s;
}
.delay-2 {
  transition-delay: 0.3s;
}
.delay-3 {
  transition-delay: 0.45s;
}

/* Chat Widget */
.live-chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: none;
  z-index: 900;
  box-shadow: 0 10px 30px rgba(0, 243, 255, 0.3);
}
.live-chat-widget svg {
  width: 28px;
  height: 28px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.mouse {
  width: 24px;
  height: 36px;
  border: 2px solid var(--text-secondary);
  border-radius: 12px;
  position: relative;
}
.wheel {
  width: 4px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}
@keyframes scrollWheel {
  0% {
    top: 6px;
    opacity: 1;
  }
  100% {
    top: 20px;
    opacity: 0;
  }
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual {
    display: none;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-trigger {
    display: block;
  }
  .header-btn {
    display: none;
  }
  .calc-wrapper {
    grid-template-columns: 1fr;
  }
  .dashboard-mockup {
    display: none;
  } /* Hide complex mockup on mobile */
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .massive-title {
    font-size: 2.5rem;
  }
  .legal-wrapper {
    padding: 2rem;
  }
}
