@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Syne:wght@400;500;600;700;800&display=swap");

/* ==========================================================================
   1. VARIABLES & SETUP
   ========================================================================== */
:root {
  /* Colors */
  --bg-main: #050505;
  --bg-secondary: #0a0a0c;
  --bg-tertiary: #121215;
  --bg-glass: rgba(10, 10, 12, 0.6);

  --accent-primary: #00f0ff; /* Neon Cyan */
  --accent-secondary: #7000ff; /* Deep Purple */
  --accent-gradient: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );

  --text-main: #ffffff;
  --text-muted: #a0a0a5;
  --text-dark: #050505;

  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(0, 240, 255, 0.3);

  /* Typography */
  --font-display: "Syne", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;

  /* Spacing & Sizes */
  --section-pad: 120px 0;
  --container-w: 1400px;
  --header-h: 90px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 100px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --trans-fast: 0.3s var(--ease-out-expo);
  --trans-slow: 0.8s var(--ease-out-expo);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: initial; /* Handled by Lenis/GSAP typically, standard for smooth scroll */
  font-size: 16px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none; /* Custom cursor */
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--accent-secondary);
  color: var(--text-main);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-secondary);
}

/* Typography Basics */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--trans-fast);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 5%;
}

/* ==========================================================================
   2. CUSTOM CURSOR
   ========================================================================== */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition:
    width 0.2s,
    height 0.2s,
    background 0.2s;
}
.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent-primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition:
    width 0.2s,
    height 0.2s,
    border-color 0.2s;
}
body:hover .cursor-dot {
  opacity: 1;
}
/* Hover states for cursor handled in JS */

/* ==========================================================================
   3. BACKGROUND NOISE & ORBS (Premium Vibe)
   ========================================================================== */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.03;
  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');
}
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  z-index: -1;
  opacity: 0.4;
  animation: float 20s infinite ease-in-out alternate;
}
.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-secondary);
  top: -100px;
  left: -100px;
}
.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--accent-primary);
  bottom: -200px;
  right: -100px;
  animation-delay: -5s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(100px, 50px) scale(1.2);
  }
}

/* ==========================================================================
   4. BUTTONS & UI ELEMENTS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-pill);
  position: relative;
  overflow: hidden;
  cursor: none;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text-main);
  z-index: 1;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-gradient);
  z-index: -1;
  transition: transform 0.5s var(--ease-out-expo);
}
.btn::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: var(--bg-main);
  border-radius: var(--radius-pill);
  z-index: -1;
  transition: background 0.5s var(--ease-out-expo);
}
.btn:hover::after {
  background: transparent;
}
.btn-primary::after {
  background: var(--bg-main);
}
.btn-primary:hover {
  color: var(--text-dark);
}
.btn-icon {
  margin-left: 10px;
  transition: transform 0.3s;
}
.btn:hover .btn-icon {
  transform: translateX(5px);
}

/* ==========================================================================
   5. HEADER (Strictly Consistent)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition:
    background 0.4s,
    backdrop-filter 0.4s,
    border-bottom 0.4s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.logo img {
  height: 60px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.nav-list {
  display: flex;
  gap: 40px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 10px 0;
}
.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-primary);
  transition: width 0.4s var(--ease-out-expo);
}
.nav-link:hover,
.nav-link.active {
  color: var(--text-main);
}
.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
}

.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 15px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease-out-expo);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 10px 25px;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  transition: 0.3s;
}
.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-primary);
  padding-left: 30px;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: none;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  width: 30px;
  height: 2px;
  background: var(--text-main);
  position: relative;
  transition: 0.3s;
}
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}
.hamburger::before {
  top: -8px;
}
.hamburger::after {
  top: 8px;
}

/* ==========================================================================
   6. HERO SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hero-tag {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.03);
}
.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  margin-bottom: 30px;
  perspective: 1000px;
}
.title-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 50px;
}
.hero-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}
/* Abstract 3D shape simulation */
.cube-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  perspective: 800px;
}
.cube {
  width: 400px;
  height: 400px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube 20s infinite linear;
  opacity: 0.15;
}
.face {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-primary);
  background: rgba(0, 240, 255, 0.05);
}
.front {
  transform: translateZ(200px);
}
.back {
  transform: rotateY(180deg) translateZ(200px);
}
.right {
  transform: rotateY(90deg) translateZ(200px);
}
.left {
  transform: rotateY(-90deg) translateZ(200px);
}
.top {
  transform: rotateX(90deg) translateZ(200px);
}
.bottom {
  transform: rotateX(-90deg) translateZ(200px);
}
@keyframes rotateCube {
  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

/* ==========================================================================
   7. MARQUEE SECTION (Clients/Partners)
   ========================================================================== */
.marquee-section {
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-secondary);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 80px;
  animation: scrollMarquee 30s linear infinite;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px var(--text-muted);
  text-transform: uppercase;
  transition: 0.3s;
}
.marquee-item:hover {
  color: var(--text-main);
  -webkit-text-stroke: 1px var(--text-main);
}
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   8. SERVICES SECTION (Grid & Hover Cards)
   ========================================================================== */
