/* ==========================================================================
   ULTRA-PREMIUM ECOMMERCE PERFORMANCE AGENCY - DESIGN SYSTEM (styles.css)
   ========================================================================== */

:root {
  /* Color Palette - Strict 3 Colors */
  --bg-dark: #0A0A0A;
  --bg-card: rgba(10, 10, 10, 0.75);
  --bg-card-hover: rgba(20, 20, 20, 0.85);
  --bg-surface: #0A0A0A;
  --bg-glass: rgba(250, 250, 248, 0.03);

  --accent-orange: #D45A25;
  --accent-orange-hover: rgba(212, 90, 37, 0.9);
  --accent-orange-light: rgba(212, 90, 37, 0.8);
  --accent-orange-glow: rgba(212, 90, 37, 0.35);
  --accent-orange-glow-subtle: rgba(212, 90, 37, 0.12);

  --accent-emerald: #D45A25;
  --accent-emerald-glow: rgba(212, 90, 37, 0.25);
  --accent-cyan: #D45A25;
  --accent-purple: #D45A25;

  --border-subtle: rgba(250, 250, 248, 0.08);
  --border-light: rgba(250, 250, 248, 0.14);
  --border-orange: rgba(212, 90, 37, 0.4);

  --text-main: #FAFAF8;
  --text-body: rgba(250, 250, 248, 0.82);
  --text-muted: rgba(250, 250, 248, 0.6);
  --text-dark: rgba(250, 250, 248, 0.4);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout & Spacing */
  --max-width: 1240px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows & Glass */
  --glass-backdrop: blur(16px);
  --shadow-card: 0 12px 32px -8px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px -10px var(--accent-orange-glow);

  /* Transitions */
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-expo);
  --transition-normal: 0.35s var(--ease-expo);
  --transition-slow: 0.6s var(--ease-expo);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

img, svg, video {
  max-width: 100%;
  display: block;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p {
  color: var(--text-body);
  font-size: 1.05rem;
}

.text-gradient-orange {
  background: linear-gradient(135deg, #FFF 0%, #E8A885 45%, #D45A25 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-highlight {
  position: relative;
  display: inline-block;
  color: #FFF;
  transition: color 0.4s ease;
}

.text-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--accent-orange);
  border-radius: 3px;
  opacity: 0.7;
  z-index: -1;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem auto;
}

.section-header .eyebrow {
  margin-bottom: 0.75rem;
}

.section-header p {
  margin-top: 1rem;
  font-size: 1.15rem;
}

/* Eyebrow Badge */
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 85, 0, 0.08);
  border: 1px solid rgba(255, 85, 0, 0.25);
  border-radius: var(--radius-full);
  color: var(--accent-orange-light);
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.eyebrow-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 10px var(--accent-orange);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #BD5F31 0%, #7D3210 100%);
  color: #FFF;
  box-shadow: 0 8px 24px -4px var(--accent-orange-glow);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

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

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 36px -6px var(--accent-orange-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 1.15rem 2.5rem;
  font-size: 1.15rem;
  border-radius: var(--radius-lg);
}

.btn-arrow {
  transition: transform 0.2s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Glass Card */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--glass-backdrop);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 25px var(--accent-orange-glow-subtle);
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(7, 8, 11, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #FFF;
}

.logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-text span {
  color: var(--accent-orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #FFF;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-orange);
  border-radius: 2px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #FFF;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hero Section */
.hero-section {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero-bg-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -20%);
  width: 750px;
  height: 550px;
  background: radial-gradient(circle, var(--accent-orange-glow) 0%, rgba(255, 85, 0, 0.05) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-subheadline {
  margin: 1.5rem 0 2.25rem 0;
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--text-body);
  max-width: 620px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Hero Floating Dashboard Graphic */
.hero-dashboard-container {
  position: relative;
  width: 100%;
  height: 480px;
}

.dashboard-card-main {
  position: absolute;
  top: 20px;
  right: 0;
  width: 100%;
  max-width: 440px;
  background: rgba(15, 18, 28, 0.88);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px var(--accent-orange-glow-subtle);
  z-index: 2;
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.dash-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.25rem 0.65rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-full);
  color: var(--accent-emerald);
  font-size: 0.75rem;
  font-weight: 700;
}

.dash-metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.dash-metric-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.dash-metric-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.dash-metric-val {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #FFF;
}

.dash-chart-mock {
  height: 120px;
  width: 100%;
  position: relative;
  margin-top: 1rem;
}

.dash-chart-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Secondary Floating Cards */
.dash-floating-card-1 {
  position: absolute;
  top: -15px;
  left: -20px;
  background: rgba(20, 24, 38, 0.92);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  z-index: 3;
}

.dash-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 85, 0, 0.15);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-floating-card-2 {
  position: absolute;
  bottom: 0px;
  left: 10px;
  background: rgba(18, 22, 34, 0.92);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1rem 1.35rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  z-index: 3;
}

/* Trust Strip */
.trust-strip {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.015);
}

