/* ═══════════════════════════════════════════════════
   MINDZ Co-Working Landing Page – CSS
   WOW Edition – Premium Dark Design
   ═══════════════════════════════════════════════════ */

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

:root {
  --dark: #0A0A0A;
  --mid: #121212;
  --card: #1A1A1A;
  --input-bg: #232323;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.16);
  --text: #F0F0F0;
  --muted: #6B7280;
  --muted-light: #9CA3AF;
  --accent: #f15f40;
  --accent-hover: #E5503A;
  --accent-soft: rgba(241,95,64,0.12);
  --accent-glow: rgba(241,95,64,0.25);
  --accent-warm: #ff8a65;
  --success: #22C55E;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-logo: 'Archivo Black', sans-serif;
  --radius-chip: 6px;
  --radius-input: 10px;
  --radius-card: 14px;
  --radius-modal: 20px;
  --sp-xs: 4px;
  --sp-sm: 8px;
  --sp-md: 16px;
  --sp-lg: 24px;
  --sp-xl: 32px;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--accent); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }

/* ─── UTILITIES ─────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-lg); }
.section { padding: 96px 0; position: relative; }
.section-dark { background: var(--mid); }
.text-center { text-align: center; }
.text-muted { color: var(--muted-light); }
.text-accent { color: var(--accent); }

/* Dot pattern on dark sections */
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-sm);
}
.section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--sp-md);
}
.section-subtitle {
  font-size: 18px;
  color: var(--muted-light);
  max-width: 640px;
  margin: 0 auto var(--sp-xl);
  line-height: 1.8;
}

/* ─── BUTTONS ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: 14px 32px;
  border-radius: var(--radius-input);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* ─── NAVBAR ────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 56px;
  width: auto;
}
.nav-logo:hover { opacity: 0.9; }
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  list-style: none;
}
.nav-links a {
  color: var(--muted-light);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-right {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}
.lang-toggle {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-chip);
  transition: all 0.15s;
}
.lang-toggle:hover { color: var(--text); border-color: var(--border-hover); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}
.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); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--sp-xl);
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
}
.mobile-nav a:hover { color: var(--accent); }

/* ─── HERO ──────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.7) 60%, var(--dark) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 var(--sp-lg);
}

/* Radial glow behind hero content */
.hero-content::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241,95,64,0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

.hero-logo-img {
  height: 280px;
  width: auto;
  max-width: 90%;
  margin: 0 auto 4px;
}

/* Animated gradient tagline */
.hero-tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm), var(--accent));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

.hero-title {
  font-size: 22px;
  font-weight: 400;
  color: var(--muted-light);
  margin-bottom: 12px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: 8px 20px;
  background: var(--accent-soft);
  border: 1px solid rgba(241,95,64,0.2);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: var(--sp-md);
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
  opacity: 0.35;
  transition: opacity 0.3s;
}
.scroll-indicator:hover {
  opacity: 0.7;
}
.scroll-indicator svg { width: 24px; height: 24px; stroke: var(--muted); }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ─── TRUST BAR ────────────────────────── */
.trust-bar {
  background: var(--mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-lg);
  text-align: center;
}
.trust-item {
  transition: transform 0.3s;
  position: relative;
}
.trust-item:hover {
  transform: translateY(-2px);
}
.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border);
}
.trust-item-value {
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 32px var(--accent-glow);
}
.trust-item-label {
  font-size: 13px;
  color: var(--muted-light);
  margin-top: var(--sp-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ─── FEATURES ──────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--sp-xl);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
  border-color: rgba(241,95,64,0.25);
  border-top-color: rgba(241,95,64,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 -2px 24px rgba(241,95,64,0.08);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-input);
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-md);
  transition: all 0.25s;
}
.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  stroke-width: 1.8;
  fill: none;
}
.feature-card:hover .feature-icon {
  background: var(--accent);
  transform: scale(1.05);
}
.feature-card:hover .feature-icon svg {
  stroke: #fff;
}
.feature-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--sp-sm);
}
.feature-desc {
  font-size: 14px;
  color: var(--muted-light);
  line-height: 1.75;
}

/* ─── PRICING ───────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
  margin-bottom: 64px;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--sp-xl);
  text-align: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.price-card:hover {
  border-color: rgba(241,95,64,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.price-card.featured {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(135deg, var(--accent), var(--accent-warm)) border-box;
  box-shadow: 0 0 60px rgba(241,95,64,0.12), 0 0 120px rgba(241,95,64,0.06);
  transform: translateY(-4px);
}
.price-card.featured:hover {
  box-shadow: 0 0 60px rgba(241,95,64,0.2), 0 0 120px rgba(241,95,64,0.1), 0 16px 48px rgba(0,0,0,0.4);
  transform: translateY(-8px);
}
.price-card.featured::before {
  content: attr(data-badge);
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.price-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--sp-sm);
}
.price-amount {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--sp-xs);
}
.price-amount .currency { font-size: 24px; vertical-align: top; }
.price-period {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: var(--sp-lg);
}
.price-per-day {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: var(--sp-lg);
  padding-bottom: var(--sp-md);
  border-bottom: 1px solid var(--border);
}
.price-save {
  display: inline-block;
  background: rgba(34,197,94,0.12);
  color: var(--success);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 100px;
  margin-bottom: var(--sp-sm);
}
.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: var(--sp-lg);
}
.price-features li {
  font-size: 14px;
  color: var(--muted-light);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}
.price-features li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.price-card .btn { width: 100%; justify-content: center; }

/* ─── PODCAST STUDIO ────────────────────── */
.studio {
  position: relative;
  overflow: hidden;
}
.studio-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.studio-img {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.studio-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(241,95,64,0.12) 0%, transparent 50%);
  pointer-events: none;
  transition: opacity 0.3s;
}
.studio-img:hover::after {
  opacity: 0.6;
}
.studio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.studio-img:hover img { transform: scale(1.03); }
.studio-text h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: var(--sp-md);
}
.studio-text p {
  font-size: 16px;
  color: var(--muted-light);
  margin-bottom: var(--sp-lg);
  line-height: 1.7;
}
.studio-features {
  list-style: none;
  margin-bottom: var(--sp-xl);
}
.studio-features li {
  font-size: 14px;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  color: var(--muted-light);
}
.studio-features li::before {
  content: "◆";
  color: var(--accent);
  font-size: 8px;
}
.studio-price {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: var(--sp-lg);
}
.studio-price strong {
  font-size: 24px;
  color: var(--text);
}

