/* ============================================
   BRICKS Website — Light Premium Theme
   Color Palette: Warm Ivory & Brass Gold
   ============================================ */

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

:root {
  /* Backgrounds */
  --bg-primary: #F9F7F2;
  --bg-white: #FFFFFF;
  --bg-warm: #F0ECE3;
  --bg-dark: #1C1917;

  /* Text */
  --text-primary: #1C1917;
  --text-secondary: #57534E;
  --text-muted: #A8A29E;
  --text-on-dark: #F5F5F4;

  /* Gold Accent */
  --accent: #B8860B;
  --accent-hover: #9A7209;
  --accent-light: #F5ECD4;
  --accent-glow: rgba(184, 134, 11, 0.15);

  /* Borders & Shadows */
  --border: rgba(28, 25, 23, 0.08);
  --border-strong: rgba(28, 25, 23, 0.15);
  --shadow-sm: 0 1px 3px rgba(28,25,23,0.06);
  --shadow-md: 0 4px 20px rgba(28,25,23,0.08);
  --shadow-lg: 0 12px 40px rgba(28,25,23,0.12);

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --nav-height: 80px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration: 0.6s;
}

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

body {
  font-family: 'Assistant', 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Container --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Heebo', 'Assistant', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title { margin-bottom: 20px; }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.8;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  z-index: 10;
  transition: all 0.3s var(--ease-out);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all 0.4s var(--ease-out);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

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

.nav-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) saturate(100%);
  transition: filter 0.3s;
}

.nav.scrolled .nav-logo img {
  filter: brightness(0) saturate(100%);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}

.nav.scrolled .nav-links a {
  color: var(--text-secondary);
}

.nav.scrolled .nav-links a:hover {
  color: var(--accent);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { 
  /* margin removed to allow space-between to position logo on far right */
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav.scrolled .hamburger span {
  background: var(--text-primary);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

/* --- Hero Background Slideshow --- */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  will-change: opacity, transform;
  transform: scale(1.12); /* Resting state = zoomed-in end position */
}

.hero-slide.active {
  opacity: 1;
  animation: kenBurns 7s ease-out forwards;
}

@keyframes kenBurns {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.12); }
}

/* Warm-tinted overlay — amber undertone for premium warmth */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(45, 35, 20, 0.35) 0%,
      rgba(60, 45, 25, 0.15) 25%,
      rgba(50, 40, 22, 0.18) 50%,
      rgba(45, 35, 20, 0.3) 75%,
      rgba(255, 255, 255, 0.95) 100%
    );
}

/* Cinematic vignette — stronger for depth */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse 75% 65% at 50% 45%,
    transparent 25%,
    rgba(28, 25, 23, 0.15) 100%
  );
  pointer-events: none;
}

/* Warm color-grade on slides */
.hero-slideshow::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(184, 134, 11, 0.08) 0%,
    transparent 50%,
    rgba(184, 134, 11, 0.05) 100%
  );
  mix-blend-mode: overlay;
  pointer-events: none;
}

}

/* Card-scoped grid glow — contained within the hero card */
.hero-grid-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  overflow: hidden;
  /* Base subtle grid always visible inside card */
  background-image:
    linear-gradient(to right, rgba(28,25,23,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(28,25,23,0.04) 1px, transparent 1px),
    linear-gradient(to right, rgba(28,25,23,0.04) 1px, transparent 1px);
  background-size: 60px 36px, 60px 36px, 60px 36px;
  background-position: 0 0, 0 0, 30px 18px;
  opacity: 0.5;
}

/* Gold glow layer on top of base grid */
.hero-grid-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(184, 134, 11, 0.5) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(184, 134, 11, 0.5) 1px, transparent 1px),
    linear-gradient(to right, rgba(184, 134, 11, 0.5) 1px, transparent 1px);
  background-size: 60px 36px, 60px 36px, 60px 36px;
  background-position: 0 0, 0 0, 30px 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
  mask-image: radial-gradient(
    circle 200px at var(--glow-x, -300px) var(--glow-y, -300px),
    black 0%,
    rgba(0,0,0,0.5) 35%,
    transparent 65%
  );
  -webkit-mask-image: radial-gradient(
    circle 200px at var(--glow-x, -300px) var(--glow-y, -300px),
    black 0%,
    rgba(0,0,0,0.5) 35%,
    transparent 65%
  );
}

