/* =====================================================
   PALORAH v2 - Header Section Styles (Updated)
   ===================================================== */

/* CSS Variables */
:root { 
  --bg: #0B0B0D;
  --text: #EAEAEA;
  --muted: #B7B7BF;
  --gold: #D4AF37;
  --copper: #B88646;
  --header-height: 72px;
  --header-height-scrolled: 64px;
  --header-progress-top: 72px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================================================
   Skip to Content Link
   ===================================================== */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 24px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.skip-to-content:focus {
  top: 16px;
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* =====================================================
   Header Container
   ===================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: linear-gradient(180deg, #101115 0%, #0B0B0D 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 9999;
  transition: height 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header.is-scrolled {
  height: var(--header-height-scrolled);
  background: #0A0A0C;
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.10);
  --header-progress-top: 64px;
}

.header__container {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =====================================================
   Logo - Fixed Focus Ring Issue
   ===================================================== */
.header__logo a {
  color: var(--gold);
  text-decoration: none;
  display: inline-block;
  padding-inline: 8px;
  transition: opacity 0.2s ease, transform 0.1s ease;
}

.header__logo a:hover {
  opacity: 0.95;
}

/* Remove default focus outline */
.header__logo a:focus {
  outline: none;
}

/* Accessible focus ring that doesn't cut through letters */
.header__logo a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 999px;
}

/* Subtle pressed state without box */
.header__logo a:active {
  transform: translateY(1px);
}

.logo-text {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

/* =====================================================
   Desktop Navigation
   ===================================================== */
.header__nav {
  display: none;
}

.header__nav-list {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-link {
  position: relative;
  font-family: 'Inter', 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.3s ease;
}

/* Hover underline animation (keep existing) */
.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.header__nav-link:hover,
.header__nav-link:focus-visible {
  color: var(--text);
}

.header__nav-link:hover::after,
.header__nav-link:focus-visible::after {
  width: 100%;
}

/* Active link indicator (section in view) */
.header__nav-link[aria-current="true"] {
  color: var(--text);
  position: relative;
}

.header__nav-link[aria-current="true"]::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  width: 100%;
  background: var(--gold);
  border-radius: 2px;
}

.header__nav-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

/* =====================================================
   CTA Button
   ===================================================== */
.header__cta {
  display: none;
}

.btn-primary {
  display: inline-block;
  padding: 12px 32px;
  background: var(--gold);
  color: var(--bg);
  font-family: 'Inter', 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--copper);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.btn-primary:active {
  transform: translateY(0);
}

/* =====================================================
   Mobile Menu Toggle
   ===================================================== */
.header__mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10001;
  transition: var(--transition-smooth);
}

.header__mobile-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: var(--transition-smooth);
}

.header__mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.header__mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* =====================================================
   Scroll Progress Bar
   ===================================================== */
.header__progress {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-progress-top);
  height: 3px;
  background: rgba(255, 255, 255, 0.03);
  z-index: 9998;
  transition: top 0.2s ease;
}

.header__progress > span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--copper));
  border-radius: 0 999px 999px 0;
  transition: width 0.08s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

/* =====================================================
   Mobile Drawer
   ===================================================== */
.mobile-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: linear-gradient(180deg, #0E0E11 0%, var(--bg) 100%);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s ease,
              visibility 0.4s;
  overflow-y: auto;
  z-index: 9997;
}

.mobile-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-drawer__nav {
  padding: 48px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 100%;
}

.mobile-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-drawer__link {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: var(--transition-smooth);
  display: block;
  padding: 8px 0;
}

.mobile-drawer__link:hover,
.mobile-drawer__link:focus-visible {
  color: var(--gold);
  transform: translateX(8px);
}

.mobile-drawer__link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

.mobile-drawer__link[aria-current="true"] {
  color: var(--gold);
}

.mobile-drawer__cta {
  margin-top: auto;
  padding-top: 32px;
}

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

/* =====================================================
   Responsive Breakpoints
   ===================================================== */

/* Mobile Progress Bar */
@media (max-width: 767px) {
  .header__progress {
    height: 2px;
  }
}

/* Tablet & Up (768px) */
@media (min-width: 768px) {
  .header__mobile-toggle {
    display: none;
  }
  
  .header__nav {
    display: block;
  }
  
  .header__cta {
    display: block;
  }
  
  .mobile-drawer {
    display: none;
  }
}

/* Desktop & Up (1024px) */
@media (min-width: 1024px) {
  .logo-text {
    font-size: 32px;
  }
  
  .header__nav-list {
    gap: 40px;
  }
  
  .header__nav-link {
    font-size: 16px;
  }
}

/* Large Desktop (1440px) */
@media (min-width: 1440px) {
  .header__container {
    padding: 0 48px;
  }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}



/* =====================================================
   PALORAH - HERO + ABOUT SECTIONS (MOBILE OPTIMIZED)
   Combined CSS for maximum performance
   ===================================================== */

/* ============================================
   1. CSS Variables & Base Configuration
   ============================================ */
:root {
    /* Color Palette */
    --bg: #0B0B0D;
    --bg-dark: #0B0B0D;
    --bg-card: #13151a;
    --bg-gradient-top: #0F1013;
    --text: #EDEDED;
    --muted: #B7B7BF;
    --text-muted: #B7B7BF;
    --gold: #D4AF37;
    --gold-muted: #B88646;
    --copper: #B88646;
    --gold-light: rgba(212, 175, 55, 0.1);
    --gold-medium: rgba(212, 175, 55, 0.2);
    
    /* Typography */
    --font-headline: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', 'Open Sans', sans-serif;
    --font-body: 'Inter', 'Open Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Transitions */
    --timing-fast: 0.2s;
    --timing-medium: 0.4s;
    --timing-slow: 0.6s;
    
    /* Z-index layers */
    --z-background: -1;
    --z-content: 10;
    --z-overlay: 20;
}

/* ============================================
   2. Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Skip to content link for accessibility */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 0.75rem 1.5rem;
    background: var(--gold);
    color: var(--bg);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 20px;
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

/* =====================================================
   HERO SECTION STYLES
   ===================================================== */

/* ============================================
   3. Hero Section Layout
   ============================================ */
#hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    padding: clamp(100px, 14vh, 160px) 0 clamp(80px, 10vh, 120px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

.hero__container {
    width: 100%;
    max-width: 1400px;
    margin-inline: auto;
    padding-inline: clamp(20px, 5vw, 80px);
    position: relative;
    z-index: var(--z-content);
}

/* ============================================
   4. Hero Background Layers & Effects
   ============================================ */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: var(--z-background);
    background-color: var(--bg);
    background-image:
        url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="1" cy="1" r="0.8" fill="rgba(255,255,255,0.15)"/></svg>');
    background-size: 20px 20px;
    background-position: 0 0;
    animation: hero-drift 20s ease-in-out infinite alternate;
    will-change: transform;
}

/* Animated glow orbs */
.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.hero__glow--left {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold), transparent 70%);
    top: -200px;
    left: -200px;
    animation: glow-pulse 8s ease-in-out infinite alternate;
}

.hero__glow--right {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--copper), transparent 70%);
    bottom: -150px;
    right: -150px;
    animation: glow-pulse 10s ease-in-out infinite alternate-reverse;
}

@keyframes glow-pulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

/* Noise texture overlay */
#hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    background:
        linear-gradient(180deg, rgba(0,0,0,0) 70%, rgba(0,0,0,0.5) 100%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120" viewBox="0 0 120 120"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="2" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.04"/></svg>') repeat;
    background-size: auto, 120px 120px;
}

@keyframes hero-drift {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(1rem, -0.5rem, 0);
    }
}

/* ============================================
   6. Hero Content Grid Layout
   ============================================ */
.hero__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: start;
    margin-bottom: var(--spacing-xl);
}

@media (min-width: 1024px) {
    .hero__content {
        grid-template-columns: 1.2fr 1fr;
        gap: clamp(60px, 8vw, 120px);
        align-items: center;
    }
}

/* ============================================
   7. Hero Typography - Main Headline
   ============================================ */
.hero__headline-wrapper {
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.hero__title {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: var(--spacing-md);
}

.hero__title-line {
    display: block;
}

/* Emphasis word with gradient */
.hero__title-emphasis {
    display: block;
    background: linear-gradient(135deg, var(--gold) 0%, #FFE082 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero__title-emphasis::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
}

/* Subtitle section */
.hero__subtitle-wrapper {
    margin-top: var(--spacing-lg);
}

.hero__sub {
    font-family: var(--font-sans);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: var(--muted);
    font-weight: 400;
    margin-bottom: var(--spacing-sm);
}

.hero__divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
}

/* ============================================
   8. Hero Sidebar - Features & CTA
   ============================================ */
.hero__sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    animation: fadeInUp 1s ease-out 0.5s forwards;
    opacity: 0;
}

/* Feature List */
.hero__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(184, 134, 70, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.hero__feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    border-radius: 12px;
    transition: all var(--timing-fast) ease;
    cursor: default;
}

.hero__feature-item:hover {
    background: rgba(212, 175, 55, 0.08);
    transform: translateX(4px);
}

.hero__feature-icon {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
}

.hero__feature-content {
    flex: 1;
}

.hero__feature-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.hero__feature-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
}

/* ============================================
   9. Hero Call-to-Action Buttons
   ============================================ */
.hero__cta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all var(--timing-medium) ease;
    cursor: pointer;
    letter-spacing: -0.01em;
    overflow: hidden;
    isolation: isolate;
}

.btn__arrow {
    transition: transform var(--timing-fast) ease;
}

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

/* Ripple effect container */
.btn__ripple {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, var(--gold) 0%, #E8C547 100%);
    color: var(--bg);
    border: 2px solid var(--gold);
    box-shadow: 
        0 4px 16px rgba(212, 175, 55, 0.2),
        0 0 0 0 rgba(212, 175, 55, 0.4);
    animation: primary-glow 3s ease-in-out infinite;
}

@keyframes primary-glow {
    0%, 100% {
        box-shadow: 
            0 4px 16px rgba(212, 175, 55, 0.2),
            0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 
            0 4px 20px rgba(212, 175, 55, 0.3),
            0 0 20px 4px rgba(212, 175, 55, 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.3), transparent);
    transition: left 0.6s ease;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(212, 175, 55, 0.3),
        0 0 30px 6px rgba(212, 175, 55, 0.2);
}

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

.btn--primary:active {
    transform: translateY(0);
}

.btn--secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid rgba(212, 175, 55, 0.4);
}

.btn--secondary:hover {
    background: var(--gold-light);
    border-color: var(--gold);
    transform: translateY(-2px);
}

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

.btn:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

/* ============================================
   10. Hero Trust Indicator
   ============================================ */
.hero__trust {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
}

.hero__trust-avatars {
    display: flex;
    align-items: center;
}

.hero__trust-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--copper));
    border: 2px solid var(--bg);
    margin-left: -10px;
    position: relative;
}

.hero__trust-avatar:first-child {
    margin-left: 0;
}

.hero__trust-avatar--plus {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.2);
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
}

.hero__trust-text {
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
}
/* ============================================
   11. Hero Scroll Cue
   ============================================ */
.hero__scroll-cue {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    background: transparent;
    cursor: pointer;
    transition: all var(--timing-fast) ease;
    animation: fadeInUp 1s ease-out 0.9s forwards, scroll-bounce 2.5s ease-in-out 2s infinite;
    opacity: 0;
    z-index: var(--z-overlay);
}

/* Hide scroll indicator on mobile */
@media (max-width: 767px) {
    .hero__scroll-cue {
        display: none !important;
    }
}

/* Adjust for tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero__scroll-cue {
        bottom: 60px;
        width: 44px;
        height: 44px;
    }
}

.hero__scroll-cue:hover {
    background: var(--gold-light);
    transform: translateX(-50%) translateY(-4px);
}

.hero__scroll-cue:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}


/* =====================================================
   ABOUT SECTION STYLES
   ===================================================== */

/* ============================================
   About Section Container
   ============================================ */
.about {
    position: relative;
    padding: clamp(80px, 12vh, 140px) 24px;
    background: var(--bg-dark);
    overflow: hidden;
}

.about__container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* About Background */
.about__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: 
        radial-gradient(ellipse 800px 500px at 20% 30%, rgba(212, 175, 55, 0.04), transparent),
        radial-gradient(ellipse 600px 400px at 80% 70%, rgba(212, 175, 55, 0.03), transparent);
    opacity: 0.8;
}

/* Section Label */
.about__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    display: block;
}

.label-text {
    display: inline-block;
}

/* About Heading */
.about__heading {
    font-family: var(--font-headline);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

/* Gold underline animation on "Leidenschaft" */
.about__heading-accent {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about__heading-accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    background-size: 200% 100%;
    background-position: -100% 0;
    animation: goldUnderlineSweep 12s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes goldUnderlineSweep {
    0%, 100% {
        background-position: -100% 0;
        opacity: 0.4;
    }
    50% {
        background-position: 200% 0;
        opacity: 0.8;
    }
}

/* About Content */
.about__content {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.about__intro {
    margin-bottom: 48px;
}

.about__intro-text {
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 820px;
}

.about__intro-text strong {
    color: var(--text);
    font-weight: 600;
}

/* About Grid */
.about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
}

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

/* About Cards */
.about__card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Top border accent */
.about__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effect */
.about__card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-4px);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.1),
        0 0 24px rgba(212, 175, 55, 0.15);
}

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

.about__card:hover .about__card-icon {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

.about__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about__card-title {
    font-family: var(--font-headline);
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

/* Values List */
.about__values-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about__values-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}

.value-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.value-icon svg {
    width: 16px;
    height: 16px;
}

.about__values-list strong {
    color: var(--text);
    font-weight: 600;
}

/* Mission Text */
.about__mission-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.about__mission-text strong {
    color: var(--text);
    font-weight: 600;
}

/* Mission Quote */
.about__quote {
    font-family: var(--font-headline);
    font-size: 18px;
    font-style: italic;
    line-height: 1.5;
    color: var(--gold);
    padding-left: 24px;
    border-left: 3px solid var(--gold);
    margin-top: 24px;
    position: relative;
}

.about__quote::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
    filter: blur(4px);
    opacity: 0.5;
}

