@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;700;900&display=swap");

/* ==========================================================================
   CSS VARIABLES & GLOBAL RESET
   ========================================================================== */
:root {
  --bg-color: #030305;
  --bg-alt: #0a0a0f;
  --surface: rgba(20, 20, 30, 0.4);
  --surface-solid: #14141e;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.2);

  --text-primary: #ffffff;
  --text-secondary: #9494a0;
  --text-dark: #030305;

  --accent-1: #00f0ff;
  --accent-2: #bd00ff;
  --gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  --gradient-text: linear-gradient(to right, #fff, #888);

  --font-heading: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;

  --transition-fast: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);

  --container-width: 1400px;
  --section-pad: 120px 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none; /* Custom cursor used */
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.1;
  font-weight: 700;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   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-color: var(--accent-1);
}
.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition:
    width 0.2s,
    height 0.2s,
    background-color 0.2s;
}
.cursor-hover .cursor-outline {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: transparent;
  backdrop-filter: blur(2px);
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.subtitle {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: var(--accent-1);
  margin-bottom: 20px;
  display: block;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  border-radius: 100px;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
  border: none;
  z-index: 1;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--text-dark);
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-fast);
}
.btn-primary:hover {
  color: var(--text-primary);
}
.btn-primary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent-1);
  background: rgba(0, 240, 255, 0.05);
}

/* ==========================================================================
   ANIMATIONS & SCROLL REVEAL (Intersection Observer)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(0, 240, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
  }
}

/* ==========================================================================
   HEADER (Exact Match Required Across Pages)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
  z-index: 1000;
  transition: var(--transition-fast);
}
.header.scrolled {
  padding: 16px 0;
  background: rgba(3, 3, 5, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-container {
  display: flex;
  align-items: center;
}
.logo-container img {
  height: 60px;
  filter: invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}
.nav-links {
  display: flex;
  gap: 40px;
}
.nav-links li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: var(--transition-fast);
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--text-primary);
}
.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gradient);
  transition: width var(--transition-fast);
}
.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}
.hamburger span {
  width: 30px;
  height: 2px;
  background: var(--text-primary);
  transition: 0.3s;
}

/* ==========================================================================
   INDEX: HERO SECTION (3D/Creative)
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}
.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.shape-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-1);
  top: -10%;
  right: -5%;
  animation: float 8s infinite ease-in-out;
}
.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--accent-2);
  bottom: -20%;
  left: -10%;
  animation: float 12s infinite ease-in-out reverse;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  gap: 20px;
}
.hero-visual {
  position: relative;
  height: 600px;
  perspective: 1000px;
}
/* Fake 3D Dashboard Element */
.mockup-3d {
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 30, 0.6);
  border: 1px solid var(--border);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  transform: rotateY(-15deg) rotateX(10deg);
  transform-style: preserve-3d;
  box-shadow:
    -30px 30px 100px rgba(0, 0, 0, 0.8),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.5s ease;
}
.hero-visual:hover .mockup-3d {
  transform: rotateY(-5deg) rotateX(5deg);
}
.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}
.mock-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
}
.mock-metric {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-1);
}
.mock-chart {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.mock-bar {
  width: 100%;
  background: var(--surface-solid);
  border-radius: 4px 4px 0 0;
  position: relative;
  overflow: hidden;
}
.mock-bar-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--gradient);
  border-radius: 4px 4px 0 0;
}

/* ==========================================================================
   INDEX: MARQUEE
   ========================================================================== */
.marquee-section {
  padding: 40px 0;
  background: var(--accent-1);
  color: var(--text-dark);
  transform: rotate(-2deg) scale(1.05);
  margin: 60px 0;
  overflow: hidden;
}
.marquee-container {
  display: flex;
  white-space: nowrap;
}
.marquee-content {
  display: flex;
  animation: scroll-marquee 20s linear infinite;
}
.marquee-content h2 {
  font-size: 2rem;
  text-transform: uppercase;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.marquee-content h2 span {
  font-size: 1rem;
}
@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   INDEX: ABOUT/INTRO
   ========================================================================== */
.about-section {
  padding: var(--section-pad);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 30px;
}
.about-text p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.stat-box {
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}
.stat-number {
  font-size: 3.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 10px;
}
.stat-label {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

/* ==========================================================================
   INDEX: SERVICES (Bento Grid)
   ========================================================================== */
.services-section {
  padding: var(--section-pad);
  background: var(--bg-alt);
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}
.section-header h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 24px;
}
.bento-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bento-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
}
.bento-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(255, 255, 255, 0.05),
    transparent 70%
  );
  pointer-events: none;
}
/* Grid specific spans */
.bento-1 {
  grid-column: span 2;
}
.bento-4 {
  grid-column: span 2;
}

.bento-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-1);
  margin-bottom: 20px;
}
.bento-item h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.bento-item p {
  color: var(--text-secondary);
}

/* ==========================================================================
   INDEX: INTERACTIVE DASHBOARD/REPORTS
   ========================================================================== */
.reports-section {
  padding: var(--section-pad);
}
.dashboard-ui {
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}
.dash-sidebar h3 {
  margin-bottom: 20px;
}
.dash-sidebar ul li {
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
}
.dash-main {
  background: var(--bg-color);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--border);
}
.chart-wrapper {
  height: 300px;
  display: flex;
  align-items: flex-end;
  gap: 15px;
  margin-top: 30px;
}
.bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.bar-track {
  width: 100%;
  height: 250px;
  background: var(--surface);
  border-radius: 8px;
  position: relative;
}
.bar-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 8px;
  background: var(--gradient);
  transition: height 1.5s var(--ease-out-expo);
}

