/* =============================================
   ElevAlma — Sitio Web
   Estética: Dark + Gold, animaciones suaves
   ============================================= */

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

:root {
  --gold: #c9a84c;
  --gold-light: #e4cc7a;
  --gold-dim: rgba(201,168,76,0.15);
  --gold-glow: rgba(201,168,76,0.08);
  --bg: #060606;
  --bg-card: rgba(255,255,255,0.025);
  --bg-card-hover: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --text: #f0efe8;
  --text-muted: rgba(255,255,255,0.5);
  --text-dim: rgba(255,255,255,0.3);
  --nav-h: 72px;
  --section-py: clamp(80px, 10vw, 140px);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ---- TYPOGRAPHY ---- */
.label {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.heading-xl {
  font-size: clamp(44px, 6.5vw, 82px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #fff;
}

.heading-lg {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.heading-md {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  line-height: 1.25;
}

.body-text {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
}

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

section {
  padding: var(--section-py) 0;
  position: relative;
}

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
  background: rgba(6,6,6,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 0.5px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-svg {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 15px;
  font-weight: 500;
  padding: 10px 24px;
  border: 1.5px solid var(--border-hover);
  border-radius: 8px;
  color: #fff;
  transition: all 0.3s;
}

.nav-cta:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.nav-cta-gold {
  font-size: 15px;
  font-weight: 500;
  padding: 10px 24px;
  background: var(--gold);
  color: #0a0a1a;
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  transition: all 0.3s;
  margin-left: 8px;
}
.nav-cta-gold:hover {
  background: transparent;
  color: var(--gold);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
}

.nav-mobile span {
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-tzadi-bg {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%) scale(0.92);
  width: 55vw;
  max-width: 650px;
  height: auto;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  animation: tzadi-reveal 2.4s ease-out 0.6s forwards;
}

@keyframes tzadi-reveal {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(0.92);
  }
  100% {
    opacity: 0.03;
    transform: translateY(-50%) scale(1);
  }
}

.hero-gradient {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  background: var(--gold);
  top: 10%;
  right: -10%;
  animation: float 12s ease-in-out infinite;
}

.hero-gradient-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.06;
  background: #6366f1;
  bottom: 20%;
  left: -5%;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-content .label {
  margin-bottom: 24px;
  display: inline-block;
}

.hero-content .heading-xl {
  margin-bottom: 24px;
}

.hero-content .heading-xl em {
  font-style: normal;
  color: var(--gold);
}

.hero-content .body-text {
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #060606;
  padding: 16px 34px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.15);
  padding: 16px 34px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s;
}

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

/* ---- FEATURED VIDEO ---- */
.featured-video {
  margin-top: 60px;
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  gap: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 600px;
}

.featured-video:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.featured-thumb {
  width: 200px;
  min-width: 200px;
  min-height: 120px;
  background: linear-gradient(135deg, #0d0d1a, #1a0d2a);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
  background: rgba(6,6,6,0.5);
}

.play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 12px solid var(--gold);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 3px;
}

.featured-video:hover .play-btn {
  background: var(--gold);
}

.featured-video:hover .play-btn::after {
  border-left-color: #0a0a0a;
}

.featured-info {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-info .label {
  font-size: 10px;
  margin-bottom: 6px;
}

.featured-info h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
}

.featured-info .meta {
  font-size: 12px;
  color: var(--text-dim);
}

/* ---- HERO STATS ---- */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  padding: 28px 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
  position: relative;
}
.hero-stat-number {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero-stat-plus {
  position: absolute;
  top: 0;
  right: 12px;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.6;
}
.hero-stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.2);
}
@media (max-width: 600px) {
  .hero-stats { padding: 20px 16px; gap: 0; }
  .hero-stat { padding: 0 20px; }
  .hero-stat-number { font-size: 26px; }
  .hero-stat-plus { right: 4px; font-size: 16px; }
}

/* ---- SCROLL LINE ---- */
.scroll-line {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: 2px;
}

.scroll-line::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---- DIVIDER ---- */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

/* ---- VIDEOS GRID ---- */
.videos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.videos-header .heading-lg {
  max-width: 500px;
}

.filter-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-card);
  border-radius: 8px;
  padding: 4px;
  border: 0.5px solid var(--border);
}

.filter-tab {
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 6px;
  color: var(--text-dim);
  transition: all 0.3s;
}

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

.filter-tab.active {
  background: var(--gold-dim);
  color: var(--gold);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.video-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.video-card-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0d0d1a, #1a0d2a);
  position: relative;
  overflow: hidden;
}

.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card:hover .video-card-thumb img {
  transform: scale(1.05);
}

.video-card-thumb .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: all 0.3s;
}

.video-card:hover .video-card-thumb .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.video-card-body {
  padding: 16px 20px 20px;
}

.video-card-body .label {
  font-size: 10px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.video-card-body h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.35;
}

.video-card-body p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-card-body .meta {
  font-size: 12px;
  color: var(--text-dim);
  display: flex;
  gap: 12px;
}

.video-card-body .meta span::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  background: var(--text-dim);
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 8px;
}

.video-card-body .meta span:first-child::before {
  display: none;
}

.more-videos {
  text-align: center;
  margin-top: 56px;
}

