/* ==========================================================================
   CSS VARIABLES & THEME SETUP
   ========================================================================== */
:root {
  --bg-main: #050507;
  --bg-secondary: #0f0f13;
  --bg-tertiary: #18181f;
  --text-primary: #ffffff;
  --text-secondary: #a0a0ab;
  --accent-primary: #00f2fe;
  --accent-secondary: #4facfe;
  --accent-glow: rgba(0, 242, 254, 0.3);
  --border-color: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(15, 15, 19, 0.6);
  --glass-border: rgba(255, 255, 255, 0.1);

  --font-heading: "Poppins", sans-serif;
  --font-body: "Open Sans", sans-serif;

  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  --container-width: 1320px;
  --header-height: 90px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none; /* Custom cursor */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 5%;
}

/* ==========================================================================
   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-primary);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent-primary);
  transition:
    width 0.2s,
    height 0.2s,
    background-color 0.2s;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 50px;
  cursor: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  outline: none;
  transition: var(--transition-slow);
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  color: #000 !important;
  box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--accent-secondary),
    var(--accent-primary)
  );
  z-index: -1;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent-primary);
  color: var(--accent-primary) !important;
}

.btn-outline:hover {
  background: rgba(0, 242, 254, 0.1);
}

/* ==========================================================================
   HEADER (STRICTLY IDENTICAL)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  transition: var(--transition-slow);
}

.header.scrolled {
  background: rgba(5, 5, 7, 0.9);
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 60px;
  filter: invert(1);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-secondary);
  min-width: 200px;
  padding: 1rem 0;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition-fast);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent-primary);
  padding-left: 2rem;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: none;
  z-index: 1001;
}

.hamburger {
  width: 30px;
  height: 2px;
  background: var(--text-primary);
  position: relative;
  transition: var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: var(--text-primary);
  left: 0;
  transition: var(--transition-fast);
}

.hamburger::before {
  top: -8px;
}
.hamburger::after {
  top: 8px;
}

/* ==========================================================================
   1. HERO SECTION (3D WebGL-like Pure CSS)
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: pulseGlow 8s infinite alternate;
}

@keyframes pulseGlow {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.8;
  }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, #888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

.hero-visual {
  perspective: 1000px;
}

.floating-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transform: rotateY(-15deg) rotateX(10deg);
  transition: transform 0.1s ease-out;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
}

.chart-mockup {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: flex-end;
  gap: 15px;
  margin-top: 2rem;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(
    to top,
    var(--accent-secondary),
    var(--accent-primary)
  );
  border-radius: 5px 5px 0 0;
  animation: growBar 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform-origin: bottom;
  opacity: 0;
}

@keyframes growBar {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* ==========================================================================
   2. MARQUEE SECTION
   ========================================================================== */
.marquee-section {
  padding: 3rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--text-secondary);
  margin: 0 3rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.marquee-item i {
  color: var(--accent-primary);
  -webkit-text-stroke: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   3. ABOUT / STATS SECTION
   ========================================================================== */
.about-stats {
  padding: 8rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  color: var(--accent-primary);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  line-height: 1.2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.stat-card {
  background: var(--bg-secondary);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    var(--accent-glow),
    transparent 60%
  );
  opacity: 0;
  transition: var(--transition-slow);
}

.stat-card:hover::before {
  opacity: 1;
}
.stat-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-primary);
}

.stat-number {
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--accent-primary);
  margin-bottom: 1rem;
}

/* ==========================================================================
   4. SERVICES SECTION (3D Hover Cards)
   ========================================================================== */
.services {
  padding: 8rem 0;
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  perspective: 1000px;
}

.service-card {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem 2rem;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s;
  transform-style: preserve-3d;
}

.service-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border-color: var(--accent-primary);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(0, 242, 254, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent-primary);
  margin-bottom: 2rem;
  transform: translateZ(30px);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transform: translateZ(20px);
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  transform: translateZ(10px);
}

/* ==========================================================================
   5. ROI CALCULATOR
   ========================================================================== */
.roi-calculator {
  padding: 8rem 0;
  position: relative;
}

.calculator-wrapper {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.range-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.range-header {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-weight: 600;
}

.range-val {
  color: var(--accent-primary);
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  background: var(--bg-main);
  height: 8px;
  border-radius: 5px;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--accent-primary);
  cursor: none;
  box-shadow: 0 0 15px var(--accent-glow);
}

.calc-results {
  background: var(--bg-main);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  text-align: center;
}

