/* ==========================================================================
   AWWARDS LEVEL CSS - LLC CONSTRUCTION & DEVELOPMENT
   ========================================================================== */

/* --- Custom Variables & Root Design System --- */
:root {
  /* Color Palette: Deep Dark with Neon Accents */
  --bg-dark: #05070a;
  --bg-surface: #0a0d14;
  --bg-surface-elevated: rgba(20, 25, 38, 0.6);
  --border-color: rgba(255, 255, 255, 0.08);

  --text-main: #ffffff;
  --text-muted: #94a3b8;

  --primary: #4f46e5; /* Vivid Indigo */
  --primary-glow: rgba(79, 70, 229, 0.4);
  --secondary: #00f0ff; /* Cyan */
  --secondary-glow: rgba(0, 240, 255, 0.3);
  --accent: #ec4899; /* Pink */

  /* Gradients */
  --gradient-1: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-text: linear-gradient(
    to right,
    #ffffff,
    #a5b4fc,
    var(--secondary)
  );

  /* Typography */
  --font-heading: "Outfit", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;

  /* Layout & Spacing */
  --container-w: 1320px;
  --section-gap: clamp(80px, 12vw, 160px);

  /* Easing */
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* --- Reset & Global --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  /* This removes any unnecessary empty horizontal scroll space */
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body.dark-theme {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

a,
button,
input,
select,
textarea {
  cursor: none;
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  outline: none;
  border: none;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
::selection {
  background-color: var(--primary);
  color: #fff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.text-center {
  text-align: center;
}
.section-padding {
  padding: var(--section-gap) 0;
}
.pt-header {
  padding-top: 140px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-60 {
  margin-top: 60px;
}
.pb-0 {
  padding-bottom: 0;
}
.pt-40 {
  padding-top: 40px;
}
.max-w-800 {
  max-width: 800px;
  margin: 0 auto;
}

/* --- Custom Cursor --- */
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--secondary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  /* Negative margin perfectly centers it without conflicting with JS */
  margin-left: -4px;
  margin-top: -4px;
  transition: transform 0.2s var(--ease-out-expo);
}
.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  /* Negative margin perfectly centers it without conflicting with JS */
  margin-left: -20px;
  margin-top: -20px;
  transition:
    width 0.25s var(--ease-out-expo),
    height 0.25s var(--ease-out-expo),
    margin 0.25s var(--ease-out-expo),
    background-color 0.25s,
    border-color 0.25s;
}
.cursor-hover .cursor-outline {
  width: 70px;
  height: 70px;
  margin-left: -35px;
  margin-top: -35px; /* Re-centers based on new width */
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--secondary);
  backdrop-filter: blur(2px);
}
.cursor-hover .cursor-dot {
  transform: scale(1.5);
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.text-center {
  text-align: center;
}
.section-padding {
  padding: var(--section-gap) 0;
}
.pt-header {
  padding-top: 140px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-60 {
  margin-top: 60px;
}
.pb-0 {
  padding-bottom: 0;
}
.pt-40 {
  padding-top: 40px;
}
.max-w-800 {
  max-width: 800px;
  margin: 0 auto;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
}
.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.massive-text {
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  letter-spacing: -0.03em;
}
.page-title {
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.page-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 700px;
}
.section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.section-desc {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 600px;
}

/* --- Background Noise --- */
.bg-noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  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.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* --- Custom Cursor --- */
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--secondary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s linear;
}
.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s var(--ease-out-expo),
    height 0.25s var(--ease-out-expo),
    background-color 0.25s,
    border-color 0.25s;
}
.cursor-hover .cursor-outline {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--secondary);
  backdrop-filter: blur(2px);
}
.cursor-hover .cursor-dot {
  transform: translate(-50%, -50%) scale(1.5);
}

