/* ==========================================================================
   STAVI DIGITAL — Master Stylesheet
   A conversion-optimized, dark premium agency site — LUXURY EDITION
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --color-bg:          #0A0A0F;
  --color-bg-elevated: #12121A;
  --color-bg-card:     #16161F;
  --color-bg-card-hover: #1C1C28;
  --color-surface:     rgba(255, 255, 255, 0.04);
  --color-border:      rgba(255, 255, 255, 0.08);
  --color-border-hover:rgba(255, 255, 255, 0.15);

  --color-text:        #F5F5F0;
  --color-text-muted:  #9B9BA4;
  --color-text-dim:    #6B6B76;

  --color-accent:      #D4A853;          /* Refined warm amber */
  --color-accent-hover:#E0B96A;
  --color-accent-dim:  rgba(212, 168, 83, 0.15);
  --color-accent-glow: rgba(212, 168, 83, 0.25);

  /* Glassmorphism */
  --glass-bg:          rgba(22, 22, 31, 0.6);
  --glass-border:      rgba(255, 255, 255, 0.06);
  --glass-blur:        20px;

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --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:  2rem;
  --text-4xl:  2.75rem;
  --text-5xl:  3.5rem;
  --text-6xl:  4.5rem;

  --weight-regular: 400;
  --weight-medium:  500;
  --weight-semibold:600;
  --weight-bold:    700;
  --weight-black:   900;

  --leading-tight:  1.15;
  --leading-snug:   1.3;
  --leading-normal: 1.6;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --space-6xl: 10rem;

  /* Layout */
  --container-max:   1200px;
  --container-narrow: 800px;

  /* Borders */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full:9999px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-elevated: 0 8px 40px rgba(0, 0, 0, 0.5);

  /* Transitions */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --duration:  0.35s;

  /* Z-index layers */
  --z-header:  100;
  --z-overlay: 200;
  --z-modal:   300;
}


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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
}

::selection {
  background: var(--color-accent);
  color: var(--color-bg);
}


/* --------------------------------------------------------------------------
   Premium Scrollbar
   -------------------------------------------------------------------------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(212, 168, 83, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 168, 83, 0.5);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 168, 83, 0.3) var(--color-bg);
}


/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section--compact {
  padding: var(--space-3xl) 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-5xl) 0;
  }
  .section--compact {
    padding: var(--space-4xl) 0;
  }
}

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

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

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

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

/* Scroll reveal animation base */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* --------------------------------------------------------------------------
   Section Dividers — Gradient Lines
   -------------------------------------------------------------------------- */
.section-divider {
  height: 1px;
  border: none;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212, 168, 83, 0.3) 20%,
    rgba(212, 168, 83, 0.5) 50%,
    rgba(212, 168, 83, 0.3) 80%,
    transparent 100%
  );
  margin: 0;
}


/* --------------------------------------------------------------------------
   Typography — Enhanced Premium Feel
   -------------------------------------------------------------------------- */
.heading-xl {
  font-size: var(--text-4xl);
  font-weight: var(--weight-black);
  letter-spacing: -0.02em;
}

.heading-lg {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  letter-spacing: -0.015em;
}

.heading-md {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
}

.heading-sm {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
}

.body-lg {
  font-size: var(--text-lg);
  line-height: var(--leading-normal);
}

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

/* Gradient text on key headings */
.heading-xl,
.heading-lg {
  background: linear-gradient(135deg, #F5F5F0 0%, #D4A853 50%, #F0D48A 75%, #F5F5F0 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 8s ease infinite;
}

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

/* Override for non-gradient contexts where we want solid text */
.pain-points__cta-text .text-accent,
.footer .heading-lg {
  -webkit-text-fill-color: currentColor;
  background: none;
}

.label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent));
  flex-shrink: 0;
}

/* Decorative underline after label */
.label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .heading-xl {
    font-size: var(--text-5xl);
  }
  .heading-lg {
    font-size: var(--text-4xl);
  }
}

@media (min-width: 1024px) {
  .heading-xl {
    font-size: var(--text-6xl);
  }
}


/* --------------------------------------------------------------------------
   Buttons — Premium with Shimmer
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 2rem;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease-out);
  white-space: nowrap;
  min-height: 48px;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, #D4A853, #E8C876, #D4A853);
  background-size: 200% 200%;
  color: var(--color-bg);
  border: 1px solid rgba(240, 212, 138, 0.3);
}

/* Shimmer sweep on primary buttons */
.btn--primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.btn--primary:hover::after {
  left: 150%;
}