.hero-grid-glow.active::before {
  opacity: 1;
}

/* Gold glow orb that follows mouse */
.hero-grid-glow::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 168, 67, 0.15) 0%,
    rgba(184, 134, 11, 0.06) 40%,
    transparent 70%
  );
  top: var(--glow-y, -400px);
  left: var(--glow-x, -400px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-grid-glow.active::after {
  opacity: 1;
}

/* --- Slide Indicators --- */
.hero-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-indicator {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  padding: 0;
}

.hero-indicator.active {
  width: 48px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(184, 134, 11, 0.3);
}

.hero-indicator:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* --- Hero Content Glass Card --- */
.hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 4;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(184, 134, 11, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 52px 48px 44px;
  box-shadow:
    0 8px 40px rgba(28, 25, 23, 0.07),
    0 2px 8px rgba(28, 25, 23, 0.04),
    inset 0 1px 0 rgba(255,255,255,0.7);
  transition: box-shadow 0.5s ease, border-color 0.5s ease;
}

/* Subtle gold shimmer ring */
.hero-content::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: linear-gradient(
    var(--glow-angle, 135deg),
    rgba(184, 134, 11, 0.2),
    rgba(212, 168, 67, 0.06),
    transparent,
    rgba(212, 168, 67, 0.06),
    rgba(184, 134, 11, 0.2)
  );
  z-index: -1;
  opacity: 0.4;
  transition: opacity 0.5s ease;
  animation: borderShimmer 6s linear infinite;
}

@keyframes borderShimmer {
  0%   { --glow-angle: 0deg; }
  100% { --glow-angle: 360deg; }
}

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

/* Glow intensifies on mouse hover */
.hero-content.hero-glow-active {
  border-color: rgba(184, 134, 11, 0.25);
  box-shadow:
    0 8px 40px rgba(28, 25, 23, 0.07),
    0 2px 8px rgba(28, 25, 23, 0.04),
    0 0 20px rgba(184, 134, 11, 0.07),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.hero-content.hero-glow-active::before {
  opacity: 0.7;
}

/* --- Hero Typography --- */
.hero h1, .hero .split-word {
  color: var(--text-primary);
  text-shadow: none;
}

.hero h1 .highlight {
  color: var(--accent);
  position: relative;
}

.hero .split-word {
  display: inline;
  margin-left: 0.25em;
}

/* Gold divider between heading and subtitle */
.hero h1 {
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 24px;
}

.hero h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
}

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

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

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




/* Decorative elements */
.hero-decor {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: var(--accent);
}
.hero-decor-1 { width: 400px; height: 400px; top: -100px; left: -100px; }
.hero-decor-2 { width: 300px; height: 300px; bottom: -50px; right: -80px; }
.hero-decor-3 {
  width: 1px; height: 120px;
  border-radius: 0;
  background: var(--accent);
  opacity: 0.2;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  animation: bounce 2s infinite;
}

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--section-padding);
  background: var(--bg-white);
  position: relative;
  z-index: 1;
}

/* Soft blend transition from hero into about */
.about::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg,
    rgba(249, 247, 242, 0) 0%,
    rgba(255, 255, 255, 0.4) 30%,
    rgba(255, 255, 255, 0.85) 60%,
    rgba(255, 255, 255, 1) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Thin gold accent line as divider */
.about::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 1px;
  opacity: 0.4;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text .section-title { 
  margin-bottom: 24px; 
  font-size: 2.2rem;
  line-height: 1.3;
}