/* --- Magnetic Elements --- */
.magnetic-wrap {
  display: inline-block;
  padding: 20px;
  margin: -20px;
}
.magnetic-inner {
  display: inline-block;
  transition: transform 0.2s linear;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 14px 32px;
  font-size: 1rem;
}
.btn-primary {
  background: var(--gradient-1);
  color: #fff;
  border: 1px solid transparent;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary:hover {
  box-shadow: 0 15px 30px var(--primary-glow);
  transform: translateY(-3px);
}

.btn-glow {
  background: #fff;
  color: var(--bg-dark);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
.btn-glow:hover {
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
  background: #fff;
  color: var(--bg-dark);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}
.btn-xl {
  padding: 22px 52px;
  font-size: 1.25rem;
}

/* Hover Underline Effect */
.hover-underline {
  position: relative;
  display: inline-block;
}
.hover-underline::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--secondary);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.hover-underline:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 0;
  transition: all 0.5s var(--ease-out-expo);
}
.header.scrolled {
  padding: 16px 0;
  background: rgba(5, 7, 10, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
}
.header-container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-container img {
  height: 35px;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}
.logo-container:hover img {
  opacity: 0.8;
}

.desktop-nav .nav-links {
  display: flex;
  gap: 40px;
}
.link-item a {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 5px 0;
  transition: 0.3s;
}
.link-item a::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 100%;
  color: #fff;
  transition: transform 0.4s var(--ease-out-expo);
}
.link-item:hover a,
.link-item a.active {
  color: transparent;
}
.link-item:hover a::after,
.link-item a.active::after {
  transform: translateY(-100%);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Hamburger Menu */
.mobile-menu-btn {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  align-items: center;
  justify-content: center;
  z-index: 102;
  position: relative;
  transition: 0.3s;
}
.menu-lines,
.menu-lines::before,
.menu-lines::after {
  width: 20px;
  height: 2px;
  background: #fff;
  transition: 0.3s ease;
}
.menu-lines {
  position: relative;
}
.menu-lines::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
}
.menu-lines::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
}
.mobile-menu-btn.active .menu-lines {
  background: transparent;
}
.mobile-menu-btn.active .menu-lines::before {
  transform: rotate(45deg);
  top: 0;
}
.mobile-menu-btn.active .menu-lines::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* Mobile Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-dark);
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: circle(0% at 90% 10%);
  transition: clip-path 0.8s var(--ease-out-expo);
}
.mobile-menu-overlay.active {
  clip-path: circle(150% at 90% 10%);
}
.mobile-menu-inner {
  text-align: center;
}
.mobile-nav-links li {
  margin: 24px 0;
  overflow: hidden;
}
.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  color: var(--text-muted);
  display: block;
  transform: translateY(100%);
  transition:
    transform 0.6s var(--ease-out-expo),
    color 0.3s;
}
.mobile-menu-overlay.active .mobile-nav-links a {
  transform: translateY(0);
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: #fff;
}
.mobile-contact {
  margin-top: 50px;
  color: var(--text-muted);
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.5s 0.5s;
}
.mobile-menu-overlay.active .mobile-contact {
  opacity: 1;
}