/* Statistics */
.about__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 32px;
    padding: 48px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.stat {
    text-align: center;
}

.stat__number {
    font-family: var(--font-headline);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat__label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

/* Stat visibility animation */
.stat.is-visible .stat__number {
    opacity: 1;
    transform: translateY(0);
    animation: statPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

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

@keyframes statPop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    60% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================================
   12. Shared Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll-bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ============================================
   13. MOBILE OPTIMIZATIONS - Hero Section
   ============================================ */

/* Tablets */
@media (max-width: 1023px) {
    .hero__content {
        gap: var(--spacing-lg);
    }
    
    .hero__title {
        font-size: clamp(36px, 7vw, 56px);
    }
    
    .hero__features {
        padding: var(--spacing-md);
    }
    
    /* Disable hover animations on tablets */
    .hero__feature-item:hover {
        background: none;
        transform: none;
    }
    
    .btn:hover {
        transform: none;
        box-shadow: 
            0 4px 16px rgba(212, 175, 55, 0.2),
            0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    
    .btn:hover .btn__arrow {
        transform: none;
    }
}

/* Mobile - PERFORMANCE OPTIMIZED */
@media (max-width: 768px) {
    #hero {
        padding: clamp(80px, 12vh, 120px) 0 clamp(60px, 8vh, 100px);
    }
    
    /* ===== DISABLE ALL ANIMATIONS FOR MOBILE PERFORMANCE ===== */
    .hero__glow,
    .hero__bg {
        animation: none !important;
        will-change: auto;
    }
    
    /* Hide glow orbs completely on mobile */
    .hero__glow--left,
    .hero__glow--right {
        display: none;
    }
    
    /* Remove background grid pattern on mobile */
    .hero__bg {
        background-image: none;
    }
    
    /* Simplify button animations */
    .btn--primary {
        animation: none;
    }
    
    .btn--primary::before {
        display: none;
    }
    
    /* Remove ALL hover states on mobile */
    .hero__feature-item:hover {
        background: none;
        transform: none;
    }
    
    .btn:hover {
        transform: none;
        box-shadow: none;
    }
    
    .btn--primary:hover {
        transform: none;
        box-shadow: 
            0 4px 16px rgba(212, 175, 55, 0.2),
            0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    
    .btn--secondary:hover {
        background: transparent;
        border-color: rgba(212, 175, 55, 0.4);
        transform: none;
    }
    
    .hero__scroll-cue:hover {
        background: transparent;
        transform: translateX(-50%);
    }
    
    /* Layout adjustments */
    .hero__title {
        font-size: clamp(32px, 8vw, 44px);
        margin-bottom: var(--spacing-sm);
    }
    
    .hero__subtitle-wrapper {
        margin-top: var(--spacing-md);
    }
    
    .hero__features {
        gap: var(--spacing-sm);
        padding: var(--spacing-md);
        backdrop-filter: none;
    }
    
    .hero__feature-item {
        padding: var(--spacing-xs);
    }
    
    .hero__feature-title {
        font-size: 14px;
    }
    
    .hero__feature-desc {
        font-size: 12px;
    }
    
    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 14px;
    }
    
    .hero__scroll-cue {
        width: 44px;
        height: 44px;
        bottom: 30px;
        animation: fadeInUp 1s ease-out 0.9s forwards;
    }
    
    /* Disable trust avatar stacking animation */
    .hero__trust-avatar {
        animation: none;
    }
    
    /* ===== ABOUT SECTION MOBILE OPTIMIZATIONS ===== */
    
    /* Disable animated underline */
    .about__heading-accent::after {
        animation: none !important;
        opacity: 0.6;
        background-position: 0 0;
        bottom: -2px;
        height: 1.5px;
    }
    
    /* Disable hover animations */
    .about__card:hover {
        transform: translateY(-2px);
        box-shadow: 
            0 8px 24px rgba(0, 0, 0, 0.3),
            0 0 16px rgba(212, 175, 55, 0.1);
    }
    
    .about__card:hover .about__card-icon {
        transform: scale(1);
        box-shadow: none;
    }
    
    /* Simplify transitions */
    .about__card {
        transition: box-shadow 0.2s ease;
    }
    
    .about__card-icon {
        transition: none;
    }
    
    /* Simplify quote */
    .about__quote {
        padding-left: 16px;
        font-size: 16px;
    }
    
    .about__quote::before {
        left: -2px;
        width: 2px;
        filter: none;
    }
    
    /* Simplify stat animations */
    .stat__number,
    .stat__label {
        transition: opacity 0.3s ease;
        transform: none;
    }
    
    .stat.is-visible .stat__number {
        animation: none;
        transform: none;
    }
    
    /* Remove backdrop blur */
    .about__card {
        backdrop-filter: none;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero__container {
        padding-inline: 20px;
    }
    
    .hero__title {
        font-size: 32px;
    }
    
    .hero__sub {
        font-size: 15px;
    }
    
    .hero__cta {
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    /* Reduce noise texture opacity */
    #hero::after {
        opacity: 0.02;
    }
    
    /* Further simplify about hover */
    .about__card:hover {
        transform: none;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }
    
    .about__card:hover::before {
        opacity: 0;
    }
    
    /* Simplify stats grid */
    .about__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    #hero {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero__scroll-cue {
        display: none;
    }
}

/* ============================================
   14. Accessibility & Motion Preferences
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero__bg,
    .hero__glow,
    .about__heading-accent::after {
        animation: none !important;
    }
    
    .hero__scroll-cue {
        animation: fadeInUp 1s ease-out 0.9s forwards !important;
    }
    
    .about__card:hover,
    .btn:hover {
        transform: none;
    }
    
    .stat__number,
    .stat__label {
        transition: opacity 0.3s ease;
        transform: none !important;
    }
    
    .stat.is-visible .stat__number {
        animation: none !important;
        transform: none !important;
    }
}

@media (prefers-contrast: high) {
    #hero,
    .about {
        background: #000;
    }
    
    .hero__title,
    .hero__feature-title,
    .about__heading {
        color: #FFF;
    }
    
    .btn--primary,
    .btn--secondary,
    .hero__features,
    .about__card {
        border-width: 3px;
    }
}

/* ============================================
   15. Print Styles
   ============================================ */
@media print {
    #hero,
    .about {
        min-height: auto;
        padding: 2cm 1cm;
        background: white !important;
    }
    
    .hero__bg,
    .hero__glow,
    .about__bg,
    #hero::after,
    .hero__scroll-cue {
        display: none !important;
    }
    
    .hero__title,
    .about__heading {
        color: #000 !important;
        font-size: 28pt;
    }
    
    .hero__sub,
    .about__intro-text {
        color: #333 !important;
        font-size: 12pt;
    }
    
    .btn::after {
        content: " (" attr(href) ")";
        font-size: 9pt;
        color: #666;
    }
}



/* =====================================================
   PALORAH - Problem Section Styles (MOBILE OPTIMIZED)
   Creative Template vs Custom Code Comparison
   ===================================================== */

/* ============================================
   1. CSS Variables
   ============================================ */
:root {
    /* Problem Section Colors - Gold Theme */
    --problem-bad: #8B7355;
    --problem-bad-muted: #6B5B47;
    --problem-bad-accent: #9B8366;
    --problem-good: #D4AF37;
    --problem-good-muted: #B88646;
    --problem-good-bright: #E8C547;
    
    /* Already defined but repeated for clarity */
    --bg-dark: #0B0B0D;
    --bg-card: #13151a;
    --text: #EDEDED;
    --text-muted: #B7B7BF;
    --gold: #D4AF37;
    --font-headline: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', 'Open Sans', sans-serif;
}

/* ============================================
   2. Section Container
   ============================================ */
.problem {
    position: relative;
    padding: clamp(80px, 12vh, 140px) 24px;
    background: var(--bg-dark);
    overflow: hidden;
    isolation: isolate;
}

.problem__container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ============================================
   3. Background Animation
   ============================================ */
.problem__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: 
        radial-gradient(ellipse 800px 400px at 20% 30%, rgba(139, 115, 85, 0.06), transparent),
        radial-gradient(ellipse 600px 500px at 80% 70%, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0.6;
}

/* ============================================
   4. Section Label
   ============================================ */
.problem__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    display: block;
}

/* ============================================
   5. Heading
   ============================================ */
.problem__heading {
    font-family: var(--font-headline);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.problem__heading-highlight {
    color: var(--text);
    display: block;
}

/* ============================================
   6. Intro Text
   ============================================ */
.problem__intro {
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 720px;
    margin-bottom: 64px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.problem__intro strong {
    color: var(--text);
    font-weight: 600;
}

/* ============================================
   7. Visual Comparison Container
   ============================================ */
.problem__visual {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

/* ============================================
   8. Comparison Cards
   ============================================ */
.problem__comparison-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Bad Card (Template) */
.problem__comparison-card--bad {
    border-color: rgba(139, 115, 85, 0.2);
}

.problem__comparison-card--bad::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--problem-bad-muted), var(--problem-bad));
    opacity: 0.5;
}

.problem__comparison-card--bad:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 115, 85, 0.35);
    box-shadow: 0 12px 32px rgba(139, 115, 85, 0.15);
}

/* Good Card (Custom Code) */
.problem__comparison-card--good {
    border-color: rgba(212, 175, 55, 0.2);
}

.problem__comparison-card--good::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--problem-good), var(--problem-good-bright));
    opacity: 0.7;
}

.problem__comparison-card--good:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.2);
}

/* ============================================
   9. Comparison Header
   ============================================ */
.comparison-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.comparison-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comparison-icon--bad {
    background: rgba(139, 115, 85, 0.2);
    color: #C4A57B;
}

.comparison-icon--good {
    background: rgba(212, 175, 55, 0.2);
    color: var(--problem-good-bright);
}

.comparison-title {
    font-family: var(--font-headline);
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
}

/* ============================================
   10. Performance Meter (CREATIVE ELEMENT)
   ============================================ */
.performance-meter {
    margin-bottom: 32px;
}

.meter-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.meter-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
    margin-bottom: 8px;
}