.about-description p { 
  color: var(--text-secondary); 
  margin-bottom: 16px; 
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-description strong {
  color: var(--accent);
}

.founder-profile {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.founder-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--accent);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-info {
  display: flex;
  flex-direction: column;
}

.founder-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.founder-title {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}

/* Premium Card Additions */
.about-card.premium-card {
  padding: 48px 40px;
  border: 1px solid rgba(212, 175, 55, 0.3); /* Subtle gold border */
  box-shadow: var(--shadow-md);
  position: relative;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-warm) 100%);
}

.about-card.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card-header .about-card-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.intro-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.about-goals-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.about-goals-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: var(--text-primary);
  font-weight: 500;
}

.goal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.about-card-body p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-card-quote {
  margin: 32px 0 32px 0;
  padding: 20px 24px 20px 20px;
  border-right: 4px solid var(--accent);
  background: rgba(212, 175, 55, 0.05);
  font-size: 1.15rem;
  color: var(--text-primary);
  line-height: 1.6;
  border-radius: 4px 0 0 4px;
}

.about-card-quote strong {
  color: var(--accent);
}

.w-full {
  width: 100%;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
  padding: 80px 0;
  background: var(--bg-warm);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Brick-shaped stat cards */
.stat-item {
  text-align: center;
  padding: 36px 20px;
  background: var(--bg-white);
  border-radius: 6px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.4s var(--ease-out);
  box-shadow: var(--shadow-sm);
}

/* Staggered brick offset — every other card shifts down */
.stat-item:nth-child(2) { transform: translateY(16px); }
.stat-item:nth-child(4) { transform: translateY(16px); }

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #D4A843);
  border-radius: 0 0 6px 6px;
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}

.stat-item:hover {
  box-shadow: var(--shadow-md);
}
.stat-item:hover::after { transform: scaleX(1); }

.stat-number {
  font-family: 'Space Grotesk', 'Heebo', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values {
  padding: var(--section-padding);
  background: var(--bg-white);
}

.values-header {
  text-align: center;
  margin-bottom: 60px;
}

/* 2x2 grid layout */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.value-card {
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.value-card:hover::before { transform: scaleX(1); }

.value-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.value-card h3 { margin-bottom: 12px; }
.value-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; }

/* Tagline bar */
.values-tagline {
  text-align: center;
  margin-top: 48px;
  padding: 32px 24px;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.values-tagline p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.9;
}

.values-tagline strong {
  color: var(--accent);
  font-weight: 700;
}

/* ============================================
   FAQ / ACCORDION
   ============================================ */
.faq {
  padding: var(--section-padding);
}

.faq--alt { 
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-warm) 80%, var(--bg-warm) 100%); 
}
.faq--transition { 
  background: var(--bg-white); 
}

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

.faq-header .section-subtitle {
  margin: 0 auto;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.accordion-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 134, 11, 0.3);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: right;
  cursor: pointer;
  transition: color 0.3s;
  background: none;
  border: none;
  font-family: inherit;
  line-height: 1.5;
}

.accordion-trigger:hover { color: var(--accent); }