/* --- HERO SECTION --- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
.hero-glow-1,
.hero-glow-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
}
.hero-glow-1 {
  width: 700px;
  height: 700px;
  background: rgba(79, 70, 229, 0.25);
  top: -20%;
  left: -10%;
}
.hero-glow-2 {
  width: 600px;
  height: 600px;
  background: rgba(0, 240, 255, 0.15);
  bottom: 0%;
  right: -10%;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--secondary);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 240, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
  }
}

.hero-title {
  margin-bottom: 24px;
}
.hero-subtitle {
  margin-bottom: 40px;
  max-width: 580px;
}
.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  height: 550px;
  perspective: 1000px;
}
.visual-3d-element {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: float 8s ease-in-out infinite;
}
.glass-card {
  position: absolute;
  background: rgba(20, 25, 38, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}
.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-10px) translateZ(100px) !important;
}
.floating-card-1 {
  top: 15%;
  left: 0;
  width: 240px;
  transform: translateZ(50px);
  animation: float-delayed 7s ease-in-out infinite;
}
.floating-card-2 {
  bottom: 15%;
  right: 5%;
  width: 260px;
  transform: translateZ(90px);
  animation: float 6s ease-in-out infinite;
}
.card-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.card-data {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}
.card-label {
  color: var(--text-muted);
  font-size: 1rem;
}

.abstract-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(50px);
  opacity: 0.6;
  animation: morph 10s ease-in-out infinite alternate;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
@keyframes float-delayed {
  0% {
    transform: translateY(0px) translateZ(50px);
  }
  50% {
    transform: translateY(20px) translateZ(50px);
  }
  100% {
    transform: translateY(0px) translateZ(50px);
  }
}
@keyframes morph {
  0% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
}

/* --- MARQUEE --- */
.marquee-section {
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(10, 13, 20, 0.5);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-left 35s linear infinite;
}
.marquee-item {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
  margin: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  transition: 0.4s;
}
.marquee-item i {
  color: var(--primary);
  font-size: 1.2rem;
  -webkit-text-stroke: 0;
  transition: 0.4s;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-item:hover {
  color: #fff;
  -webkit-text-stroke: 0;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
.marquee-item:hover i {
  transform: rotate(180deg);
  color: var(--secondary);
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- INTRO TEXT REVEAL --- */
.intro-section {
  background: var(--bg-dark);
}
.intro-text {
  font-size: clamp(2rem, 4vw, 3.8rem);
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1.3;
}
.intro-text span {
  transition: color 0.4s var(--ease-out-expo);
}
.intro-text span.revealed {
  color: #fff;
}

/* --- SERVICES (BENTO GRID) --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.bento-item {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-color);
  border-radius: 32px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s,
    border-color 0.4s,
    box-shadow 0.4s;
  min-height: 350px; /* Gives a perfect shape without being too tall */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Keeps text nicely at the top */
}
.bento-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Interlocking Layout */
.bento-large {
  grid-column: span 2; /* Top Left: Wide */
}
.bento-wide {
  grid-column: span 2; /* Bottom Right: Wide */
  padding: 0;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  /* Laptop / Tablet layout */
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-large {
    grid-column: span 2;
  }
  .bento-wide {
    grid-column: span 2;
  }
  .bento-content-row {
    flex-direction: column;
  }
  .bento-visual-side {
    border-left: none;
    border-top: 1px solid var(--border-color);
    min-height: 200px;
  }
  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .dash-grid {
    grid-template-columns: 1fr 1fr;
  }
  .wide-widget {
    grid-column: span 2;
  }
  .calc-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* Mobile layout */
  .desktop-only,
  .desktop-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    display: none;
  }
  .section-padding {
    padding: 80px 0;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-large,
  .bento-wide {
    grid-column: span 1;
  }
  .timeline-container {
    padding-left: 30px;
  }
  .timeline-line {
    left: 14px;
  }
  .timeline-dot {
    left: -30px;
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  .dash-grid {
    grid-template-columns: 1fr;
  }
  .wide-widget {
    grid-column: span 1;
  }
  .calc-results {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .premium-form .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-desc {
    margin: 0 auto 30px;
  }
  .social-links {
    justify-content: center;
  }
  .contact-info-list li {
    justify-content: center;
  }
  .bottom-flex {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  /* Disable custom cursor on mobile */
  .cursor-dot,
  .cursor-outline {
    display: none;
  }
  body.dark-theme,
  a,
  button,
  input,
  select,
  textarea {
    cursor: auto;
  }
}

.bento-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.bg-seo {
  background: radial-gradient(
    circle at top right,
    rgba(79, 70, 229, 0.2),
    transparent 60%
  );
}
.bg-ppc {
  background: radial-gradient(
    circle at bottom right,
    rgba(0, 240, 255, 0.2),
    transparent 60%
  );
}
.bg-social {
  background: radial-gradient(
    circle at top left,
    rgba(236, 72, 153, 0.2),
    transparent 60%
  );
}
.bg-content {
  background: linear-gradient(90deg, rgba(79, 70, 229, 0.1), transparent);
}
.bento-item:hover .bento-bg {
  opacity: 1;
}

.bento-content {
  position: relative;
  z-index: 1;
}
.bento-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 24px;
  transition: 0.4s;
}
.bento-item:hover .bento-icon {
  background: var(--gradient-1);
  border-color: transparent;
  box-shadow: 0 10px 20px var(--primary-glow);
  transform: scale(1.1);
}
.bento-content h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.bento-large h3 {
  font-size: 2.8rem;
}
.bento-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
}
.bento-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--secondary);
  opacity: 0;
  transform: translateY(15px);
  transition: 0.4s var(--ease-out-expo);
}
.bento-item:hover .bento-link {
  opacity: 1;
  transform: translateY(0);
}

.bento-content-row {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.bento-text-side {
  padding: 40px;
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bento-visual-side {
  flex: 1;
  min-width: 300px;
  background: rgba(0, 0, 0, 0.3);
  border-left: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  height: 120px;
}
.mini-chart .bar {
  width: 30px;
  background: var(--primary);
  border-radius: 6px 6px 0 0;
  position: relative;
}
.mini-chart .bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 6px 6px 0 0;
}
.mini-chart .bar-1 {
  height: 30%;
  transition: height 1s;
}
.mini-chart .bar-2 {
  height: 50%;
  transition: height 1s 0.1s;
  background: var(--secondary);
}
.mini-chart .bar-3 {
  height: 70%;
  transition: height 1s 0.2s;
  background: var(--primary);
}
.mini-chart .bar-4 {
  height: 100%;
  transition: height 1s 0.3s;
  background: var(--accent);
}
.bento-item:hover .bar {
  height: 100%;
}

/* --- PROCESS TIMELINE --- */
.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 80px auto 0;
  padding-left: 50px;
}
.timeline-line {
  position: absolute;
  left: 24px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--primary),
    var(--secondary),
    transparent
  );
  opacity: 0.3;
}
.timeline-item {
  position: relative;
  padding-bottom: 70px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: -50px;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: 0.4s;
  z-index: 2;
}
.timeline-item:hover .timeline-dot {
  border-color: var(--secondary);
  color: var(--secondary);
  box-shadow: 0 0 20px var(--secondary-glow);
  transform: scale(1.1);
}
.timeline-content {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 30px;
  transition: 0.3s;
}
.timeline-item:hover .timeline-content {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
}
.timeline-content h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.timeline-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* --- INDUSTRY TABS --- */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.industry-tabs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
.tab-btn {
  padding: 24px 32px;
  text-align: left;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  color: var(--text-muted);
  font-size: 1.3rem;
  font-weight: 600;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}