.btn--primary:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow:
    0 8px 30px var(--color-accent-glow),
    0 0 60px rgba(212, 168, 83, 0.15);
}

.btn--primary:active {
  transform: scale(0.97) translateY(0);
  box-shadow: 0 2px 8px var(--color-accent-dim);
}

.btn--secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  color: var(--color-text);
  border: 1px solid var(--glass-border);
}

.btn--secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.1);
}

.btn--secondary:active {
  transform: scale(0.97) translateY(0);
}

.btn--ghost {
  background: transparent;
  color: var(--color-accent);
  padding: 0;
  min-height: auto;
}

.btn--ghost:hover {
  color: var(--color-accent-hover);
  text-shadow: 0 0 20px rgba(212, 168, 83, 0.3);
}

.btn--ghost .arrow {
  transition: transform var(--duration) var(--ease-out);
}

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

.btn--large {
  padding: 1.1rem 2.5rem;
  font-size: var(--text-base);
}


/* --------------------------------------------------------------------------
   Cards — Glassmorphism + Animated Gradient Borders
   -------------------------------------------------------------------------- */
.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-lg);
  padding: var(--space-2xl);
  transition: all var(--duration) var(--ease-out);
  position: relative;
  overflow: hidden;
}

/* Mouse-following spotlight on cards */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(212, 168, 83, 0.06) 0%,
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

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

.card:hover {
  border-color: rgba(212, 168, 83, 0.2);
  background: rgba(28, 28, 40, 0.7);
  transform: translateY(-4px);
  box-shadow:
    0 4px 8px rgba(0,0,0,0.15),
    0 12px 40px rgba(0,0,0,0.25),
    0 0 40px rgba(212, 168, 83, 0.05);
}

/* Animated gradient border on hover */
.card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--border-angle, 0deg),
    transparent 0%,
    var(--color-accent) 10%,
    transparent 20%,
    transparent 80%,
    rgba(212, 168, 83, 0.5) 90%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.card:hover::after {
  opacity: 1;
  animation: rotateBorder 3s linear infinite;
}

@keyframes rotateBorder {
  to { --border-angle: 360deg; }
}

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.card--highlight {
  border-color: rgba(212, 168, 83, 0.3);
  position: relative;
  box-shadow: 0 0 40px rgba(212, 168, 83, 0.05);
}


/* --------------------------------------------------------------------------
   Header / Navigation — Glassmorphism
   -------------------------------------------------------------------------- */
/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), #F0D48A, var(--color-accent));
  background-size: 200% 100%;
  animation: progressGradient 3s ease infinite;
  z-index: calc(var(--z-header) + 1);
  transition: none;
  pointer-events: none;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  padding: var(--space-lg) 0;
  transition: all var(--duration) var(--ease-out);
}

.header.is-scrolled {
  padding: var(--space-md) 0;
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid rgba(212, 168, 83, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo — Premium Glow */
.logo {
  display: flex;
  align-items: baseline;
  gap: 0.3em;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-black);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: calc(var(--z-overlay) + 1);
  transition: all 0.3s ease;
}

.logo:hover {
  filter: drop-shadow(0 0 12px rgba(212, 168, 83, 0.4));
}

.logo__stavi {
  color: var(--color-text);
  text-shadow: 0 0 30px rgba(212, 168, 83, 0.15);
}

.logo__digital {
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
  font-size: 0.7em;
  letter-spacing: 0.15em;
}

/* Desktop Navigation */
.nav {
  display: none;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
  transition: color var(--duration) var(--ease-out), text-shadow 0.3s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), #F0D48A);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration) var(--ease-out);
  box-shadow: 0 0 8px rgba(212, 168, 83, 0.4);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--color-text);
  text-shadow: 0 0 20px rgba(212, 168, 83, 0.2);
}

.nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__link.is-active::after {
  transform: scaleX(1);
}

.nav__cta {
  margin-left: var(--space-md);
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
  }
  .hamburger {
    display: none !important;
  }
}

/* Hamburger Button */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: calc(var(--z-overlay) + 1);
  padding: 0;
}

.hamburger__line {
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--duration) var(--ease-out);
  transform-origin: center;
}