.accordion-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 16px;
  position: relative;
  transition: transform 0.3s var(--ease-out);
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.accordion-icon::before {
  width: 14px; height: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-icon::after {
  width: 2px; height: 14px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-item.active .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

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

.accordion-body {
  padding: 0 24px 24px 24px;
  color: var(--text-secondary);
  line-height: 1.9;
  font-size: 0.95rem;
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */
.process {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-primary) 50%, var(--bg-white) 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative background pattern */
.process::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.process-header {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
}

.process-header .section-subtitle {
  max-width: 560px;
  margin: 16px auto 0;
}

/* ---- Steps Journey Grid ---- */
.steps-journey {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

/* ---- Step Card ---- */
.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 20px 28px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: 2px solid rgba(184, 134, 11, 0.2);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.4s var(--ease-out);
  box-shadow: 0 2px 12px rgba(28, 25, 23, 0.04);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 16px 48px rgba(28, 25, 23, 0.08),
    0 0 0 1px rgba(184, 134, 11, 0.2);
  border-top-color: var(--accent);
}

/* Gold numbered node floating at top */
.step-node {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent), #D4A843);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 14px rgba(184, 134, 11, 0.3),
    0 0 0 4px var(--bg-primary),
    0 0 0 6px rgba(184, 134, 11, 0.1);
  transition: box-shadow 0.4s ease;
}

.step-card:hover .step-node {
  box-shadow:
    0 4px 20px rgba(184, 134, 11, 0.4),
    0 0 0 4px var(--bg-primary),
    0 0 0 8px rgba(184, 134, 11, 0.15);
}

.step-number {
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

/* Icon circle */
.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.06), rgba(212, 168, 67, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  margin-bottom: 16px;
  color: var(--accent);
  transition: all 0.4s var(--ease-out);
}

.step-card:hover .step-icon {
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.1), rgba(212, 168, 67, 0.15));
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(184, 134, 11, 0.12);
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- Connectors between steps (RTL — arrows point LEFT) ---- */
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 56px;
}

.connector-line {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, rgba(184, 134, 11, 0.35), rgba(184, 134, 11, 0.15));
  border-radius: 1px;
  position: relative;
}

/* Arrow pointing LEFT for RTL flow */
.connector-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -3px;
  transform: translateY(-50%) rotate(45deg);
  width: 7px;
  height: 7px;
  border-left: 2px solid rgba(184, 134, 11, 0.4);
  border-bottom: 2px solid rgba(184, 134, 11, 0.4);
}

/* ---- Responsive: stack vertically on tablet/mobile ---- */
@media (max-width: 900px) {
  .steps-journey {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 400px;
  }

  .step-connector {
    padding: 0;
    height: 40px;
  }

  .connector-line {
    width: 2px;
    height: 28px;
    background: linear-gradient(180deg, rgba(184, 134, 11, 0.15), rgba(184, 134, 11, 0.35));
  }

  .connector-line::after {
    top: auto;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    border-left: 2px solid rgba(184, 134, 11, 0.4);
    border-bottom: 2px solid rgba(184, 134, 11, 0.4);
  }
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-warm) 60%, var(--bg-white) 100%);
  text-align: center;
}

.video-section h2 { color: var(--text-primary); }
.video-section p { color: var(--text-secondary); }

.video-header { margin-bottom: 48px; }
.video-header .section-subtitle {
  color: var(--text-secondary);
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.video-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.7);
  transition: filter 0.4s;
}

.video-wrapper:hover img { filter: brightness(0.5); }

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 0 40px var(--accent-glow);
}

.play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-right: 22px solid #fff;
  margin-left: -4px;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: 100px 24px 80px;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-primary) 15%, var(--bg-primary) 100%);
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  max-width: 960px;
  margin: 0 auto;
}

.contact-info h3 { margin-bottom: 24px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
}

.contact-item-text h4 { margin-bottom: 4px; font-size: 0.9rem; color: var(--text-muted); }
.contact-item-text p { font-weight: 600; }

/* Form */
.contact-form {
  background: var(--bg-white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: -150px;
  position: relative;
  z-index: 10;
}

.form-group { position: relative; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: #F8FAFC;
  color: var(--text-primary);
  transition: all 0.3s ease;
  outline: none;
  text-align: right;
  direction: rtl;
}

.form-group input:hover,
.form-group textarea:hover {
  background: #F1F5F9;
}

.form-group input:focus,
.form-group textarea:focus {
  background: #FFFFFF;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

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

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

.form-submit {
  align-self: flex-start;
}

.form-status {
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: none;
}
.form-status.success {
  display: block;
  background: #dcfce7;
  color: #166534;
}
.form-status.error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
}

/* ============================================
   FOOTER — PREMIUM REDESIGN
   ============================================ */
.footer {
  background: linear-gradient(180deg, #4A3C2B 0%, #2E251A 100%);
  color: #FFFFFF;
  padding-top: 20px;
}

/* --- Footer Main --- */
.footer-main {
  padding: 120px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 0;
}

.footer-brand img {
  height: 44px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.8;
  max-width: 320px;
  margin-bottom: 24px;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.35s var(--ease-out);
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.25);
}

/* Footer Links Column */
.footer-links h4 {
  color: #FFFFFF;
  margin-bottom: 20px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 12px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 0;
  font-size: 0.9rem;
  transition: all 0.3s var(--ease-out);
  position: relative;
}

.footer-links a:hover {
  color: var(--accent);
  padding-right: 8px;
}

/* Footer Contact Column */
.footer-contact h4 {
  color: #FFFFFF;
  margin-bottom: 20px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 12px;
}

.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item span {
  font-size: 1rem;
  color: var(--accent);
}

.footer-contact-item a,
.footer-contact-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.3s;
  margin: 0;
}