.tab-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-1);
  transform: scaleY(0);
  transition: 0.4s;
  transform-origin: bottom;
}
.tab-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
}
.tab-btn.active {
  background: var(--bg-surface-elevated);
  color: #fff;
  border-color: transparent;
}
.tab-btn.active::before {
  transform: scaleY(1);
}

.tab-content-wrapper {
  position: relative;
  min-height: 450px;
}
.tab-pane {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s var(--ease-out-expo);
  transform: translateX(40px);
}
.tab-pane.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: translateX(0);
}
.tab-card {
  background: var(--bg-surface-elevated);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 50px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.tab-icon {
  width: 80px;
  height: 80px;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 30px;
}
.tab-card h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.tab-card p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.tab-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: #eee;
  font-size: 1.1rem;
}
.tab-features i {
  color: var(--secondary);
  font-size: 1.2rem;
}

/* --- REPORTS DASHBOARD MOCKUP --- */
.dashboard-mockup {
  max-width: 1000px;
  margin: 60px auto 0;
  background: #0c1017;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
}
.dash-header {
  background: #111620;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}
.dash-dots {
  display: flex;
  gap: 8px;
  margin-right: 20px;
}
.dash-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #444;
}
.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 {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-family: monospace;
}
.dash-body {
  padding: 40px;
  background: radial-gradient(
    circle at top,
    rgba(79, 70, 229, 0.05),
    transparent 50%
  );
}
.dash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dash-widget {
  background: rgba(20, 25, 38, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
}
.dash-widget h4 {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 500;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-trend {
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 100px;
}
.stat-trend.positive {
  background: rgba(39, 201, 63, 0.1);
  color: #27c93f;
}
.stat-trend.negative {
  background: rgba(255, 95, 86, 0.1);
  color: #ff5f56;
}

.wide-widget {
  grid-column: span 3;
}
.mock-chart-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 200px;
  padding-top: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mock-bar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 15%;
  height: 100%;
  justify-content: flex-end;
}
.mock-bar {
  width: 100%;
  border-radius: 6px 6px 0 0;
  position: relative;
  overflow: hidden;
}
.mock-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
}
.mock-bar-wrap span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* --- ROI CALCULATOR --- */
.glass-panel {
  background: var(--bg-surface-elevated);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 32px;
  padding: 60px;
}
.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.calc-icon-bg {
  position: absolute;
  bottom: -20px;
  left: -20px;
  font-size: 200px;
  color: rgba(255, 255, 255, 0.02);
  z-index: 0;
  pointer-events: none;
}
.calc-left h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.calc-left p {
  color: var(--text-muted);
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}
.calc-right {
  position: relative;
  z-index: 1;
}
.calc-group {
  margin-bottom: 30px;
}
.calc-group label {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 500;
}
.calc-group label span {
  color: var(--secondary);
  font-weight: 700;
}