.more-videos a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-image {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #0d0d1a, #1a0d2a);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  border: 0.5px solid var(--border);
}

.about-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-initials {
  font-size: 64px;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.3;
  letter-spacing: 8px;
}

.about-content .label {
  margin-bottom: 20px;
  display: block;
}

.about-content .heading-lg {
  margin-bottom: 24px;
}

.about-content .body-text {
  margin-bottom: 32px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  transition: all 0.3s;
}

.stat-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.stat-number {
  font-size: 32px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-dim);
}

/* ---- SERVICES ---- */
.services-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.services-header .label {
  margin-bottom: 16px;
  display: block;
}

.services-header .heading-lg {
  margin-bottom: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.service-card.popular {
  border: 1.5px solid rgba(201,168,76,0.3);
}

.service-badge {
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.service-card .service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}

.service-price .amount {
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
}

.service-price .period {
  font-size: 13px;
  color: var(--text-dim);
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}

.service-cta {
  display: block;
  text-align: center;
  padding: 12px;
  border: 1px solid var(--border-hover);
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s;
}

.service-cta:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.service-card.popular .service-cta {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
  font-weight: 500;
}

.service-card.popular .service-cta:hover {
  box-shadow: 0 8px 24px rgba(201,168,76,0.25);
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-info .label {
  margin-bottom: 20px;
  display: block;
}

.contact-info .heading-lg {
  margin-bottom: 16px;
}

.contact-info .body-text {
  margin-bottom: 40px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s;
}

.contact-channel:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.contact-channel-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-channel-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-channel-label {
  font-size: 11px;
  color: var(--text-dim);
  margin-bottom: 2px;
}

.contact-channel-value {
  font-size: 14px;
  color: var(--text);
}

.contact-form {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  transition: all 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.03);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: #1a1a1a;
  color: var(--text);
}

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

.form-submit {
  width: 100%;
  background: var(--gold);
  color: #0a0a0a;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s;
  margin-top: 8px;
  border: none;
  cursor: pointer;
}

.form-submit:hover {
  box-shadow: 0 8px 32px rgba(201,168,76,0.25);
  transform: translateY(-2px);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

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

/* ---- NEWSLETTER ---- */
.newsletter-section {
  padding: var(--section-py) 0;
}

.newsletter-box {
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(201,168,76,0.02) 100%);
  border: 0.5px solid rgba(201,168,76,0.15);
  border-radius: 16px;
  padding: clamp(40px, 5vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-content {
  position: relative;
  z-index: 1;
}

.newsletter-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--gold);
}

.newsletter-box .heading-md {
  margin-bottom: 12px;
}

.newsletter-form {
  max-width: 520px;
  margin: 0 auto;
}

.newsletter-input-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 140px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: all 0.3s;
}

.newsletter-input:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.03);
}

.newsletter-input::placeholder {
  color: var(--text-dim);
}

.newsletter-input-email {
  flex: 1.5;
}

.newsletter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #0a0a0a;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.25);
}

.newsletter-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.newsletter-privacy {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 12px;
}

.newsletter-success {
  padding: 20px;
}

.newsletter-success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(34,197,94,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #22c55e;
}

.newsletter-success h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

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

.newsletter-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.nl-circle {
  position: absolute;
  border-radius: 50%;
  border: 0.5px solid rgba(201,168,76,0.08);
}

.nl-circle-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -80px;
  animation: float 10s ease-in-out infinite;
}

.nl-circle-2 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  left: -40px;
  animation: float 13s ease-in-out infinite reverse;
}

@media (max-width: 600px) {
  .newsletter-input-group {
    flex-direction: column;
  }
  .newsletter-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---- ETZ JAIM ---- */
.etz-section {
  padding: 100px 0 80px;
}

.etz-container {
  max-width: 400px;
  margin: 0 auto;
}

.etz-svg {
  width: 100%;
  height: auto;
}

/* ---- FOOTER ---- */
.footer {
  border-top: 0.5px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color 0.3s;
}

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

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

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

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ---- MARQUEE ---- */
.marquee-section {
  overflow: hidden;
  padding: 32px 0;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  color: var(--text-dim);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.marquee-item .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 24px;
  vertical-align: middle;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- CURSOR GLOW (subtle) ---- */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ---- MOBILE MENU ---- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,6,6,0.95);
  backdrop-filter: blur(24px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-overlay a {
  font-size: 24px;
  color: var(--text);
  transition: color 0.3s;
}

.mobile-overlay a:hover {
  color: var(--gold);
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav-links, .nav-cta, .nav-cta-gold { display: none; }
  .nav-mobile { display: flex; }

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

  .about-image {
    max-height: 300px;
    aspect-ratio: 16/9;
  }

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

  .featured-video {
    flex-direction: column;
    max-width: 100%;
  }

  .featured-thumb {
    width: 100%;
    min-width: unset;
    min-height: 180px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-content .heading-xl {
    font-size: 32px;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .stat-number { font-size: 22px; }
  .stat-label { font-size: 10px; }

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

/* ---- LOADING ANIMATION ---- */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}

.page-loader.done {
  opacity: 0;
  visibility: hidden;
}

.loader-text {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 6px;
  color: #fff;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

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