/* ============================================
   OPENGATE AI — PREMIUM ENHANCEMENTS
   The "Holy Shit This Is Beautiful" Layer
   ============================================ */

/* --------------------------------------------
   PREMIUM COLOR EXTENSIONS
   -------------------------------------------- */
:root {
  /* Signature Gradient */
  --gradient-premium: linear-gradient(135deg, #00a8ff 0%, #00ffd5 50%, #7b61ff 100%);
  --gradient-gold: linear-gradient(135deg, #f5a623 0%, #f8e71c 100%);
  --gradient-mesh: radial-gradient(at 40% 20%, rgba(0, 168, 255, 0.15) 0px, transparent 50%),
                   radial-gradient(at 80% 0%, rgba(123, 97, 255, 0.1) 0px, transparent 50%),
                   radial-gradient(at 0% 50%, rgba(0, 255, 213, 0.08) 0px, transparent 50%),
                   radial-gradient(at 80% 50%, rgba(0, 168, 255, 0.1) 0px, transparent 50%),
                   radial-gradient(at 0% 100%, rgba(123, 97, 255, 0.1) 0px, transparent 50%);
  
  /* Accent Extensions */
  --color-accent-secondary: #7b61ff;
  --color-accent-tertiary: #00ffd5;
  --color-savings: #00d68f;
  --color-gold: #f5a623;
  
  /* Glassmorphism */
  --glass-bg: rgba(18, 18, 26, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: 20px;
  
  /* Premium Shadows */
  --shadow-glow: 0 0 40px rgba(0, 168, 255, 0.15);
  --shadow-glow-intense: 0 0 60px rgba(0, 168, 255, 0.25);
  --shadow-elevation: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* --------------------------------------------
   GLASSMORPHISM CARDS
   -------------------------------------------- */
.card--glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-elevation);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* 3D Tilt Effect */
.card--tilt {
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.card--tilt:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(-8px);
}

/* --------------------------------------------
   PREMIUM BUTTONS
   -------------------------------------------- */
.btn--premium {
  position: relative;
  background: var(--gradient-premium);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  border: none;
  overflow: hidden;
}

.btn--premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn--premium:hover::before {
  left: 100%;
}

.btn--premium:hover {
  box-shadow: 0 0 30px rgba(0, 168, 255, 0.5), 0 0 60px rgba(123, 97, 255, 0.3);
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Magnetic Button Effect */
.btn--magnetic {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------
   ANIMATED STAT COUNTERS
   -------------------------------------------- */
.stat-counter {
  display: inline-block;
  font-feature-settings: 'tnum';
  font-variant-numeric: tabular-nums;
}

.stat-counter[data-animated="true"] {
  animation: countPulse 0.3s ease;
}

@keyframes countPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.stat__value {
  background: var(--gradient-premium);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__label {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--space-2);
}

/* --------------------------------------------
   SOCIAL PROOF BAR
   -------------------------------------------- */
.proof-bar {
  padding: var(--space-12) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(180deg, transparent 0%, rgba(0, 168, 255, 0.02) 50%, transparent 100%);
}

.proof-bar__label {
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-8);
}

.proof-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  flex-wrap: wrap;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.proof-bar__logos:hover {
  opacity: 0.9;
}

.proof-bar__logo {
  height: 32px;
  width: auto;
  filter: grayscale(100%) brightness(2);
  transition: all 0.3s ease;
}

.proof-bar__logo:hover {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.1);
}

/* Text-based logo fallback */
.proof-bar__logo-text {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-muted);
  padding: var(--space-3) var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.proof-bar__logo-text:hover {
  color: var(--color-text-primary);
  border-color: var(--color-accent);
}

/* --------------------------------------------
   SCROLL REVEAL ANIMATIONS
   -------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* --------------------------------------------
   PREMIUM LOGO TREATMENT
   -------------------------------------------- */
.header__logo {
  position: relative;
  font-weight: var(--font-weight-bold);
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.header__logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: var(--space-3);
  background: var(--gradient-premium);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.header__logo-icon::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid white;
  border-radius: 2px;
  transform: rotate(45deg);
}

.header__logo-icon::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.header__logo-text {
  background: linear-gradient(135deg, #ffffff 0%, #a8b2c1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header__logo-accent {
  color: var(--color-accent);
  -webkit-text-fill-color: var(--color-accent);
}

/* --------------------------------------------
   ROI CALCULATOR
   -------------------------------------------- */
.roi-calculator {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-elevation);
}

.roi-calculator__title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: var(--space-2);
}

.roi-calculator__subtitle {
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: var(--space-8);
}

.roi-calculator__input-group {
  margin-bottom: var(--space-6);
}

.roi-calculator__label {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
}

.roi-calculator__input {
  width: 100%;
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  transition: all 0.3s ease;
}

.roi-calculator__input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}

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

.roi-calculator__result {
  background: linear-gradient(135deg, rgba(0, 214, 143, 0.1) 0%, rgba(0, 168, 255, 0.1) 100%);
  border: 1px solid rgba(0, 214, 143, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  margin-top: var(--space-8);
}

.roi-calculator__result-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
}

.roi-calculator__result-value {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  background: linear-gradient(135deg, var(--color-savings) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.roi-calculator__result-note {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
}

/* Slider styling */
.roi-calculator__slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  margin-top: var(--space-4);
}

.roi-calculator__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-premium);
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 168, 255, 0.5);
  transition: transform 0.2s ease;
}