/* Custom Range Input */
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
  cursor: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--primary);
  cursor: none;
  margin-top: -10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: 0.2s;
}
input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
input[type="range"]:focus::-webkit-slider-runnable-track {
  background: rgba(255, 255, 255, 0.2);
}

.calc-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.result-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}
.result-box.highlight {
  background: rgba(79, 70, 229, 0.1);
  border-color: rgba(79, 70, 229, 0.3);
}
.result-box h5 {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 500;
}
.result-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

/* --- TESTIMONIALS --- */
.testimonial-slider-wrap {
  max-width: 900px;
  margin: 60px auto 0;
  position: relative;
}
.testi-slider {
  position: relative;
  min-height: 350px;
}
.testi-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s var(--ease-out-expo);
  transform: scale(0.95);
  text-align: center;
}
.testi-card.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  position: relative;
}
.quote-icon {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}
.testi-text {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 40px;
}
.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}
.author-info {
  text-align: left;
}
.author-info h4 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.author-info span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}
.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border-color);
  color: #fff;
  font-size: 1.2rem;
  transition: 0.3s;
}
.slider-btn:hover {
  background: #fff;
  color: var(--bg-dark);
}
.slider-dots {
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}
.dot.active {
  background: var(--secondary);
  transform: scale(1.3);
}

/* --- FAQ ACCORDION --- */
.faq-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
}
.faq-item {
  border-bottom: 1px solid var(--border-color);
}
.faq-item:first-child {
  border-top: 1px solid var(--border-color);
}
.faq-question {
  padding: 30px 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}
.faq-question:hover {
  color: var(--secondary);
}
.faq-question i {
  transition: 0.4s var(--ease-out-expo);
  color: var(--text-muted);
}
.faq-item.active .faq-question i {
  transform: rotate(45deg);
  color: var(--secondary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo);
}
.faq-answer p {
  padding-bottom: 30px;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* --- CTA PRE-FOOTER --- */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
}
.cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.15), transparent 70%);
  z-index: -1;
}
.cta-sub {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-top: 20px;
}

/* --- CONTACT PAGE --- */
.contact-hero-section {
  border-bottom: 1px solid var(--border-color);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}
.info-item-premium {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.info-icon-glow {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--secondary);
  transition: 0.3s;
}
.info-item-premium:hover .info-icon-glow {
  background: var(--gradient-1);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.4);
}
.info-content h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #fff;
}
.info-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.premium-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.form-group {
  position: relative;
  margin-bottom: 24px;
}
.form-group.full-width {
  grid-column: span 2;
}
.form-input,
.form-select {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  color: #fff;
  font-size: 1rem;
  transition: 0.3s;
}
.form-input:focus,
.form-select:focus {
  border-color: var(--secondary);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}
.form-label {
  position: absolute;
  left: 20px;
  top: 20px;
  color: var(--text-muted);
  pointer-events: none;
  transition: 0.3s;
  font-size: 1rem;
}
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label,
.active-label {
  top: -10px;
  left: 15px;
  font-size: 0.85rem;
  background: var(--bg-surface-elevated);
  padding: 0 5px;
  color: var(--secondary);
  border-radius: 4px;
}
textarea.form-input {
  resize: vertical;
  min-height: 150px;
}
.form-select {
  appearance: none;
  cursor: none;
}

