/* Elite Dental Force - Enterprise SaaS Website Styles */
/* Design System based on Brand Specifications */

/* ============================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
  /* Primary Colors - High-tech Medical */
  --color-brand: #0a1628;
  --color-structural: #0d2847;
  --color-interactive: #00d4ff;
  --color-white: #ffffff;

  /* Secondary Colors */
  --color-hover: #00a8cc;
  --color-deep: #050d18;
  --color-alt-bg: rgba(0, 212, 255, 0.05);
  --color-highlight: #00ffc8;
  --color-accent: #7c3aed;

  /* Neutral Colors */
  --color-text: #e8f4f8;
  --color-text-light: #94a3b8;
  --color-text-muted: #64748b;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-bg-light: rgba(255, 255, 255, 0.02);

  /* Background */
  --color-bg-base: #0a1628;
  --color-bg-gradient: linear-gradient(180deg, #0a1628 0%, #0d1f35 50%, #0a1628 100%);

  /* Floating Elements */
  --color-card-bg: rgba(255, 255, 255, 0.03);
  --color-card-border: rgba(255, 255, 255, 0.08);
  --color-card-hover: rgba(255, 255, 255, 0.06);
  --shadow-float: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
  --shadow-float-hover: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 212, 255, 0.2);
  --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.15);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Font Weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows - Enhanced for dark theme */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;

  /* Container */
  --container-max: 1280px;
  --container-narrow: 960px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg-base);
  background-image: var(--color-bg-gradient);
  background-attachment: fixed;
  min-height: 100vh;
}

/* Subtle grid pattern overlay for tech feel */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-bold);
  line-height: 1.2;
  color: var(--color-white);
}

h1 {
  font-size: var(--text-5xl);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--text-4xl);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

p {
  margin-bottom: var(--space-4);
  color: var(--color-text-light);
}

.lead {
  font-size: var(--text-xl);
  line-height: 1.7;
  color: var(--color-text-light);
}

.text-small {
  font-size: var(--text-sm);
}

.text-muted {
  color: var(--color-text-muted);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-24) 0;
  position: relative;
  z-index: 1;
}

.section-sm {
  padding: var(--space-16) 0;
}

.section-lg {
  padding: var(--space-32) 0;
}

/* Floating section wrapper */
.floating-section {
  background: var(--color-card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-2xl);
  margin: var(--space-8) auto;
  max-width: calc(var(--container-max) + var(--space-8));
  box-shadow: var(--shadow-float);
  transition: all var(--transition-slow);
}

.floating-section:hover {
  box-shadow: var(--shadow-float-hover);
  border-color: rgba(0, 212, 255, 0.15);
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-8);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Flexbox Utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  line-height: 1.5;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-interactive) 0%, var(--color-hover) 100%);
  color: var(--color-brand);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-hover) 0%, var(--color-interactive) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--color-interactive);
  border: 1px solid var(--color-interactive);
}

.btn-secondary:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--color-interactive);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-brand);
  border: none;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-white:hover {
  background: var(--color-text);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

/* ============================================
   NAVIGATION HEADER
   ============================================ */
.header {
  position: fixed;
  top: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  z-index: 1000;
  background: rgba(10, 22, 40, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-float);
  background: rgba(10, 22, 40, 0.95);
  border-color: rgba(0, 212, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 120px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-text-light);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-interactive);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-interactive);
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: var(--space-4);
}

/* Dropdown Navigation */
.nav-list > li {
  position: relative;
}

.has-dropdown > .nav-link::after {
  display: none;
}

.has-dropdown > .nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.has-dropdown > .nav-link::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-interactive);
  transition: width var(--transition-base);
}

.has-dropdown:hover > .nav-link::before {
  width: 100%;
}

.has-dropdown > .nav-link span {
  display: inline-block;
  margin-left: var(--space-1);
  transition: transform var(--transition-fast);
}