.trust-title {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-logo-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: #FFF;
  opacity: 0.95;
  transition: all 0.3s ease;
}

.trust-logo-item:hover {
  opacity: 1;
  color: var(--accent-orange);
  transform: translateY(-2px);
}

.trust-logo-item svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Problem Section */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.problem-item:hover {
  border-color: rgba(239, 68, 68, 0.4);
  transform: translateX(6px);
}

.problem-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.12);
  color: #EF4444;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-text {
  font-size: 1.05rem;
  color: var(--text-main);
  font-weight: 500;
}

.problem-conclusion {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 85, 0, 0.06);
  border-left: 4px solid var(--accent-orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFF;
}

/* System Section (3 Engines) */
.system-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.engine-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.engine-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-orange-light);
  opacity: 0.85;
}

.engine-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(255, 85, 0, 0.12);
  border: 1px solid rgba(255, 85, 0, 0.25);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.engine-card:hover .engine-icon {
  transform: scale(1.1) rotate(4deg);
  background: var(--accent-orange);
  color: #FFF;
}

.engine-title {
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
}

.engine-desc {
  font-size: 1rem;
  line-height: 1.6;
}

/* Why Brands Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.why-check-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-check-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 3;
}

/* Results / Metrics Section */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.metric-card {
  text-align: center;
  padding: 3rem 2rem;
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--accent-orange);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.metric-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
}

/* Process Section */
.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 3rem auto 0 auto;
}

.process-line-svg {
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 4px;
  z-index: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.process-step-card {
  text-align: center;
  padding: 2rem 1.25rem;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--accent-orange);
  color: var(--accent-orange);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 0 20px var(--accent-orange-glow);
  transition: all 0.3s ease;
}

.process-step-card:hover .step-number {
  background: var(--accent-orange);
  color: #FFF;
  transform: scale(1.15);
}

/* FAQ Accordion */
.faq-container {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.active {
  border-color: var(--border-orange);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
}

.faq-chevron {
  width: 22px;
  height: 22px;
  color: var(--accent-orange);
  transition: transform 0.3s var(--ease-expo);
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-expo), padding 0.35s var(--ease-expo);
  padding: 0 1.75rem;
  color: var(--text-body);
  font-size: 1.025rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding-bottom: 1.5rem;
}

/* Final CTA Section */
.final-cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 7rem 0;
}

.cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-orange-glow) 0%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
}

.cta-box {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 3rem;
  background: rgba(18, 22, 33, 0.85);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 50px var(--accent-orange-glow-subtle);
}

/* Footer */
.footer, .site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem 0;
  background: #050608;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-dark);
  font-size: 0.875rem;
}

/* Interactive ROAS Calculator (Services Page) */
.calculator-card {
  max-width: 800px;
  margin: 3rem auto 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.calc-input-group {
  margin-bottom: 1.5rem;
}

.calc-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.calc-slider {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-orange);
  cursor: pointer;
  box-shadow: 0 0 10px var(--accent-orange);
}

.calc-result-box {
  background: rgba(255, 85, 0, 0.08);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.calc-result-val {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-orange);

}

/* Blog Page Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.blog-category-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 85, 0, 0.12);
  border-radius: var(--radius-full);
  color: var(--accent-orange-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--accent-orange);
  font-size: 0.95rem;
}

/* Article Modal/View */
.article-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 0;
}

.article-content h2 {
  margin: 2.25rem 0 1rem 0;
}

.article-content p {
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  line-height: 1.75;
}

.article-content ul {
  margin: 1.25rem 0 1.75rem 1.5rem;
}

.article-content li {
  margin-bottom: 0.65rem;
  color: var(--text-body);
  font-size: 1.05rem;
}

/* Book A Call / Diagnostic Wizard */
.wizard-card {
  max-width: 720px;
  margin: 0 auto;
}

.wizard-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  position: relative;
}