.section {
  padding: var(--section-pad);
}
.section-header {
  text-align: center;
  margin-bottom: 80px;
}
.section-subtitle {
  color: var(--accent-primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}
.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.service-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  transition: var(--trans-slow);
  group: hover;
}
.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(0, 240, 255, 0.1) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-10px);
}
.service-card:hover::before {
  opacity: 1;
}
.service-icon {
  font-size: 3rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
  display: inline-block;
}
.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.service-card p {
  color: var(--text-muted);
  margin-bottom: 30px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.service-link i {
  margin-left: 8px;
  transition: 0.3s;
}
.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* ==========================================================================
   9. CAMPAIGN REPORTS (Interactive Data Viz)
   ========================================================================== */
.reports-section {
  background: var(--bg-tertiary);
  position: relative;
}
.reports-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}
.reports-content,
.reports-visual {
  flex: 1;
}
.chart-container {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.chart-bar-group {
  margin-bottom: 25px;
}
.chart-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}
.chart-track {
  width: 100%;
  height: 12px;
  background: var(--bg-secondary);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.chart-fill {
  height: 100%;
  background: var(--accent-gradient);
  width: 0;
  border-radius: var(--radius-pill);
  transition: width 1.5s var(--ease-out-expo);
}
.chart-fill.fill-seo {
  background: linear-gradient(90deg, #00f0ff, #0080ff);
}
.chart-fill.fill-ppc {
  background: linear-gradient(90deg, #7000ff, #ff00ff);
}
.chart-fill.fill-social {
  background: linear-gradient(90deg, #ff0055, #ffaa00);
}

/* ==========================================================================
   10. INTERACTIVE CALCULATOR
   ========================================================================== */
.calc-section {
  position: relative;
  border-bottom: 1px solid var(--border-color);
}
.calc-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 60px;
  backdrop-filter: blur(10px);
}
.calc-row {
  margin-bottom: 40px;
}
.calc-row label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: var(--bg-secondary);
  outline: none;
  border-radius: var(--radius-pill);
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-primary);
  cursor: pointer;
  box-shadow: 0 0 15px var(--accent-primary);
}
.calc-output {
  text-align: center;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}
.calc-output h4 {
  color: var(--text-muted);
  font-size: 1rem;
}
.output-val {
  font-size: 4rem;
  font-family: var(--font-display);
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   11. INDUSTRIES SECTION (Tabs/Accordion style)
   ========================================================================== */
.industries-wrapper {
  display: flex;
  gap: 50px;
}
.industries-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.industry-item {
  padding: 30px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: 0.3s;
  background: var(--bg-main);
}
.industry-item.active,
.industry-item:hover {
  background: var(--bg-secondary);
  border-color: var(--accent-primary);
}
.industry-item h3 {
  font-size: 1.5rem;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.industry-item i {
  color: var(--text-muted);
  transition: 0.3s;
}
.industry-item.active i {
  color: var(--accent-primary);
  transform: rotate(45deg);
}
.industries-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 500px;
  background: #111;
}
/* Placeholder abstract element for industry image */
.industry-visual-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--bg-secondary), var(--bg-tertiary));
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.industry-visual-placeholder::after {
  content: "\f201";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   12. TESTIMONIALS (Slider)
   ========================================================================== */
.testi-section {
  background: var(--bg-tertiary);
  overflow: hidden;
}
.testi-slider {
  display: flex;
  gap: 30px;
  width: max-content;
  padding: 20px 0;
  cursor: grab;
}
.testi-slider:active {
  cursor: grabbing;
}
.testi-card {
  width: 450px;
  background: var(--bg-main);
  padding: 50px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}
.quote-icon {
  font-size: 2rem;
  color: var(--accent-secondary);
  margin-bottom: 20px;
  opacity: 0.5;
}
.testi-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 30px;
  color: #ddd;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--accent-primary);
}
.author-info h4 {
  margin: 0;
  font-size: 1.1rem;
}
.author-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   13. CTA / CONTACT SECTION
   ========================================================================== */