.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay — Glassmorphism */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(30px) saturate(1.5);
  -webkit-backdrop-filter: blur(30px) saturate(1.5);
  background-image:
    radial-gradient(ellipse at 20% 50%, var(--color-accent-dim) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(212, 168, 83, 0.05) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: var(--space-4xl) var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s var(--ease-out);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

/* Staggered link entrance */
.mobile-menu__link,
.mobile-menu .btn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), color 0.2s ease;
}

.mobile-menu.is-open .mobile-menu__link,
.mobile-menu.is-open .btn {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.is-open .btn { transition-delay: 0.35s; }

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--color-text-muted);
  padding: var(--space-md) 0;
  position: relative;
}

.mobile-menu__link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 30px;
  height: 2px;
  background: var(--color-accent);
  transition: transform 0.3s var(--ease-out);
}

.mobile-menu__link:hover,
.mobile-menu__link.is-active {
  color: var(--color-text);
}

.mobile-menu__link.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

.mobile-menu .btn {
  margin-top: var(--space-2xl);
  width: 80%;
  max-width: 280px;
}

/* Tagline at bottom of mobile menu */
.mobile-menu__tagline {
  position: absolute;
  bottom: var(--space-2xl);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-dim);
}


/* --------------------------------------------------------------------------
   Hero Section — Enhanced with Floating Orbs
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  padding-bottom: var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.hero--short {
  min-height: auto;
  padding-top: 120px;
  padding-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
  .hero {
    padding-top: 100px;
    padding-bottom: var(--space-4xl);
  }
  .hero--short {
    padding-top: 140px;
    padding-bottom: var(--space-4xl);
  }
}

.hero__content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero__tagline {
  margin-bottom: var(--space-lg);
}

.hero__title {
  margin-bottom: var(--space-lg);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 600px;
  margin-bottom: var(--space-2xl);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero__actions .btn--primary {
  width: 100%;
  text-align: center;
}

.hero__actions .btn--ghost {
  text-align: center;
}

@media (min-width: 768px) {
  .hero__actions {
    flex-direction: row;
    align-items: center;
    gap: var(--space-lg);
  }
  .hero__actions .btn--primary {
    width: auto;
  }
}

/* Subtle ambient glow behind hero */
.hero__glow {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.8;
  z-index: 0;
}

/* Floating gradient orbs for hero background */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.hero__orb--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.12) 0%, transparent 70%);
  top: 15%;
  left: -5%;
  animation: floatOrb1 18s ease-in-out infinite;
}

.hero__orb--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
  bottom: 10%;
  right: 15%;
  animation: floatOrb2 22s ease-in-out infinite;
}

.hero__orb--3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(240, 212, 138, 0.1) 0%, transparent 70%);
  top: 50%;
  left: 40%;
  animation: floatOrb3 15s ease-in-out infinite;
}

@keyframes floatOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes floatOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 20px) scale(1.05); }
  66% { transform: translate(20px, -40px) scale(0.9); }
}

@keyframes floatOrb3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.15); }
}


/* --------------------------------------------------------------------------
   Section Headers
   -------------------------------------------------------------------------- */
.section-header {
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: var(--space-3xl);
  }
}

.section-header__label {
  margin-bottom: var(--space-md);
}

.section-header__title {
  margin-bottom: var(--space-md);
}

.section-header__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 600px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-header__subtitle {
  margin-left: auto;
  margin-right: auto;
}


/* --------------------------------------------------------------------------
   Pain Points Section
   -------------------------------------------------------------------------- */
.pain-points__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pain-point {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-xl);
  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-md);
  transition: all var(--duration) var(--ease-out);
}

.pain-point:hover {
  border-color: rgba(220, 80, 80, 0.3);
  box-shadow: 0 0 30px rgba(220, 80, 80, 0.05);
}

.pain-point__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 80, 80, 0.1);
  border-radius: var(--radius-sm);
  color: #DC5050;
  font-size: var(--text-xl);
}

.pain-point__text {
  font-weight: var(--weight-medium);
  color: var(--color-text);
}


.pain-points__cta-text {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .pain-points__grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* --------------------------------------------------------------------------
   Services Cards — Enhanced with Icon Animations
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.service-card {
  padding: var(--space-2xl);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent-dim), rgba(212, 168, 83, 0.08));
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  color: var(--color-accent);
  font-size: 1.5rem;
  transition: all 0.4s var(--ease-out);
}