/* --- LEGAL PAGES --- */
.legal-hero {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
}
.prose {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.prose h2 {
  color: #fff;
  font-size: 2rem;
  margin: 40px 0 20px;
}
.prose p {
  margin-bottom: 20px;
}
.prose ul {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style-type: disc;
}
.prose li {
  margin-bottom: 10px;
}
.prose strong {
  color: #fff;
}

/* --- LIVE CHAT WIDGET --- */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
}
.chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 20px var(--primary-glow);
  transition: 0.3s;
}
.chat-toggle:hover {
  transform: scale(1.1);
}
.chat-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.4s var(--ease-out-expo);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
}
.chat-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.chat-header {
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  padding: 5px;
}
.chat-header-info h5 {
  font-size: 1rem;
  color: #fff;
}
.chat-header-info span {
  font-size: 0.8rem;
  color: var(--secondary);
}
.close-chat {
  background: transparent;
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: 0.3s;
}
.close-chat:hover {
  color: #fff;
  transform: rotate(90deg);
}
.chat-body {
  height: 250px;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.chat-msg {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.95rem;
  max-width: 85%;
}
.bot-msg {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-input-area {
  padding: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  gap: 10px;
  background: rgba(0, 0, 0, 0.2);
}
.chat-input-area input {
  flex: 1;
  background: transparent;
  color: #fff;
  font-size: 0.95rem;
}
.chat-input-area button {
  color: var(--primary);
  background: transparent;
  font-size: 1.2rem;
  transition: 0.3s;
}
.chat-input-area button:hover {
  color: var(--secondary);
  transform: translateX(3px);
}

/* --- FOOTER --- */
.footer {
  background: #030406;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}
.footer-desc {
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 350px;
}
.social-links {
  display: flex;
  gap: 15px;
}
.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}
.social-link:hover {
  background: var(--gradient-1);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--primary-glow);
}
.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: #fff;
}
.links-col ul li {
  margin-bottom: 12px;
  color: var(--text-muted);
}
.links-col ul li a {
  transition: 0.3s;
}
.links-col ul li a:hover {
  color: #fff;
}
.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(--secondary);
  margin-top: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
}
.bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.legal-links a {
  transition: 0.3s;
}
.legal-links a:hover {
  color: #fff;
}
.separator {
  margin: 0 10px;
  opacity: 0.3;
}

/* --- ANIMATION CLASSES (JS TRIGGERS) --- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s var(--ease-out-expo),
    transform 0.8s var(--ease-out-expo);
}
.fade-right {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.8s var(--ease-out-expo),
    transform 0.8s var(--ease-out-expo);
}
.fade-left {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.8s var(--ease-out-expo),
    transform 0.8s var(--ease-out-expo);
}
.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}
.in-view {
  opacity: 1;
  transform: translate(0);
}

.stagger-1 {
  transition-delay: 0.1s;
}
.stagger-2 {
  transition-delay: 0.2s;
}
.stagger-3 {
  transition-delay: 0.3s;
}
.stagger-4 {
  transition-delay: 0.4s;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-wide {
    grid-column: span 2;
  }
  .bento-content-row {
    flex-direction: column;
  }
  .bento-visual-side {
    border-left: none;
    border-top: 1px solid var(--border-color);
    min-height: 200px;
  }
  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .dash-grid {
    grid-template-columns: 1fr 1fr;
  }
  .wide-widget {
    grid-column: span 2;
  }
  .calc-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .desktop-only,
  .desktop-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    display: none;
  }
  .section-padding {
    padding: 80px 0;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-large,
  .bento-wide {
    grid-column: span 1;
  }
  .timeline-container {
    padding-left: 30px;
  }
  .timeline-line {
    left: 14px;
  }
  .timeline-dot {
    left: -30px;
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  .dash-grid {
    grid-template-columns: 1fr;
  }
  .wide-widget {
    grid-column: span 1;
  }
  .calc-results {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .premium-form .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-desc {
    margin: 0 auto 30px;
  }
  .social-links {
    justify-content: center;
  }
  .contact-info-list li {
    justify-content: center;
  }
  .bottom-flex {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  /* Disable custom cursor on mobile */
  .cursor-dot,
  .cursor-outline {
    display: none;
  }
  body.dark-theme,
  a,
  button,
  input,
  select,
  textarea {
    cursor: auto;
  }
}
