/* ==========================================================================
   CSS VARIABLES & RESET
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700;800&display=swap");

:root {
  /* Color Palette */
  --bg-dark: #030305;
  --bg-surface: #0f0f13;
  --bg-surface-light: #1a1a24;
  --bg-glass: rgba(15, 15, 19, 0.7);
  --bg-glass-light: rgba(255, 255, 255, 0.03);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;

  --primary: #4f46e5;
  --primary-glow: rgba(79, 70, 229, 0.5);
  --secondary: #ec4899;
  --accent: #06b6d4;
  --accent-glow: rgba(6, 182, 212, 0.5);

  --border-light: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(79, 70, 229, 0.5);

  /* Typography */
  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Spacing */
  --section-padding: 100px;
  --container-width: 1280px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --shadow-neon: 0 0 20px var(--primary-glow);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background Noise Texture */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  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");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  background: linear-gradient(to right, var(--text-main), var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
      BUTTONS
      ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: var(--transition-medium);
  z-index: -1;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: inset 0 0 10px var(--accent-glow);
}

/* ==========================================================================
      HEADER / NAVBAR (Strictly Consistent)
      ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background: rgba(3, 3, 5, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: var(--transition-medium);
}

.site-header.scrolled {
  padding: 15px 0;
  background: rgba(3, 3, 5, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  filter: invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-main);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: var(--transition-medium);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
      HERO SECTION
      ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

/* Abstract Glowing Orbs */
.hero-orb-1,
.hero-orb-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  animation: floatOrb 20s infinite alternate ease-in-out;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-glow);
  top: -10%;
  left: -10%;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-glow);
  bottom: -10%;
  right: -5%;
  animation-delay: -10s;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  background: var(--bg-glass-light);
  border: 1px solid var(--border-light);
  font-size: 0.875rem;
  color: var(--accent);
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.text-gradient {
  background: linear-gradient(to right, #fff, var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shine 5s linear infinite;
}

.hero p {
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-btns {
  display: flex;
  gap: 20px;
}

/* ==========================================================================
      STATS MARQUEE
      ========================================================================== */
.stats-marquee {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 30px 0;
  overflow: hidden;
  display: flex;
}

.marquee-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--text-main);
}

.stat-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
      SERVICES GRID (3D Hover Cards)
      ========================================================================== */
.services {
  padding: var(--section-padding) 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 40px 30px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.06),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--border-focus);
  box-shadow: var(--shadow-glass);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--bg-surface-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 25px;
  border: 1px solid var(--border-light);
  transition: var(--transition-medium);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
  transform: rotateY(180deg);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.service-link {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.service-link i {
  transition: transform 0.3s;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* ==========================================================================
      PROCESS TIMELINE
      ========================================================================== */
.process {
  padding: var(--section-padding) 0;
  background: linear-gradient(to bottom, var(--bg-dark), var(--bg-surface));
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--border-light);
}

.process-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  width: 100%;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-content {
  width: 45%;
  background: var(--bg-surface-light);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  position: relative;
}

.step-content::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent);
}

.process-step:nth-child(odd) .step-content::before {
  right: -20px;
}

.process-step:nth-child(even) .step-content::before {
  left: -20px;
}

.step-number {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--bg-dark);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
  z-index: 2;
  box-shadow: 0 0 15px var(--accent-glow);
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
      INTERACTIVE ROI CALCULATOR
      ========================================================================== */
.calculator-section {
  padding: var(--section-padding) 0;
}

.calc-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  box-shadow: var(--shadow-glass);
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input-group label {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
}

.range-val {
  color: var(--accent);
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  margin-top: -8px;
  box-shadow: 0 0 10px var(--primary-glow);
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: var(--border-light);
  border-radius: 2px;
}

.calc-results {
  background: var(--bg-surface-light);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  border: 1px solid var(--border-light);
}

.result-item {
  text-align: center;
}

.result-item h4 {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 5px;
  font-family: var(--font-body);
  font-weight: 400;
}

.result-item .val {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
}

.result-item.highlight .val {
  background: linear-gradient(to right, var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
      SAMPLE CAMPAIGN REPORTS (Interactive Dashboard UI)
      ========================================================================== */
.reports {
  padding: var(--section-padding) 0;
  background: var(--bg-surface);
}

.dashboard-ui {
  background: var(--bg-dark);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.dash-header {
  background: var(--bg-surface-light);
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  gap: 15px;
}

.dash-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dash-dot.r {
  background: #ff5f56;
}
.dash-dot.y {
  background: #ffbd2e;
}
.dash-dot.g {
  background: #27c93f;
}

.dash-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-light);
}

.dash-tab {
  padding: 15px 30px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-fast);
  border-bottom: 2px solid transparent;
}

.dash-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  background: rgba(6, 182, 212, 0.05);
}

.dash-content {
  padding: 40px;
  display: none;
}
.dash-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.chart-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
}