.service-card:hover .service-card__icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.25), var(--color-accent-dim));
  box-shadow: 0 0 25px rgba(212, 168, 83, 0.15);
}

.service-card__title {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-md);
}

.service-card__desc {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  line-height: var(--leading-normal);
}

.service-card__link {
  color: var(--color-accent);
  font-weight: var(--weight-medium);
  font-size: var(--text-sm);
  transition: all var(--duration) var(--ease-out);
}

.service-card__link:hover {
  color: var(--color-accent-hover);
  text-shadow: 0 0 15px rgba(212, 168, 83, 0.3);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* --------------------------------------------------------------------------
   Process / Timeline
   -------------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  position: relative;
}

.process-step {
  position: relative;
  padding-left: var(--space-3xl);
}

/* Vertical line for mobile */
.process-step::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 40px;
  bottom: calc(-1 * var(--space-2xl));
  width: 1px;
  background: linear-gradient(180deg, var(--color-accent), var(--color-border));
}

.process-step:last-child::before {
  display: none;
}

.process-step__number {
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-dim);
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  color: var(--color-accent);
}

.process-step__title {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-sm);
}

.process-step__desc {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
  }

  .process-step {
    padding-left: 0;
    padding-top: var(--space-3xl);
    text-align: center;
  }

  /* Horizontal line for desktop */
  .process-step::before {
    left: 50%;
    top: 15px;
    bottom: auto;
    width: calc(100% + var(--space-xl));
    height: 1px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-border));
  }

  .process-step:last-child::before {
    display: none;
  }

  .process-step__number {
    position: relative;
    left: auto;
    top: auto;
    margin: 0 auto var(--space-lg);
  }
}


/* --------------------------------------------------------------------------
   Featured Project
   -------------------------------------------------------------------------- */
.featured-project {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.featured-project__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow:
    0 20px 60px rgba(212, 168, 83, 0.06),
    0 8px 24px rgba(0,0,0,0.3);
  transition: all var(--duration) var(--ease-out);
}

.featured-project__image:hover {
  box-shadow:
    0 25px 70px rgba(212, 168, 83, 0.12),
    0 12px 32px rgba(0,0,0,0.4),
    0 0 80px rgba(212, 168, 83, 0.06);
  transform: translateY(-4px);
}

/* Placeholder — faux browser mockup for project image */
.featured-project__image-placeholder {
  width: 100%;
  height: 100%;
  background: #0c0c18;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Browser chrome bar */
.featured-project__image-placeholder .mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #1a1a2a;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #ffbd2e; }
.mockup-dot:nth-child(3) { background: #28ca42; }

.mockup-url {
  margin-left: 12px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-text-dim);
  letter-spacing: 0.02em;
}

/* Faux page content */
.mockup-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, #0f1020 0%, #0c0c18 100%);
  position: relative;
}

.mockup-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mockup-logo {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: var(--weight-black);
  color: var(--color-accent);
  letter-spacing: 0.05em;
}

.mockup-nav-links {
  display: flex;
  gap: 12px;
}

.mockup-nav-link {
  width: 30px;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
}

.mockup-hero-block {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-line {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
}

.mockup-line--title {
  width: 70%;
  height: 10px;
  background: rgba(255,255,255,0.15);
}

.mockup-line--subtitle {
  width: 50%;
}

.mockup-line--short {
  width: 35%;
}

.mockup-btn {
  width: 80px;
  height: 22px;
  background: linear-gradient(135deg, var(--color-accent), #F0D48A);
  border-radius: 4px;
  margin-top: 8px;
  opacity: 0.8;
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.mockup-card {
  aspect-ratio: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
}

.featured-project__label {
  margin-bottom: var(--space-md);
}

.featured-project__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-xl);
}

.featured-project__detail {
  margin-bottom: var(--space-lg);
}

.featured-project__detail-label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.featured-project__detail-text {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
}

@media (min-width: 768px) {
  .featured-project {
    grid-template-columns: 1fr 1fr;
  }
}


/* --------------------------------------------------------------------------
   Results Metrics Bar — Animated Counters
   -------------------------------------------------------------------------- */
.results-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  padding: var(--space-3xl) 0;
  position: relative;
}

.results-bar::before,
.results-bar::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212, 168, 83, 0.3) 20%,
    rgba(212, 168, 83, 0.5) 50%,
    rgba(212, 168, 83, 0.3) 80%,
    transparent 100%
  );
}