.footer-contact-item a:hover {
  color: var(--accent);
}

/* --- Footer Bottom --- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  background: transparent;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
}

/* Back to Top */
.back-to-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.35s var(--ease-out);
}

.back-to-top:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.25);
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #D4A843);
  z-index: 9999;
  transition: width 0.05s linear;
}

/* ============================================
   PARALLAX BACKGROUNDS
   ============================================ */
[data-parallax-bg] {
  position: relative;
  overflow: hidden;
}
[data-parallax-bg]::before {
  content: '';
  position: absolute;
  inset: -20% 0;
  background: inherit;
  transform: translateY(var(--parallax-y, 0));
  will-change: transform;
  z-index: 0;
}
[data-parallax-bg] > * { position: relative; z-index: 1; }

/* ============================================
   ENHANCED SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s var(--ease-out),
              transform 0.9s var(--ease-out);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.9s var(--ease-out),
              transform 0.9s var(--ease-out);
}
.reveal--right {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.9s var(--ease-out),
              transform 0.9s var(--ease-out);
}
.reveal--left.active,
.reveal--right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal--scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.9s var(--ease-out),
              transform 0.9s var(--ease-out);
}
.reveal--scale.active {
  opacity: 1;
  transform: scale(1);
}

.reveal--rotate {
  opacity: 0;
  transform: translateY(40px) rotate(3deg);
  transition: opacity 0.9s var(--ease-out),
              transform 0.9s var(--ease-out);
}
.reveal--rotate.active {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

/* Stagger children — enhanced */
.stagger > * {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.stagger.active > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.stagger.active > *:nth-child(2) { transition-delay: 120ms; opacity: 1; transform: translateY(0); }
.stagger.active > *:nth-child(3) { transition-delay: 240ms; opacity: 1; transform: translateY(0); }
.stagger.active > *:nth-child(4) { transition-delay: 360ms; opacity: 1; transform: translateY(0); }
.stagger.active > *:nth-child(5) { transition-delay: 480ms; opacity: 1; transform: translateY(0); }

/* ============================================
   SPLIT TEXT WORD-BY-WORD REVEAL
   ============================================ */
.split-text {
  overflow: hidden;
}
.split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.6s var(--ease-out),
              transform 0.6s var(--ease-out);
}
.split-text.active .split-word {
  opacity: 1;
  transform: translateY(0);
}

/* Apply solid gold color to "ביטחון כלכלי" in hero title */
.hero h1.split-text .split-word:nth-of-type(2),
.hero h1.split-text .split-word:nth-of-type(3) {
  color: var(--accent);
}

/* ============================================
   ENHANCED HERO — FLOATING PARALLAX SHAPES
   ============================================ */
.hero-decor {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  will-change: transform;
}
.hero-decor-1 {
  width: 500px; height: 500px;
  top: -150px; left: -150px;
  opacity: 0.05;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
}
.hero-decor-2 {
  width: 350px; height: 350px;
  bottom: -80px; right: -100px;
  opacity: 0.06;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
}
.hero-decor-3 {
  width: 200px; height: 200px;
  top: 30%; left: 60%;
  opacity: 0.04;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
}

