/* ==========================================================================
   PREMIUM AWWARDS-LEVEL STYLE SHEET
   SYSTEM THEME: Deep Cyber Obsidian, Neon Violet, and Electric Teal Glows
   ========================================================================== */

/* --- ROOT SYSTEM PROPERTIES --- */
:root {
  --bg-darkest: #040508;
  --bg-darker: #080a10;
  --bg-dark: #0f121d;
  --bg-card: rgba(16, 20, 35, 0.65);
  --bg-card-hover: rgba(22, 28, 50, 0.85);
  --bg-input: #121626;

  --primary: #8a3ffc;
  --primary-hover: #9f62ff;
  --primary-glow: rgba(138, 63, 252, 0.4);

  --secondary: #00f0ff;
  --secondary-hover: #33f3ff;
  --secondary-glow: rgba(0, 240, 255, 0.35);

  --accent: #ff007a;
  --accent-glow: rgba(255, 0, 122, 0.3);

  --text-primary: #f5f6fa;
  --text-secondary: #a0aec0;
  --text-muted: #64748b;
  --border-light: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(138, 63, 252, 0.25);

  --ff-sans: "Montserrat", sans-serif;
  --ff-display: "Montserrat", sans-serif; /* Fallback accent standard */

  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --box-shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.5);
  --glass-effect: backdrop-filter: blur(12px) saturate(180%);
}

/* --- SYSTEM RESET --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  font-size: 16px;
  background-color: var(--bg-darkest);
  color: var(--text-primary);
  font-family: var(--ff-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* --- SCROLLBAR CUSTOMIZATION --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darkest);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-dark);
  border: 1px solid var(--border-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* --- CORE CONTAINERS & SHAPES --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  position: relative;
  overflow: hidden;
}

.section-padding {
  padding: 8rem 0;
}

/* --- BACKGROUND ABSTRACT NOISE & GLOWS --- */
.glow-field {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    var(--primary-glow) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.glow-field-alt {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    var(--secondary-glow) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.glow-top-right {
  top: -200px;
  right: -100px;
}
.glow-bottom-left {
  bottom: -200px;
  left: -100px;
}
.glow-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* --- TYPOGRAPHY & HEADINGS --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1.5rem;
}

p {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

/* --- REUSABLE SHAPED ELEMENTS --- */
.highlight-text {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--secondary);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.highlight-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 2px;
  background-color: var(--secondary);
}

.titan-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin-bottom: 2rem;
  border-radius: 2px;
}

.titan-divider.center {
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

/* --- BUTTON MATRIX --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 2;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #6312e0 100%);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--primary-glow);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-light);
}

.btn-secondary:hover {
  border-color: var(--secondary);
  box-shadow: 0 0 15px var(--secondary-glow);
  transform: translateY(-3px);
}

/* --- PREMIUM NAVIGATION BAR (STRICT HEADER) --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(4, 5, 8, 0.75);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: rgba(4, 5, 8, 0.92);
  padding: 0.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  transition: var(--transition-smooth);
}

.header.scrolled .nav-container {
  height: 70px;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
  transition: var(--transition-smooth);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.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::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

/* --- HERO CHAMBER --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-title-wrap {
  position: relative;
  z-index: 5;
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.gradient-title {
  background: linear-gradient(
    135deg,
    var(--text-primary) 30%,
    var(--primary) 70%,
    var(--secondary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-btn-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.hero-stats-panel {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
}

.hero-stat-item h3 {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.hero-stat-item p {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* --- DYNAMIC VISUAL ELEMENT (HERO RIGHT) --- */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-sphere {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(138, 63, 252, 0.1),
    rgba(0, 240, 255, 0.05)
  );
  border: 1px solid rgba(255, 255, 255, 0.05);
  animation: floatSphere 12s infinite alternate ease-in-out;
  z-index: 1;
}

.hero-dashboard-preview {
  position: relative;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--box-shadow-premium);
  backdrop-filter: blur(12px);
  z-index: 2;
  transform: perspective(1000px) rotateY(-10deg) rotateX(10deg);
  transition: var(--transition-smooth);
}