.has-dropdown:hover > .nav-link span {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: rgba(13, 31, 53, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  padding: var(--space-2) 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast);
  transform: translateX(-50%) translateY(10px);
  z-index: 100;
  margin-top: var(--space-2);
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(13, 31, 53, 0.95);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown li {
  list-style: none;
}

.dropdown a {
  display: block;
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-light);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.dropdown a:hover {
  background-color: rgba(0, 212, 255, 0.1);
  color: var(--color-interactive);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  transition: all var(--transition-base);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  padding: calc(100px + var(--space-24)) 0 var(--space-24);
  background: transparent;
  color: var(--color-white);
  overflow: hidden;
  z-index: 1;
}

/* Glass Ripple Animation Container */
.hero-glass-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-glass-animation canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Glass overlay for depth */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(75, 168, 240, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(0, 212, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle glass texture overlay */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02) 0%,
    transparent 50%,
    rgba(255, 255, 255, 0.01) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  margin-bottom: var(--space-6);
  color: var(--color-interactive);
  backdrop-filter: blur(10px);
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  max-width: 700px;
  z-index: 1;
}

.hero-visual img {
  width: 100%;
}

/* Remove box styling from hero product visual */
.hero-visual .product-visual {
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

/* Hero with split layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero-split .hero-content {
  max-width: none;
}

.hero-split .hero-visual {
  position: relative;
  right: auto;
  top: auto;
  transform: none;
  width: 100%;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-16);
}

.section-header .overline {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-interactive);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  font-size: var(--text-lg);
  margin-bottom: 0;
}

/* ============================================
   TRUST BAR / LOGO STRIP
   ============================================ */
.trust-bar {
  padding: var(--space-12) 0;
  background: transparent;
  border-top: 1px solid var(--color-card-border);
  border-bottom: 1px solid var(--color-card-border);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.trust-bar-label {
  text-align: center;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-bar-scroll {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.trust-bar-scroll::before,
.trust-bar-scroll::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.trust-bar-scroll::before {
  left: 0;
  background: linear-gradient(to right, var(--color-deep) 0%, transparent 100%);
}

.trust-bar-scroll::after {
  right: 0;
  background: linear-gradient(to left, var(--color-deep) 0%, transparent 100%);
}

.trust-bar-logos {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  animation: scroll-left 25s linear infinite;
  width: max-content;
}

.trust-bar-logos:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.trust-bar-logos img {
  height: 56px;
  width: auto;
  opacity: 0.7;
  filter: brightness(0) invert(1);
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.trust-bar-logos img:hover {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(75, 168, 240, 0.5));
}

/* ============================================
   FEATURE GRID
   ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.feature-card {
  padding: var(--space-8);
  background: var(--color-card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-float);
}

.feature-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: var(--shadow-float-hover), var(--shadow-glow);
  transform: translateY(-8px);
  background: var(--color-card-hover);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 212, 255, 0.05) 100%);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-interactive);
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.5));
}

.feature-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  color: var(--color-white);
}

.feature-card p {
  margin-bottom: 0;
  color: var(--color-text-light);
}

/* Feature list inside cards */
.feature-list {
  margin: var(--space-6) 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  color: var(--color-text-light);
  font-size: var(--text-sm);
}

.feature-list li svg {
  color: var(--color-interactive);
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.5));
}

/* ============================================
   SPLIT COMPARISON
   ============================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-content h2 {
  margin-bottom: var(--space-4);
  color: var(--color-white);
}

.split-content h3 {
  color: var(--color-white);
}

.split-content p {
  margin-bottom: var(--space-6);
  color: var(--color-text-light);
}

.split-visual {
  position: relative;
}

.split-visual img {
  border-radius: var(--radius-xl);
}

/* ============================================
   PRODUCT IMAGE WITH CAPTION
   ============================================ */
.product-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.product-visual img {
  width: 100%;
}

.product-visual-caption {
  padding: var(--space-4) var(--space-6);
  background: rgba(10, 22, 40, 0.8);
  backdrop-filter: blur(10px);
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

/* ============================================
   WORKFLOW STEPS
   ============================================ */
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  counter-reset: step;
}

.workflow-step {
  position: relative;
  text-align: center;
  padding: var(--space-8) var(--space-4);
}

.workflow-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-6);
  background: linear-gradient(135deg, var(--color-interactive) 0%, var(--color-hover) 100%);
  color: var(--color-brand);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  border-radius: var(--radius-full);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.workflow-step h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  color: var(--color-white);
}

.workflow-step p {
  font-size: var(--text-sm);
  margin-bottom: 0;
  color: var(--color-text-light);
}

/* Connector line between steps */
.workflow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: calc(var(--space-8) + 28px);
  left: calc(50% + 36px);
  width: calc(100% - 72px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-interactive), transparent);
  opacity: 0.5;
}

