/* ==========================================================================
   DOMAINGROUP CORE DIGITAL THEME (Aesthetic Premium Cyber Framework)
   ========================================================================== */

:root {
  --bg-obsidian: #08080c;
  --bg-slate: #12121a;
  --bg-slate-rgb: 18, 18, 26;
  --primary-violet: #7c3aed;
  --primary-violet-rgb: 124, 58, 237;
  --secondary-cyan: #06b6d4;
  --secondary-cyan-rgb: 6, 182, 212;
  --accent-emerald: #10b981;
  --accent-emerald-rgb: 16, 185, 129;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --border-slate: rgba(148, 163, 184, 0.1);
  --border-violet: rgba(124, 58, 237, 0.25);

  --font-display:
    "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --font-body:
    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;

  --shadow-sm: 0 2px 8px -1px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 20px -2px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 30px -5px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px rgba(124, 58, 237, 0.15);
  --shadow-glow-cyan: 0 0 30px rgba(6, 182, 212, 0.15);

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================================================================
   RESET & SYSTEM BASICS
   ========================================================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-obsidian);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

/* Scroll Progress Tracker */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-violet),
    var(--secondary-cyan)
  );
  z-index: 10000;
  width: 0%;
  transition: width 0.1s linear;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-obsidian);
}
::-webkit-scrollbar-thumb {
  background: #1e1e2f;
  border-radius: 4px;
  border: 2px solid var(--bg-obsidian);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-violet);
}

/* Selection */
::selection {
  background: rgba(124, 58, 237, 0.3);
  color: var(--text-primary);
}

/* ==========================================================================
   LAYOUT CONTAINERS
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

/* ==========================================================================
   TYPOGRAPHY SYSTEM
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #a78bfa, #818cf8, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-cyan {
  background: linear-gradient(135deg, #38bdf8, #06b6d4, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Badge Pill */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid var(--border-violet);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: #c084fc;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--secondary-cyan);
  border-radius: 50%;
  position: relative;
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7);
  }
  70% {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 0 0 8px rgba(6, 182, 212, 0);
  }
  100% {
    transform: scale(0.9);
    opacity: 0.6;
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0);
  }
}

/* ==========================================================================
   DYNAMIC COMPONENT BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
}

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.05rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-violet), #6d28d9);
  color: var(--text-primary);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: 0.6s;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* ==========================================================================
   NAVIGATION HEADER SECTION
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 1.25rem 0;
  background: rgba(8, 8, 12, 0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-slate);
  transition: var(--transition-smooth);
}

.header.scrolled {
  padding: 0.875rem 0;
  background: rgba(8, 8, 12, 0.9);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.1));
}

.nav {
  display: block;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  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-violet),
    var(--secondary-cyan)
  );
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Burger Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  outline: none;
}

.bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

/* Burger States */
.mobile-toggle[aria-expanded="true"] .bar-top {
  transform: translateY(8px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .bar-middle {
  opacity: 0;
  transform: translateX(10px);
}

.mobile-toggle[aria-expanded="true"] .bar-bottom {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Slide Panel */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--bg-slate);
  border-left: 1px solid var(--border-slate);
  z-index: 1000;
  padding: 7rem 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text-secondary);
}

.mobile-nav-link:hover {
  color: var(--text-primary);
  padding-left: 8px;
}

.mobile-cta {
  margin-top: 2rem;
  width: 100%;
}

@media (max-width: 991px) {
  .nav {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .header-cta {
    display: none !important;
  }
}

/* ==========================================================================
   SECTION 1: HERO SPACE
   ========================================================================== */

.hero-section {
  position: relative;
  padding: 12rem 0 8rem;
  background: radial-gradient(
    circle at 50% 100%,
    rgba(124, 58, 237, 0.05),
    transparent 60%
  );
  overflow: hidden;
}

/* Abstract Blobs */
.radial-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.glow-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-violet);
  top: -50px;
  left: -100px;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: var(--secondary-cyan);
  bottom: -100px;
  right: -100px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-text-block {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.hero-ratings {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-top: 1px solid var(--border-slate);
  padding-top: 2rem;
}

.avatars-group {
  display: flex;
  align-items: center;
}

.avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg-obsidian);
  overflow: hidden;
  margin-left: -12px;
}

