/* ==========================================================================
   AWWARDS-STYLE PREMIUM DIGITAL MARKETING THEME & ANIMATIONS
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Syne:wght@700;800&display=swap");

:root {
  --bg-dark: #06060c;
  --bg-card: rgba(18, 18, 29, 0.7);
  --bg-card-hover: rgba(28, 28, 45, 0.9);
  --primary: #00f2fe;
  --primary-glow: rgba(0, 242, 254, 0.15);
  --secondary: #7f00ff;
  --secondary-glow: rgba(127, 0, 255, 0.2);
  --accent: #d300c5;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(0, 242, 254, 0.4);
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: "Syne", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
}

/* Base Reset & Core Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Global Container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  position: relative;
  padding: 8rem 0;
}

/* Typography & Visual Accents */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

p {
  color: var(--text-muted);
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--text-main) 30%,
    var(--primary) 70%,
    var(--secondary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.section-desc {
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 4rem;
}

/* Dynamic Ambient Glow Spheres */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}
.glow-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: 10%;
  left: -10%;
}
.glow-orb-2 {
  width: 500px;
  height: 500px;
  background: var(--secondary);
  bottom: 10%;
  right: -10%;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}
.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.preloader-logo {
  margin-bottom: 2rem;
  animation: pulseLogo 2s infinite ease-in-out;
}
.preloader-logo img {
  height: 60px;
  filter: invert(1);
}
.preloader-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: var(--primary);
  text-transform: uppercase;
}
.preloader-bar {
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.preloader-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  animation: loaderBar 1.5s infinite ease-in-out;
}

@keyframes loaderBar {
  0% {
    left: -40%;
  }
  100% {
    left: 100%;
  }
}
@keyframes pulseLogo {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px transparent);
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px var(--primary-glow));
  }
}

/* Glassmorphic Header Styling */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(6, 6, 12, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}
.header.scrolled {
  padding: 0.5rem 0;
  background: rgba(6, 6, 12, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}
.nav-logo img {
  height: 50px;
  width: auto;
  filter: invert(1);
  object-fit: contain;
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-main);
  letter-spacing: -0.03em;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.5rem 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: var(--transition-smooth);
}
.nav-link:hover,
.nav-link.active {
  color: var(--text-main);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #000;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.25);
  color: var(--bg-dark);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 242, 254, 0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-color);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* Hamburger Mobile Icon */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1010;
}
.hamburger .bar {
  width: 25px;
  height: 2px;
  background-color: var(--text-main);
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
}
.hero-wrapper {
  display: grid;
  grid-template-columns: 1.1sfr 0.9sfr;
  gap: 4rem;
  align-items: center;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 2rem;
}
.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 550px;
}
.hero-btns {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2.5rem;
}
.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.stat-item p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual-sphere {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    var(--secondary-glow) 0%,
    transparent 70%
  );
  animation: rotateSphere 20s infinite linear;
}
.hero-visual-grid {
  width: 100%;
  max-width: 500px;
  height: 400px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  padding: 2rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
  transition: var(--transition-smooth);
}
.hero-visual-grid:hover {
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  border-color: var(--primary);
}