/* ============================================
   OUTCOMES / METRICS
   ============================================ */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.metric-card {
  text-align: center;
  padding: var(--space-8);
  background: var(--color-card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-float);
  transition: all var(--transition-base);
}

.metric-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: var(--shadow-float-hover), var(--shadow-glow);
  transform: translateY(-4px);
}

.metric-value {
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  color: var(--color-interactive);
  line-height: 1;
  margin-bottom: var(--space-2);
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.metric-value::after {
  content: '%';
  font-size: var(--text-2xl);
  margin-left: 2px;
}

.metric-label {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  padding: var(--space-8);
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.testimonial-content {
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  position: relative;
  padding-left: var(--space-8);
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: var(--text-6xl);
  color: var(--color-alt-bg);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.testimonial-name {
  font-weight: var(--font-semibold);
  color: var(--color-text);
}

.testimonial-role {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  align-items: start;
}

.pricing-card {
  background-color: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--transition-base);
}

.pricing-card.featured {
  border-color: var(--color-interactive);
  box-shadow: var(--shadow-xl);
  transform: scale(1.05);
}

.pricing-card-header {
  text-align: center;
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-6);
}

.pricing-card-name {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.pricing-card-subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.pricing-card-price {
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  color: var(--color-brand);
}

.pricing-card-price span {
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  color: var(--color-text-muted);
}

.pricing-features {
  margin-bottom: var(--space-8);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.pricing-features li::before {
  content: '✓';
  color: var(--color-interactive);
  font-weight: var(--font-bold);
}

.pricing-card .btn {
  width: 100%;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-interactive);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding-bottom: var(--space-6);
  color: var(--color-text-light);
}

/* ============================================
   RESOURCE CARDS
   ============================================ */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.resource-card {
  background: var(--color-card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-float);
}

.resource-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: var(--shadow-float-hover), var(--shadow-glow);
  transform: translateY(-8px);
}

.resource-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.resource-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.resource-card:hover .resource-card-image img {
  transform: scale(1.05);
}

.resource-card-body {
  padding: var(--space-6);
}

.resource-card-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: var(--color-interactive);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}

.resource-card-title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--color-white);
  margin-bottom: var(--space-2);
  line-height: 1.4;
}

.resource-card-excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  padding: var(--space-20) var(--space-8);
  margin: var(--space-16) auto;
  max-width: calc(var(--container-max) + var(--space-8));
  background: var(--color-card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-2xl);
  text-align: center;
  box-shadow: var(--shadow-float);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band h2 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto var(--space-8);
}

.cta-band-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: rgba(5, 13, 24, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-card-border);
  color: var(--color-white);
  padding: var(--space-20) 0 var(--space-8);
  position: relative;
  z-index: 1;
  margin-top: var(--space-16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  margin-top: var(--space-4);
  max-width: 280px;
}

.footer-heading {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-6);
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-interactive);
}

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-copyright {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: var(--space-6);
}

.footer-legal a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--color-interactive);
}

.social-links {
  display: flex;
  gap: var(--space-4);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background-color: var(--color-interactive);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: var(--space-6);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-text-light);
  margin-bottom: var(--space-2);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-interactive);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1), 0 0 20px rgba(0, 212, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Contact form native element styling */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  font-family: inherit;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-interactive);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1), 0 0 20px rgba(0, 212, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300d4ff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-right: var(--space-10);
  cursor: pointer;
}

.contact-form select option {
  background: var(--color-brand);
  color: var(--color-white);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-text-light);
  margin-bottom: var(--space-2);
}

.contact-form .form-group {
  margin-bottom: 0;
}

/* ============================================
   ALTERNATE BACKGROUNDS
   ============================================ */
.bg-light {
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}

.bg-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.bg-alt {
  background: rgba(0, 212, 255, 0.02);
}

.bg-brand {
  background: var(--color-brand);
  color: var(--color-white);
}