/* Hero text entrance */
.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-content.reveal {
  transform: translateY(80px);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}
.hero-content.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll indicator pulse */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  animation: floatBounce 2.5s ease-in-out infinite;
}
@keyframes floatBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 0.5; }
}

/* ============================================
   ENHANCED VALUE CARDS — 3D TILT READY
   ============================================ */
.value-card {
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #D4A843);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
}
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover {
  box-shadow: 0 20px 60px rgba(184, 134, 11, 0.12);
  border-color: rgba(184, 134, 11, 0.2);
}

/* ============================================
   ENHANCED TIMELINE — ANIMATED PROGRESS
   ============================================ */
.timeline-progress {
  position: absolute;
  top: 0;
  right: 50%;
  width: 2px;
  height: 0%;
  background: linear-gradient(180deg, var(--accent), #D4A843);
  transform: translateX(50%);
  z-index: 1;
  transition: height 0.1s linear;
}

.timeline-content {
  width: 42%;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease-out);
  transform-style: preserve-3d;
}
.timeline-content:hover {
  box-shadow: 0 16px 48px rgba(28, 25, 23, 0.1);
}

.timeline-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.8s var(--ease-out), filter 0.8s var(--ease-out);
}
.timeline-image:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

/* ============================================
   ENHANCED PLAY BUTTON — PULSE RING
   ============================================ */
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-out);
  box-shadow: 0 0 40px var(--accent-glow);
}
.play-btn::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.4;
  animation: playPulse 2s ease-in-out infinite;
}
@keyframes playPulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.5); opacity: 0; }
}
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.15);
}

/* ============================================
   ENHANCED STATS — GLOW EFFECT
   ============================================ */
.stat-item {
  text-align: center;
  padding: 32px 16px;
  transition: transform 0.4s var(--ease-out);
}
.stat-item:hover {
  transform: translateY(-6px);
}
.stat-number {
  font-family: 'Space Grotesk', 'Heebo', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
  text-shadow: 0 0 40px var(--accent-glow);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .timeline::before { right: 24px; }
  .timeline-progress { right: 24px; }
  .timeline-item, .timeline-item:nth-child(odd) {
    flex-direction: column;
    padding-right: 60px;
  }
  .timeline-dot { right: 0; transform: none; }
  .timeline-content, .timeline-image { width: 100%; }
  .timeline-image { margin-top: 16px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-cta-inner { flex-direction: column; text-align: center; padding: 36px 32px; }
  .footer-cta-text { text-align: center; }
}

@media (max-width: 768px) {
  :root { --section-padding: 64px 0; --nav-height: 64px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(249,247,242,0.98);
    backdrop-filter: blur(16px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item:nth-child(2), .stat-item:nth-child(4) { transform: none; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid .value-card:nth-child(2),
  .values-grid .value-card:nth-child(3) { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .hero { min-height: 85vh; }
  .hero-subtitle { font-size: 1rem; }
  /* Reduce parallax on mobile */
  [data-parallax] { transform: none !important; }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal--left, .reveal--right, .reveal--scale, .reveal--rotate {
    opacity: 1; transform: none;
  }
  .stagger > * { opacity: 1; transform: none; }
  .split-word { opacity: 1; transform: none; }
  [data-parallax] { transform: none !important; }
  .scroll-progress { display: none; }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-section {
  padding: 150px 0 80px;
  background: var(--bg-body);
}

.legal-content {
  background: var(--bg-white);
  padding: 50px 60px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-main);
  line-height: 1.8;
}

.legal-content h1, 
.legal-content h2, 
.legal-content h3 {
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h1 {
  font-size: 2rem;
  border-bottom: 2px solid var(--border);
  padding-bottom: 10px;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-right: 20px;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.legal-content td, .legal-content th {
  padding: 12px;
  border: 1px solid var(--border);
}

@media (max-width: 768px) {
  .legal-section {
    padding: 100px 0 60px;
  }
  .legal-content {
    padding: 30px 20px;
  }
}