.meter-fill {
    height: 100%;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    position: relative;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slow meter (muted brown/tan) */
.meter-fill--slow {
    width: 0%;
    background: linear-gradient(90deg, var(--problem-bad-muted), var(--problem-bad-accent));
    animation: fillMeterSlow 2s ease-out 0.8s forwards;
}

@keyframes fillMeterSlow {
    to {
        width: 85%;
    }
}

/* Fast meter (gold gradient) */
.meter-fill--fast {
    width: 0%;
    background: linear-gradient(90deg, var(--problem-good), var(--problem-good-bright));
    animation: fillMeterFast 2s ease-out 0.8s forwards;
}

@keyframes fillMeterFast {
    to {
        width: 18%;
    }
}

.meter-value {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.meter-indicator {
    font-size: 14px;
    font-weight: 600;
    color: var(--problem-bad);
    display: flex;
    align-items: center;
    gap: 8px;
}

.meter-indicator svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.meter-indicator--good {
    color: var(--problem-good-bright);
}

/* ============================================
   11. Problems/Benefits Lists
   ============================================ */
.comparison-problems {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.comparison-problems li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}

.problem-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    color: var(--problem-bad);
}

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

.benefit-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    color: var(--problem-good-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.benefit-icon svg {
    width: 16px;
    height: 16px;
}

.comparison-problems strong {
    color: var(--text);
    font-weight: 600;
}

/* ============================================
   12. Code Bloat Visual (CREATIVE ELEMENT)
   ============================================ */
.code-bloat {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 20px;
}

.bloat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.bloat-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.bloat-bar {
    height: 6px;
    background: linear-gradient(90deg, var(--problem-bad-muted), var(--problem-bad));
    border-radius: 999px;
    opacity: 0;
    animation: slideInBar 0.6s ease-out forwards;
}

.bloat-bar:nth-child(1) { animation-delay: 1s; }
.bloat-bar:nth-child(2) { animation-delay: 1.1s; }
.bloat-bar:nth-child(3) { animation-delay: 1.2s; }
.bloat-bar:nth-child(4) { animation-delay: 1.3s; }

@keyframes slideInBar {
    from {
        opacity: 0;
        transform: scaleX(0);
        transform-origin: left;
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

.bloat-bar--clean {
    background: linear-gradient(90deg, var(--problem-good), var(--problem-good-bright));
}

.bloat-percentage {
    font-size: 14px;
    font-weight: 700;
    color: var(--problem-bad);
    text-align: right;
}

.bloat-percentage--good {
    color: var(--problem-good-bright);
}

/* ============================================
   13. VS Divider (CREATIVE ELEMENT)
   ============================================ */
.problem__vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 60px;
}

.vs-text {
    font-family: var(--font-headline);
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 2;
    background: var(--bg-dark);
    padding: 8px 16px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-line {
    width: 2px;
    height: 200px;
    background: linear-gradient(180deg, var(--problem-bad) 0%, var(--gold) 50%, var(--problem-good-bright) 100%);
    opacity: 0.4;
}

/* ============================================
   14. Bottom Stats
   ============================================ */
.problem__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 64px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

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

.problem-stat__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.problem-stat__icon svg {
    width: 100%;
    height: 100%;
}

.problem-stat__number {
    font-family: var(--font-headline);
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 12px;
}

.problem-stat__label {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   15. Call to Action
   ============================================ */
.problem__cta {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.problem__cta-text {
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 32px;
}

.problem__cta-text strong {
    color: var(--gold);
    font-weight: 600;
}

/* Button already styled globally, but ensure consistency */
.problem__cta .btn {
    min-width: 280px;
}

/* ============================================
   16. Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   17. MOBILE OPTIMIZATIONS (≤768px)
   ============================================ */

@media (max-width: 768px) {
    
    /* ===== DISABLE HEAVY ANIMATIONS ===== */
    
    /* Disable meter fill animations on mobile */
    .meter-fill--slow,
    .meter-fill--fast {
        animation: none !important;
    }
    
    .meter-fill--slow {
        width: 85%;
    }
    
    .meter-fill--fast {
        width: 18%;
    }
    
    /* Disable code bloat bar animations on mobile */
    .bloat-bar {
        animation: none !important;
        opacity: 1;
        transform: scaleX(1);
    }
    
    /* Disable hover effects on mobile */
    .problem__comparison-card--bad:hover,
    .problem__comparison-card--good:hover {
        transform: translateY(-2px); /* Reduced from -4px */
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); /* Simplified */
    }
    
    /* Simplify transitions */
    .problem__comparison-card {
        transition: box-shadow 0.2s ease;
    }
    
    /* Layout adjustments */
    .problem__visual {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .problem__vs {
        display: none;
    }

    .problem__comparison-card {
        padding: 32px 28px;
    }
    
    /* Simplify background */
    .problem__bg {
        opacity: 0.4;
    }
}

/* Tablets (968px and below) */
@media (max-width: 968px) {
    .problem__visual {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .problem__vs {
        display: none;
    }

    .problem__comparison-card {
        padding: 32px 28px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .problem {
        padding: 60px 16px;
    }

    .problem__heading {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .problem__intro {
        font-size: 16px;
        margin-bottom: 48px;
    }

    .problem__comparison-card {
        padding: 28px 24px;
    }
    
    /* Further simplify hover on small screens */
    .problem__comparison-card--bad:hover,
    .problem__comparison-card--good:hover {
        transform: none;
        box-shadow: none;
    }

    .comparison-header {
        gap: 12px;
    }

    .comparison-icon {
        width: 48px;
        height: 48px;
    }

    .comparison-title {
        font-size: 20px;
    }

    .comparison-problems li {
        font-size: 14px;
        gap: 10px;
    }

    .problem__stats {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .problem__cta .btn {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
}

/* ============================================
   18. Accessibility & Reduced Motion
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .meter-fill--slow,
    .meter-fill--fast {
        animation: none !important;
        width: 85%;
    }

    .meter-fill--fast {
        width: 18% !important;
    }

    .bloat-bar {
        animation: none !important;
        opacity: 1;
        transform: scaleX(1);
    }
    
    .problem__comparison-card:hover {
        transform: none;
    }
}

@media (prefers-contrast: high) {
    .problem__comparison-card {
        border-width: 2px;
    }

    .meter-bar {
        background: #000;
    }
}





/* =====================================================
   PALORAH - Solution Section Styles (MOBILE OPTIMIZED)
   Professional Architectural Layered Design
   ===================================================== */

/* ============================================
   1. CSS Variables
   ============================================ */
:root {
    /* Already defined but repeated for clarity */
    --bg-dark: #0B0B0D;
    --bg-card: #13151a;
    --text: #EDEDED;
    --text-muted: #B7B7BF;
    --gold: #D4AF37;
    --gold-muted: #C9A957;
    --font-headline: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', 'Open Sans', sans-serif;
}

/* ============================================
   2. Section Container
   ============================================ */
.solution {
    position: relative;
    padding: clamp(80px, 12vh, 140px) 24px;
    background: var(--bg-dark);
    overflow: hidden;
}

.solution__container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ============================================
   3. Background
   ============================================ */
.solution__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: 
        radial-gradient(ellipse 800px 500px at 50% 20%, rgba(212, 175, 55, 0.03), transparent),
        radial-gradient(ellipse 600px 400px at 80% 80%, rgba(212, 175, 55, 0.02), transparent);
    opacity: 0.8;
}

/* ============================================
   4. Section Label
   ============================================ */
.solution__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    display: block;
}

/* ============================================
   5. Heading
   ============================================ */
.solution__heading {
    font-family: var(--font-headline);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.solution__heading-highlight {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

/* ============================================
   6. Intro Text
   ============================================ */
.solution__intro {
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 820px;
    margin-bottom: 64px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.solution__intro strong {
    color: var(--text);
    font-weight: 600;
}

/* ============================================
   7. Architecture Visualization
   ============================================ */
.solution__architecture {
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.architecture__header {
    text-align: center;
    margin-bottom: 48px;
}

.architecture__title {
    font-family: var(--font-headline);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.architecture__subtitle {
    font-size: 16px;
    color: var(--text-muted);
}

/* ============================================
   8. Layer Stack (The Core Visual)
   ============================================ */
.solution__layers {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ============================================
   9. Individual Layer
   ============================================ */
.solution__layer {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Layer left accent (color-coded by importance) */
.solution__layer[data-layer="1"]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #06D6A0, #118AB2);
}

.solution__layer[data-layer="2"]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--gold), var(--gold-muted));
}

.solution__layer[data-layer="3"]::before,
.solution__layer[data-layer="4"]::before,
.solution__layer[data-layer="5"]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.6), rgba(212, 175, 55, 0.3));
}

.solution__layer:hover {
    border-color: rgba(212, 175, 55, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.layer__content {
    padding: 28px 32px;
}

/* ============================================
   10. Layer Header
   ============================================ */
.layer__header {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    user-select: none;
}

.layer__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.solution__layer:hover .layer__icon {
    background: rgba(212, 175, 55, 0.15);
    transform: scale(1.05);
}

.layer__info {
    flex: 1;
}

.layer__title {
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.layer__badge {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   11. Layer Toggle Button
   ============================================ */
.layer__toggle {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.layer__toggle:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.2);
    color: var(--gold);
}

.layer__toggle:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.layer__toggle svg {
    transition: transform 0.3s ease;
}

.layer__toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

/* ============================================
   12. Layer Details (Expandable) - SMOOTH ANIMATION
   ============================================ */
.layer__details {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.layer__details > div {
    overflow: hidden;
}

.layer__details[aria-hidden="false"] {
    grid-template-rows: 1fr;
    opacity: 1;
}

.layer__details-inner {
    padding-top: 24px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================================
   13. Layer Features List
   ============================================ */
.layer__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.layer__features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}

.feature__icon {
    flex-shrink: 0;
    font-size: 18px;
    margin-top: 2px;
}

.layer__features strong {
    color: var(--text);
    font-weight: 600;
}

/* ============================================
   14. Layer Stat
   ============================================ */
.layer__stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
}

.stat__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat__value {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
}

/* ============================================
   15. Benefits Grid
   ============================================ */
.solution__benefits {
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.benefits__title {
    font-family: var(--font-headline);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.01em;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

/* ============================================
   16. Benefit Cards
   ============================================ */
.benefit-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
    border-color: rgba(212, 175, 55, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.benefit-card__icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card__title {
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.benefit-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ============================================
   17. Call to Action
   ============================================ */
.solution__cta {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.solution__cta-title {
    font-family: var(--font-headline);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.solution__cta-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 32px;
}

.solution__cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   18. Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   19. MOBILE OPTIMIZATIONS (≤768px)
   ============================================ */

@media (max-width: 768px) {
    
    /* ===== DISABLE/SIMPLIFY HEAVY EFFECTS ===== */
    
    /* Disable layer hover effects on mobile */
    .solution__layer:hover {
        border-color: rgba(255, 255, 255, 0.06);
        box-shadow: none;
        transform: none;
    }
    
    /* Disable icon scale animation on mobile */
    .solution__layer:hover .layer__icon {
        background: rgba(212, 175, 55, 0.1);
        transform: none;
    }
    
    /* Simplify layer icon transition */
    .layer__icon {
        transition: none;
    }
    
/* INSTANT dropdown on mobile - no animation */
    .layer__details {
        transition: none !important;
    }    
    /* Disable benefit card hover on mobile */
    .benefit-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }
    
    /* Simplify background */
    .solution__bg {
        opacity: 0.5;
    }
    
    /* Layout adjustments */
    .solution {
        padding: 60px 20px;
    }

    .solution__heading {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .solution__intro {
        font-size: 16px;
        margin-bottom: 48px;
    }

    .architecture__title {
        font-size: 28px;
    }

    .layer__content {
        padding: 24px 20px;
    }

    .layer__header {
        gap: 12px;
    }

    .layer__icon {
        width: 44px;
        height: 44px;
    }

    .layer__title {
        font-size: 18px;
    }

    .benefits__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solution__cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .solution__cta-buttons .btn {
        width: 100%;
        max-width: 100%;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .solution {
        padding: 60px 16px;
    }

    .solution__layers {
        gap: 12px;
    }

    .layer__content {
        padding: 20px 16px;
    }
    
    /* Completely disable hover effects on small screens */
    .solution__layer:hover,
    .benefit-card:hover {
        transform: none;
        box-shadow: none;
        border-color: rgba(255, 255, 255, 0.06);
    }
    
    .layer__toggle:hover {
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.06);
        color: var(--text-muted);
    }

    .layer__features li {
        font-size: 14px;
        gap: 10px;
    }

    .benefit-card {
        padding: 28px 24px;
    }

    .benefit-card__icon {
        font-size: 40px;
    }

    .benefit-card__title {
        font-size: 18px;
    }

    .benefit-card__text {
        font-size: 14px;
    }
}

/* ============================================
   20. Accessibility & Reduced Motion
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .layer__details {
        transition: none !important;
    }
    
    .solution__layer:hover,
    .benefit-card:hover {
        transform: none;
    }
}










/* =====================================================
   PALORAH - Trust Section Styles (MOBILE OPTIMIZED)
   Performance Dashboard with Gold Gradient & Glass Cards
   ===================================================== */

/* ============================================
   1. CSS Variables
   ============================================ */
:root {
    /* Bronze/Copper Colors - ACCENT ONLY */
    --bronze: #CD7F32;
    --bronze-light: #E6A157;
    --bronze-dark: #B87333;
    --copper: #B87333;
    
    /* Already defined */
    --bg-dark: #0B0B0D;
    --bg-card: #13151a;
    --text: #EDEDED;
    --text-muted: #B7B7BF;
    --gold: #D4AF37;
    --gold-light: #E8C547;
    --gold-muted: #C9A957;
    --font-headline: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', 'Open Sans', sans-serif;
}

/* ============================================
   2. Section Container
   ============================================ */
.trust {
    position: relative;
    padding: clamp(80px, 12vh, 140px) 24px;
    background: var(--bg-dark);
    overflow: hidden;
}

.trust__container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ============================================
   3. Gold Gradient Background
   ============================================ */
.trust__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: 
        radial-gradient(ellipse 900px 600px at 30% 20%, rgba(212, 175, 55, 0.06), transparent),
        radial-gradient(ellipse 700px 500px at 70% 80%, rgba(184, 134, 70, 0.04), transparent),
        linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, rgba(201, 169, 87, 0.02) 50%, transparent 100%);
    opacity: 0.7;
}

/* Subtle mesh pattern overlay */
.trust__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(212, 175, 55, 0.015) 2px, rgba(212, 175, 55, 0.015) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(212, 175, 55, 0.015) 2px, rgba(212, 175, 55, 0.015) 4px);
    opacity: 0.3;
}

/* ============================================
   4. Section Label
   ============================================ */
.trust__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    display: block;
}

/* ============================================
   5. Heading
   ============================================ */
.trust__heading {
    font-family: var(--font-headline);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.trust__heading-highlight {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

/* ============================================
   6. Intro Text
   ============================================ */
.trust__intro {
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 720px;
    margin-bottom: 64px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* ============================================
   7. Performance Metrics Grid
   ============================================ */
.trust__metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

/* ============================================
   8. Metric Cards (Glass-Morphism)
   ============================================ */
.metric-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Subtle inner glow */
.metric-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(212, 175, 55, 0.15),
        0 0 30px rgba(212, 175, 55, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

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

/* ============================================
   9. Metric Card Content
   ============================================ */
.metric-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(184, 134, 70, 0.15));
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.metric-card:hover .metric-card__icon {
    transform: scale(1.05);
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.25);
}

.metric-card__value {
    font-family: var(--font-headline);
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.metric-card__label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.metric-card__sublabel {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   10. Metric Visual Meter
   ============================================ */
.metric-card__meter {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 20px;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 999px;
    width: 0%;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

/* Animate meters on scroll */
.metric-card.is-visible .meter-fill {
    width: var(--meter-width, 95%);
}

.metric-card[data-metric="speed"] .meter-fill {
    --meter-width: 95%;
}

.metric-card[data-metric="security"] .meter-fill {
    --meter-width: 100%;
}

.metric-card[data-metric="scalability"] .meter-fill {
    --meter-width: 99%;
}

.metric-card[data-metric="compliance"] .meter-fill {
    --meter-width: 100%;
}

/* ============================================
   11. Compliance Section
   ============================================ */
.trust__compliance {
    margin-bottom: 64px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.compliance__title {
    font-family: var(--font-headline);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.compliance__subtitle {
    font-size: 15px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 40px;
}

/* ============================================
   12. Compliance Badges Grid (Expandable)
   ============================================ */
.compliance__badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.compliance-badge {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.compliance-badge:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ============================================
   13. Badge Header (Clickable)
   ============================================ */
.badge__header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 20px;
    cursor: pointer;
    user-select: none;
}

.badge__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.compliance-badge:hover .badge__icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

.badge__info {
    flex: 1;
    min-width: 0;
}

.badge__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}

.badge__subtitle {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   14. Badge Toggle Button
   ============================================ */
.badge__toggle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.badge__toggle:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.25);
    color: var(--gold);
}

.badge__toggle:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.badge__toggle svg {
    transition: transform 0.3s ease;
}

.badge__toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

/* ============================================
   15. Badge Details (Expandable)
   ============================================ */
.badge__details {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.badge__details > div {
    overflow: hidden;
}

.badge__details[aria-hidden="false"] {
    grid-template-rows: 1fr;
    opacity: 1;
}

.badge__details-inner {
    padding: 0 20px 24px 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    margin-top: -4px;
}

.badge__detail-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    margin-top: 20px;
}

.badge__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.badge__features li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
}

.badge__features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* ============================================
   16. Transparency Statement
   ============================================ */
.trust__transparency {
    margin-bottom: 64px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.transparency-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.transparency-card__icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(184, 134, 70, 0.15));
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transparency-card__content {
    flex: 1;
}

.transparency-card__title {
    font-family: var(--font-headline);
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.transparency-card__text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.transparency-card__text strong {
    color: var(--text);
    font-weight: 600;
}

/* ============================================
   17. Transparency Features List
   ============================================ */
.transparency-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.transparency-card__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-muted);
}

.feature-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ============================================
   18. Bottom CTA
   ============================================ */
.trust__cta {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

.trust__cta-text {
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 32px;
}

.trust__cta .btn {
    min-width: 280px;
}

/* ============================================
   19. Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   20. MOBILE OPTIMIZATIONS (≤768px)
   ============================================ */

@media (max-width: 768px) {
    
    /* ===== DISABLE/SIMPLIFY HEAVY EFFECTS ===== */
    
    /* Remove backdrop blur on mobile (GPU intensive) */
    .metric-card,
    .compliance-badge,
    .transparency-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    /* Disable metric card hover effects on mobile */
    .metric-card:hover {
        transform: translateY(-3px); /* Reduced from -6px */
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }
    
    .metric-card:hover::before {
        opacity: 0;
    }
    
    /* Disable icon scale animation on mobile */
    .metric-card:hover .metric-card__icon {
        transform: none;
        box-shadow: none;
    }
    
    /* Simplify icon transition */
    .metric-card__icon {
        transition: none;
    }
    
    /* Disable badge hover on mobile */
    .compliance-badge:hover {
        border-color: rgba(212, 175, 55, 0.12);
        background: rgba(255, 255, 255, 0.02);
        box-shadow: none;
    }
    
    .compliance-badge:hover .badge__icon {
        background: rgba(212, 175, 55, 0.15);
        transform: none;
    }
    
    /* INSTANT dropdown on mobile - no animation */
.badge__details {
    transition: none !important;
}
    
    /* Simplify background */
    .trust__bg {
        opacity: 0.5;
    }
    
    /* Remove mesh pattern on mobile */
    .trust__bg::after {
        display: none;
    }
    
    /* Layout adjustments */
    .trust {
        padding: 60px 20px;
    }

    .trust__heading {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .trust__intro {
        font-size: 16px;
        margin-bottom: 48px;
    }

    .trust__metrics {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .metric-card {
        padding: 32px 28px;
    }

    .metric-card__value {
        font-size: 40px;
    }

    .compliance__badges {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .badge__header {
        padding: 20px 16px;
    }

    .badge__features li {
        font-size: 13px;
    }

    .transparency-card {
        flex-direction: column;
        padding: 36px 28px;
        gap: 24px;
    }

    .transparency-card__icon {
        width: 64px;
        height: 64px;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .trust {
        padding: 60px 16px;
    }

    .metric-card {
        padding: 28px 24px;
    }
    
    /* Completely disable hover effects on small screens */
    .metric-card:hover {
        transform: none;
        box-shadow: none;
        border-color: rgba(212, 175, 55, 0.15);
        background: rgba(255, 255, 255, 0.03);
    }
    
    .badge__toggle:hover {
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.06);
        color: var(--text-muted);
    }

    .metric-card__icon {
        width: 56px;
        height: 56px;
    }

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

    .badge__header {
        padding: 18px 16px;
        gap: 12px;
    }

    .badge__icon {
        width: 40px;
        height: 40px;
    }

    .badge__title {
        font-size: 15px;
    }

    .badge__subtitle {
        font-size: 12px;
    }

    .badge__details:not([hidden]) {
        padding: 0 16px 20px 16px;
    }

    .badge__features li {
        font-size: 13px;
        padding-left: 16px;
    }

    .transparency-card {
        padding: 28px 24px;
    }

    .transparency-card__features li {
        font-size: 14px;
    }

    .trust__cta .btn {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
}

/* ============================================
   21. Accessibility & Reduced Motion
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .meter-fill {
        transition: none !important;
        width: var(--meter-width, 95%) !important;
    }
    
    .metric-card:hover,
    .compliance-badge:hover {
        transform: none;
    }
}

@media (prefers-contrast: high) {
    .metric-card,
    .compliance-badge,
    .transparency-card {
        border-width: 2px;
    }

    .trust__bg {
        opacity: 0.3;
    }
}



/* =====================================================
   PALORAH - 
Timeline Section
   MOBILE-OPTIMIZED: Heavy effects disabled on mobile
   ===================================================== */

/* ============================================
   1. Section Container
   ============================================ */
.process {
    position: relative;
    padding: clamp(80px, 12vh, 140px) 24px;
    background: var(--bg-dark);
    overflow: hidden;
}

.process__container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ============================================
   2. Background
   ============================================ */
.process__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.8;
}

/* Desktop: Rich gradient backgrounds */
@media (min-width: 769px) {
    .process__bg {
        background: 
            radial-gradient(ellipse 800px 500px at 20% 30%, rgba(212, 175, 55, 0.04), transparent),
            radial-gradient(ellipse 600px 400px at 80% 70%, rgba(212, 175, 55, 0.03), transparent);
    }
}

/* Mobile: Simplified background for performance */
@media (max-width: 768px) {
    .process__bg {
        background: radial-gradient(ellipse 600px 400px at 50% 50%, rgba(212, 175, 55, 0.02), transparent);
    }
}

/* ============================================
   3. Section Label
   ============================================ */
.process__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    display: block;
}

/* ============================================
   4. Heading
   ============================================ */
.process__heading {
    font-family: var(--font-headline);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.process__heading-highlight {
    color: var(--gold);
    display: block;
}

/* ============================================
   5. Intro Text
   ============================================ */
.process__intro {
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 820px;
    margin-bottom: 64px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.process__intro strong {
    color: var(--text);
    font-weight: 600;
}

/* ============================================
   6. Timeline Container
   ============================================ */
.process__timeline {
    position: relative;
    margin-bottom: 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

/* ============================================
   7. Progress Line (Connecting Steps)
   ============================================ */
.timeline__progress-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(212, 175, 55, 0.15);
    z-index: 1;
}

.progress-line__fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-muted));
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Desktop: Glow effect on progress line */
@media (min-width: 769px) {
    .progress-line__fill {
        box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
    }
}

/* Mobile: No glow for performance */
@media (max-width: 768px) {
    .progress-line__fill {
        box-shadow: none;
    }
}

/* Animate progress line on scroll */
.process__timeline.is-visible .progress-line__fill {
    width: 100%;
}

/* ============================================
   8. Timeline Steps - Desktop Horizontal
   ============================================ */
@media (min-width: 969px) {
    .process__timeline {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0;
        padding-top: 80px;
    }

    .timeline__progress-line {
        top: 40px;
        left: 60px;
        right: 60px;
    }
}

/* ============================================
   9. Timeline Steps
   ============================================ */
.timeline__step {
    position: relative;
    margin-bottom: 48px;
}

@media (min-width: 969px) {
    .timeline__step {
        margin-bottom: 0;
    }
}

/* ============================================
   10. Step Node (Number Circle)
   ============================================ */
.step__node {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    z-index: 2;
}

.step__number {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-muted) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headline);
    font-size: 28px;
    font-weight: 700;
    color: var(--bg-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Desktop: Box shadow */
@media (min-width: 769px) {
    .step__number {
        box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    }
    
    .timeline__step:hover .step__number {
        transform: scale(1.05);
        box-shadow: 0 6px 24px rgba(212, 175, 55, 0.5);
    }
}

/* Mobile: No shadow for performance */
@media (max-width: 768px) {
    .step__number {
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
    }
}

.step__icon {
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

/* ============================================
   11. Step Content (Compact Cards)
   ============================================ */
.step__content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    overflow: visible;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Desktop: Backdrop filter and hover effects */
@media (min-width: 769px) {
    .step__content {
        backdrop-filter: blur(8px);
    }
    
    .step__content:hover {
        border-color: rgba(212, 175, 55, 0.25);
        background: rgba(255, 255, 255, 0.04);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }
}

/* Mobile: No backdrop filter or hover effects */
@media (max-width: 768px) {
    .step__content {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: none;
    }
}

/* Active state when step is selected */
.timeline__step.is-active .step__content {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
}

/* Desktop: Active shadow */
@media (min-width: 769px) {
    .timeline__step.is-active .step__content {
        box-shadow: 0 8px 32px rgba(212, 175, 55, 0.25);
    }
    
    .timeline__step.is-active .step__number {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    }
}

/* Mobile: Reduced active shadow */
@media (max-width: 768px) {
    .timeline__step.is-active .step__content {
        box-shadow: 0 4px 16px rgba(212, 175, 55, 0.15);
    }
}

/* ============================================
   12. Step Header (Clickable)
   ============================================ */
.step__header {
    padding: 28px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.step__title {
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
    padding-right: 40px;
}

.step__duration {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.step__toggle {
    position: absolute;
    top: 28px;
    right: 24px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Desktop: Hover effects */
@media (min-width: 769px) {
    .step__toggle:hover {
        background: rgba(212, 175, 55, 0.1);
        border-color: rgba(212, 175, 55, 0.2);
        color: var(--gold);
    }
}

/* Mobile: Remove hover, keep active state only */
@media (max-width: 768px), (pointer: coarse) {
    .step__toggle:hover {
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.06);
        color: var(--text-muted);
    }
    
    .step__toggle:active {
        background: rgba(212, 175, 55, 0.1);
        border-color: rgba(212, 175, 55, 0.2);
        color: var(--gold);
    }
}

.step__toggle:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.step__toggle svg {
    transition: transform 0.3s ease;
}

.step__toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.step__summary {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-top: 16px;
    padding-right: 40px;
    padding-left: 8px;
    letter-spacing: 0.01em;
}

/* ============================================
   13. Step Data (Hidden)
   ============================================ */
.step__data {
    display: none;
}

/* ============================================
   14. SHARED DETAILS AREA (NEW)
   ============================================ */
.shared-details {
    width: 100%;
    margin-top: 48px;
    margin-bottom: 64px;
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.shared-details__inner {
    overflow: hidden;
}

.shared-details[aria-hidden="false"] {
    grid-template-rows: 1fr;
    opacity: 1;
}

.shared-details__content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 40px;
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Desktop: Backdrop filter */
@media (min-width: 769px) {
    .shared-details__content {
        backdrop-filter: blur(12px);
    }
}

/* Mobile: No backdrop filter */
@media (max-width: 768px) {
    .shared-details__content {
        backdrop-filter: none;
        background: rgba(255, 255, 255, 0.03);
    }
}

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

/* Desktop: Two column layout for details */
@media (min-width: 769px) {
    .shared-details__content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

/* ============================================
   15. Shared Details - Sections
   ============================================ */
.step__section {
    margin-bottom: 32px;
}

.step__section:last-child {
    margin-bottom: 0;
}

.step__section-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

/* ============================================
   16. Step Lists
   ============================================ */
.step__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step__list li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    padding-left: 24px;
    position: relative;
}

.step__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 20px;
}

/* ============================================
   17. Deliverables List
   ============================================ */
.step__deliverables {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step__deliverables li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

.deliverable__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deliverable__icon svg {
    width: 100%;
    height: 100%;
    color: var(--gold);
    stroke: currentColor;
}

/* ============================================
   18. Process Summary Stats
   ============================================ */
.process__summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 64px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.summary__stat {
    display: flex;
    align-items: center;
    gap: 20px;
}

.summary__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary__icon svg {
    width: 100%;
    height: 100%;
    color: var(--gold);
    stroke: currentColor;
}

.summary__value {
    font-family: var(--font-headline);
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 4px;
}

.summary__label {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ============================================
   19. CTA
   ============================================ */
.process__cta {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.process__cta-title {
    font-family: var(--font-headline);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.process__cta-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 32px;
}

.process__cta .btn {
    min-width: 280px;
}

/* ============================================
   20. Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   21. Responsive Design
   ============================================ */

/* Tablets and below: Vertical layout */
@media (max-width: 968px) {
    .process {
        padding: 60px 20px;
    }

    .process__heading {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .process__intro {
        font-size: 16px;
        margin-bottom: 48px;
    }

    .timeline__progress-line {
        left: 39px;
        top: 80px;
        bottom: 0;
        width: 2px;
        height: auto;
    }

    .progress-line__fill {
        width: 100% !important;
        height: 0%;
        transition: height 2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .process__timeline.is-visible .progress-line__fill {
        height: 100%;
    }

    .timeline__step {
        display: grid;
        grid-template-columns: 80px 1fr;
        gap: 24px;
        align-items: start;
    }

    .step__node {
        margin: 0;
    }

    .step__content {
        margin-top: 0;
    }

    .shared-details {
        margin-top: 32px;
    }

    .shared-details__content {
        padding: 28px;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .process__summary {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .process {
        padding: 60px 16px;
    }

    .step__node {
        width: 64px;
        height: 64px;
    }

    .step__number {
        font-size: 24px;
    }

    .timeline__progress-line {
        left: 31px;
    }

    .timeline__step {
        grid-template-columns: 64px 1fr;
        gap: 16px;
    }

    .step__header {
        padding: 20px 16px;
    }

    .step__title {
        font-size: 18px;
    }

    .shared-details__content {
        padding: 24px;
    }

    .step__list li,
    .step__deliverables li {
        font-size: 14px;
    }

    .process__summary {
        text-align: center;
    }

    .summary__stat {
        flex-direction: column;
        gap: 12px;
    }

    .process__cta .btn {
        width: 100%;
        max-width: 100%;
    }
}

/* ============================================
   22. Touch Device Optimizations
   ============================================ */

/* Remove all webkit tap highlights on touch devices */
@media (pointer: coarse) {
    * {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
    }
    
    .step__header,
    .step__toggle,
    .btn {
        -webkit-tap-highlight-color: transparent;
    }
}

/* ============================================
   23. Accessibility
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .progress-line__fill {
        transition: none;
    }

    .shared-details {
        transition: none;
    }
}

@media (prefers-contrast: high) {
    .step__content {
        border-width: 2px;
    }

    .step__number {
        border: 2px solid var(--text);
    }

    .shared-details__content {
        border-width: 2px;
    }
}

/* Focus visible for keyboard navigation */
.step__header:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
    border-radius: 12px;
}

/* ============================================
   24. Performance Optimizations
   ============================================ */

/* Force GPU acceleration on desktop only */
@media (min-width: 769px) {
    .step__number,
    .step__content,
    .shared-details__content {
        transform: translateZ(0);
        will-change: transform;
    }
}

/* Mobile: No GPU acceleration hints */
@media (max-width: 768px) {
    .step__number,
    .step__content,
    .shared-details__content {
        will-change: auto;
    }
}

/* ============================================
   25. MOBILE INLINE DETAILS (NEW)
   ============================================ */

/* Mobile: Inline details container */
@media (max-width: 768px) {
    
    /* Hide the shared details area completely on mobile */
    .shared-details {
        display: none !important;
    }
    
    /* Inline details that appear directly below each step */
    .step__inline-details {
        margin-top: 16px;
        /* Full width - extend over the left gold line */
        margin-left: -4px; /* Compensate for the gold accent line width */
        width: calc(100% + 4px);
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(212, 175, 55, 0.15);
        border-radius: 16px;
        overflow: hidden;
        /* INSTANT transitions on mobile */
        transition: none !important;
    }
    
    .step__inline-details[aria-hidden="true"] {
        display: none;
    }
    
    .step__inline-details[aria-hidden="false"] {
        display: block;
        animation: none; /* No animation on mobile */
    }
    
    .step__inline-details-inner {
        padding: 24px 20px;
    }
    
    /* Stack sections vertically on mobile */
    .step__inline-details .step__section {
        margin-bottom: 24px;
    }
    
    .step__inline-details .step__section:last-child {
        margin-bottom: 0;
    }
    
    /* Remove focus outlines and glow on mobile */
    .step__header:focus-visible,
    .step__toggle:focus-visible,
    .step__content:focus-visible {
        outline: none !important;
    }
    
    /* Remove active step glow on mobile */
    .timeline__step.is-active .step__content {
        box-shadow: none !important;
        border-color: rgba(212, 175, 55, 0.15);
    }
    
    .timeline__step.is-active .step__number {
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2) !important;
    }
}

/* Desktop: Keep shared details, hide inline */
@media (min-width: 769px) {
    .step__inline-details {
        display: none !important;
    }
    
    /* Keep smooth transitions on desktop */
    .shared-details {
        transition: grid-template-rows 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
}


/* =====================================================
   PALORAH - Portfolio + Testimonials Section (FINALIZED)
   Project cards with hover overlay + testimonial quotes
   ===================================================== */

/* ============================================
   1. Section Container
   ============================================ */
.portfolio {
    position: relative;
    padding: clamp(80px, 12vh, 140px) 24px;
    background: var(--bg-dark);
    overflow: hidden;
}

.portfolio__container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ============================================
   2. Background
   ============================================ */
.portfolio__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: 
        radial-gradient(ellipse 800px 600px at 80% 20%, rgba(212, 175, 55, 0.05), transparent),
        radial-gradient(ellipse 700px 500px at 20% 80%, rgba(212, 175, 55, 0.03), transparent);
    opacity: 0.7;
}

/* ============================================
   3. Section Label
   ============================================ */
.portfolio__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

/* ============================================
   4. Heading
   ============================================ */
.portfolio__heading {
    font-family: var(--font-headline);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.portfolio__heading-highlight {
    color: var(--gold);
    display: block;
}

/* ============================================
   5. Intro Text
   ============================================ */
.portfolio__intro {
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 720px;
    margin-bottom: 64px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* ============================================
   6. Portfolio Showcase (Side-by-Side Layout)
   ============================================ */
.portfolio__showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

/* ============================================
   7. Project Spotlight Card (LEFT)
   ============================================ */
.project-spotlight {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-spotlight:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ============================================
   8. Project Image with Hover Overlay
   ============================================ */
.project-spotlight__image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #0a0a0a;
    cursor: pointer;
}

.project-spotlight__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.4s ease;
}

.project-spotlight:hover .project-spotlight__image {
    transform: scale(1.05);
    filter: brightness(0.6) grayscale(0.3);
}

/* ============================================
   9. Click Hint Badge (Always Visible)
   ============================================ */
.project-spotlight__hint {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(212, 175, 55, 0.95);
    backdrop-filter: blur(8px);
    color: var(--bg-dark);
    padding: 12px 20px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: gentlePulse 2s ease-in-out infinite;
    user-select: none;
}

.project-spotlight__hint:hover {
    background: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.6);
}

.project-spotlight:hover .project-spotlight__hint {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.hint__icon {
    font-size: 18px;
    animation: pointDown 1.5s ease-in-out infinite;
}

.hint__text {
    letter-spacing: 0.01em;
}

/* Pulse animation for hint badge */
@keyframes gentlePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 24px rgba(212, 175, 55, 0.6);
    }
}

/* Point down animation for icon */
@keyframes pointDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(3px);
    }
}

/* ============================================
   10. Hover Overlay
   ============================================ */
.project-spotlight__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(184, 115, 51, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.project-spotlight:hover .project-spotlight__overlay {
    opacity: 1;
    pointer-events: auto;
}

.project-spotlight__cta {
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(10px);
    opacity: 0;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
}

.project-spotlight:hover .project-spotlight__cta {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.1s;
}

.project-spotlight__cta:hover {
    background: #e6a830;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
}

.project-spotlight__cta svg {
    transition: transform 0.3s ease;
}

.project-spotlight__cta:hover svg {
    transform: translateX(4px);
}

/* ============================================
   11. Project Content
   ============================================ */
.project-spotlight__content {
    padding: 36px 32px;
}

.project-spotlight__title {
    font-family: var(--font-headline);
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.project-spotlight__description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 28px;
}

/* ============================================
   12. Project Stats
   ============================================ */
.project-spotlight__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 28px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.stat-item__value {
    font-family: var(--font-headline);
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 6px;
}

.stat-item__label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   13. Project Footer (Client & Rating)
   ============================================ */
.project-spotlight__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-spotlight__client {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.client__label {
    color: var(--text-muted);
    font-weight: 600;
}

.client__name {
    color: var(--text);
    font-weight: 700;
}

.project-spotlight__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--gold);
}

.project-spotlight__rating svg {
    width: 20px;
    height: 20px;
}

.rating__text {
    margin-left: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

/* ============================================
   14. Featured Testimonial (RIGHT)
   ============================================ */
.featured-testimonial {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.featured-testimonial__label {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.featured-testimonial__card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    padding: 40px 36px;
    margin: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-testimonial__card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.testimonial__quote-icon {
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial__text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
    font-style: italic;
    margin-bottom: 28px;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 16px;
}

.author__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #c29d31);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headline);
    font-size: 24px;
    font-weight: 700;
    color: var(--bg-dark);
    flex-shrink: 0;
}

.author__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.author__title {
    font-size: 14px;
    color: var(--text-muted);
}

.testimonial__rating {
    font-size: 20px;
    text-align: center;
}

/* ============================================
   15. Benefits List (FIXED)
   ============================================ */
.featured-testimonial__benefits {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 16px;
    padding: 28px 24px;
}

.benefits__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.benefits__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.benefits__list li {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.benefits__list li::before {
    content: "✓";
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================
   16. Bottom CTA
   ============================================ */
.portfolio__cta {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

.portfolio__cta-title {
    font-family: var(--font-headline);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.portfolio__cta-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 32px;
}

.portfolio__cta .btn {
    min-width: 280px;
}

/* ============================================
   17. Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   18. Responsive Design
   ============================================ */

/* Tablets */
@media (max-width: 968px) {
    .portfolio {
        padding: 60px 20px;
    }

    .portfolio__heading {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .portfolio__intro {
        font-size: 16px;
        margin-bottom: 48px;
    }

    /* Stack showcase vertically on tablet */
    .portfolio__showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .featured-testimonial {
        position: static;
    }

    .project-spotlight__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .stat-item__value {
        font-size: 28px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .portfolio {
        padding: 60px 16px;
    }

    .portfolio__showcase {
        gap: 32px;
    }

    .project-spotlight__content {
        padding: 28px 24px;
    }

    .project-spotlight__title {
        font-size: 24px;
    }

    .project-spotlight__description {
        font-size: 15px;
    }

    /* Make hint badge more prominent on mobile */
    .project-spotlight__hint {
        bottom: 16px;
        right: 16px;
        padding: 10px 16px;
        font-size: 14px;
    }

    .hint__icon {
        font-size: 16px;
    }

    .project-spotlight__stats {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: left;
    }

    .stat-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-item__value {
        font-size: 24px;
        order: 2;
    }

    .stat-item__label {
        order: 1;
        text-align: left;
    }

    .project-spotlight__cta {
        padding: 16px 28px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }

    .featured-testimonial__card {
        padding: 28px 24px;
    }

    .testimonial__text {
        font-size: 15px;
    }

    .author__avatar {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .featured-testimonial__benefits {
        padding: 24px 20px;
    }

    .benefits__list li {
        font-size: 14px;
    }

    .portfolio__cta .btn {
        width: 100%;
        max-width: 100%;
    }
}

/* ============================================
   19. Accessibility
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    .project-spotlight,
    .featured-testimonial__card {
        border-width: 2px;
    }
}

/* Focus states for keyboard navigation */
.project-spotlight__cta:focus-visible,
.project-spotlight__hint:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}


/* =====================================================
   PORTFOLIO FIXES - Added Nov 30, 2024
   ===================================================== */

/* Fix #1: Project Image */
.project-spotlight__image-wrapper > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.4s ease;
}

.project-spotlight:hover .project-spotlight__image-wrapper > img {
    transform: scale(1.05);
    filter: brightness(0.6) grayscale(0.3);
}

/* Fix #2: Avatar Image Sizing */
.author__avatar {
    overflow: hidden !important;
    width: 80px !important;
    height: 80px !important;
    border: 3px solid var(--gold);
}

.author__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.author__avatar:has(img) {
    background: transparent;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .author__avatar {
        width: 64px !important;
        height: 64px !important;
    }
}



/* =====================================================
   PALORAH - FAQ Section (MOBILE OPTIMIZED)
   Accordion-style expandable questions
   ===================================================== */

/* ============================================
   1. Section Container
   ============================================ */
.faq {
    position: relative;
    padding: clamp(80px, 12vh, 140px) 24px;
    background: var(--bg-dark);
    overflow: hidden;
}

.faq__container {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ============================================
   2. Background
   ============================================ */
.faq__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: 
        radial-gradient(ellipse 700px 500px at 50% 20%, rgba(212, 175, 55, 0.04), transparent),
        radial-gradient(ellipse 600px 400px at 50% 80%, rgba(212, 175, 55, 0.03), transparent);
    opacity: 0.8;
}

/* ============================================
   3. Section Label
   ============================================ */
.faq__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

/* ============================================
   4. Heading
   ============================================ */
.faq__heading {
    font-family: var(--font-headline);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.faq__heading-highlight {
    color: var(--gold);
    display: block;
}

/* ============================================
   5. Intro Text
   ============================================ */
.faq__intro {
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 64px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* ============================================
   6. FAQ Accordion Container
   ============================================ */
.faq__accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

/* ============================================
   7. FAQ Item
   ============================================ */
.faq-item {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.25);
    background: rgba(255, 255, 255, 0.03);
}

.faq-item.is-open {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ============================================
   8. FAQ Question (Button)
   ============================================ */
.faq-item__question {
    width: 100%;
    padding: 28px 32px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-item__question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-item__question:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: -2px;
}

/* ============================================
   9. Question Icon
   ============================================ */
.question__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.is-open .question__icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

/* ============================================
   10. Question Text
   ============================================ */
.question__text {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

/* ============================================
   11. Toggle Arrow
   ============================================ */
.question__toggle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item__question:hover .question__toggle {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.question__toggle svg {
    transition: transform 0.3s ease;
}

.faq-item__question[aria-expanded="true"] .question__toggle svg {
    transform: rotate(180deg);
}

/* ============================================
   12. FAQ Answer (Expandable) - SMOOTH GRID ANIMATION
   ============================================ */
.faq-item__answer {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item__answer > div {
    overflow: hidden;
}

.faq-item__answer[aria-hidden="false"] {
    grid-template-rows: 1fr;
    opacity: 1;
}

/* Inner wrapper for padding */
.faq-item__answer-inner {
    padding: 0 32px 32px 92px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: -8px;
}

.faq-item__answer p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.faq-item__answer p:last-child {
    margin-bottom: 0;
}

.faq-item__answer strong {
    color: var(--text);
    font-weight: 600;
}

/* ============================================
   13. Answer Lists
   ============================================ */
.faq-item__answer ul {
    list-style: none;
    margin: 16px 0;
    padding: 0;
}

.faq-item__answer ul li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    padding-left: 28px;
    margin-bottom: 10px;
    position: relative;
}

.faq-item__answer ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.faq-item__answer ul li strong {
    color: var(--text);
    display: inline-block;
}

/* ============================================
   14. Bottom CTA
   ============================================ */
.faq__cta {
    text-align: center;
    padding: 48px 32px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.faq__cta-title {
    font-family: var(--font-headline);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.faq__cta-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 32px;
}

.faq__cta .btn {
    min-width: 280px;
}

/* ============================================
   15. Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   16. Responsive Design - Tablets
   ============================================ */
@media (max-width: 768px) {
    .faq {
        padding: 60px 20px;
    }

    .faq__heading {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .faq__intro {
        font-size: 16px;
        margin-bottom: 48px;
    }

    .faq-item__question {
        padding: 24px 20px;
        gap: 16px;
    }

    .question__icon {
        width: 36px;
        height: 36px;
    }

    .question__text {
        font-size: 16px;
    }

    .faq-item__answer-inner {
        padding: 0 20px 24px 72px;
    }

    .faq-item__answer p,
    .faq-item__answer ul li {
        font-size: 15px;
    }

    .faq__cta {
        padding: 36px 24px;
    }
    
/* ====== MOBILE PERFORMANCE OPTIMIZATIONS ====== */

/* Disable fadeInUp animations on mobile for instant visibility */
.faq__label,
.faq__heading,
.faq__intro,
.faq__accordion,
.faq__cta {
    animation: none !important;
    opacity: 1 !important;
}

/* INSTANT transitions on mobile - NO animation */
.faq-item {
    transition: none;
    backdrop-filter: none !important; /* ← ADD THIS */
    background: rgba(255, 255, 255, 0.04); /* ← ADD THIS */
}

.faq-item__answer {
    transition: none !important;
}

.question__toggle svg {
    transition: transform 0.2s ease; /* Keep arrow rotation smooth */
}

  /* Simplify background on mobile - disable gradients */
.faq__bg {
    background: rgba(212, 175, 55, 0.02) !important;
    opacity: 1 !important;
}
  
/* Reset hover effects on mobile */
.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.1);
    background: rgba(255, 255, 255, 0.04); /* ← MATCH BASE */
}

.faq-item__question:hover {
    background: transparent;
}

.faq-item__question:hover .question__toggle {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
}

/* Remove focus glow on mobile */
.faq-item__question:focus-visible {
    outline: none;
}

/* Lighter shadows on mobile */
.faq-item.is-open {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
  
  
  
  
  
  
/* ============================================
   17. Responsive Design - Mobile
   ============================================ */
@media (max-width: 480px) {
    .faq {
        padding: 60px 16px;
    }

    .faq-item__question {
        padding: 20px 16px;
        gap: 12px;
    }

    .question__icon {
        width: 32px;
        height: 32px;
    }

    .question__icon svg {
        width: 20px;
        height: 20px;
    }

    .question__text {
        font-size: 15px;
    }

    .question__toggle {
        width: 28px;
        height: 28px;
    }

    .faq-item__answer-inner {
        padding: 0 16px 20px 16px;
    }

    .faq-item__answer p {
        font-size: 14px;
    }

    .faq-item__answer ul li {
        font-size: 14px;
        padding-left: 24px;
    }

    .faq__cta {
        padding: 32px 20px;
    }

    .faq__cta .btn {
        width: 100%;
        max-width: 100%;
    }
    
/* INSTANT on small devices - no animation */
.faq-item__answer {
    transition: none !important;
}
.question__toggle svg {
    transition: transform 0.15s ease;
}
}  /* ← ADD THIS CLOSING BRACE! */
}
/* ============================================
   18. Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    .faq-item {
        border-width: 2px;
    }

    .question__icon {
        border: 2px solid var(--gold);
    }
}

/* Keyboard navigation */
.faq-item__question:focus {
    outline: none;
}

.faq-item__question:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: -2px;
}





/* =====================================================
   PALORAH - Pricing Section (MOBILE OPTIMIZED)
   Three transparent B2B packages
   ===================================================== */

/* ============================================
   1. Section Container
   ============================================ */
.pricing {
    position: relative;
    padding: clamp(80px, 12vh, 140px) 24px;
    background: var(--bg-dark);
    overflow: hidden;
}

.pricing__container {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ============================================
   2. Background
   ============================================ */
.pricing__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: 
        radial-gradient(ellipse 900px 700px at 50% 30%, rgba(212, 175, 55, 0.06), transparent),
        radial-gradient(ellipse 800px 600px at 20% 70%, rgba(184, 115, 51, 0.04), transparent),
        radial-gradient(ellipse 800px 600px at 80% 70%, rgba(212, 175, 55, 0.03), transparent);
    opacity: 0.7;
}

/* ============================================
   3. Section Label
   ============================================ */
.pricing__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

/* ============================================
   4. Heading
   ============================================ */
.pricing__heading {
    font-family: var(--font-headline);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--text);
    text-align: center;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.pricing__heading-highlight {
    color: var(--gold);
    display: block;
}

/* ============================================
   5. Intro Text
   ============================================ */
.pricing__intro {
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7;
    color: var(--text-muted);
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* ============================================
   6. Pricing Grid
   ============================================ */
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

/* ============================================
   7. Pricing Cards
   ============================================ */
.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* ============================================
   8. Featured Card (Middle Tier)
   ============================================ */
.pricing-card--featured {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(184, 115, 51, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
}

.pricing-card--featured:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
}

/* ============================================
   9. Featured Badge
   ============================================ */
.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-muted));
    color: var(--bg-dark);
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.pricing-card__badge svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   10. Card Header
   ============================================ */
.pricing-card__header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-card__title {
    font-family: var(--font-headline);
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.pricing-card--featured .pricing-card__title {
    color: var(--gold);
}

.pricing-card__subtitle {
    font-size: 15px;
    color: var(--text-muted);
}

/* ============================================
   11. Price Display
   ============================================ */
.pricing-card__price {
    text-align: center;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.price__currency {
    font-size: 16px;
    color: var(--text-muted);
    text-transform: lowercase;
}

.price__amount {
    font-family: var(--font-headline);
    font-size: 48px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.pricing-card--featured .price__amount {
    color: var(--gold);
}

.price__period {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================
   12. Features List
   ============================================ */
.pricing-card__features {
    flex: 1;
    margin-bottom: 32px;
}

.features__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}

.feature-icon {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
}

.feature-item strong {
    color: var(--text);
}

/* ============================================
   13. Card Footer (CTA)
   ============================================ */
.pricing-card__footer {
    margin-top: auto;
}

.pricing-card__footer .btn {
    width: 100%;
    justify-content: center;
}

/* ============================================
   14. Additional Info Note
   ============================================ */
.pricing__note {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    padding: 32px 40px;
    margin-bottom: 64px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.pricing__note p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 12px;
}

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

.pricing__note strong {
    color: var(--gold);
    font-weight: 600;
}

/* ============================================
   15. Bottom CTA
   ============================================ */
.pricing__cta {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

.pricing__cta-title {
    font-family: var(--font-headline);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.pricing__cta-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 32px;
}

.pricing__cta .btn {
    min-width: 320px;
}

/* ============================================
   16. Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   17. Responsive Design
   ============================================ */

/* Large Tablets */
@media (max-width: 1024px) {
    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card--featured {
        transform: scale(1);
    }

    .pricing-card--featured:hover {
        transform: translateY(-8px) scale(1);
    }
}

/* Tablets */
@media (max-width: 768px) {
    .pricing {
        padding: 60px 20px;
    }

    .pricing__heading {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .pricing__intro {
        font-size: 16px;
        margin-bottom: 48px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card__title {
        font-size: 24px;
    }

    .price__amount {
        font-size: 40px;
    }

    .pricing__note {
        padding: 24px 28px;
    }
    
    /* ====== MOBILE PERFORMANCE OPTIMIZATIONS ====== */
    
    /* Disable fadeInUp animations on mobile for instant visibility */
    .pricing__label,
    .pricing__heading,
    .pricing__intro,
    .pricing__grid,
    .pricing__note,
    .pricing__cta {
        animation: none !important;
        opacity: 1 !important;
    }
    
    /* Remove backdrop blur - MAJOR performance gain */
    .pricing-card,
    .pricing-card--featured {
        backdrop-filter: none !important;
        background: rgba(255, 255, 255, 0.04);
    }
    
    .pricing-card--featured {
        background: rgba(212, 175, 55, 0.08);
    }
    
    /* Simplify background on mobile - disable complex gradients */
    .pricing__bg {
        background: rgba(212, 175, 55, 0.03) !important;
        opacity: 1 !important;
    }
    
    /* Disable hover transforms on mobile (touch devices) */
    .pricing-card:hover,
    .pricing-card--featured:hover {
        transform: none;
        box-shadow: none;
    }
    
    /* Remove featured card scale on mobile */
    .pricing-card--featured {
        transform: none;
        box-shadow: 0 8px 24px rgba(212, 175, 55, 0.1);
    }
    
    /* Faster transitions on mobile */
    .pricing-card {
        transition: border-color 0.2s ease;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .pricing {
        padding: 60px 16px;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .pricing-card__badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .pricing-card__title {
        font-size: 22px;
    }

    .pricing-card__subtitle {
        font-size: 14px;
    }

    .pricing-card__price {
        padding: 24px 0;
    }

    .price__amount {
        font-size: 36px;
    }

    .feature-item {
        font-size: 14px;
        gap: 10px;
    }

    .feature-icon {
        width: 18px;
        height: 18px;
    }

    .pricing__note {
        padding: 20px 24px;
    }

    .pricing__note p {
        font-size: 14px;
    }

    .pricing__cta .btn {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
}

/* ============================================
   18. Accessibility
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    .pricing-card,
    .pricing-card--featured {
        border-width: 2px;
    }

    .pricing__note {
        border-width: 2px;
    }
}

/* Focus states */
.pricing-card:focus-within {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}





/* =====================================================
   PALORAH - Contact / Final CTA Section (MOBILE OPTIMIZED)
   Lead capture form with validation
   ===================================================== */

/* ============================================
   1. Section Container
   ============================================ */
.contact {
    position: relative;
    padding: clamp(80px, 12vh, 140px) 24px;
    background: var(--bg-dark);
    overflow: hidden;
}

.contact__container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ============================================
   2. Background
   ============================================ */
.contact__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: 
        radial-gradient(ellipse 1000px 800px at 50% 50%, rgba(212, 175, 55, 0.08), transparent),
        radial-gradient(ellipse 800px 600px at 20% 20%, rgba(184, 115, 51, 0.05), transparent),
        radial-gradient(ellipse 800px 600px at 80% 80%, rgba(212, 175, 55, 0.04), transparent);
    opacity: 0.8;
}

/* ============================================
   3. Section Label
   ============================================ */
.contact__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

/* ============================================
   4. Heading
   ============================================ */
.contact__heading {
    font-family: var(--font-headline);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--text);
    text-align: center;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.contact__heading-highlight {
    color: var(--gold);
    display: block;
}

/* ============================================
   5. Intro Text
   ============================================ */
.contact__intro {
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7;
    color: var(--text-muted);
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* ============================================
   6. Contact Grid
   ============================================ */
.contact__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: start;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

/* ============================================
   7. Form Wrapper
   ============================================ */
.contact__form-wrapper {
    position: relative;
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 24px;
    padding: 48px 40px;
    transition: all 0.3s ease;
}

.contact-form:hover {
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* ============================================
   8. Form Groups
   ============================================ */
.form-group {
    margin-bottom: 28px;
}

.form-group:last-of-type {
    margin-bottom: 32px;
}

/* ============================================
   9. Form Labels
   ============================================ */
.form-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

.label-optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 13px;
}

/* Character Counter */
.char-counter {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: auto;
}

.char-counter.is-warning {
    color: #f59e0b;
}

.char-counter.is-danger {
    color: #ef4444;
}

/* ============================================
   10. Form Inputs
   ============================================ */
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 16px;
    color: var(--text);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:hover,
.form-textarea:hover,
.form-select:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

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

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

.form-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

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

/* ============================================
   11. Validation States
   ============================================ */
.form-input.is-invalid,
.form-textarea.is-invalid,
.form-select.is-invalid {
    border-color: #ef4444;
}

.form-input.is-valid,
.form-textarea.is-valid,
.form-select.is-valid {
    border-color: #10b981;
}

.form-error {
    display: block;
    font-size: 13px;
    color: #ef4444;
    margin-top: 8px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.form-error.is-visible {
    opacity: 1;
    height: auto;
    margin-top: 8px;
}

/* ============================================
   12. Checkbox Styling
   ============================================ */
.form-group--checkbox {
    margin-bottom: 32px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.form-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkbox__box {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.checkbox__box svg {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
    color: var(--bg-dark);
}

.form-checkbox:hover .checkbox__box {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.form-checkbox input:checked + .checkbox__box {
    background: var(--gold);
    border-color: var(--gold);
}

.form-checkbox input:checked + .checkbox__box svg {
    opacity: 1;
    transform: scale(1);
}

.form-checkbox input:focus-visible + .checkbox__box {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.checkbox__label {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

.checkbox__label a {
    color: var(--gold);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.checkbox__label a:hover {
    color: var(--gold-muted);
}

/* ============================================
   13. Submit Button
   ============================================ */
.contact-form .btn--large {
    width: 100%;
    padding: 20px 32px;
    font-size: 18px;
    position: relative;
}

.btn__text {
    transition: opacity 0.3s ease;
}

.btn__loader {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
}

.btn__loader svg {
    animation: spin 0.8s linear infinite;
}

.contact-form.is-submitting .btn__text {
    opacity: 0;
}

.contact-form.is-submitting .btn__loader {
    opacity: 1;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   14. Form Note
   ============================================ */
.form-note {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
}

/* ============================================
   15. Success Message
   ============================================ */
.contact-form__success {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.contact-form__success:not([hidden]) {
    opacity: 1;
    pointer-events: auto;
}

.success__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success__title {
    font-family: var(--font-headline);
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.success__message {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 400px;
}

.success__message strong {
    color: var(--gold);
}

/* ============================================
   16. Info Cards (Right Side)
   ============================================ */
.contact__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.info-card--highlight {
    border-color: rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.04);
}

.info-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.info-card__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ============================================
   17. Contact Options
   ============================================ */
.contact-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    color: var(--text);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-option:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--gold);
}

.contact-option svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* ============================================
   18. Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   19. MOBILE OPTIMIZATIONS (≤768px)
   ============================================ */

@media (max-width: 768px) {
    
    /* ===== DISABLE HEAVY ANIMATIONS ===== */
    
    /* Disable fadeInUp animations on mobile for instant visibility */
    .contact__label,
    .contact__heading,
    .contact__intro,
    .contact__grid {
        animation: none !important;
        opacity: 1 !important;
    }
    
    /* Remove backdrop blur - MAJOR performance gain */
    .contact-form,
    .info-card,
    .contact-form__success {
        backdrop-filter: none !important;
    }
    
    .contact-form {
        background: rgba(255, 255, 255, 0.04);
    }
    
    .info-card {
        background: rgba(255, 255, 255, 0.03);
    }
    
    .contact-form__success {
        background: rgba(26, 26, 26, 0.98);
    }
    
    /* Simplify background on mobile - disable complex gradients */
    .contact__bg {
        background: radial-gradient(ellipse 600px 400px at 50% 50%, rgba(212, 175, 55, 0.04), transparent) !important;
        opacity: 1 !important;
    }
    
    /* Disable hover effects on mobile (touch devices) */
    .contact-form:hover,
    .info-card:hover {
        border-color: rgba(212, 175, 55, 0.1);
        box-shadow: none;
    }
    
    .form-input:hover,
    .form-textarea:hover,
    .form-select:hover {
        border-color: rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.03);
    }
    
    .form-checkbox:hover .checkbox__box {
        border-color: rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.03);
    }
    
    .contact-option:hover {
        background: rgba(255, 255, 255, 0.02);
        border-color: rgba(212, 175, 55, 0.1);
        color: var(--text);
    }
    
    /* Simplify success animation */
    .success__icon {
        animation: none;
    }
    
    /* Layout adjustments */
    .contact {
        padding: 60px 20px;
    }

    .contact__heading {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .contact__intro {
        font-size: 16px;
        margin-bottom: 48px;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form {
        padding: 36px 32px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .contact {
        padding: 60px 16px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .form-input,
    .form-textarea,
    .form-select {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .form-group {
        margin-bottom: 24px;
    }

    .info-card {
        padding: 24px 20px;
    }

    .info-card__icon {
        width: 48px;
        height: 48px;
    }

    .info-card__icon svg {
        width: 28px;
        height: 28px;
    }

    .contact-form__success {
        padding: 32px 24px;
    }

    .success__icon {
        width: 64px;
        height: 64px;
    }

    .success__title {
        font-size: 24px;
    }
}

/* ============================================
   20. Accessibility
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    .contact-form,
    .info-card {
        border-width: 2px;
    }

    .form-input,
    .form-textarea,
    .form-select {
        border-width: 2px;
    }
}

/* Focus states */
.form-input:focus-visible,
.form-textarea:focus-visible,
.form-select:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}






/* =====================================================
   PALORAH - Footer Section (MOBILE OPTIMIZED)
   Navigation, legal links, and site info
   ===================================================== */

/* ============================================
   1. Footer Container
   ============================================ */
.footer {
    position: relative;
    padding: 80px 24px 40px;
    background: #0a0a0a;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
}

.footer__container {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ============================================
   2. Background
   ============================================ */
.footer__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: 
        radial-gradient(ellipse 800px 600px at 30% 50%, rgba(212, 175, 55, 0.03), transparent),
        radial-gradient(ellipse 700px 500px at 70% 50%, rgba(184, 115, 51, 0.02), transparent);
    opacity: 0.6;
}

/* ============================================
   3. Main Footer Grid
   ============================================ */
.footer__main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 32px;
}

/* ============================================
   4. Brand Column
   ============================================ */
.footer__column--brand {
    max-width: 360px;
}

.footer__logo {
    display: inline-block;
    font-family: var(--font-headline);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.footer__logo:hover {
    color: var(--gold-muted);
    transform: translateY(-2px);
}

.footer__description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ============================================
   5. Social Links (Optional)
   ============================================ */
.footer__social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ============================================
   6. Footer Columns
   ============================================ */
.footer__column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

/* ============================================
   7. Navigation Lists
   ============================================ */
.footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    font-size: 15px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer__link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.footer__link:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer__link:hover::before {
    width: 100%;
}

/* Active link state (optional) */
.footer__link.is-active {
    color: var(--gold);
}

/* ============================================
   8. Contact Info
   ============================================ */
.footer__contact {
    margin-top: 12px;
}

.footer__link--email {
    color: var(--gold);
    font-weight: 600;
}

.footer__link--email:hover {
    color: var(--gold-muted);
}

/* ============================================
   9. Footer Bottom Bar
   ============================================ */
.footer__bottom {
    padding-top: 32px;
}

.footer__bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__copyright {
    font-size: 14px;
    color: var(--text-muted);
}

.footer__tagline {
    font-size: 14px;
    color: var(--text-muted);
}

.tagline__heart {
    color: var(--gold);
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.1);
    }
    20%, 40% {
        transform: scale(1);
    }
}

/* ============================================
   10. Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-muted));
    color: var(--bg-dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.back-to-top:not([hidden]) {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.5);
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top svg {
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

/* ============================================
   11. MOBILE OPTIMIZATIONS (≤768px)
   ============================================ */

@media (max-width: 768px) {
    
    /* ===== DISABLE HEAVY EFFECTS ===== */
    
    /* Simplify background on mobile - disable complex gradients */
    .footer__bg {
        background: radial-gradient(ellipse 600px 400px at 50% 50%, rgba(212, 175, 55, 0.02), transparent) !important;
        opacity: 1 !important;
    }
    
    /* Disable heartbeat animation on mobile */
    .tagline__heart {
        animation: none !important;
    }
    
    /* Disable ALL hover effects on mobile (touch devices) */
    .footer__logo:hover,
    .social-link:hover,
    .footer__link:hover {
        transform: none;
        color: inherit;
    }
    
    .footer__logo:hover {
        color: var(--gold);
    }
    
    .social-link:hover {
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.1);
        color: var(--text-muted);
    }
    
    .footer__link:hover {
        color: var(--text-muted);
    }
    
    .footer__link:hover::before {
        width: 0;
    }
    
    .footer__link--email:hover {
        color: var(--gold);
    }
    
    /* Simplify back-to-top button on mobile */
    .back-to-top:hover {
        transform: translateY(0);
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    }
    
    .back-to-top:hover svg {
        transform: translateY(0);
    }
    
    /* Active state still works on tap */
    .back-to-top:active {
        transform: scale(0.95);
    }
    
    /* Layout adjustments */
    .footer {
        padding: 60px 20px 32px;
    }

    .footer__main {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 32px;
        margin-bottom: 24px;
    }

    .footer__column--brand {
        max-width: 100%;
        grid-column: auto;
    }

    .footer__bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .back-to-top {
        bottom: 24px;
        right: 24px;
        width: 48px;
        height: 48px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Large Tablets */
@media (max-width: 1024px) {
    .footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer__column--brand {
        max-width: 100%;
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .footer {
        padding: 48px 16px 24px;
    }

    .footer__logo {
        font-size: 24px;
    }

    .footer__description {
        font-size: 14px;
    }

    .footer__heading {
        font-size: 14px;
    }

    .footer__link {
        font-size: 14px;
    }

    .footer__main {
        gap: 28px;
    }

    .footer__copyright,
    .footer__tagline {
        font-size: 13px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* ============================================
   12. Touch Device Optimizations
   ============================================ */

/* Remove tap highlight on touch devices */
@media (pointer: coarse) {
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Disable all hover effects on touch devices */
    .footer__logo:hover,
    .social-link:hover,
    .footer__link:hover,
    .back-to-top:hover {
        transform: none;
    }
}

/* ============================================
   13. Print Styles
   ============================================ */
@media print {
    .footer {
        page-break-inside: avoid;
    }

    .back-to-top {
        display: none;
    }

    .footer__link::before {
        display: none;
    }
}

/* ============================================
   14. Accessibility
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .tagline__heart {
        animation: none !important;
    }
    
    .back-to-top {
        transition: opacity 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    .footer {
        border-top-width: 2px;
    }

    .social-link,
    .back-to-top {
        border: 2px solid currentColor;
    }
}

/* Focus states */
.footer__link:focus-visible,
.social-link:focus-visible,
.back-to-top:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}









/* =====================================================
   PALORAH - Cookie Consent System (MOBILE OPTIMIZED)
   TTDSG/DSGVO compliant cookie banner & modal
   ===================================================== */

/* ============================================
   1. Cookie Banner (Layer 1)
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 24px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(20, 20, 20, 0.98));
    backdrop-filter: blur(12px);
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner:not([hidden]) {
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
}

/* ============================================
   2. Banner Icon
   ============================================ */
.cookie-banner__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ============================================
   3. Banner Content
   ============================================ */
.cookie-banner__content {
    flex: 1;
}

.cookie-banner__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.cookie-banner__text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.cookie-banner__text:last-child {
    margin-bottom: 0;
}

.cookie-banner__text--small {
    font-size: 13px;
}

.cookie-banner__link {
    color: var(--gold);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cookie-banner__link:hover {
    color: var(--gold-muted);
}

/* ============================================
   4. Banner Actions
   ============================================ */
.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ============================================
   5. Cookie Buttons
   ============================================ */
.cookie-btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn--primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-muted));
    color: var(--bg-dark);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.cookie-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.5);
}

.cookie-btn--secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text);
}

.cookie-btn--secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.5);
}

.cookie-btn--tertiary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
}

.cookie-btn--tertiary:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-btn:active {
    transform: translateY(0);
}

.cookie-btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ============================================
   6. Cookie Modal (Layer 2)
   ============================================ */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cookie-modal:not([hidden]) {
    opacity: 1;
    pointer-events: auto;
}

/* ============================================
   7. Modal Overlay
   ============================================ */
.cookie-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

/* ============================================
   8. Modal Container
   ============================================ */
.cookie-modal__container {
    position: relative;
    z-index: 1;
    max-width: 680px;
    width: 100%;
    max-height: 90vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(20, 20, 20, 0.98));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease-out;
}

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

/* ============================================
   9. Modal Header
   ============================================ */
.cookie-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 32px 0;
    flex-shrink: 0;
}

.cookie-modal__title {
    font-family: var(--font-headline);
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
}

.cookie-modal__close {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-modal__close:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--gold);
}

/* ============================================
   10. Modal Intro
   ============================================ */
.cookie-modal__intro {
    padding: 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.cookie-modal__intro p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ============================================
   11. Cookie Categories (Scrollable)
   ============================================ */
.cookie-modal__categories {
    flex: 1;
    overflow-y: auto;
    padding: 24px 32px;
}

/* Custom scrollbar */
.cookie-modal__categories::-webkit-scrollbar {
    width: 8px;
}

.cookie-modal__categories::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}

.cookie-modal__categories::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 4px;
}

.cookie-modal__categories::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.5);
}

/* ============================================
   12. Cookie Category
   ============================================ */
.cookie-category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.cookie-category__info {
    flex: 1;
}

.cookie-category__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.cookie-category__badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cookie-category__badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.cookie-category__badge--required {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.cookie-category__description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 12px;
}

/* ============================================
   13. Cookie Toggle Switch
   ============================================ */
.cookie-toggle {
    position: relative;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
    cursor: pointer;
}

.cookie-toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.toggle__slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    transition: all 0.3s ease;
}

.toggle__slider::before {
    content: '';
    position: absolute;
    left: 3px;
    top: 3px;
    width: 22px;
    height: 22px;
    background: var(--text-muted);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-toggle input:checked + .toggle__slider {
    background: var(--gold);
}

.cookie-toggle input:checked + .toggle__slider::before {
    transform: translateX(24px);
    background: var(--bg-dark);
}

.cookie-toggle--disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-toggle--disabled .toggle__slider {
    background: rgba(16, 185, 129, 0.3);
}

.cookie-toggle--disabled .toggle__slider::before {
    background: #10b981;
}

/* ============================================
   14. Details/Expandable
   ============================================ */
.cookie-category__details {
    margin-top: 12px;
}

.cookie-category__summary {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    cursor: pointer;
    user-select: none;
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cookie-category__summary::-webkit-details-marker {
    display: none;
}

.cookie-category__summary::before {
    content: '▶';
    font-size: 10px;
    transition: transform 0.2s ease;
}

.cookie-category__details[open] .cookie-category__summary::before {
    transform: rotate(90deg);
}

.cookie-category__list {
    list-style: none;
    padding: 12px 0 0 20px;
    margin: 0;
}

.cookie-category__list li {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
}

.cookie-category__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.cookie-category__note {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-top: 8px;
    padding: 12px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
}

/* ============================================
   15. Modal Footer
   ============================================ */
.cookie-modal__footer {
    display: flex;
    gap: 12px;
    padding: 24px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.cookie-modal__footer .cookie-btn {
    flex: 1;
}

.cookie-modal__privacy {
    padding: 0 32px 24px;
    text-align: center;
    flex-shrink: 0;
}

.cookie-modal__privacy-link {
    font-size: 13px;
    color: var(--gold);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cookie-modal__privacy-link:hover {
    color: var(--gold-muted);
}

/* ============================================
   16. MOBILE OPTIMIZATIONS (≤768px)
   ============================================ */

@media (max-width: 768px) {
    
    /* ===== DISABLE HEAVY EFFECTS ===== */
    
    /* Remove backdrop blur on mobile - MAJOR performance gain */
    .cookie-banner,
    .cookie-modal__container,
    .cookie-modal__overlay {
        backdrop-filter: none !important;
    }
    
    .cookie-banner {
        background: rgba(26, 26, 26, 0.98);
    }
    
    .cookie-modal__container {
        background: rgba(26, 26, 26, 0.98);
    }
    
    .cookie-modal__overlay {
        background: rgba(0, 0, 0, 0.9);
    }
    
    /* Disable modal slide animation on mobile */
    .cookie-modal__container {
        animation: none !important;
    }
    
    /* Disable hover effects on mobile */
    .cookie-btn--primary:hover,
    .cookie-btn--secondary:hover,
    .cookie-btn--tertiary:hover {
        transform: none;
        box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    }
    
    .cookie-btn--secondary:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(212, 175, 55, 0.3);
    }
    
    .cookie-btn--tertiary:hover {
        background: transparent;
        color: var(--text-muted);
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    .cookie-modal__close:hover,
    .cookie-banner__link:hover,
    .cookie-modal__privacy-link:hover {
        color: inherit;
    }
    
    .cookie-modal__close:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    /* Active states still work on tap */
    .cookie-btn:active {
        transform: scale(0.98);
    }
    
    /* Layout adjustments */
    .cookie-banner__container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cookie-banner__icon {
        display: none;
    }

    .cookie-banner__actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-modal__container {
        max-height: 95vh;
    }

    .cookie-modal__header,
    .cookie-modal__intro,
    .cookie-modal__categories,
    .cookie-modal__footer,
    .cookie-modal__privacy {
        padding-left: 24px;
        padding-right: 24px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .cookie-banner {
        padding: 16px;
    }

    .cookie-banner__title {
        font-size: 16px;
    }

    .cookie-banner__text {
        font-size: 13px;
    }

    .cookie-modal {
        padding: 16px;
    }

    .cookie-modal__container {
        border-radius: 16px;
    }

    .cookie-modal__title {
        font-size: 24px;
    }

    .cookie-modal__header {
        padding-top: 24px;
    }

    .cookie-modal__footer {
        flex-direction: column;
    }

    .cookie-category {
        padding: 20px;
    }

    .cookie-category__title {
        font-size: 16px;
    }
}

/* ============================================
   17. Touch Device Optimizations
   ============================================ */

/* Remove tap highlight on touch devices */
@media (pointer: coarse) {
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Disable ALL hover effects on touch devices */
    .cookie-btn:hover,
    .cookie-modal__close:hover,
    .cookie-banner__link:hover {
        transform: none;
    }
}

/* ============================================
   18. Accessibility
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .cookie-banner,
    .cookie-modal,
    .cookie-modal__container {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    .cookie-banner,
    .cookie-modal__container,
    .cookie-category {
        border-width: 2px;
    }

    .cookie-btn {
        border-width: 2px;
    }
}

/* Focus states */
.cookie-btn:focus-visible,
.cookie-modal__close:focus-visible,
.cookie-toggle:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}
	
	
	
	/* =====================================================
   LEGAL PAGES - DATENSCHUTZ, IMPRESSUM, AGB
   Ultra-optimized styles - Append to style.css
   ===================================================== */
	

/* CSS Containment - Isolate legal page styles */
.legal-page {
    contain: layout style;
    min-height: 100vh;
    padding: clamp(120px, 16vh, 180px) 0 clamp(80px, 10vh, 120px);
}

.legal-container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header - Reuse existing typography */
.legal-header { margin-bottom: 64px; }

.legal-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 32px;
}

.legal-title {
    font-family: var(--font-headline);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.legal-intro {
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7;
    color: var(--text-muted);
}

/* TOC - Compact grid */
.legal-toc {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 64px;
}

.toc-title {
    font-family: var(--font-headline);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.toc-list {
    list-style: none;
    counter-reset: toc-counter;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}

.toc-list li { counter-increment: toc-counter; }

.toc-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.toc-link::before {
    content: counter(toc-counter);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
}

.toc-link:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.25);
    color: var(--gold);
    transform: translateX(4px);
}

/* Content sections */
.legal-section {
    margin-bottom: 64px;
    scroll-margin-top: 100px;
}

.section-title {
    font-family: var(--font-headline);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.subsection-title {
    font-size: 20px;
    font-weight: 700;
    margin: 32px 0 16px;
}

.section-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
}

.section-content p { margin-bottom: 20px; }
.section-content strong { color: var(--text); font-weight: 600; }
.section-content a { color: var(--gold); text-decoration: underline; transition: color 0.2s; }
.section-content a:hover { color: var(--gold-muted); }
.section-content code { 
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 14px;
    color: var(--gold);
}

/* Lists - Compact */
.legal-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.legal-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* Boxes - Consolidated styles */
.legal-address,
.legal-highlight,
.legal-warning,
.cookie-category,
.right-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}

.legal-highlight {
    border-left: 4px solid var(--gold);
    background: rgba(212, 175, 55, 0.05);
    padding: 20px 24px;
}

.legal-highlight p { margin: 0; color: var(--text); }

.legal-warning {
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.08);
    padding: 28px;
}

.legal-warning p { margin-bottom: 12px; }
.legal-warning p:last-child { margin-bottom: 0; }

.legal-address { line-height: 1.8; font-style: normal; }
.legal-address strong { 
    color: var(--gold); 
    font-size: 18px; 
    display: block; 
    margin-bottom: 8px; 
}
.legal-address a { 
    color: var(--gold); 
    text-decoration: none; 
    border-bottom: 1px solid rgba(212, 175, 55, 0.3); 
}
.legal-address a:hover { border-color: var(--gold); }

/* Cookie categories */
.cookie-category__title,
.right-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cookie-category__description { 
    color: var(--text-muted); 
    margin-bottom: 12px; 
}

/* Rights grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.right-card { 
    padding: 24px; 
    transition: all 0.3s; 
}

.right-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.right-card p { 
    font-size: 14px; 
    line-height: 1.7; 
    color: var(--text-muted); 
    margin: 0; 
}

/* Tables */
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
}

.legal-table thead { background: rgba(212, 175, 55, 0.1); }

.legal-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.legal-table td {
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    font-size: 15px;
}

.legal-table tbody tr:hover { background: rgba(255, 255, 255, 0.02); }

/* Footer CTA - Reuse existing button styles */
.legal-footer-cta {
    text-align: center;
    padding: 64px 32px;
    margin-top: 80px;
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
}

.legal-footer-cta h2 {
    font-family: var(--font-headline);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 16px;
}


/* Two-button container for Cookie Policy CTA */
.legal-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile: Stack vertically with full width */
.legal-cta-buttons .btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
}

/* Tablet & Desktop: Side by side buttons */
@media (min-width: 640px) {
    .legal-cta-buttons {
        flex-direction: row;
        gap: 20px;
        max-width: 700px;
    }
    
    .legal-cta-buttons .btn {
        flex: 1;
        min-width: 0;
        width: auto;
    }
}

/* Secondary button styling - Outlined gold */
.btn--secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn--secondary:hover {
    background: var(--gold);
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.btn--secondary .btn__ripple {
    background: rgba(212, 175, 55, 0.1);
}

/* Ensure primary button styling is consistent */
.legal-cta-buttons .btn--primary {
    background: var(--gold);
    color: #0a0a0a;
    border: 2px solid var(--gold);
}

.legal-cta-buttons .btn--primary:hover {
    background: #DAA520;
    border-color: #DAA520;
}

/* Mobile specific adjustments */
@media (max-width: 639px) {
    .legal-cta-buttons {
        gap: 12px;
        margin-top: 28px;
    }
    
    .legal-cta-buttons .btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}
	
	
	
/* MOBILE - Disable hover effects, adjust spacing */
@media (max-width: 768px) {
    .legal-page { padding: clamp(100px, 14vh, 140px) 0 clamp(60px, 8vh, 100px); }
    .legal-container { padding: 0 20px; }
    .legal-header { margin-bottom: 48px; }
    .legal-title { font-size: 32px; }
    .legal-toc { padding: 24px; margin-bottom: 48px; }
    .toc-title { font-size: 20px; }
    .toc-list { grid-template-columns: 1fr; gap: 10px; }
    .toc-link { padding: 10px 14px; font-size: 14px; }
    .toc-link:hover { transform: none; } /* Disable on mobile */
    .section-title { font-size: 28px; }
    .subsection-title { font-size: 18px; margin: 24px 0 12px; }
    .section-content { font-size: 15px; }
    .rights-grid { grid-template-columns: 1fr; gap: 16px; }
    .right-card:hover { transform: none; } /* Disable on mobile */
    .legal-address,
    .legal-highlight,
    .legal-warning { padding: 20px; }
    .legal-footer-cta { padding: 48px 24px; margin-top: 64px; }
    .legal-footer-cta h2 { font-size: 28px; }
    .legal-footer-cta p { font-size: 16px; }
}

@media (max-width: 480px) {
    .legal-page { padding: 100px 0 60px; }
    .legal-container { padding: 0 16px; }
    .legal-title { font-size: 28px; }
    .legal-toc { padding: 20px; }
    .toc-title { font-size: 18px; }
    .toc-link { padding: 8px 12px; font-size: 13px; }
    .toc-link::before { min-width: 24px; height: 24px; font-size: 12px; }
    .section-title { font-size: 24px; }
    .subsection-title { font-size: 17px; }
    .section-content { font-size: 14px; }
    .legal-list li { padding-left: 24px; font-size: 14px; }
    .legal-address { padding: 16px; font-size: 14px; }
    .legal-highlight,
    .legal-warning { padding: 16px; }
    .cookie-category { padding: 16px; }
    .right-card { padding: 20px; }
    .right-card__title { font-size: 16px; }
    .right-card p { font-size: 13px; }
    .legal-table { font-size: 14px; }
    .legal-table th,
    .legal-table td { padding: 12px 16px; }
    .legal-footer-cta { padding: 36px 20px; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .toc-link:hover,
    .right-card:hover { transform: none; }
}
	
	
/* =====================================================
   CONTACT FORM - EMAIL SUGGESTION STYLES
   Add this to your main style.css file
   ===================================================== */

/* Email suggestion box */
.email-suggestion {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-top: 8px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 10px;
    font-size: 14px;
    animation: slideDown 0.25s ease-out;
}

.suggestion-text {
    flex: 1;
    color: var(--text-muted);
    line-height: 1.5;
}

.suggestion-text strong {
    color: var(--gold);
    font-weight: 700;
}

.suggestion-button {
    padding: 8px 16px;
    background: var(--gold);
    color: #0a0a0a;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.suggestion-button:hover {
    background: #DAA520;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.suggestion-button:active {
    transform: translateY(0);
}

/* Slide down animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .email-suggestion {
        flex-direction: column;
        gap: 10px;
        padding: 12px 14px;
    }
    
    .suggestion-button {
        width: 100%;
        padding: 10px 16px;
    }
}	

	
	
	/* =====================================================
   CASE STUDY STYLES - MOBILE FIRST & MINIMAL
   Performance-optimized like legal pages
   Only essential styles, no bloat
   ===================================================== */

/* =====================================================
   Base Container (Inherited from main style.css)
   ===================================================== */
.case-study .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =====================================================
   Back Link
   ===================================================== */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #B8860B;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    transition: gap 0.2s ease;
}

.back-link:hover {
    gap: 12px;
}

.back-link svg {
    width: 16px;
    height: 16px;
}

/* =====================================================
   Hero Section
   ===================================================== */
.case-hero {
    padding: 140px 0 40px;
}

.hero-title {
    margin-bottom: 40px;
}

.hero-title .label {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #B8860B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero-title h1 {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #ffffff;
}

.hero-title .subtitle {
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.4;
    color: #B8860B;
    font-weight: 400;
}

/* =====================================================
   Meta Grid
   ===================================================== */
.meta-grid {
    display: grid;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.meta-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #a0a0a0;
}

.meta-value {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

/* =====================================================
   Hero Image
   ===================================================== */
.hero-image {
    padding: 60px 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* =====================================================
   Content Sections
   ===================================================== */
.content-section {
    padding: 60px 0;
}

.content-section--alt {
    background: rgba(255, 255, 255, 0.02);
}

.content-section h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.content-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 32px 0 16px;
    color: #B8860B;
}

.content-section p {
    font-size: 17px;
    line-height: 1.7;
    color: #e5e5e5;
    margin-bottom: 20px;
}

.content-section ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.content-section li {
    font-size: 17px;
    line-height: 1.7;
    color: #e5e5e5;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.content-section li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #B8860B;
    font-weight: 700;
}

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

/* =====================================================
   Two Column Layout (Mobile: Stacked)
   ===================================================== */
.two-col {
    display: grid;
    gap: 48px;
}

/* =====================================================
   Results Section
   ===================================================== */
.results-section {
    padding: 80px 0;
    background: rgba(184, 134, 11, 0.03);
}

.results-grid {
    display: grid;
    gap: 24px;
    margin-top: 48px;
}

.result-card {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.result-card:hover {
    border-color: #B8860B;
    transform: translateY(-2px);
}

.result-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-bottom: 16px;
}

.result-icon svg {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.result-card:hover .result-icon svg {
    transform: scale(1.1);
}

.result-card:hover .result-icon svg path {
    fill: #DAA520; /* Lighter gold on hover */
}

.result-card:hover .result-icon svg circle {
    stroke: #DAA520; /* Lighter gold on hover */
}

.result-value {
    font-size: 36px;
    font-weight: 700;
    color: #B8860B;
    margin-bottom: 8px;
}

.result-label {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.result-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #a0a0a0;
    margin: 0;
}

/* =====================================================
   Testimonial Section
   ===================================================== */
.testimonial-section {
    padding: 60px 0;
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 28px;
    background: rgba(184, 134, 11, 0.05);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 16px;
    position: relative;
}

.quote-icon {
    font-size: 64px;
    font-family: Georgia, serif;
    color: rgba(184, 134, 11, 0.3);
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-card blockquote {
    margin: 0 0 32px;
    padding: 0;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #e5e5e5;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid #B8860B;
    object-fit: cover;
}

.author-info strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.author-info span {
    display: block;
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 8px;
}

.rating {
    color: #B8860B;
    font-size: 16px;
}

.rating-value {
    margin-left: 8px;
    font-weight: 700;
}

/* =====================================================
   Process Grid
   ===================================================== */
.process-grid {
    display: grid;
    gap: 32px;
    margin-top: 48px;
}

.process-step {
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #B8860B;
    color: #0a0a0a;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #ffffff;
}

.process-step p {
    font-size: 15px;
    line-height: 1.7;
    color: #e5e5e5;
    margin: 0;
}

/* =====================================================
   Gallery Section
   ===================================================== */
.gallery-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

.gallery-grid {
    display: grid;
    gap: 24px;
    margin-top: 48px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.caption {
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    font-size: 14px;
    color: #a0a0a0;
    text-align: center;
    margin: 0;
}

/* =====================================================
   Specs Section
   ===================================================== */
.specs-section {
    padding: 60px 0;
}

.specs-grid {
    display: grid;
    gap: 32px;
    margin-top: 48px;
}

.spec-block h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #B8860B;
}

.spec-block ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.spec-block li {
    font-size: 15px;
    line-height: 1.7;
    color: #e5e5e5;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.spec-block li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #B8860B;
    font-weight: 700;
}

/* =====================================================
   CTA Section
   ===================================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.08) 0%, rgba(184, 134, 11, 0.02) 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #e5e5e5;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

/* =====================================================
   DESKTOP STYLES (768px+)
   Only add desktop-specific enhancements
   ===================================================== */
@media (min-width: 768px) {
    
    .case-study .container {
        max-width: 1200px;
    }

    .case-hero {
        padding: 160px 0 60px;
    }

    .meta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        padding: 32px;
    }

    .two-col {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

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

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

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

    .gallery-item--large {
        grid-column: 1 / -1;
    }

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

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        max-width: none;
    }

    .testimonial-card {
        padding: 60px 48px;
    }

    .testimonial-author img {
        width: 80px;
        height: 80px;
    }

}

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

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

}

	

	
	
	
	
	