@keyframes rotateSphere {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Trust Ticker Grid */
.trust-marquee {
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 3rem 0;
  overflow: hidden;
}
.ticker-wrap {
  display: flex;
  overflow: hidden;
  width: 100%;
}
.ticker-content {
  display: flex;
  gap: 6rem;
  white-space: nowrap;
  animation: marquee 25s infinite linear;
}
.ticker-item {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: default;
  transition: var(--transition-smooth);
}
.ticker-item:hover {
  color: var(--primary);
  text-shadow: 0 0 10px var(--primary-glow);
}
.ticker-item i {
  font-size: 1.2rem;
  color: var(--secondary);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Services Matrix */
.services-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 100% 100%,
    var(--primary-glow) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: var(--transition-smooth);
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.service-card:hover::after {
  opacity: 1;
}
.service-icon {
  width: 65px;
  height: 65px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: #000;
  box-shadow: 0 0 20px var(--primary-glow);
}
.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.service-card p {
  font-size: 1rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.service-link i {
  transition: var(--transition-smooth);
}
.service-card:hover .service-link i {
  transform: translateX(5px);
  color: var(--primary);
}

/* ROI Calculator Widgets */
.roi-calculator {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.calc-inputs {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 32px;
  padding: 3.5rem;
}
.calc-group {
  margin-bottom: 2.5rem;
}
.calc-group label {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--text-main);
}
.calc-group label span {
  color: var(--primary);
  font-weight: 700;
}
.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 10px var(--primary-glow);
  transition: var(--transition-smooth);
}
.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
.calc-select {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-main);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}
.calc-outputs {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 2rem;
}
.output-header {
  text-align: left;
}
.output-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.output-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
}
.output-card.highlight {
  background: linear-gradient(
    135deg,
    rgba(0, 242, 254, 0.05) 0%,
    rgba(127, 0, 255, 0.05) 100%
  );
  border-color: var(--primary);
}
.output-card h4 {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  margin-bottom: 1rem;
}
.output-card .calc-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
}
.output-card.highlight .calc-value {
  color: var(--primary);
}

/* Sample Campaign Analytics Report (Live Dashboard Widget) */
.live-dashboard-section {
  background: rgba(255, 255, 255, 0.01);
}
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.2sfr 0.8sfr;
  gap: 4rem;
  align-items: center;
}
.dashboard-frame {
  background: #0d0d17;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}
.dash-title-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #10b981;
  animation: flash 1.5s infinite ease-in-out;
}
.dash-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}
.dash-controls {
  display: flex;
  gap: 0.8rem;
}
.dash-btn {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.dash-btn.active,
.dash-btn:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}
.dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.dash-stat-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
}
.dash-stat-box span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.dash-stat-box h4 {
  font-size: 1.8rem;
  margin-top: 0.5rem;
  color: var(--text-main);
}
.dash-visualizer {
  height: 250px;
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  padding-top: 1rem;
}
.bar-chart-container {
  flex-grow: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}
.bar-track {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.bar-fill {
  width: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 8px 8px 0 0;
  transition: height 1s cubic-bezier(0.16, 1, 0.3, 1);
  height: 0;
  position: relative;
}
.bar-fill::after {
  content: attr(data-value);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: var(--text-main);
  font-weight: 600;
}
.bar-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
}

@keyframes flash {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* Our Process Timeline */
.process-timeline {
  position: relative;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.process-step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem 2rem;
  transition: var(--transition-smooth);
}
.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}
.process-step:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}
.process-step:hover::before {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
}
.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-main);
  z-index: 2;
  pointer-events: none;
}
.process-step:hover .step-number {
  color: #000;
}
.step-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.process-step h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.process-step p {
  font-size: 0.95rem;
}

/* Testimonials Arena */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
}
.testimonial-card::after {
  content: "\201C";
  position: absolute;
  top: 2rem;
  right: 3rem;
  font-family: var(--font-heading);
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
}
.rating {
  display: flex;
  gap: 0.3rem;
  color: #fbbf24;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 2rem;
}
.author-profile {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
}
.author-details h4 {
  font-size: 1.1rem;
  color: var(--text-main);
}
.author-details span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Page Headers (Sub-pages) */
.page-header {
  padding: 12rem 0 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
}
.page-header p {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto;
}

/* Contact Page Specifics */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.contact-info-block h2 {
  font-size: 2.2rem;
}
.info-channels {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.info-channel-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.channel-icon {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
}
.channel-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.channel-details p,
.channel-details a {
  color: var(--text-muted);
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}
.channel-details a:hover {
  color: var(--primary);
}
.contact-form-block {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 32px;
  padding: 4rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 2rem;
}
.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.1rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-main);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: var(--transition-smooth);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.04);
}

/* Success Popup */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
}
.popup.show {
  display: flex;
}
.popup-content {
  background: #0d0d17;
  border: 1px solid var(--primary);
  border-radius: 32px;
  padding: 4rem;
  text-align: center;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 242, 254, 0.1);
}
.popup-icon {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 2rem;
}
.popup h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.popup p {
  margin-bottom: 2.5rem;
}