.results-bar::before { top: 0; }
.results-bar::after { bottom: 0; }

.results-item {
  text-align: center;
  padding: var(--space-lg);
}

.results-item__number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-black);
  color: var(--color-accent);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--space-xs);
  /* Don't apply the gradient text animation to number counters */
  background: none;
  -webkit-text-fill-color: var(--color-accent);
}

.results-item__label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .results-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* --------------------------------------------------------------------------
   Trust Signals Bar
   -------------------------------------------------------------------------- */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  padding: var(--space-2xl) 0;
  border-top: 1px solid rgba(212, 168, 83, 0.1);
  border-bottom: 1px solid rgba(212, 168, 83, 0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
}

.trust-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent-dim), rgba(212, 168, 83, 0.08));
  border: 1px solid rgba(212, 168, 83, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
}

.trust-item__text {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.01em;
}

@media (min-width: 768px) {
  .trust-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* --------------------------------------------------------------------------
   Testimonials Section — Premium Cards
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.testimonial-card {
  padding: var(--space-2xl) var(--space-2xl) var(--space-xl);
  position: relative;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-lg);
  color: var(--color-accent);
  font-size: var(--text-lg);
}

.testimonial-card__quote {
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  font-style: italic;
  position: relative;
  padding-left: var(--space-lg);
  border-left: 2px solid rgba(212, 168, 83, 0.3);
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card__name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
}

.testimonial-card__role {
  font-size: var(--text-xs);
  color: var(--color-text-dim);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* --------------------------------------------------------------------------
   Industries Grid
   -------------------------------------------------------------------------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.industry-tag {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  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-md);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  transition: all var(--duration) var(--ease-out);
}

.industry-tag:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-dim);
  box-shadow: 0 0 25px rgba(212, 168, 83, 0.08);
}

.industry-tag__icon {
  font-size: var(--text-lg);
  opacity: 0.7;
}

@media (min-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* --------------------------------------------------------------------------
   Lead Magnet / Email Capture — Glassmorphism
   -------------------------------------------------------------------------- */
.lead-magnet {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.lead-magnet__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

.lead-magnet__subtitle {
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.lead-magnet__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 420px;
  margin: 0 auto;
}

.lead-magnet__input {
  width: 100%;
  padding: 0.875rem var(--space-lg);
  background: rgba(22, 22, 31, 0.8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text);
  font-size: var(--text-sm);
  transition: all var(--duration) var(--ease-out);
  min-height: 48px;
}

.lead-magnet__input::placeholder {
  color: var(--color-text-dim);
}

.lead-magnet__input:focus {
  border-color: var(--color-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15), 0 0 20px rgba(212, 168, 83, 0.08);
}

.lead-magnet__disclaimer {
  font-size: var(--text-xs);
  color: var(--color-text-dim);
  margin-top: var(--space-sm);
}

/* Enhanced lead magnet card glow */
.lead-magnet::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg,
    rgba(212, 168, 83, 0.15),
    transparent 40%,
    transparent 60%,
    rgba(212, 168, 83, 0.15)
  );
  border-radius: inherit;
  z-index: -1;
  animation: borderGlow 4s ease-in-out infinite alternate;
}

@keyframes borderGlow {
  0% { opacity: 0.3; }
  100% { opacity: 0.8; }
}


/* --------------------------------------------------------------------------
   Final CTA Section — Ambient Glow
   -------------------------------------------------------------------------- */
.final-cta {
  text-align: center;
  padding: var(--space-4xl) 0;
  background: var(--color-bg-elevated);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle,
    rgba(212, 168, 83, 0.1) 0%,
    rgba(212, 168, 83, 0.04) 30%,
    transparent 70%
  );
  pointer-events: none;
  opacity: 0.6;
  animation: ctaPulse 6s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

@media (min-width: 768px) {
  .final-cta {
    padding: var(--space-5xl) 0;
  }
}

.final-cta__title {
  margin-bottom: var(--space-lg);
}

.final-cta__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 650px;
  margin: 0 auto var(--space-2xl);
}

.final-cta__phone {
  display: block;
  margin-top: var(--space-lg);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}


