@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap");

:root {
  --bg-base: #030305;
  --bg-surface: #0a0a0f;
  --bg-elevated: #12121a;
  --text-primary: #ffffff;
  --text-secondary: #8a8a9e;
  --accent-1: #ff0055;
  --accent-2: #00f0ff;
  --accent-3: #7000ff;
  --gradient-primary: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  --gradient-glow: linear-gradient(
    90deg,
    var(--accent-1),
    var(--accent-2),
    var(--accent-3),
    var(--accent-1)
  );
  --font-head: "Space Grotesk", sans-serif;
  --font-body: "Outfit", sans-serif;
  --transition-fast: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  --container-width: 1400px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --border-subtle: 1px solid rgba(255, 255, 255, 0.05);
}

/* ================= Reset & Global ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none; /* Custom cursor */
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  cursor: none;
  border: none;
  background: none;
}

/* ================= Visual Effects ================= */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
  animation: floatGlow 10s ease-in-out infinite alternate;
}
.glow-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: var(--accent-1);
}
.glow-2 {
  bottom: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: var(--accent-3);
  animation-delay: -5s;
}

@keyframes floatGlow {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(5%, 5%) scale(1.1);
  }
}

/* ================= Custom Cursor ================= */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 10000;
  pointer-events: none;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-2);
}
.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(0, 240, 255, 0.1);
  border-color: var(--accent-2);
}

/* ================= Typography & Utilities ================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 5%;
}

.section-padding {
  padding: 120px 0;
}
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Reveal Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 1s cubic-bezier(0.2, 1, 0.3, 1),
    transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}
.reveal-up.is-inview {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}

/* Buttons */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: transparent;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 100px;
  overflow: hidden;
  z-index: 1;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  z-index: -2;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: var(--bg-surface);
  border-radius: 100px;
  z-index: -1;
  transition: var(--transition-fast);
}
.btn-primary:hover::after {
  opacity: 0;
}
.btn-primary span,
.btn-primary svg {
  transition: transform 0.3s ease;
}
.btn-primary:hover span {
  transform: translateX(-5px);
}
.btn-primary:hover svg {
  transform: translateX(5px);
}

/* ================= Header ================= */
.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.8);
  backdrop-filter: blur(12px);
  border-bottom: var(--border-subtle);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-link img {
  height: 40px;
  filter: brightness(0) invert(1); /* Ensure white logo */
}
.nav-list {
  display: flex;
  gap: 40px;
}
.nav-link {
  font-family: var(--font-head);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-2);
  transition: var(--transition-fast);
}
.nav-link:hover::after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  z-index: 1001;
}
.mobile-toggle .bar {
  width: 100%;
  height: 2px;
  background: #fff;
  transition: 0.3s ease;
}

/* ================= Mobile Nav ================= */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-base);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: circle(0% at top right);
  transition: clip-path 0.7s cubic-bezier(0.7, 0, 0.2, 1);
}
.mobile-nav.active {
  clip-path: circle(150% at top right);
}
.mobile-nav ul {
  text-align: center;
}
.mobile-nav li {
  margin: 30px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
}
.mobile-nav.active li {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav.active li:nth-child(1) {
  transition-delay: 0.3s;
}
.mobile-nav.active li:nth-child(2) {
  transition-delay: 0.4s;
}
.mobile-nav.active li:nth-child(3) {
  transition-delay: 0.5s;
}
.mobile-nav.active li:nth-child(4) {
  transition-delay: 0.6s;
}
.mobile-nav a.nav-link {
  font-size: 2rem;
  font-family: var(--font-head);
}

/* ================= Hero Section ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-size: clamp(3rem, 6vw, 6rem);
  margin-bottom: 24px;
  letter-spacing: -2px;
}
.hero-desc {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
}
.hero-visuals {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 50%;
  height: 100%;
  pointer-events: none;
  perspective: 1000px;
}
.cube-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-style: preserve-3d;
  animation: spinCube 20s linear infinite;
}
.cube-face {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 240, 255, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 40px rgba(0, 240, 255, 0.1);
}
.face-front {
  transform: translateZ(100px);
}
.face-back {
  transform: rotateY(180deg) translateZ(100px);
}
.face-right {
  transform: rotateY(90deg) translateZ(100px);
}
.face-left {
  transform: rotateY(-90deg) translateZ(100px);
}
.face-top {
  transform: rotateX(90deg) translateZ(100px);
}
.face-bottom {
  transform: rotateX(-90deg) translateZ(100px);
}

@keyframes spinCube {
  0% {
    transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateX(360deg) rotateY(360deg);
  }
}

/* ================= Marquee ================= */
.marquee-section {
  padding: 40px 0;
  background: var(--bg-surface);
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
  overflow: hidden;
  position: relative;
}
.marquee-content {
  display: flex;
  width: max-content;
  animation: scrollMarquee 30s linear infinite;
}
.marquee-item {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  margin: 0 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.marquee-item::after {
  content: "✦";
  color: var(--accent-1);
  -webkit-text-stroke: 0;
  font-size: 1.5rem;
}
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ================= Services Section ================= */
.section-header {
  margin-bottom: 60px;
  text-align: center;
}
.section-subtitle {
  color: var(--accent-2);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.service-card {
  background: var(--bg-surface);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease;
  transform-style: preserve-3d; /* For JS tilt */
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(255, 0, 85, 0.1),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 0, 85, 0.3);
}
.service-card:hover::before {
  opacity: 1;
}
.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-2);
}
.service-icon svg {
  width: 30px;
  height: 30px;
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.service-card p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.service-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-2);
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.service-link:hover {
  gap: 16px;
}