.roi-calculator__slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.roi-calculator__slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-premium);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 20px rgba(0, 168, 255, 0.5);
}

/* --------------------------------------------
   FLOATING ELEMENTS & DECORATIONS
   -------------------------------------------- */
.float-element {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
}

.float-element--1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 168, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: 10%;
  right: -150px;
  animation: float 8s ease-in-out infinite;
}

.float-element--2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(123, 97, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  bottom: 20%;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* --------------------------------------------
   PREMIUM HERO SECTION
   -------------------------------------------- */
.hero--premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero--premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-mesh);
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-4);
  background: rgba(0, 168, 255, 0.1);
  border: 1px solid rgba(0, 168, 255, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  color: var(--color-accent);
  margin-bottom: var(--space-6);
  animation: pulse 2s ease-in-out infinite;
}

.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 168, 255, 0.2); }
  50% { box-shadow: 0 0 0 10px rgba(0, 168, 255, 0); }
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-6);
}

.hero__title-gradient {
  background: var(--gradient-premium);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: var(--font-size-xl);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin-bottom: var(--space-8);
  line-height: var(--line-height-relaxed);
}

/* --------------------------------------------
   BADGE STYLES
   -------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge--popular {
  background: var(--gradient-premium);
  color: white;
}

.badge--new {
  background: linear-gradient(135deg, #7b61ff 0%, #00ffd5 100%);
  color: white;
}

.badge--savings {
  background: rgba(0, 214, 143, 0.15);
  color: var(--color-savings);
  border: 1px solid rgba(0, 214, 143, 0.3);
}

/* --------------------------------------------
   TESTIMONIAL CARDS
   -------------------------------------------- */
.testimonial {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: var(--space-4);
  left: var(--space-6);
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--color-accent);
  opacity: 0.3;
  line-height: 1;
}

.testimonial__quote {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  margin-bottom: var(--space-6);
  font-style: italic;
}

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

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-premium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  color: white;
}

.testimonial__name {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
}

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

/* --------------------------------------------
   METRIC HIGHLIGHT BOXES
   -------------------------------------------- */
.metric-highlight {
  background: linear-gradient(135deg, rgba(0, 168, 255, 0.1) 0%, rgba(123, 97, 255, 0.1) 100%);
  border: 1px solid rgba(0, 168, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  transition: all 0.3s ease;
}

.metric-highlight:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-glow);
}

.metric-highlight__value {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  background: var(--gradient-premium);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-2);
}