/* --------------------------------------------------------------------------
   Pricing Tiers (Services Page) — Glassmorphism
   -------------------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-card__badge {
  display: inline-block;
  background: linear-gradient(135deg, #D4A853, #F0D48A);
  color: var(--color-bg);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3);
}

.pricing-card__tier {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
}

.pricing-card__price {
  font-size: var(--text-4xl);
  font-weight: var(--weight-black);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
  /* Override gradient text for prices */
  background: linear-gradient(135deg, #F5F5F0 0%, #D4A853 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: none;
}

.pricing-card__price-note {
  font-size: var(--text-sm);
  color: var(--color-text-dim);
  margin-bottom: var(--space-lg);
}

.pricing-card__best-for {
  font-size: var(--text-sm);
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
  font-weight: var(--weight-medium);
}

.pricing-card__features {
  list-style: none;
  margin-bottom: var(--space-2xl);
  flex-grow: 1;
}

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

.pricing-card__features li::before {
  content: '\2713';
  color: var(--color-accent);
  font-weight: var(--weight-bold);
  flex-shrink: 0;
}

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

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* --------------------------------------------------------------------------
   Add-Ons List (Services Page)
   -------------------------------------------------------------------------- */
.addons-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.addon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  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-md);
  transition: all var(--duration) var(--ease-out);
}

.addon-item:hover {
  border-color: rgba(212, 168, 83, 0.2);
  box-shadow: 0 0 20px rgba(212, 168, 83, 0.05);
}

.addon-item__name {
  font-weight: var(--weight-medium);
}

.addon-item__price {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  color: var(--color-accent);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .addons-list {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* --------------------------------------------------------------------------
   Monthly Plans (Services Page)
   -------------------------------------------------------------------------- */
.monthly-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.monthly-card__title {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-xs);
}

.monthly-card__price {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
}

.monthly-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

@media (min-width: 768px) {
  .monthly-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* --------------------------------------------------------------------------
   FAQ Accordion (Services Page)
   -------------------------------------------------------------------------- */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

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

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl) 0;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  transition: color var(--duration) var(--ease-out);
  min-height: 48px;
}

.faq-item__question:hover {
  color: var(--color-accent);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration) var(--ease-out);
  font-size: var(--text-xl);
  color: var(--color-text-dim);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  color: var(--color-accent);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-item.is-open .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-text {
  padding-bottom: var(--space-xl);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
}


/* --------------------------------------------------------------------------
   Portfolio Page
   -------------------------------------------------------------------------- */
.portfolio-project {
  margin-bottom: var(--space-4xl);
}

.portfolio-project__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration) var(--ease-out);
}

.portfolio-project__image:hover {
  box-shadow:
    0 20px 60px rgba(212, 168, 83, 0.08),
    0 0 60px rgba(212, 168, 83, 0.04);
  transform: translateY(-4px);
}

.portfolio-project__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 40%, #16213e 70%, #0f0f1a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.portfolio-project__image-placeholder span {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--color-text-dim);
  letter-spacing: 0.05em;
}

.portfolio-project__image-placeholder small {
  font-size: var(--text-sm);
  color: var(--color-text-dim);
  opacity: 0.5;
}

.portfolio-project__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.portfolio-project__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.portfolio-project__detail-block {
  margin-bottom: var(--space-md);
}

.portfolio-project__detail-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.portfolio-project__detail-text {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.tech-tag {
  padding: 0.3rem 0.8rem;
  background: var(--color-accent-dim);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: var(--color-accent);
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: rgba(212, 168, 83, 0.2);
  box-shadow: 0 0 15px rgba(212, 168, 83, 0.1);
}

@media (min-width: 768px) {
  .portfolio-project__meta {
    grid-template-columns: 2fr 1fr;
  }
}


/* --------------------------------------------------------------------------
   Coming Soon Cards (Portfolio Page)
   -------------------------------------------------------------------------- */
.coming-soon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.coming-soon-card {
  aspect-ratio: 16 / 10;
  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-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.coming-soon-card:hover {
  border-color: rgba(212, 168, 83, 0.15);
  box-shadow: 0 0 40px rgba(212, 168, 83, 0.05);
}

.coming-soon-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.02) 0%, transparent 70%);
  pointer-events: none;
}

.coming-soon-card__icon {
  font-size: var(--text-3xl);
  opacity: 0.3;
}

.coming-soon-card__label {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-text-muted);
}