.wizard-steps-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--border-subtle);
  z-index: 0;
}

.wiz-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--border-light);
  color: var(--text-muted);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.wiz-step-dot.active {
  border-color: var(--accent-orange);
  background: var(--accent-orange);
  color: #FFF;
  box-shadow: 0 0 15px var(--accent-orange-glow);
}

.wiz-option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem 0;
}

.wiz-option-btn {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  transition: all 0.2s ease;
}

.wiz-option-btn:hover, .wiz-option-btn.selected {
  background: rgba(255, 85, 0, 0.12);
  border-color: var(--accent-orange);
  color: #FFF;
}

.calendar-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.slot-btn {
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-weight: 600;
  text-align: center;
}

.slot-btn:hover, .slot-btn.selected {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #FFF;
}

/* Page Visibility Engine (SPA Navigation) */
.page-view {
  display: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.page-view.active-page {
  display: block;
  opacity: 1;
}

/* Responsive Queries */
@media (max-width: 1024px) {
  .hero-grid, .problem-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .system-cards, .results-grid, .blog-grid {
    grid-template-columns: 1fr;
  }

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

  .process-line-svg {
    display: none;
  }

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

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #0B0E14;
    border-left: 1px solid var(--border-subtle);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: right 0.35s var(--ease-expo);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .mobile-toggle {
    display: flex;
  }

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

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

  .wiz-option-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .team-flow-line-svg {
    display: none;
  }
}

/* ==========================================================================
   ABOUT US PAGE LAYOUTS & COMPONENT STYLES
   ========================================================================== */

.h2-underline-svg {
  display: block;
  width: 220px;
  height: 8px;
  margin: 0.75rem auto 0 auto;
  overflow: visible;
}

.h2-underline-path {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  transition: stroke-dashoffset 0.6s var(--ease-expo);
}

.revealed .h2-underline-path {
  stroke-dashoffset: 0;
}

.team-card {
  text-align: center;
  padding: 3rem 2.25rem;
}

.team-photo-container {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  background: rgba(255, 85, 0, 0.04);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.team-photo-container svg {
  width: 54px;
  height: 54px;
  color: var(--text-body);
  filter: grayscale(100%);
  transition: all var(--transition-normal);
}

.team-card:hover .team-photo-container {
  border-color: var(--accent-orange);
  background: rgba(255, 85, 0, 0.1);
  box-shadow: 0 0 20px var(--accent-orange-glow-subtle);
}

.team-card:hover .team-photo-container svg {
  filter: grayscale(0%);
  color: var(--accent-orange);
  transform: scale(1.1);
}

.team-role-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-orange-light);
  margin-top: 0.25rem;
}

.team-flow-timeline {
  position: relative;
  max-width: 1000px;
  margin: 4.5rem auto 0 auto;
}

.team-flow-line-svg {
  position: absolute;
  top: 48px;
  left: 15%;
  width: 70%;
  height: 4px;
  z-index: 0;
}

.team-flow-line-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.2s var(--ease-expo);
}

.belief-item {
  position: relative;
  padding-left: 2rem;
}

.belief-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent-orange);
  transition: height 0.6s var(--ease-expo);
  box-shadow: 0 0 10px var(--accent-orange-glow);
}

.belief-item.revealed::before {
  height: 100%;
}

/* ==========================================================================
   SCROLLSPY DOT NAV
   ========================================================================== */

.scrollspy-nav {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 999;
}

.scrollspy-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s var(--ease-expo);
}

.scrollspy-dot:hover {
  background: rgba(255, 85, 0, 0.6);
  transform: scale(1.2);
}

.scrollspy-dot.active {
  background: var(--accent-orange);
  box-shadow: 0 0 12px var(--accent-orange);
  transform: scale(1.4);
}

@media (max-width: 1024px) {
  .scrollspy-nav {
    display: none;
  }
}

/* ==========================================================================
   WHO WE WORK WITH (FIT vs NOT FIT)
   ========================================================================== */

.fit-not-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  margin-top: 3rem;
}

.fit-column {
  border-color: rgba(16, 185, 129, 0.22) !important;
  background: rgba(16, 185, 129, 0.02);
}

.not-fit-column {
  border-color: rgba(255, 255, 255, 0.05) !important;
  background: rgba(255, 255, 255, 0.01);
}

.fit-column:hover {
  border-color: var(--accent-emerald) !important;
  box-shadow: var(--shadow-card), 0 0 30px var(--accent-emerald-glow) !important;
}