.avatar-img:first-child {
  margin-left: 0;
}

.stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.rating-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Hero Graphical Column */
.hero-visual-block {
  position: relative;
  z-index: 1;
}

.interactive-cyber-mesh {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Micro Cards floating */
.card-float {
  position: absolute;
  background: rgba(var(--bg-slate-rgb), 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-slate);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 5;
  animation: floatAnimation 6s ease-in-out infinite;
}

.shadow-glow {
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.metrics-card {
  top: 15%;
  left: -5%;
  animation-delay: 0s;
}

.leads-card {
  bottom: 15%;
  right: -5%;
  animation-delay: 3s;
  box-shadow: var(--shadow-lg), var(--shadow-glow-cyan);
}

@keyframes floatAnimation {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(1deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}

.icon-purple {
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid var(--primary-violet);
  color: #c084fc;
}

.icon-cyan {
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid var(--secondary-cyan);
  color: #22d3ee;
}

.card-metric-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.card-metric-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
}

/* Device Mockup */
.cyber-device-mockup {
  width: 90%;
  height: 360px;
  background: var(--bg-slate);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.mockup-top-bar {
  background: #0d0d12;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dots {
  display: flex;
  gap: 0.35rem;
}

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-red {
  background-color: #ef4444;
}
.dot-yellow {
  background-color: #f59e0b;
}
.dot-green {
  background-color: #10b981;
}

.url-bar {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  color: var(--text-secondary);
  font-family: monospace;
}

.mockup-body {
  flex-grow: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mockup-header-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.mock-stat-lbl {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.mock-stat-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
}

.color-green {
  color: var(--accent-emerald);
}

.mock-chart-svg {
  flex-grow: 1;
  min-height: 160px;
}

@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 6rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-ratings {
    justify-content: center;
  }
  .interactive-cyber-mesh {
    height: 400px;
  }
}

/* ==========================================================================
   SECTION 2: TRUST BAND
   ========================================================================== */

.trust-section {
  padding: 4rem 0;
  background: #06060a;
  border-top: 1px solid var(--border-slate);
  border-bottom: 1px solid var(--border-slate);
}

.trust-heading {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.partners-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.partners-carousel::before,
.partners-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partners-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #06060a, transparent);
}

.partners-carousel::after {
  right: 0;
  background: linear-gradient(-90deg, #06060a, transparent);
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: scrollTrack 30s linear infinite;
}

@keyframes scrollTrack {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partner-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: #475569;
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.partner-logo i {
  font-size: 1.5rem;
}

.partner-logo:hover {
  color: var(--text-primary);
  opacity: 1;
}

/* ==========================================================================
   SECTION 3: ABOUT PERFORMANCE CONCEPT
   ========================================================================== */

.about-creative-section {
  padding: 8rem 0;
  background: radial-gradient(
    circle at 10% 30%,
    rgba(124, 58, 237, 0.03),
    transparent 50%
  );
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-main-image {
  border-radius: 20px;
  border: 1px solid var(--border-slate);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.decorative-blob {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 2px dashed rgba(124, 58, 237, 0.2);
  z-index: 0;
}

.experience-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--bg-slate);
  border: 1px solid var(--border-slate);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
}

.exp-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  background: linear-gradient(
    135deg,
    var(--primary-violet),
    var(--secondary-cyan)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.exp-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.about-tagline {
  font-size: 1.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.section-desc {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

/* Dynamic Panel Tabs */
.dynamic-tabs {
  margin-top: 2rem;
}

.tab-triggers {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid var(--border-slate);
  margin-bottom: 1.5rem;
}

.tab-trigger {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 0.75rem 0;
  position: relative;
  transition: var(--transition-smooth);
}

.tab-trigger.active {
  color: var(--text-primary);
}

.tab-trigger::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-violet);
  transition: var(--transition-smooth);
}

.tab-trigger.active::after {
  width: 100%;
}

.tab-contents {
  min-height: 120px;
}

.tab-panel {
  display: none;
  animation: fadeInTab 0.5s ease forwards;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeInTab {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-panel p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  .about-visual {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   SECTION 4: CAPABILITIES & SERVICES
   ========================================================================== */

.services-section {
  padding: 8rem 0;
  background: #0a0a0f;
  position: relative;
}

.section-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 5rem;
}

.section-title-large {
  font-size: clamp(2.25rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.section-subtitle-center {
  color: var(--text-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--bg-slate);
  border: 1px solid var(--border-slate);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-bounce);
}

.shadow-glow-hover:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: rgba(124, 58, 237, 0.4);
}

.service-card-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-violet), transparent);
}

.service-card-decor-cyan {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-cyan), transparent);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid var(--primary-violet);
  color: #c084fc;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.service-icon.icon-cyan {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid var(--secondary-cyan);
  color: #22d3ee;
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-desc-card {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.service-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.service-bullets li i {
  color: var(--accent-emerald);
}

/* ==========================================================================
   SECTION 5: DYNAMIC BUDGET ROI CALCULATOR
   ========================================================================== */

.calculator-section {
  padding: 8rem 0;
  background: radial-gradient(
    circle at 90% 80%,
    rgba(6, 182, 212, 0.04),
    transparent 55%
  );
}

.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 5rem;
  align-items: center;
  background: rgba(18, 18, 26, 0.5);
  border: 1px solid var(--border-slate);
  border-radius: 24px;
  padding: 4.5rem;
  backdrop-filter: blur(20px);
}

.calc-desc {
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.calc-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  outline: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--secondary-cyan);
  cursor: pointer;
  border: 3px solid var(--bg-obsidian);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
}

.calc-radios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.calc-radio-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-slate);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: var(--font-display);
  transition: var(--transition-smooth);
}

.calc-radio-label input {
  display: none;
}

.calc-radio-label.active {
  border-color: var(--primary-violet);
  background: rgba(124, 58, 237, 0.05);
  color: var(--text-primary);
}

/* Calculator Results panel */
.calc-results {
  background: var(--bg-slate);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 16px;
  padding: 3.5rem;
}

.results-header {
  font-size: 1.35rem;
  border-bottom: 1px solid var(--border-slate);
  padding-bottom: 1.25rem;
  margin-bottom: 2rem;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.result-lbl {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.result-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.25rem;
}

.text-green {
  color: var(--accent-emerald);
}

.calc-disclaimer {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

@media (max-width: 991px) {
  .calc-wrapper {
    grid-template-columns: 1fr;
    padding: 2.5rem;
    gap: 4rem;
  }
}

/* ==========================================================================
   SECTION 6: LIVE CONVERSION REPORTING SHOWCASE
   ========================================================================== */

.live-report-section {
  padding: 8rem 0;
  background: #060609;
}

/* Cyber Dashboard Representation */
.report-dashboard {
  display: grid;
  grid-template-columns: 240px 1fr;
  background: var(--bg-slate);
  border: 1px solid var(--border-slate);
  border-radius: 20px;
  overflow: hidden;
  height: 520px;
  max-width: 1000px;
  margin: 0 auto;
}

.dashboard-sidebar {
  background: #0d0d14;
  padding: 2.5rem 1.5rem;
  border-right: 1px solid var(--border-slate);
}

.dashboard-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-menu li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.sidebar-menu li.active,
.sidebar-menu li:hover {
  color: var(--primary-violet);
}

.dashboard-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-slate);
  padding-bottom: 1.25rem;
}

.header-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.indicator-green {
  width: 8px;
  height: 8px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  animation: statusPulse 1.5s infinite;
}

@keyframes statusPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

.header-time {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.metric-block {
  display: flex;
  flex-direction: column;
}

.metric-title {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.metric-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.1;
}

.metric-sub {
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.trend-green {
  color: var(--accent-emerald);
}
.trend-neutral {
  color: var(--text-secondary);
}

.visualizations-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  flex-grow: 1;
}

.vis-panel {
  background: #0e0e14;
  border: 1px solid var(--border-slate);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.vis-title {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.chart-canvas-mock {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100px;
  padding-top: 1rem;
}

.bar-chart-column {
  width: 6%;
  height: var(--height);
  background: linear-gradient(
    180deg,
    var(--primary-violet),
    rgba(124, 58, 237, 0.1)
  );
  border-radius: 2px;
  animation: barGrow 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform-origin: bottom;
}

@keyframes barGrow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

.log-entries {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 100px;
  overflow: hidden;
}

.log-entry {
  font-size: 0.75rem;
  padding: 0.5rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  justify-content: space-between;
}

.font-cyan {
  color: var(--secondary-cyan);
}
.font-green {
  color: var(--accent-emerald);
}

@media (max-width: 768px) {
  .report-dashboard {
    grid-template-columns: 1fr;
    height: auto;
  }
  .dashboard-sidebar {
    display: none;
  }
  .metrics-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .visualizations-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SECTION 7: INDUSTRY TARGETS
   ========================================================================== */

.industries-section {
  padding: 8rem 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.industry-card {
  height: 420px;
  border-radius: 20px;
  border: 1px solid var(--border-slate);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 3rem 2.25rem;
}

.industry-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
  filter: brightness(0.4) saturate(0.8);
  z-index: 0;
}

.industry-card:hover .industry-bg {
  transform: scale(1.05);
}

.industry-content {
  position: relative;
  z-index: 1;
}

.industry-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.industry-desc {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.industry-stat {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--accent-emerald);
  color: var(--accent-emerald);
  border-radius: 99px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
}

@media (max-width: 991px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SECTION 8: TESTIMONIALS SYSTEM
   ========================================================================== */

.testimonials-section {
  padding: 8rem 0;
  background: #09090e;
}

.testimonials-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-slide {
  display: none;
  animation: slideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.testimonial-slide.active {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
}

.testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-violet);
}

.author-info {
  text-align: left;
}

.author-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.author-title {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Slider Controls */
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3.5rem;
}

.slider-btn {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-slate);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.slider-btn:hover {
  color: var(--text-primary);
  border-color: var(--primary-violet);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slide-dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slide-dot.active {
  background: var(--primary-violet);
  width: 24px;
  border-radius: 99px;
}

/* ==========================================================================
   SECTION 9: SIMULATED ASSISTANT CHAT
   ========================================================================== */

.live-consultation-section {
  padding: 8rem 0;
}

.consultation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.consultation-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.consultation-benefits li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
}

.consultation-benefits li i {
  color: var(--secondary-cyan);
}

/* Assistant Widget Body */
.consultation-chat-widget {
  background: var(--bg-slate);
  border: 1px solid var(--border-slate);
  border-radius: 16px;
  height: 450px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat-header {
  background: #0d0d14;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-slate);
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.status-desc {
  display: flex;
  flex-direction: column;
}

.agent-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

.agent-sub {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.font-purple {
  color: var(--primary-violet);
}

.chat-body {
  flex-grow: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow-y: auto;
}

.chat-bubble {
  max-width: 80%;
  padding: 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.4;
  animation: bubbleAppear 0.4s ease forwards;
}

@keyframes bubbleAppear {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bot-bubble {
  background: #0e0e14;
  align-self: flex-start;
  border-top-left-radius: 0;
}

.user-bubble {
  background: linear-gradient(135deg, var(--primary-violet), #6d28d9);
  align-self: flex-end;
  border-top-right-radius: 0;
}

.chat-controls {
  padding: 1.5rem 2rem;
  background: #0d0d14;
  border-top: 1px solid var(--border-slate);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chat-option-btn {
  width: 100%;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-slate);
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.chat-option-btn:hover {
  background: rgba(124, 58, 237, 0.08);
  border-color: var(--primary-violet);
}

@media (max-width: 991px) {
  .consultation-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}

/* ==========================================================================
   SECTION 10: BOTTOM CTA
   ========================================================================== */

.final-cta-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.glow-center {
  width: 600px;
  height: 600px;
  background: var(--primary-violet);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.08;
}

.cta-container {
  background: linear-gradient(
    135deg,
    rgba(18, 18, 26, 0.8),
    rgba(26, 26, 36, 0.8)
  );
  border: 1px solid var(--border-violet);
  border-radius: 24px;
  padding: 6rem;
  text-align: center;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(20px);
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.cta-buttons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .cta-container {
    padding: 3.5rem 2rem;
  }
  .cta-buttons-row {
    flex-direction: column;
    width: 100%;
  }
  .cta-buttons-row .btn {
    width: 100%;
  }
}

/* ==========================================================================
   SUBPAGES: LEGAL & CONTACT SPECIFIC
   ========================================================================== */

.page-header {
  padding: 11rem 0 6rem;
  background: radial-gradient(
    circle at 50% 100%,
    rgba(124, 58, 237, 0.03),
    transparent 50%
  );
  border-bottom: 1px solid var(--border-slate);
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-family: var(--font-display);
}

.breadcrumbs a:hover {
  color: var(--text-primary);
}

.page-header-subtitle {
  margin-top: 1.5rem;
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 740px;
}

/* Page Content Base styling (Legal articles) */
.page-content {
  padding: 6rem 0 8rem;
}

.content-wrapper {
  background: var(--bg-slate);
  border: 1px solid var(--border-slate);
  border-radius: 16px;
  padding: 4rem;
}

.content-wrapper p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.content-wrapper h2 {
  font-size: 1.75rem;
  margin: 3rem 0 1.25rem;
  color: var(--text-primary);
  border-left: 3px solid var(--primary-violet);
  padding-left: 1rem;
}

.content-wrapper ul {
  margin: 1.5rem 0 2rem;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.content-wrapper ul li {
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.content-wrapper ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--accent-emerald);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .content-wrapper {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   CONTACT PAGE SPECIFIC DETAILS
   ========================================================================== */

.contact-section {
  padding: 6rem 0 8rem;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
}

.contact-info-panel {
  background: var(--bg-slate);
  border: 1px solid var(--border-slate);
  border-radius: 16px;
  padding: 4rem;
}

.contact-info-panel h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-info-panel p {
  color: var(--text-secondary);
  margin-bottom: 3.5rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-method {
  display: flex;
  gap: 1.5rem;
}

.method-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid var(--border-violet);
  color: var(--primary-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.method-details h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.method-details p {
  margin-bottom: 0;
}

.method-details a:hover {
  color: var(--primary-violet);
}

/* Contact Form Side styling */
.contact-form-wrapper {
  background: rgba(18, 18, 26, 0.5);
  border: 1px solid var(--border-slate);
  border-radius: 16px;
  padding: 4rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-slate);
  border-radius: 8px;
  padding: 0.85rem 1.15rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-violet);
  background: rgba(124, 58, 237, 0.03);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.1);
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: var(--text-secondary);
  pointer-events: none;
}

.form-group select {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

@media (max-width: 991px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Form Submission Popup Dialog */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 8, 12, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.popup:target {
  opacity: 1;
  pointer-events: auto;
}

.popup-content {
  background: var(--bg-slate);
  border: 1px solid var(--border-violet);
  border-radius: 20px;
  padding: 4rem;
  max-width: 480px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.popup-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--text-secondary);
}

.popup-content i {
  font-size: 4rem;
  color: var(--accent-emerald);
  margin-bottom: 1.5rem;
}

.popup-content h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.popup-content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* ==========================================================================
   FOOTER STRUCTURE
   ========================================================================== */

.footer {
  position: relative;
  background: #040406;
  border-top: 1px solid var(--border-slate);
  padding: 8rem 0 3rem;
  overflow: hidden;
}

.footer-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.footer-shape {
  position: absolute;
  background: var(--primary-violet);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.05;
}

.shape-1 {
  top: -50px;
  left: -100px;
  width: 300px;
  height: 300px;
}

.shape-2 {
  bottom: -50px;
  right: -100px;
  width: 400px;
  height: 400px;
}

.footer-container {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 4rem;
  border-bottom: 1px solid var(--border-slate);
  padding-bottom: 5rem;
}

.footer-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.footer-about-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-slate);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.social-link:hover {
  color: var(--text-primary);
  border-color: var(--primary-violet);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.2);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links-list a {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.footer-links-list a:hover {
  color: var(--text-primary);
  padding-left: 4px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info li {
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.contact-info li i {
  color: var(--primary-violet);
  margin-top: 3px;
}

.contact-info li a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}