.coming-soon-card__badge {
  font-size: var(--text-xs);
  color: var(--color-text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Live project cards */
a.coming-soon-card--live {
  text-decoration: none;
  border-color: rgba(212, 168, 83, 0.3);
  cursor: pointer;
}

a.coming-soon-card--live .coming-soon-card__icon {
  opacity: 0.7;
}

a.coming-soon-card--live .coming-soon-card__label {
  color: var(--color-text);
}

a.coming-soon-card--live:hover {
  border-color: rgba(212, 168, 83, 0.5);
  box-shadow: 0 0 50px rgba(212, 168, 83, 0.1);
  transform: translateY(-4px);
}

.coming-soon-card__badge--live {
  color: var(--color-accent) !important;
  font-weight: var(--weight-semibold);
}

@media (min-width: 768px) {
  .coming-soon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --------------------------------------------------------------------------
   Showcase Preview (Homepage)
   -------------------------------------------------------------------------- */
.showcase-preview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .showcase-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.showcase-preview__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-xl) var(--space-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.4s ease;
}

.showcase-preview__card:hover {
  border-color: rgba(212, 168, 83, 0.5);
  box-shadow: 0 0 40px rgba(212, 168, 83, 0.08);
  transform: translateY(-3px);
}

.showcase-preview__icon {
  font-size: var(--text-2xl);
}

.showcase-preview__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
}

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

.showcase-preview__link {
  font-size: var(--text-sm);
  color: var(--color-accent);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: var(--space-xs);
}


/* --------------------------------------------------------------------------
   About Page
   -------------------------------------------------------------------------- */
.about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-story__text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  line-height: var(--leading-normal);
}

.about-story__text p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 3.2em;
  font-weight: var(--weight-black);
  float: left;
  line-height: 0.8;
  margin-right: 0.08em;
  margin-top: 0.05em;
  color: var(--color-accent);
}

.about-story__text p:last-child {
  margin-bottom: 0;
}

.about-avatar {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.about-avatar__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-bg-card) 0%, #1a1a2e 50%, var(--color-bg-card) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-avatar__initials {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: var(--weight-black);
  background: linear-gradient(135deg, var(--color-accent), #F0D48A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
}

@media (min-width: 768px) {
  .about-story {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

/* Why Work With Me */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.why-card__title {
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.why-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tech Stack */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.tech-badge {
  padding: 0.6rem 1.2rem;
  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-full);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  transition: all var(--duration) var(--ease-out);
}

.tech-badge:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  box-shadow: 0 0 20px rgba(212, 168, 83, 0.1);
}


/* --------------------------------------------------------------------------
   Contact Page
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
}

.calendly-placeholder {
  aspect-ratio: 4 / 3;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 2px solid rgba(212, 168, 83, 0.3);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  padding: var(--space-2xl);
  text-align: center;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

/* Glow behind calendly */
.calendly-placeholder::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.calendly-placeholder__title {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
}

.calendly-placeholder__subtitle {
  color: var(--color-text-dim);
  font-size: var(--text-sm);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group__label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-muted);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem var(--space-lg);
  background: rgba(22, 22, 31, 0.8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: var(--text-sm);
  transition: all var(--duration) var(--ease-out);
  min-height: 48px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15), 0 0 20px rgba(212, 168, 83, 0.08);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B6B76' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background: var(--color-bg-card);
  color: var(--color-text);
}

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

.contact-info {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.contact-info a {
  color: var(--color-accent);
  transition: all var(--duration) var(--ease-out);
}

.contact-info a:hover {
  color: var(--color-accent-hover);
  text-shadow: 0 0 15px rgba(212, 168, 83, 0.3);
}

.social-links {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  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: 50%;
  color: var(--color-text-muted);
  transition: all var(--duration) var(--ease-out);
  font-size: var(--text-sm);
}

.social-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(212, 168, 83, 0.1);
  box-shadow: 0 0 20px rgba(212, 168, 83, 0.15);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 3fr 2fr;
  }
}


/* --------------------------------------------------------------------------
   Footer — Refined
   -------------------------------------------------------------------------- */
.footer {
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 1px solid rgba(212, 168, 83, 0.08);
  margin-top: var(--space-3xl);
  position: relative;
}

/* Gradient line at top of footer */
.footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212, 168, 83, 0.3) 30%,
    rgba(212, 168, 83, 0.5) 50%,
    rgba(212, 168, 83, 0.3) 70%,
    transparent 100%
  );
}