.bg-deep {
  background: var(--color-deep);
  color: var(--color-white);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
  h1 {
    font-size: var(--text-4xl);
  }

  h2 {
    font-size: var(--text-3xl);
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .hero-visual {
    position: relative;
    width: 100%;
    right: auto;
    top: auto;
    transform: none;
    margin-top: var(--space-12);
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .split-section.reverse {
    direction: ltr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-step:not(:last-child)::after {
    display: none;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --text-5xl: 2.25rem;
    --text-4xl: 1.875rem;
    --text-3xl: 1.5rem;
  }

  .section {
    padding: var(--space-16) 0;
  }

  .container {
    padding: 0 var(--space-4);
  }

  /* Mobile Navigation */
  .nav {
    position: fixed;
    top: 90px;
    left: var(--space-4);
    right: var(--space-4);
    bottom: var(--space-4);
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-xl);
    flex-direction: column;
    padding: var(--space-8);
    transform: translateX(100%);
    transition: transform var(--transition-base);
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: var(--space-4) 0;
    font-size: var(--text-lg);
    border-bottom: 1px solid var(--color-card-border);
  }

  /* Mobile Dropdown */
  .has-dropdown > .nav-link::before {
    display: none;
  }

  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
  }

  .dropdown::before {
    display: none;
  }

  .has-dropdown.active .dropdown {
    max-height: 300px;
  }

  .dropdown a {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-base);
    border-bottom: 1px solid var(--color-card-border);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: var(--space-6);
  }

  .nav-cta .btn {
    width: 100%;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .feature-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-band-actions {
    flex-direction: column;
  }

  .cta-band-actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }
.mb-16 { margin-bottom: var(--space-16); }

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.hidden { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-paths {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.contact-grid.secondary-row {
  margin-bottom: 0;
}

.contact-card {
  background: var(--color-card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-float);
  transition: all var(--transition-base);
}

.contact-card:hover {
  box-shadow: var(--shadow-float-hover);
  border-color: rgba(0, 212, 255, 0.2);
}

.contact-card-icon {
  margin-bottom: var(--space-6);
}

.contact-card h3 {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.contact-card > p {
  color: var(--color-text-light);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.contact-benefits {
  list-style: none;
  margin-bottom: var(--space-8);
  padding-left: 0;
}

.contact-benefits li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
  color: var(--color-text-light);
  font-size: var(--text-sm);
}

.contact-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  background: var(--color-interactive);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.contact-form .form-group.full-width {
  grid-column: 1 / -1;
}

.contact-form .btn.full-width {
  grid-column: 1 / -1;
  width: 100%;
}

/* Media Contact Card */
.media-contact-info {
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid var(--color-card-border);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-6);
}

.media-contact-info p {
  margin: 0;
  font-size: var(--text-sm);
}

.media-contact-info a {
  color: var(--color-interactive);
  text-decoration: none;
  font-weight: var(--font-medium);
}

.media-contact-info a:hover {
  text-decoration: underline;
}

.media-resources h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.resource-links {
  list-style: none;
  padding: 0;
}

.resource-links li {
  margin-bottom: var(--space-3);
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-interactive);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  transition: color var(--transition-fast);
}

.resource-link:hover {
  color: var(--color-hover);
  text-decoration: underline;
}

.resource-link::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234ba8f0'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 10v6m0 0l-3-3m3 3l3-3m2 8H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

/* Quick Contact Section */
.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}

.quick-contact-item {
  padding: var(--space-6);
}

.quick-contact-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.quick-contact-item h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.quick-contact-item p {
  color: var(--color-text-light);
  font-size: var(--text-sm);
}

.quick-contact-item a {
  color: var(--color-interactive);
  text-decoration: none;
  font-weight: var(--font-medium);
}

.quick-contact-item a:hover {
  text-decoration: underline;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quick-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr;
  }

  .quick-contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: var(--space-6);
  }
}

/* ============================================
   ANIMATIONS & EFFECTS
   ============================================ */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Subtle scan line effect for tech feel */
.tech-scanline::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-interactive), transparent);
  animation: scanline 3s linear infinite;
}

@keyframes scanline {
  0% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Gradient text for headings */
.gradient-text {
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-interactive) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