/* ─── GALLERY ───────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.gallery-item {
  border-radius: var(--radius-chip);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(241,95,64,0);
  transition: background 0.3s;
  pointer-events: none;
}
.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  z-index: 1;
  border-radius: var(--radius-input);
}
.gallery-item:hover::after {
  background: rgba(241,95,64,0.08);
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.96);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-card);
  object-fit: contain;
  animation: lightboxIn 0.3s ease;
}
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s;
  line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--text);
  font-size: 24px;
  padding: 16px;
  cursor: pointer;
  border-radius: var(--radius-input);
  transition: background 0.15s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ─── TESTIMONIALS ──────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--sp-xl) var(--sp-xl) var(--sp-lg);
  position: relative;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card:hover {
  border-color: rgba(241,95,64,0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 40px rgba(241,95,64,0.04);
}
.testimonial-quote-mark {
  font-size: 48px;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: var(--sp-xs);
  user-select: none;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--sp-md);
  color: #FACC15;
  font-size: 14px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--muted-light);
  line-height: 1.75;
  margin-bottom: var(--sp-lg);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 600;
}
.testimonial-role {
  font-size: 12px;
  color: var(--muted);
}

/* ─── CONTACT / LOCATION ────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-map {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  position: relative;
}
.map-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  width: 100%;
  height: 100%;
  background: var(--card);
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s;
}
.map-fallback:hover { background: var(--input-bg); }
.map-fallback-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-sm);
}
.map-fallback-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 2; }
.map-fallback-name { font-size: 16px; font-weight: 600; }
.map-fallback-addr { font-size: 13px; color: var(--muted-light); }
.map-fallback-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-top: var(--sp-sm);
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
}
.contact-info h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: var(--sp-lg);
}
.contact-item {
  display: flex;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}
.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-input);
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.contact-item:hover .contact-icon {
  background: var(--accent);
  transform: scale(1.05);
}
.contact-item:hover .contact-icon svg {
  stroke: #fff;
}
.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
}
.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: var(--sp-xs);
}
.contact-value {
  font-size: 15px;
  color: var(--text);
}
.contact-value a { color: var(--text); }
.contact-value a:hover { color: var(--accent); }

/* ─── CTA SECTION ───────────────────────── */
.cta-section {
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(241,95,64,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 0%, rgba(241,95,64,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section .section-title {
  font-size: 40px;
}
.cta-section .section-subtitle {
  margin-bottom: 40px;
}
.cta-section .btn-primary {
  padding: 16px 40px;
  font-size: 16px;
}

/* ─── FOOTER ────────────────────────────── */
.footer {
  background: var(--mid);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo-link { display: inline-block; margin-bottom: var(--sp-md); }
.footer-logo-img { height: 48px; width: auto; }
.footer-tagline {
  font-size: 14px;
  color: var(--muted-light);
  margin-bottom: var(--sp-lg);
}
.footer h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: var(--sp-md);
}
.footer-links {
  list-style: none;
}
.footer-links li { margin-bottom: var(--sp-sm); }
.footer-links a {
  font-size: 14px;
  color: var(--muted-light);
  transition: color 0.15s;
  position: relative;
}
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-links a:hover::after { width: 100%; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--sp-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}
.footer-legal {
  display: flex;
  gap: var(--sp-lg);
}
.footer-legal a { color: var(--muted); }
.footer-legal a:hover { color: var(--text); }

/* ─── REVEAL ANIMATIONS ─────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid items */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ─── RESPONSIVE ────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .studio-inner { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--sp-xl); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .lang-toggle { display: none; }
  .hero-logo-img { width: 100%; max-width: none; height: auto; }
  .hero-tagline { font-size: 12px; letter-spacing: 0.2em; }
  .hero-title { font-size: 18px; }
  .section { padding: 64px 0; }
  .section-title { font-size: 28px; }
  .cta-section .section-title { font-size: 28px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-md); }
  .trust-item + .trust-item::before { display: none; }
  .trust-item-value { font-size: 28px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .footer-bottom { flex-direction: column; gap: var(--sp-md); text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; max-width: 320px; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--sp-md); }
  .hero-logo-img { width: 100%; max-width: none; height: auto; }
  .section-title { font-size: 24px; }
  .cta-section .section-title { font-size: 24px; }
  .price-amount { font-size: 36px; }
}

/* ─── REDUCED MOTION ────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-indicator { animation: none; }
  .hero-tagline { animation: none; }
  .reveal { transition-duration: 0.01ms !important; transition-delay: 0ms !important; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