.hero-dashboard-preview:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.dash-dots {
  display: flex;
  gap: 6px;
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.dash-dot:nth-child(1) {
  background: #ff5f56;
}
.dash-dot:nth-child(2) {
  background: #ffbd2e;
}
.dash-dot:nth-child(3) {
  background: #27c93f;
}

.dash-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

/* --- CLIENT RECOGNITION TICKER --- */
.ticker-section {
  padding: 3rem 0;
  background: rgba(4, 5, 8, 0.8);
  border-y: 1px solid var(--border-light);
}

.ticker-wrap {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}

.ticker-track {
  display: flex;
  gap: 5rem;
  animation: tickerShift 30s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  transition: var(--transition-fast);
}

.ticker-item:hover {
  opacity: 1;
  color: var(--secondary);
}

/* --- SERVICES MATRIX --- */
.services-section {
  background: var(--bg-darker);
}

.section-header {
  max-width: 700px;
  margin-bottom: 5rem;
}

.services-grid {
  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-light);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    150px circle at var(--x, 0px) var(--y, 0px),
    rgba(138, 63, 252, 0.15),
    rgba(0, 0, 0, 0) 80%
  );
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(138, 63, 252, 0.15);
}

.service-icon-wrap {
  width: 70px;
  height: 70px;
  background: rgba(138, 63, 252, 0.1);
  border: 1px solid rgba(138, 63, 252, 0.2);
  border-radius: 12px;
  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-wrap {
  background: var(--primary);
  color: var(--text-primary);
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-features-list {
  list-style: none;
  margin-top: 1.5rem;
}

.service-features-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features-list i {
  color: var(--secondary);
}

/* --- THE METHODOLOGY GRID --- */
.process-section {
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
}

.process-card:hover {
  border-color: var(--secondary);
  transform: translateY(-5px);
}

.process-step-num {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-darkest);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--secondary);
  box-shadow: 0 0 15px var(--primary-glow);
}

.process-card h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* --- ANALYTICS DASHBOARD SECTION --- */
.dashboard-section {
  background: var(--bg-darker);
}

.dashboard-toggle-wrap {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.toggle-tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.toggle-tab-btn.active {
  background: var(--primary);
  color: var(--text-primary);
  border-color: var(--primary);
  box-shadow: 0 0 20px var(--primary-glow);
}

.dashboard-visualization-block {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--box-shadow-premium);
}