.kpi-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kpi-card {
  background: var(--bg-surface-light);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

.kpi-title {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.kpi-val {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  font-weight: 700;
}
.kpi-trend {
  font-size: 0.85rem;
  color: #27c93f;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
}

.bar-chart-container {
  background: var(--bg-surface-light);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: flex-end;
  gap: 15px;
  height: 300px;
}

.bar {
  flex: 1;
  background: linear-gradient(to top, var(--primary), var(--accent));
  border-radius: 6px 6px 0 0;
  position: relative;
  transition: height 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.bar::after {
  content: attr(data-val);
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
      INDUSTRIES SECTION
      ========================================================================== */
.industries {
  padding: var(--section-padding) 0;
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ind-card {
  position: relative;
  height: 250px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.ind-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.4);
  transition: var(--transition-medium);
}

.ind-card:nth-child(1) .ind-bg {
  background-image: url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80");
}
.ind-card:nth-child(2) .ind-bg {
  background-image: url("https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80");
}
.ind-card:nth-child(3) .ind-bg {
  background-image: url("https://images.unsplash.com/photo-1560179707-f14e90ef3623?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80");
}
.ind-card:nth-child(4) .ind-bg {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80");
}

.ind-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  transform: translateY(20px);
  transition: var(--transition-medium);
}

.ind-content h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
}
.ind-content p {
  color: var(--accent);
  font-size: 0.9rem;
  opacity: 0;
  transition: var(--transition-medium);
}

.ind-card:hover .ind-bg {
  filter: grayscale(0%) brightness(0.7);
  transform: scale(1.1);
}
.ind-card:hover .ind-content {
  transform: translateY(0);
}
.ind-card:hover .ind-content p {
  opacity: 1;
}

/* ==========================================================================
      TESTIMONIALS
      ========================================================================== */
.testimonials {
  padding: var(--section-padding) 0;
  background: var(--bg-surface);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testi-card {
  background: var(--bg-dark);
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.05);
}

.stars {
  color: #ffbd2e;
  margin-bottom: 20px;
}
.testi-text {
  font-size: 1.05rem;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 30px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.client-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--border-light);
}
.client-details h4 {
  font-size: 1rem;
}
.client-details p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
      CONTACT FORM / CTA SECTION
      ========================================================================== */
.contact-cta {
  padding: var(--section-padding) 0;
  position: relative;
}

.contact-wrapper {
  background: linear-gradient(
    135deg,
    var(--bg-surface),
    var(--bg-surface-light)
  );
  border-radius: 24px;
  padding: 60px;
  border: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.contact-info p {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.info-list i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
}

.form-group {
  margin-bottom: 25px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.form-control {
  width: 100%;
  padding: 15px;
  background: var(--bg-dark);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--text-main);
  font-family: var(--font-body);
  transition: var(--transition-fast);
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ==========================================================================
      FOOTER (Strictly Consistent)
      ========================================================================== */
.site-footer {
  background: var(--bg-surface);
  padding: 80px 0 30px;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .logo img {
  height: 60px;
  filter: invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
  margin-bottom: 20px;
}
.footer-brand p {
  color: var(--text-muted);
  margin-bottom: 25px;
  max-width: 300px;
}
.social-links {
  display: flex;
  gap: 15px;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  transition: var(--transition-fast);
}
.social-links a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: var(--text-main);
}
.footer-links li {
  margin-bottom: 15px;
}
.footer-links a {
  color: var(--text-muted);
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--text-muted);
}
.footer-contact i {
  color: var(--accent);
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
      LEGAL PAGES & INNER PAGES STYLING
      ========================================================================== */
.page-header {
  padding: 180px 0 80px;
  text-align: center;
  background: linear-gradient(
    to bottom,
    var(--bg-surface-light),
    var(--bg-dark)
  );
  border-bottom: 1px solid var(--border-light);
}

.page-title {
  font-size: 3.5rem;
  margin-bottom: 15px;
}
.breadcrumb {
  color: var(--text-muted);
}
.breadcrumb a {
  color: var(--accent);
}

.legal-content-section {
  padding: var(--section-padding) 0;
}

.legal-box {
  background: var(--bg-surface);
  padding: 60px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  max-width: 900px;
  margin: 0 auto;
}

.legal-box h2 {
  margin: 40px 0 20px;
  font-size: 1.8rem;
  color: var(--text-main);
}
.legal-box h2:first-child {
  margin-top: 0;
}
.legal-box p {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.legal-box ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  color: var(--text-muted);
}
.legal-box li {
  margin-bottom: 10px;
}

/* Contact Page Specific */
.contact-page-wrap {
  padding: var(--section-padding) 0;
}

/* ==========================================================================
      FLOATING LIVE CHAT WIDGET (UI)
      ========================================================================== */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 20px var(--primary-glow);
  transition: var(--transition-fast);
  border: none;
}
.chat-toggle:hover {
  transform: scale(1.1);
}

/* ==========================================================================
      CUSTOM CURSOR
      ========================================================================== */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
}
.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(6, 182, 212, 0.5);
  transition:
    width 0.2s,
    height 0.2s,
    background 0.2s;
}
body:hover .cursor-outline {
  opacity: 1;
}

/* ==========================================================================
      ANIMATIONS
      ========================================================================== */
@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(50px, 50px) scale(1.1);
  }
}

@keyframes shine {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s all ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
      MEDIA QUERIES
      ========================================================================== */
@media (max-width: 1024px) {
  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
  }
  .nav-menu.active {
    left: 0;
  }
  .mobile-toggle {
    display: block;
  }
  .header-right .btn {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
  .calc-container,
  .contact-wrapper,
  .chart-grid {
    grid-template-columns: 1fr;
  }
  .process-step,
  .process-step:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }
  .step-content {
    width: 100%;
    margin-top: 30px;
  }
  .step-content::before {
    display: none;
  }
  .process-timeline::before {
    left: 50%;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }
  .ind-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
  .footer-contact li {
    justify-content: center;
  }
}