@media (min-width: 768px) {
  .footer {
    padding: var(--space-4xl) 0 var(--space-xl);
    margin-top: var(--space-4xl);
  }
}

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

.footer__heading {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.footer__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: all var(--duration) var(--ease-out);
}

.footer__link:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

span.footer__link {
  cursor: default;
}

span.footer__link:hover {
  color: var(--color-text-muted);
  padding-left: 0;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
  font-size: var(--text-xs);
  color: var(--color-text-dim);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}


/* --------------------------------------------------------------------------
   Decorative / Misc
   -------------------------------------------------------------------------- */

/* Subtle grain texture overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.02;
  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");
  pointer-events: none;
  z-index: 1;
}


/* --------------------------------------------------------------------------
   VISUAL UPGRADES — Animated Hero, Cursor Glow, Tilt Cards, Typed Text
   -------------------------------------------------------------------------- */

/* Hero Canvas (animated grid background) */
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* Typed text effect — with glow */
.typed-wrapper {
  display: inline-block;
  min-width: 5ch;
}

.typed-text {
  background: linear-gradient(135deg, #D4A853 0%, #F0D48A 50%, #D4A853 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(212, 168, 83, 0.3));
}

.typed-cursor {
  color: var(--color-accent);
  font-weight: var(--weight-regular);
  animation: blink 0.7s step-end infinite;
  text-shadow: 0 0 15px rgba(212, 168, 83, 0.6);
}

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

/* Cursor glow follower (desktop only) */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  will-change: left, top;
}

@media (pointer: fine) {
  .cursor-glow.is-visible {
    opacity: 0.12;
  }
}

/* Staggered reveal children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.4s; }

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Magnetic button hover effect */
.magnetic-btn {
  transition: all var(--duration) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.magnetic-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255,255,255,0.2) 0%,
    transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.magnetic-btn:hover::before {
  opacity: 1;
}

/* Shimmer effect for coming-soon cards */
.coming-soon-card {
  overflow: hidden;
}

.coming-soon-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    transparent 40%,
    rgba(255,255,255,0.03) 50%,
    transparent 60%
  );
  animation: shimmer 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-30%) translateY(-30%) rotate(25deg); }
  50% { transform: translateX(30%) translateY(30%) rotate(25deg); }
}

/* Hero content entrance animation */
.hero__content {
  animation: heroEntrance 1s var(--ease-out) both;
}

.hero__tagline {
  animation: heroEntrance 1s var(--ease-out) 0.1s both;
}

.hero__title {
  animation: heroEntrance 1s var(--ease-out) 0.25s both;
}

.hero__subtitle {
  animation: heroEntrance 1s var(--ease-out) 0.4s both;
}

.hero__actions {
  animation: heroEntrance 1s var(--ease-out) 0.55s both;
}

@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth counter animation for trust items */
.trust-item {
  transition: all 0.3s var(--ease-out);
}

.trust-item:hover {
  transform: translateY(-3px);
}

.trust-item:hover .trust-item__icon {
  box-shadow: 0 0 20px rgba(212, 168, 83, 0.15);
}

/* Industry tag enhanced hover */
.industry-tag {
  cursor: default;
  position: relative;
  overflow: hidden;
}

.industry-tag::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-accent-dim) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.industry-tag:hover::before {
  opacity: 1;
}

/* Process step hover glow */
.process-step__number {
  transition: all 0.3s var(--ease-out);
}

.process-step:hover .process-step__number {
  background: var(--color-accent);
  color: var(--color-bg);
  box-shadow: 0 0 25px rgba(212, 168, 83, 0.4);
}

/* Floating animation for about avatar */
.about-avatar {
  animation: float 6s ease-in-out infinite;
}

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

/* Smooth page load */
body {
  animation: pageLoad 0.6s ease both;
}

@keyframes pageLoad {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Card breathing glow on hover */
@keyframes cardBreath {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 168, 83, 0.05); }
  50% { box-shadow: 0 0 35px rgba(212, 168, 83, 0.1); }
}

.card:hover {
  animation: cardBreath 3s ease-in-out infinite;
}


/* --------------------------------------------------------------------------
   Respect user motion preferences
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .reveal-stagger > * { opacity: 1; transform: none; }
  .hero__canvas { display: none; }
  .cursor-glow { display: none; }
  .about-avatar { animation: none; }
  .hero__orb { display: none; }
}