.vis-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.vis-stat-card {
  background: rgba(4, 5, 8, 0.4);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.vis-stat-card h5 {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.vis-stat-card .value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.vis-stat-card .metric-delta {
  font-size: 0.85rem;
  font-weight: 600;
  color: #27c93f;
  margin-left: 0.5rem;
}

.chart-visual-box {
  height: 350px;
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  padding-top: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.chart-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}

.chart-bar-fill {
  width: 100%;
  max-width: 60px;
  background: linear-gradient(180deg, var(--primary), rgba(138, 63, 252, 0.1));
  border-radius: 8px 8px 0 0;
  transition: height 1s cubic-bezier(0.16, 1, 0.3, 1);
  height: 0%;
  position: relative;
}

.chart-bar-wrap:nth-child(even) .chart-bar-fill {
  background: linear-gradient(180deg, var(--secondary), rgba(0, 240, 255, 0.1));
}

.chart-bar-tooltip {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-darkest);
  border: 1px solid var(--border-light);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
}

.chart-bar-label {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- THE CAMPAIGN ROI CALCULATOR --- */
.calculator-section {
  position: relative;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 4rem;
  box-shadow: var(--box-shadow-premium);
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.calc-group {
  position: relative;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.calc-label-row label {
  font-weight: 600;
  color: var(--text-primary);
}

.calc-label-row span {
  font-weight: 700;
  color: var(--secondary);
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  transition: var(--transition-fast);
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--text-primary);
  cursor: pointer;
  box-shadow: 0 0 10px var(--primary-glow);
  transition: var(--transition-fast);
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-selector-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.calc-selector-card {
  background: rgba(4, 5, 8, 0.5);
  border: 1px solid var(--border-light);
  padding: 1.2rem;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.calc-selector-card.active {
  border-color: var(--secondary);
  background: rgba(0, 240, 255, 0.05);
}

.calc-selector-card h5 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.calc-selector-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.calc-output-panel {
  background: linear-gradient(
    135deg,
    var(--bg-darkest) 0%,
    rgba(22, 28, 50, 0.6) 100%
  );
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.calc-output-panel::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(138, 63, 252, 0.1) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.output-stat-block {
  margin-bottom: 2.5rem;
  z-index: 2;
}

.output-stat-block span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.output-stat-block h3 {
  font-size: 3.2rem;
  color: var(--secondary);
  font-weight: 800;
  margin-top: 0.5rem;
}

/* --- INDUSTRY SPECIFIC SERVICES --- */
.industries-section {
  background: var(--bg-darker);
}

.industries-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.verticals-tabs-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vertical-tab-link {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.vertical-tab-link.active {
  border-color: var(--primary);
  background: rgba(138, 63, 252, 0.08);
}

.vertical-tab-link i {
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.vertical-tab-link.active i {
  color: var(--primary);
}

.vertical-tab-link h4 {
  font-size: 1.1rem;
}

.verticals-display-chamber {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 3.5rem;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vertical-pane {
  display: none;
}

.vertical-pane.active {
  display: block;
  animation: fadeIn 0.6s ease;
}

.vertical-pane h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.vertical-pane ul {
  list-style: none;
  margin-top: 1.5rem;
}

.vertical-pane ul li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.vertical-pane ul li i {
  color: var(--secondary);
}

/* --- THE SOCIAL PROOF CAROUSEL --- */
.testimonials-section {
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.testimonial-card .stars {
  color: #ffb800;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--secondary);
}

.testimonial-avatar span {
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-user-meta h4 {
  font-size: 1rem;
}

.testimonial-user-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- DYNAMIC CONVERSION ACTION ROOM --- */
.cta-section {
  background: var(--bg-darker);
}

.cta-box {
  background: linear-gradient(
    135deg,
    var(--bg-card) 0%,
    rgba(138, 63, 252, 0.1) 100%
  );
  border: 1px solid var(--border-light);
  border-radius: 30px;
  padding: 5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    var(--secondary-glow) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-box h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.cta-form-card {
  background: var(--bg-darkest);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2.5rem;
}

.cta-form-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-light);
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
}

/* --- FOOTER CHAMBER (STRICTLY CONSISTENT SITEWIDE) --- */
.footer {
  background: var(--bg-darkest);
  border-top: 1px solid var(--border-light);
  padding: 6rem 0 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 1.5rem;
  display: block;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-col-title {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.85rem;
}

.footer-links ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact ul {
  list-style: none;
}

.footer-contact ul li {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact ul li i {
  color: var(--primary);
  margin-top: 0.25rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary) !important;
  transition: var(--transition-smooth);
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- CONTACT PAGE WORKSPACE --- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 4rem;
  box-shadow: var(--box-shadow-premium);
  margin-top: 3rem;
}

.contact-info-block h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-methods {
  list-style: none;
  margin-top: 3rem;
}

.contact-methods li {
  margin-bottom: 2rem;
  display: flex;
  gap: 1.5rem;
}

.contact-methods li i {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(138, 63, 252, 0.1);
  border: 1px solid rgba(138, 63, 252, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-methods h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-methods span {
  color: var(--text-secondary);
  font-size: 0.95rem;
  white-space: pre-line;
}

/* --- LEGAL DOCUMENT WORKSPACE --- */
.legal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 4rem;
  box-shadow: var(--box-shadow-premium);
  margin-top: 2rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.legal-content p,
.legal-content ul {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.legal-content ul {
  padding-left: 1.5rem;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
}

/* --- GLOBAL INTERACTION REVEAL STYLES --- */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- CHAT SUPPORT OVERLAY --- */
.live-chat-bubble {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 10px 30px var(--primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 999;
  transition: var(--transition-smooth);
}

.live-chat-bubble:hover {
  transform: scale(1.1) rotate(5deg);
}

/* --- KEYFRAME ENGINE --- */
@keyframes floatSphere {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-20px) scale(1.05);
  }
}

@keyframes tickerShift {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- RESPONSIVE GRID CONFIGURATION --- */
@media (max-width: 1024px) {
  .hero-grid,
  .calculator-grid,
  .industries-layout,
  .contact-wrapper,
  .cta-box {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cta-box {
    padding: 3rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 5rem 0;
  }

  .mobile-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-darker);
    border-left: 1px solid var(--border-light);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    transition: var(--transition-smooth);
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .vis-stats-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-btn-group {
    flex-direction: column;
  }

  .calc-selector-row {
    grid-template-columns: 1fr;
  }
}