.not-fit-column:hover {
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: var(--shadow-card) !important;
}

.list-fit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.fit-check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.fit-x-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.fit-text-main {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
}

.fit-text-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-top: 0.15rem;
}

/* ==========================================================================
   LIMITED AVAILABILITY PROGRESS BAR
   ========================================================================== */

.progress-bar-container {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-subtle);
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--accent-orange) 0%, #CCA185 100%);
  box-shadow: 0 0 15px var(--accent-orange-glow);
}

/* ==========================================================================
   SERVICES PAGE WIDGETS (ROTATOR, SLIDER, LIFECYCLE FLOW)
   ========================================================================== */

/* Rotating Ad Formats Preview */
.rotating-ad-preview {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 1.5rem auto 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1.25rem;
}

.preview-slides-container {
  position: relative;
  height: 290px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.preview-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.preview-slide.active {
  opacity: 1;
  z-index: 1;
}

.preview-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.preview-slide-label {
  position: relative;
  z-index: 1;
  background: linear-gradient(0deg, rgba(7, 8, 11, 0.9) 0%, rgba(7, 8, 11, 0) 100%);
  padding: 2.5rem 1rem 1rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFF;
}

.preview-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.preview-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-body);
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.preview-tab-btn:hover {
  background: rgba(255, 85, 0, 0.1);
  color: var(--accent-orange-light);
}

.preview-tab-btn.active {
  background: var(--accent-orange);
  color: #FFF;
  border-color: var(--accent-orange);
  box-shadow: 0 0 10px var(--accent-orange-glow);
}

/* Draggable Before/After Comparison Slider */
.before-after-slider {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  user-select: none;
}

.slider-image-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slider-image-before img, 
.slider-image-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.slider-image-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  clip-path: inset(0 0 0 50%);
}

.slider-drag-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--accent-orange);
  z-index: 3;
  cursor: ew-resize;
  box-shadow: 0 0 10px var(--accent-orange-glow);
}

.slider-drag-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-orange);
  border: 2px solid #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  box-shadow: 0 0 15px rgba(255, 85, 0, 0.6);
}

.slider-label {
  position: absolute;
  bottom: 1rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(7, 8, 11, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #FFF;
  backdrop-filter: blur(4px);
  z-index: 4;
  pointer-events: none;
}

.slider-label-left {
  left: 1rem;
}

.slider-label-right {
  right: 1rem;
}

/* Services timeline draw-in animations */
.services-line-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.2s var(--ease-expo);
}

/* Retention node animation overrides */
.retention-timeline-path {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  transition: stroke-dashoffset 1s ease-out;
}

.retention-node.revealed .node-circle {
  border-color: var(--accent-orange) !important;
  color: #FFF !important;
  box-shadow: 0 0 12px var(--accent-orange-glow);
  transform: scale(1.1);
  background: var(--accent-orange) !important;
}

.retention-node.revealed .node-label {
  color: var(--text-main) !important;
  font-weight: 600;
}

/* ==========================================================================
   AD CREATIVES PAGE STYLING
   ========================================================================== */

/* Sticky Category Bar */
.creative-sticky-bar {
  position: sticky;
  top: var(--header-height);
  z-index: 99;
  background: rgba(7, 8, 11, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.creative-tab {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 0.5rem;
  transition: opacity 0.35s var(--ease-expo);
  position: relative;
}

.creative-tab:hover, .creative-tab.active {
  opacity: 1;
}

.creative-tab-underline {
  position: absolute;
  bottom: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: var(--radius-full);
}

/* Masonry Grid / Gallery */
.creative-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.creative-item-card {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  transition: all 0.3s ease;
}

.creative-img-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.creative-img-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.4s var(--ease-expo);
}

.creative-item-card:hover .creative-img-wrapper img {
  transform: scale(1.03);
}

.creative-item-card:hover {
  border-color: var(--accent-orange);
  transform: translateY(-4px);
}

.creative-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 8, 11, 0.85) 0%, transparent 60%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.creative-item-card:hover .creative-item-overlay {
  opacity: 1;
}

.creative-item-format {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
}

.creative-item-tag {
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFF;
}

/* Email Carousel */
.email-carousel-container {
  position: relative;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1.5rem 0;
  cursor: grab;
}

.email-carousel-container::-webkit-scrollbar {
  display: none;
}

.email-carousel-container:active {
  cursor: grabbing;
}

