/* ==========================================================================
   ASLAN GRUP — Premium Design System
   Dark luxury · Gold + Orange · Space Grotesk + Inter
   ========================================================================== */

:root {
  --bg: #0a0a0a;
  --bg-elev: #111111;
  --panel: #161616;
  --panel-2: #1c1c1c;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: #f4f4f4;
  --text-dim: #c9c9c9;
  --muted: #8a8a8a;
  --gold: #f5b942;
  --gold-2: #ffd66b;
  --orange: #ff7a1a;
  --orange-2: #ff9444;
  --green: #34d399;
  --red: #ef4444;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-1: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-2: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 0 1px rgba(245, 185, 66, 0.4), 0 8px 32px rgba(245, 185, 66, 0.18);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
  --maxw: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 900px) { body { cursor: auto; } }

a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--gold); }
img, svg { display: block; max-width: 100%; }

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

/* ===== Custom cursor ===================================================== */
.cursor, .cursor-follower {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  mix-blend-mode: difference;
  will-change: transform;
}
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s var(--ease);
  transform: translate(-50%, -50%);
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.cursor.is-hover { width: 56px; height: 56px; background: rgba(245, 185, 66, 0.2); }
.cursor-follower.is-hover { width: 64px; height: 64px; }
@media (max-width: 900px) { .cursor, .cursor-follower { display: none; } }

/* ===== Loader ============================================================ */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 42px;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--orange) 50%, var(--gold) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 2s linear infinite;
}
@keyframes shimmer { to { background-position: 200% 0; } }
.loader-bar {
  width: 200px; height: 2px;
  background: var(--panel-2);
  border-radius: 99px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-bar-fill {
  width: 0%; height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transition: width 0.4s var(--ease);
}

/* ===== Nav =============================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 32px;
  transition: all 0.4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 12px 32px;
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--bg);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  border-radius: 8px;
  font-size: 18px;
  box-shadow: var(--shadow-gold);
  overflow: hidden;
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.08em;
}
.logo-text em { color: var(--gold); font-style: normal; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px;
  color: var(--text-dim);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--bg-elev);
  border: 1px solid var(--line-2);
  border-radius: 99px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease);
}
.nav-cta:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.nav-cta-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); } }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav { padding: 14px 18px; }
}

/* ===== Hero ============================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 32px 60px;
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245, 185, 66, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 185, 66, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.4), transparent 60%);
  top: -150px; right: -100px;
  animation: float 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245, 185, 66, 0.3), transparent 60%);
  bottom: -100px; left: -100px;
  animation: float 14s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}
.hero-canvas {
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 100%;
  z-index: 1;
}
.hero-canvas canvas,
.machine-canvas canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}
.hero-brand {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px solid rgba(245, 185, 66, 0.4);
  box-shadow: 0 8px 34px rgba(245, 185, 66, 0.2);
  margin-bottom: 20px;
  object-fit: cover;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(245, 185, 66, 0.08);
  border: 1px solid rgba(245, 185, 66, 0.2);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 32px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(245, 185, 66, 0.3);
  animation: pulse 2s ease-in-out infinite;
}
.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(56px, 9vw, 128px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  max-width: 900px;
}
.line { display: block; opacity: 0; transform: translateY(40px); animation: lineIn 0.8s var(--ease) forwards; }
.line:nth-child(2) { animation-delay: 0.15s; }
@keyframes lineIn { to { opacity: 1; transform: translateY(0); } }
.line-gold {
  background: linear-gradient(90deg, var(--gold) 0%, var(--orange) 50%, var(--gold-2) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: lineIn 0.8s var(--ease) forwards, shimmer 4s linear infinite 0.8s;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--text-dim);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-sub strong { color: var(--gold); font-weight: 600; }
.hero-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  max-width: 720px;
  font-size: 14px;
  color: var(--muted);
}
.hero-meta li {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  line-height: 1.4;
}
.hero-meta .meta-label {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-right: 4px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 720px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.hero-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label { font-size: 13px; color: var(--muted); }
@media (max-width: 768px) {
  .hero-canvas { width: 100%; height: 50%; opacity: 0.4; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .hero-meta { gap: 8px 10px; }
  .hero-meta li { font-size: 13px; padding: 7px 12px; }
}

.hero-scroll {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--muted);
  z-index: 2;
}
.hero-scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%, 100% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } }

/* ===== Buttons =========================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 99px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  cursor: none;
}
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--bg);
  box-shadow: var(--shadow-gold);
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(245, 185, 66, 0.4); }
.btn-ghost {
  background: var(--bg-elev);
  color: var(--text);
  border-color: var(--line-2);
}
.btn-ghost:hover { background: var(--panel); border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ===== Ribbon (marquee) ================================================== */
.ribbon {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.ribbon-track {
  display: flex; gap: 60px;
  animation: marquee 40s linear infinite;
  width: max-content;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--text-dim);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== Sections ========================================================== */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 120px 32px;
}
.section-dark {
  max-width: none;
  background: var(--bg-elev);
  position: relative;
}
.section-dark > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section-head { max-width: 720px; margin-bottom: 72px; }
.section-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ===== Services ========================================================== */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.service {
  background: var(--bg);
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s var(--ease);
  cursor: none;
}
.service:hover { background: var(--panel); transform: translateY(-4px); }
.service-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 24px;
}
.service-icon {
  width: 56px; height: 56px;
  color: var(--gold);
  margin-bottom: 24px;
  transition: transform 0.4s var(--ease);
}
.service:hover .service-icon { transform: scale(1.1) rotate(-3deg); }
.service h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service p { color: var(--text-dim); font-size: 15px; margin-bottom: 24px; }
.service-meta {
  font-size: 12px;
  color: var(--gold);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
@media (max-width: 900px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services { grid-template-columns: 1fr; } }

/* ===== Machine 3D stage ================================================== */
.machine-tabs {
  display: flex; gap: 4px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 48px;
}
.machine-tab {
  padding: 10px 24px;
  background: transparent;
  color: var(--text-dim);
  border: none;
  border-radius: 99px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  cursor: none;
  transition: all 0.3s var(--ease);
}
.machine-tab.active {
  background: var(--gold);
  color: var(--bg);
}
.machine-stage {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px;
  min-height: 540px;
  position: relative;
  overflow: hidden;
}
.machine-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245, 185, 66, 0.06), transparent 70%);
  pointer-events: none;
}
.machine-canvas {
  width: 100%; height: 480px;
  position: relative;
  z-index: 1;
}
.machine-media {
  position: relative;
}
.machine-photo-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.machine-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.machine-photo.active {
  opacity: 1;
  transform: scale(1);
}