/* ================= Interactive Reports (Dashboard Mockup) ================= */
.reports-section {
  background: var(--bg-surface);
}
.dashboard-wrapper {
  background: var(--bg-elevated);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.dash-content h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.dash-content p {
  color: var(--text-secondary);
  margin-bottom: 30px;
}
.dash-visual {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}
.chart-bar-group {
  margin-bottom: 20px;
}
.chart-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-family: var(--font-head);
  font-size: 0.9rem;
}
.chart-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}
.chart-fill {
  height: 100%;
  border-radius: 10px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.2, 1, 0.3, 1);
}
.fill-1 {
  background: var(--gradient-primary);
}
.fill-2 {
  background: var(--accent-3);
}
.fill-3 {
  background: #00ff88;
}
/* JS adds .animate to dash-visual when in view */
.dash-visual.animate .chart-fill[data-target="92"] {
  width: 92%;
}
.dash-visual.animate .chart-fill[data-target="78"] {
  width: 78%;
}
.dash-visual.animate .chart-fill[data-target="150"] {
  width: 100%;
  background: linear-gradient(90deg, #00ff88, var(--accent-2));
}

/* ================= ROI Calculator ================= */
.calc-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 60px;
  backdrop-filter: blur(20px);
}
.slider-container {
  margin-bottom: 40px;
}
.slider-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-head);
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-2);
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
  transition: transform 0.2s;
}
.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
.calc-results {
  display: flex;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}
.result-box {
  flex: 1;
  text-align: center;
}
.result-title {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.result-value {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-1);
  text-shadow: 0 0 20px rgba(255, 0, 85, 0.3);
}

/* ================= Industries (Accordion/Tabs style) ================= */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.industry-item {
  position: relative;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: none;
  background: #111;
}
.industry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: var(--transition-slow);
}
.industry-item:hover img {
  opacity: 0.8;
  transform: scale(1.05);
}
.ind-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}
.ind-content h3 {
  font-size: 1.5rem;
  transform: translateY(20px);
  transition: var(--transition-fast);
}
.industry-item:hover h3 {
  transform: translateY(0);
  color: var(--accent-2);
}

/* ================= Testimonials ================= */
.testimonials {
  background: var(--bg-surface);
  overflow: hidden;
}
.testi-grid {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollTesti 40s linear infinite alternate;
}
.testi-card {
  width: 400px;
  background: var(--bg-elevated);
  border: var(--border-subtle);
  padding: 40px;
  border-radius: var(--radius-md);
}
.quote-icon {
  font-size: 3rem;
  color: var(--accent-1);
  opacity: 0.2;
  margin-bottom: 20px;
  font-family: serif;
  line-height: 1;
}
.testi-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #333;
}
.author-info h4 {
  font-size: 1rem;
}
.author-info p {
  font-size: 0.85rem;
  color: var(--accent-2);
}

@keyframes scrollTesti {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% + 100vw));
  }
}

/* ================= CTA Section ================= */
.cta-section {
  position: relative;
  text-align: center;
  padding: 150px 0;
}
.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
}
.cta-title {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 30px;
}

/* ================= Footer ================= */
.footer {
  background: #020203;
  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 {
  max-width: 150px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
.footer-desc {
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 300px;
}
.social-links {
  display: flex;
  gap: 15px;
}
.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.social-link:hover {
  background: var(--accent-1);
  border-color: var(--accent-1);
  transform: translateY(-5px);
}
.footer-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: #fff;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: var(--text-secondary);
}
.footer-links a:hover {
  color: var(--accent-2);
  padding-left: 5px;
}
.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}
.contact-item svg {
  color: var(--accent-1);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.footer-bottom {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ================= Subpages & Legal Pages ================= */
.page-header {
  padding: 180px 0 80px;
  background: var(--bg-surface);
  text-align: center;
  border-bottom: var(--border-subtle);
  position: relative;
  overflow: hidden;
}
.page-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.breadcrumbs {
  color: var(--text-secondary);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}
.breadcrumbs span {
  color: var(--accent-2);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 0;
}
.legal-content h2 {
  font-size: 2rem;
  color: #fff;
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.legal-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.legal-content ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.legal-content li {
  margin-bottom: 10px;
}

/* ================= Contact Page ================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 0;
}
.contact-info-card {
  background: var(--bg-surface);
  padding: 40px;
  border-radius: var(--radius-md);
  border: var(--border-subtle);
  margin-bottom: 30px;
}
.contact-info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--accent-2);
}
.contact-info-card p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}
.contact-form {
  background: var(--bg-elevated);
  padding: 50px;
  border-radius: var(--radius-md);
  border: var(--border-subtle);
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.form-control {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
  outline: none;
}
.form-control:focus {
  border-color: var(--accent-2);
  background: rgba(255, 255, 255, 0.05);
}
textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* ================= Live Chat Widget ================= */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}
.chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 0, 85, 0.4);
  cursor: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.chat-toggle:hover {
  transform: scale(1.1);
}
.chat-toggle svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* ================= Responsive ================= */
@media (max-width: 1024px) {
  .dashboard-wrapper,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-visuals {
    opacity: 0.2;
    width: 100%;
    right: 0;
  }
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-list,
  .header-cta {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .industry-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-padding {
    padding: 80px 0;
  }
  .calc-wrapper,
  .contact-form {
    padding: 30px;
  }
}