.email-carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.email-flow-card {
  min-width: 320px;
  width: 320px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.email-flow-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-orange);
}

.email-img-preview {
  width: 100%;
  height: 380px;
  overflow-y: hidden;
  position: relative;
}

.email-img-preview img {
  width: 100%;
  display: block;
}

.email-details {
  padding: 1.5rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
}

.email-badge {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.5rem;
}

.email-details h4 {
  font-size: 1.1rem;
  color: #FFF;
}

/* SMS Phone Mockup & sequential bubbles */
.sms-mockup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.phone-frame {
  background: #1C1D22;
  border: 12px solid #2B2C33;
  border-radius: 40px;
  aspect-ratio: 9/18;
  width: 100%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  position: relative;
}

.phone-screen {
  background: #000;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.phone-header {
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
}

.phone-operator {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.sms-message-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sms-bubble {
  background: #1C1D22;
  border: 1px solid var(--border-subtle);
  border-radius: 18px 18px 18px 4px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text-main);
  max-width: 85%;
  align-self: flex-start;
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sms-bubble.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Before/After Slider Widget */
.cro-slider-widget-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  position: relative;
}

.cro-slider-frame {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  user-select: none;
}

.cro-slider-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.layer-before {
  z-index: 2;
  width: 50%; /* starting position */
  overflow: hidden;
  border-right: 2px solid var(--accent-orange);
}

.layer-before .slider-image {
  width: 1000px; /* match container max-width */
  max-width: none;
}

.layer-after {
  z-index: 1;
}

.cro-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%; /* starting position */
  width: 4px;
  background: var(--accent-orange);
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-orange);
  border: 3px solid #07080B;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #07080B;
  box-shadow: 0 0 15px rgba(255, 85, 0, 0.4);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(7, 8, 11, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2.5rem;
  color: #FFF;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFF;
  font-size: 1.5rem;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--accent-orange);
}

.lightbox-nav.prev { left: 2rem; }
.lightbox-nav.next { right: 2rem; }

.lightbox-content {
  max-width: 80%;
  max-height: 80%;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 1rem;
}

/* Number visibility optimizations */
.highlight-number {
  color: #FFFFFF !important;
  font-weight: 700;
  display: inline-block;
}

strong {
  color: #FFFFFF;
}

/* Ad Creatives Hero Animations */
#page-ad-creatives .creative-hero-badge {
  opacity: 0;
  transform: translateY(15px);
}
#page-ad-creatives .creative-hero-h1 {
  opacity: 0;
  transform: translateY(20px);
}
#page-ad-creatives .creative-hero-subhead {
  opacity: 0;
  transform: translateY(15px);
}

#page-ad-creatives.active-page .creative-hero-badge {
  animation: creativeFadeSlideUp 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
#page-ad-creatives.active-page .creative-hero-h1 {
  animation: creativeFadeSlideUp 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.15s forwards;
}
#page-ad-creatives.active-page .creative-hero-subhead {
  animation: creativeFadeSlideUp 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.8s forwards;
}

@keyframes creativeFadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scrollspy Navigation Dots */
.scrollspy-nav {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 100;
  pointer-events: auto;
}

.scrollspy-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(250, 250, 248, 0.2);
  border: 1px solid rgba(250, 250, 248, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.scrollspy-dot:hover {
  background: rgba(250, 250, 248, 0.8);
  transform: scale(1.25);
}

.scrollspy-dot.active {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  box-shadow: 0 0 10px var(--accent-orange-glow);
  transform: scale(1.35);
}

@media (max-width: 1024px) {
  .scrollspy-nav {
    display: none;
  }
}

/* Creative Assets Placeholder Shell */
.creative-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(250, 250, 248, 0.015);
  border: 1px dashed rgba(250, 250, 248, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  gap: 0.65rem;
  padding: 1.5rem;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.creative-placeholder:hover {
  border-color: var(--accent-orange);
  background: rgba(161, 74, 32, 0.02);
  color: #FFF;
  transform: translateY(-2px);
}

.creative-placeholder svg {
  width: 36px;
  height: 36px;
  color: var(--accent-orange);
  opacity: 0.8;
  margin-bottom: 0.25rem;
}

.creative-placeholder .placeholder-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.creative-placeholder .placeholder-dims {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Image Hover Zoom Effects for Our Creatives Gallery */
.creative-image-container:hover .hover-zoom-img {
  transform: scale(1.05);
}

.creative-image-container:hover .image-overlay {
  opacity: 1 !important;
}