/* ==========================================================================
   INDEX: INDUSTRIES (Hover Reveal)
   ========================================================================== */
.industries-section {
  padding: var(--section-pad);
  background: var(--bg-alt);
}
.industry-list {
  border-top: 1px solid var(--border);
}
.industry-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.industry-item h3 {
  font-size: 3rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}
.industry-item:hover h3 {
  color: var(--text-primary);
  transform: translateX(20px);
}
.ind-tag {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
}

/* ==========================================================================
   INDEX: ROI CALCULATOR
   ========================================================================== */
.calculator-section {
  padding: var(--section-pad);
}
.calc-wrapper {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.calc-group label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-weight: 500;
}
.calc-group input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  background: var(--border);
  height: 6px;
  border-radius: 3px;
  outline: none;
}
.calc-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-1);
  box-shadow: 0 0 15px var(--accent-1);
  cursor: grab;
}
.calc-result {
  background: var(--gradient);
  border-radius: 20px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.calc-result h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}
.calc-result .total-val {
  font-size: 4.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
}

/* ==========================================================================
   INDEX: PROCESS TIMELINE
   ========================================================================== */
.process-section {
  padding: var(--section-pad);
  background: var(--bg-alt);
}
.process-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
}
.process-sticky {
  position: sticky;
  top: 150px;
  height: max-content;
}
.process-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  border-left: 2px solid var(--border);
  padding-left: 40px;
  margin-left: 20px;
}
.process-step {
  position: relative;
}
.process-step::before {
  content: "";
  position: absolute;
  left: -47px;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--bg-alt);
  border: 2px solid var(--accent-1);
  border-radius: 50%;
  transition: var(--transition-fast);
}
.process-step:hover::before {
  background: var(--accent-1);
  box-shadow: 0 0 10px var(--accent-1);
}
.process-step h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.process-step p {
  color: var(--text-secondary);
}

/* ==========================================================================
   INDEX: TESTIMONIALS
   ========================================================================== */
.testimonials-section {
  padding: var(--section-pad);
  overflow: hidden;
}
.testi-grid {
  display: flex;
  gap: 30px;
}
.testi-card {
  min-width: 400px;
  background: var(--surface);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.testi-rating {
  color: var(--accent-1);
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.testi-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 30px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--border);
}
.testi-name h4 {
  font-size: 1rem;
}
.testi-name span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   INDEX: CTA SECTION
   ========================================================================== */
.cta-section {
  padding: 150px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(189, 0, 255, 0.15) 0%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 30px;
}

/* ==========================================================================
   FOOTER (Exact Match Required Across Pages)
   ========================================================================== */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo img {
  height: 60px;
  filter: invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
  margin-bottom: 20px;
}
.footer-about p {
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 15px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.footer-social a:hover {
  background: var(--accent-1);
  color: var(--text-dark);
  border-color: var(--accent-1);
}
.footer-links h4 {
  margin-bottom: 24px;
  font-size: 1.2rem;
}
.footer-links ul li {
  margin-bottom: 12px;
}
.footer-links ul li a {
  color: var(--text-secondary);
  transition: var(--transition-fast);
}
.footer-links ul li a:hover {
  color: var(--accent-1);
  padding-left: 5px;
}
.footer-contact h4 {
  margin-bottom: 24px;
  font-size: 1.2rem;
  color: var(--accent-1);
}
.footer-contact ul li {
  margin-bottom: 15px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.footer-legal-links a {
  margin-left: 20px;
  transition: var(--transition-fast);
}
.footer-legal-links a:hover {
  color: var(--text-primary);
}

/* Live Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(189, 0, 255, 0.4);
  z-index: 999;
  animation: pulse-glow 2s infinite;
}
.chat-widget svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

/* ==========================================================================
   LEGAL PAGES (Privacy, Terms, Disclaimer)
   ========================================================================== */
.page-header {
  padding: 180px 0 80px;
  background: var(--bg-alt);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}
.page-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}
.legal-content {
  padding: 80px 0;
}
.legal-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.legal-wrapper h2 {
  font-size: 2rem;
  margin: 40px 0 20px;
  color: var(--accent-1);
}
.legal-wrapper p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.legal-wrapper ul {
  margin: 0 0 20px 20px;
  list-style: disc;
  color: var(--text-secondary);
}
.legal-wrapper li {
  margin-bottom: 10px;
}
.legal-wrapper strong {
  color: var(--text-primary);
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-section {
  padding: var(--section-pad);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}
.contact-info h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 40px;
}
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 16px;
  margin-bottom: 20px;
}
.info-card h4 {
  color: var(--accent-1);
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 50px;
  border-radius: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.input-group {
  margin-bottom: 24px;
  position: relative;
}
.input-group label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  background: var(--bg-color);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 16px;
  border-radius: 8px;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition-fast);
}
.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: var(--accent-1);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}
.input-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .bento-1,
  .bento-4 {
    grid-column: span 1;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content p {
    margin: 0 auto 40px;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-visual {
    height: 400px;
    margin-top: 40px;
  }
  .about-grid,
  .calc-wrapper,
  .process-container,
  .dashboard-ui,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-sticky {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    z-index: 1000;
  }
  .nav-links.active {
    right: 0;
  }
  .hamburger {
    display: flex;
    cursor: pointer;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }

  .cursor-dot,
  .cursor-outline {
    display: none;
  } /* Disable custom cursor on mobile */
  * {
    cursor: auto;
  }
}