.no-3d .hero-canvas,
.no-3d .machine-canvas {
  display: none;
}

.no-3d .machine-media {
  min-height: 480px;
}

.no-3d .machine-photo-wrap {
  position: relative;
  inset: auto;
  pointer-events: auto;
}

.no-3d .machine-photo {
  position: relative;
  display: none;
  opacity: 1;
  transform: none;
  height: 480px;
}

.no-3d .machine-photo.active {
  display: block;
}
.machine-info { position: relative; z-index: 1; }
.machine-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.machine-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(245, 185, 66, 0.1);
  border: 1px solid rgba(245, 185, 66, 0.2);
  border-radius: 99px;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 28px;
}
.machine-specs {
  list-style: none;
  margin-bottom: 28px;
}
.machine-specs li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.machine-specs li span { color: var(--muted); }
.machine-specs li strong {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--text);
}
.machine-desc { color: var(--text-dim); font-size: 15px; line-height: 1.7; }
@media (max-width: 900px) {
  .machine-stage { grid-template-columns: 1fr; padding: 24px; }
  .machine-canvas { height: 320px; }
  .machine-photo-wrap {
    position: relative;
    inset: auto;
    margin-top: 14px;
  }
  .machine-photo {
    position: relative;
    height: 260px;
    display: none;
    opacity: 1;
    transform: none;
  }
  .machine-photo.active { display: block; }

  .no-3d .machine-media { min-height: 260px; }
  .no-3d .machine-photo { height: 260px; }
}

/* ===== Process =========================================================== */
.process {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
}
.process-step {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  transition: all 0.4s var(--ease);
}
.process-step:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.process-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 24px;
}
.process-step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.process-step p { color: var(--text-dim); font-size: 14px; }
.process-time {
  position: absolute;
  top: 24px; right: 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}
.process-arrow {
  display: grid; place-items: center;
  color: var(--gold);
  font-size: 28px;
  font-weight: 300;
}
@media (max-width: 900px) {
  .process { grid-template-columns: 1fr; }
  .process-arrow { transform: rotate(90deg); }
}

/* ===== Regions =========================================================== */
.regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.region {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: all 0.4s var(--ease);
  cursor: none;
}
.region:hover {
  border-color: var(--gold);
  background: var(--panel);
}
.region-wide { grid-column: span 3; background: linear-gradient(135deg, rgba(245, 185, 66, 0.08), rgba(255, 122, 26, 0.05)); border-color: rgba(245, 185, 66, 0.3); }
.region-pin {
  position: absolute;
  top: 24px; right: 24px;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(245, 185, 66, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
.region h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.region p { color: var(--text-dim); font-size: 14px; }
@media (max-width: 900px) {
  .regions { grid-template-columns: repeat(2, 1fr); }
  .region-wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .regions { grid-template-columns: 1fr; }
  .region-wide { grid-column: span 1; }
}

/* ===== Testimonials ====================================================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: all 0.4s var(--ease);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 8px; right: 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 96px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}
.testimonial:hover { transform: translateY(-4px); border-color: var(--line-2); }
.testimonial-stars { color: var(--gold); margin-bottom: 18px; font-size: 16px; }
.testimonial p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--bg);
  display: grid; place-items: center;
  border-radius: 50%;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.testimonial-author strong { display: block; font-weight: 600; }
.testimonial-author span { color: var(--muted); font-size: 13px; }
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }

/* ===== Final CTA ========================================================= */
.cta {
  position: relative;
  padding: 140px 32px;
  text-align: center;
  background: var(--bg);
  overflow: hidden;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.cta-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.4), transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cta-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245, 185, 66, 0.3), transparent 60%);
  top: 20%; right: 10%;
}
.cta-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
}
.cta-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-sub { font-size: 20px; color: var(--text-dim); margin-bottom: 48px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Footer ============================================================ */
.footer {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  padding: 80px 32px 32px;
}
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-grid a, .footer-grid span:not(.logo-text):not(.logo-mark):not(em) {
  display: block;
  color: var(--text-dim);
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}
.footer-grid a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* ===== Reveal animations ================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="100"] { transition-delay: 0.1s; }
[data-reveal-delay="300"] { transition-delay: 0.3s; }
[data-reveal-delay="500"] { transition-delay: 0.5s; }
[data-reveal-delay="700"] { transition-delay: 0.7s; }