.result-item {
  margin-bottom: 2rem;
}
.result-item:last-child {
  margin-bottom: 0;
}
.result-label {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.result-value {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #fff;
}
.result-value.highlight {
  color: var(--accent-primary);
  text-shadow: 0 0 20px var(--accent-glow);
}

/* ==========================================================================
   6. CAMPAIGN REPORTS (Interactive Dashboard)
   ========================================================================== */
.campaign-reports {
  padding: 8rem 0;
  background: var(--bg-secondary);
}

.dashboard-mockup {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.dash-header {
  background: var(--bg-tertiary);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.dash-dots {
  display: flex;
  gap: 8px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot.r {
  background: #ff5f56;
}
.dot.y {
  background: #ffbd2e;
}
.dot.g {
  background: #27c93f;
}

.dash-body {
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.dash-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dash-metric {
  background: var(--bg-secondary);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}
.dash-metric h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--text-secondary);
}
.dash-metric .num {
  font-size: 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
}
.dash-metric .trend {
  color: #27c93f;
  font-size: 0.9rem;
  margin-left: 10px;
}

.dash-main-chart {
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  padding: 2rem;
  position: relative;
  height: 350px;
}

.svg-chart {
  width: 100%;
  height: 100%;
}
.chart-line {
  fill: none;
  stroke: var(--accent-primary);
  stroke-width: 4;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 3s ease forwards infinite alternate;
}
.chart-area {
  fill: url(#chartGradient);
  opacity: 0.5;
}
@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

/* ==========================================================================
   7. INDUSTRIES (Bento Grid)
   ========================================================================== */
.industries {
  padding: 8rem 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 1.5rem;
}

.bento-item {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition-slow);
}

.bento-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  z-index: 1;
}

.bento-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: var(--transition-slow);
  z-index: 0;
}

.bento-item:hover img {
  transform: scale(1.1);
  opacity: 0.6;
}
.bento-item:hover {
  border-color: var(--accent-primary);
}

.bento-content {
  position: relative;
  z-index: 2;
}

.bento-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.bento-item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.bento-item:nth-child(2) {
  grid-column: 3 / 5;
}
.bento-item:nth-child(3) {
  grid-column: 3 / 4;
}
.bento-item:nth-child(4) {
  grid-column: 4 / 5;
}

/* ==========================================================================
   8. TESTIMONIALS (Horizontal Scroll setup)
   ========================================================================== */
.testimonials {
  padding: 8rem 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  padding: 2rem 5%;
  width: max-content;
  animation: scrollTestimonial 40s linear infinite;
}

.test-card {
  width: 400px;
  background: var(--bg-main);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

.test-stars {
  color: #ffbd2e;
  margin-bottom: 1.5rem;
}
.test-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}
.test-client {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--border-color);
}
.client-info h4 {
  margin: 0;
  font-size: 1rem;
}
.client-info span {
  font-size: 0.85rem;
  color: var(--accent-primary);
}

@keyframes scrollTestimonial {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   9. CTA & LIVE CHAT MOCKUP
   ========================================================================== */
.cta-section {
  padding: 10rem 0;
  position: relative;
  text-align: center;
}

.cta-box {
  background: linear-gradient(
    135deg,
    rgba(0, 242, 254, 0.1),
    rgba(79, 172, 254, 0.1)
  );
  border: 1px solid var(--accent-primary);
  border-radius: 30px;
  padding: 6rem 3rem;
  position: relative;
  overflow: hidden;
}

.cta-box h2 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.chat-bubble {
  position: absolute;
  background: var(--bg-main);
  padding: 1rem 2rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: float 4s ease-in-out infinite;
}

.chat-bubble.left {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.chat-bubble.right {
  bottom: 20%;
  right: 10%;
  animation-delay: 2s;
  border-color: var(--accent-primary);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ==========================================================================
   10. FOOTER (STRICTLY IDENTICAL)
   ========================================================================== */
.footer {
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border-color);
  padding: 6rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo img {
  height: 60px;
  filter: invert(1);
  margin-bottom: 1.5rem;
}

.footer-about p {
  color: var(--text-secondary);
  max-width: 300px;
}

.footer-links h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-links ul li {
  margin-bottom: 1rem;
}

.footer-links ul li a {
  color: var(--text-secondary);
}

.footer-links ul li a:hover {
  color: var(--accent-primary);
  padding-left: 5px;
}

.footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: var(--text-secondary);
}

.footer-contact ul li i {
  color: var(--accent-primary);
  font-size: 1.2rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
}

/* ==========================================================================
   LEGAL & INNER PAGES
   ========================================================================== */
.page-header {
  padding: 12rem 0 6rem;
  background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-main));
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fff, var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.breadcrumbs {
  color: var(--text-secondary);
  font-family: var(--font-heading);
}
.breadcrumbs a {
  color: var(--accent-primary);
}

.legal-content {
  background: var(--bg-secondary);
  padding: 5rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  margin: 4rem auto 8rem;
  max-width: 1000px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.legal-content h2 {
  color: var(--accent-primary);
  margin: 3rem 0 1.5rem;
  font-size: 1.8rem;
}

.legal-content p,
.legal-content ul {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.legal-content ul {
  padding-left: 2rem;
  list-style: disc;
}
.legal-content ul li {
  margin-bottom: 0.8rem;
}
.legal-content strong {
  color: #fff;
}

/* Contact Page Specifics */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-top: 4rem;
}

.contact-info-card {
  background: var(--bg-secondary);
  padding: 4rem 3rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

.info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.info-item i {
  font-size: 1.8rem;
  color: var(--accent-primary);
  background: rgba(0, 242, 254, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.info-item h4 {
  margin-bottom: 0.3rem;
}
.info-item p {
  color: var(--text-secondary);
}

.contact-form {
  background: var(--bg-secondary);
  padding: 4rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 2rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-family: var(--font-heading);
  color: #fff;
}
.form-control {
  width: 100%;
  padding: 1.2rem;
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition-fast);
}
.form-control:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 15px var(--accent-glow);
}
textarea.form-control {
  resize: vertical;
}

/* ==========================================================================
   ANIMATIONS & REVEALS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    display: none;
  }
  .stats-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .calculator-wrapper {
    grid-template-columns: 1fr;
  }
  .dash-body {
    grid-template-columns: 1fr;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .bento-item:nth-child(1) {
    grid-column: 1 / 3;
  }
  .bento-item:nth-child(2),
  .bento-item:nth-child(3),
  .bento-item:nth-child(4) {
    grid-column: span 1;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-list {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--bg-secondary);
    flex-direction: column;
    justify-content: center;
    transition: var(--transition-fast);
  }
  .nav-list.active {
    left: 0;
  }
  .menu-toggle {
    display: block;
  }
  .header-actions {
    display: none;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .stats-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-item {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    height: 300px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .legal-content,
  .contact-form,
  .contact-info-card {
    padding: 2rem;
  }
  .chat-bubble {
    display: none;
  }
}