/* Legal & Documents Content Styles */
.legal-content {
  padding-bottom: 8rem;
}
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 32px;
  padding: 5rem;
}
.content-wrapper p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.content-wrapper h2 {
  font-size: 2rem;
  margin: 3.5rem 0 1.5rem 0;
  color: var(--text-main);
}
.content-wrapper ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2.5rem;
}
.content-wrapper ul li {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}
.content-wrapper ul li::before {
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* Help & FAQ Matrix */
.help-matrix {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.accordion-trigger {
  width: 100%;
  padding: 1.8rem 2.5rem;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-icon {
  font-size: 1rem;
  color: var(--primary);
  transition: var(--transition-smooth);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.accordion-content p {
  padding: 0 2.5rem 2rem 2.5rem;
  font-size: 1rem;
  line-height: 1.7;
}
.accordion-item.active {
  border-color: var(--primary);
}
.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

/* Immersive Chatbot Panel */
.chatbot-trigger {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.35);
  z-index: 999;
  transition: var(--transition-smooth);
}
.chatbot-trigger:hover {
  transform: scale(1.1) translateY(-3px);
}
.chat-drawer {
  position: fixed;
  bottom: 7.5rem;
  right: 2rem;
  width: 380px;
  height: 520px;
  background: #0d0d17;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}
.chat-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.chat-header {
  background: linear-gradient(135deg, var(--secondary), var(--bg-dark));
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}
.chat-branding {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.chat-branding-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
}
.chat-branding h4 {
  font-size: 1rem;
  font-weight: 700;
}
.chat-close {
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}
.chat-close:hover {
  color: var(--text-main);
}
.chat-messages {
  flex-grow: 1;
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.message {
  max-width: 85%;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.message-bot {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  align-self: flex-start;
}
.message-user {
  background: var(--primary);
  color: #000;
  align-self: flex-end;
}
.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-top: 1px solid var(--border-color);
}
.chat-chip {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition-smooth);
}
.chat-chip:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}
.chat-input-area {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 0.8rem;
}
.chat-input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  padding: 0.8rem 1.2rem;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.85rem;
  outline: none;
}
.chat-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}
.chat-send:hover {
  transform: scale(1.05);
}

/* Footer Grid Layout */
.footer {
  background: #030306;
  border-top: 1px solid var(--border-color);
  padding: 8rem 0 3rem 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, 0.8fr) 1.2fr;
  gap: 4rem;
  margin-bottom: 6rem;
}
.footer-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-logo img {
  height: 50px;
  width: auto;
  filter: invert(1);
}
.footer-about p {
  font-size: 0.95rem;
  line-height: 1.7;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}
.footer-social a:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
  transform: translateY(-3px);
}
.footer-links h3,
.footer-contact h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  color: var(--text-main);
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}
.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-contact li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.footer-contact li i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 0.2rem;
}
.footer-contact a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}
.footer-contact a:hover {
  color: var(--primary);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  border-top: 1px solid var(--border-color);
}
.footer-bottom p {
  font-size: 0.9rem;
}
.footer-legal {
  display: flex;
  gap: 2rem;
}
.footer-legal a {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}
.footer-legal a:hover {
  color: var(--primary);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  transition: var(--transition-smooth);
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

/* Responsive Grid and Menu Rules */
@media (max-width: 1200px) {
  .container {
    padding: 0 4rem;
  }
  .hero-wrapper,
  .calc-grid,
  .dashboard-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  .hero-visual-grid {
    transform: none !important;
    max-width: 600px;
  }
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #090911;
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    transition: var(--transition-smooth);
  }
  .nav-menu.active {
    right: 0;
  }
  .header-actions .btn {
    display: none;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .content-wrapper,
  .contact-form-block {
    padding: 3rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 2rem;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .chat-drawer {
    width: calc(100vw - 4rem);
  }
}

/* Entrance Animations System */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}