.cta-section {
  position: relative;
  text-align: center;
  padding: 150px 0;
  border-bottom: 1px solid var(--border-color);
}
.cta-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(
    ellipse at center,
    rgba(112, 0, 255, 0.15) 0%,
    transparent 70%
  );
  z-index: -1;
  pointer-events: none;
}
.cta-title {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 40px;
}

/* Contact Page Specific */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-top: 60px;
  text-align: left;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-card {
  background: var(--bg-secondary);
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.info-card i {
  font-size: 1.5rem;
  color: var(--accent-primary);
}
.contact-form {
  background: var(--bg-tertiary);
  padding: 50px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}
.form-group {
  position: relative;
  margin-bottom: 30px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group label {
  position: absolute;
  top: 15px;
  left: 0;
  color: var(--text-muted);
  pointer-events: none;
  transition: 0.3s;
}
.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
  top: -10px;
  font-size: 0.8rem;
  color: var(--accent-primary);
}
.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--accent-primary);
}

/* ==========================================================================
   14. LIVE CHAT MOCKUP
   ========================================================================== */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9900;
}
.chat-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  cursor: none;
  box-shadow: 0 10px 20px rgba(0, 240, 255, 0.3);
  border: none;
  outline: none;
  transition: 0.3s;
}
.chat-btn:hover {
  transform: scale(1.1);
}
.chat-box {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.3s;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}
.chat-box.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.chat-header {
  background: var(--bg-secondary);
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-body {
  padding: 20px;
  height: 300px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.msg {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  max-width: 80%;
}
.msg.bot {
  background: var(--bg-secondary);
  align-self: flex-start;
  border-bottom-left-radius: 0;
}
.msg.user {
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.2);
  align-self: flex-end;
  border-bottom-right-radius: 0;
}
.chat-input {
  padding: 15px;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 10px;
}
.chat-input input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  outline: none;
}
.chat-input button {
  background: none;
  border: none;
  color: var(--accent-primary);
  cursor: pointer;
}

/* ==========================================================================
   15. LEGAL PAGES CONTENT STYLING
   ========================================================================== */
.page-header {
  padding: 180px 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-secondary);
}
.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 15px;
}
.breadcrumbs {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.breadcrumbs a {
  color: var(--text-main);
  margin-right: 5px;
}
.breadcrumbs span {
  margin-left: 5px;
  color: var(--accent-primary);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 0;
}
.legal-content h2 {
  font-size: 2rem;
  margin: 50px 0 20px;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}
.legal-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 25px;
}
.legal-content strong.legal-brand {
  color: var(--accent-primary);
  font-weight: 700;
}
.legal-content ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--text-muted);
  margin-bottom: 25px;
}
.legal-content li {
  margin-bottom: 10px;
}

/* ==========================================================================
   16. STRICT FOOTER
   ========================================================================== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 100px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 80px;
}
.footer-logo img {
  height: 60px;
  filter: brightness(0) invert(1);
  margin-bottom: 25px;
}
.footer-desc {
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 350px;
}
.footer-socials {
  display: flex;
  gap: 15px;
}
.footer-socials a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: 0.3s;
}
.footer-socials a:hover {
  background: var(--accent-primary);
  color: var(--bg-main);
  border-color: var(--accent-primary);
  transform: translateY(-5px);
}
.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}
.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: var(--accent-primary);
}
.footer-links ul li {
  margin-bottom: 15px;
}
.footer-links ul li a {
  color: var(--text-muted);
  transition: 0.3s;
  display: inline-block;
}
.footer-links ul li a:hover {
  color: var(--accent-primary);
  transform: translateX(5px);
}
.footer-contact ul li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--text-muted);
  align-items: flex-start;
}
.footer-contact ul li i {
  color: var(--accent-primary);
  margin-top: 5px;
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   17. MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .reports-wrapper {
    flex-direction: column;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .nav-list {
    position: fixed;
    top: var(--header-h);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-h));
    background: var(--bg-main);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s var(--ease-out-expo);
    z-index: 999;
  }
  .nav-list.active {
    left: 0;
  }
  .menu-toggle {
    display: block;
    z-index: 1001;
  }
  .hamburger.active {
    background: transparent;
  }
  .hamburger.active::before {
    transform: rotate(45deg);
    top: 0;
  }
  .hamburger.active::after {
    transform: rotate(-45deg);
    top: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .industries-wrapper {
    flex-direction: column;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 3rem;
  }

  .cursor-dot,
  .cursor-outline {
    display: none;
  } /* Disable custom cursor on mobile */
  body {
    cursor: auto;
  }
  a,
  button {
    cursor: pointer;
  }
}