.metric-highlight__label {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

/* --------------------------------------------
   COMPARISON TABLE PREMIUM
   -------------------------------------------- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.comparison-table th {
  padding: var(--space-6);
  text-align: left;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--color-border);
}

.comparison-table td {
  padding: var(--space-5);
  border-bottom: 1px solid var(--color-border);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: rgba(0, 168, 255, 0.05);
}

.comparison-table__check {
  color: var(--color-savings);
  font-size: 1.25rem;
}

.comparison-table__x {
  color: var(--color-text-muted);
  font-size: 1.25rem;
}

.comparison-table__highlight {
  background: rgba(0, 168, 255, 0.1);
}

/* --------------------------------------------
   FEATURE GRID PREMIUM
   -------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-premium);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

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

.feature-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 168, 255, 0.2) 0%, rgba(123, 97, 255, 0.2) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  position: relative;
}

.feature-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-accent);
}

.feature-card__icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  background: var(--gradient-premium);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.feature-card:hover .feature-card__icon::after {
  opacity: 0.5;
}

.feature-card__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-3);
  color: var(--color-text-primary);
}

.feature-card__description {
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

/* --------------------------------------------
   TYPING ANIMATION FOR HERO
   -------------------------------------------- */
.typing-text {
  border-right: 3px solid var(--color-accent);
  animation: blink-cursor 0.75s step-end infinite;
}

@keyframes blink-cursor {
  0%, 100% { border-color: var(--color-accent); }
  50% { border-color: transparent; }
}

/* --------------------------------------------
   GLOW BORDER EFFECT
   -------------------------------------------- */
.glow-border {
  position: relative;
}

.glow-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--gradient-premium);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  filter: blur(8px);
}

.glow-border:hover::before {
  opacity: 0.6;
}

/* --------------------------------------------
   NOISE TEXTURE OVERLAY
   -------------------------------------------- */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* --------------------------------------------
   SPOTLIGHT HOVER EFFECT FOR CARDS
   -------------------------------------------- */
.spotlight-card {
  position: relative;
  overflow: hidden;
}

.spotlight-card::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 168, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.spotlight-card:hover::after {
  opacity: 1;
}

/* --------------------------------------------
   ANIMATED GRADIENT TEXT
   -------------------------------------------- */
.gradient-text-animated {
  background: linear-gradient(90deg, 
    var(--color-accent) 0%, 
    var(--color-accent-tertiary) 25%, 
    var(--color-accent-secondary) 50%, 
    var(--color-accent-tertiary) 75%, 
    var(--color-accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* --------------------------------------------
   STICKY CTA BAR
   -------------------------------------------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-top: 1px solid var(--glass-border);
  padding: var(--space-4);
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.sticky-cta__text {
  font-weight: var(--font-weight-medium);
}

.sticky-cta__text-highlight {
  color: var(--color-accent);
}

/* --------------------------------------------
   PRICING CARD PREMIUM OVERRIDES
   -------------------------------------------- */
.pricing-card--featured {
  position: relative;
  border: 2px solid transparent;
  background: 
    linear-gradient(var(--color-bg-elevated), var(--color-bg-elevated)) padding-box,
    var(--gradient-premium) border-box;
}

.pricing-card--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--gradient-premium);
  z-index: -1;
  opacity: 0.1;
}

/* --------------------------------------------
   MOBILE OPTIMIZATIONS
   -------------------------------------------- */
@media (max-width: 768px) {
  .proof-bar__logos {
    gap: var(--space-6);
  }
  
  .proof-bar__logo-text {
    font-size: var(--font-size-sm);
    padding: var(--space-2) var(--space-4);
  }
  
  .roi-calculator {
    padding: var(--space-6);
  }
  
  .roi-calculator__result-value {
    font-size: var(--font-size-4xl);
  }
  
  .sticky-cta__inner {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .reveal {
    transform: translateY(20px);
  }
}

/* --------------------------------------------
   REDUCED MOTION SUPPORT
   -------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .btn--premium {
    animation: none;
  }
  
  .btn--premium::before {
    display: none;
  }
  
  .hero__eyebrow {
    animation: none;
  }
  
  .hero__eyebrow-dot {
    animation: none;
  }
  
  .gradient-text-animated {
    animation: none;
  }
  
  .float-element {
    animation: none;
  }
  
  @keyframes shimmer {
    0%, 100% { background-position: 0% center; }
  }
}

/* --------------------------------------------
   PRINT STYLES
   -------------------------------------------- */
@media print {
  .sticky-cta,
  .noise-overlay,
  #atlas-canvas-bg {
    display: none !important;
  }
  
  .card--glass,
  .feature-card {
    backdrop-filter: none;
    background: white;
    color: black;
    border: 1px solid #ccc;
  }
}
