/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #09090b;
  --bg-secondary: #0f0f12;
  --bg-card: #141418;
  --bg-card-hover: #1a1a1f;
  --text-primary: #ececef;
  --text-secondary: #9898a0;
  --text-muted: #5a5a65;
  --accent: #d4911e;
  --accent-hover: #e6a52f;
  --accent-dark: #a06f10;
  --accent-glow: rgba(212, 145, 30, 0.08);
  --border: #1e1e24;
  --border-light: #2a2a32;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --transition: 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(212, 145, 30, 0.06);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

.section {
  padding: 120px 0;
}

.section-label {
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  font-weight: 800;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #e8a830 100%);
  color: var(--bg-primary);
  box-shadow: 0 4px 15px rgba(212, 145, 30, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, #f0b840 100%);
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 145, 30, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 145, 30, 0.1);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(9, 9, 11, 0.7);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(9, 9, 11, 0.92);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.nav-logo img {
  height: 44px;
  width: auto;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

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

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

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

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.80);
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

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

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

/* ===== SOCIAL PROOF STRIP ===== */
.social-proof {
  padding: 32px 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.5s ease forwards;
}

.proof-item:nth-child(1) { animation-delay: 0.3s; }
.proof-item:nth-child(3) { animation-delay: 0.45s; }
.proof-item:nth-child(5) { animation-delay: 0.6s; }
.proof-item:nth-child(7) { animation-delay: 0.75s; }

.proof-number {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}

.proof-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.proof-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}

@media (max-width: 768px) {
  .proof-strip {
    gap: 20px;
  }
  .proof-divider {
    display: none;
  }
  .proof-item {
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
    min-width: 130px;
  }
}

/* ===== SERVICES OVERVIEW (Home) ===== */
.services-overview {
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(212, 145, 30, 0.15);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(212, 145, 30, 0.12) 0%, rgba(212, 145, 30, 0.04) 100%);
  border: 1px solid rgba(212, 145, 30, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 1.25rem;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  position: relative;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 56px;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 145, 30, 0.15) 0%, rgba(212, 145, 30, 0.05) 100%);
  border: 2px solid rgba(212, 145, 30, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(212, 145, 30, 0.08);
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.step p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, rgba(212, 145, 30, 0.1) 0%, rgba(212, 145, 30, 0.02) 50%, rgba(212, 145, 30, 0.06) 100%);
  border: 1px solid rgba(212, 145, 30, 0.12);
  border-radius: 20px;
  padding: 72px 56px;
  text-align: center;
  margin: 0 auto;
  max-width: var(--max-width);
  box-shadow: 0 0 80px rgba(212, 145, 30, 0.04);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 145, 30, 0.4), transparent);
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== SERVICES PAGE ===== */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  pointer-events: none;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== METRICS / RESULTS ===== */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.metric-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.metric-card:hover {
  border-color: rgba(212, 145, 30, 0.15);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.metric-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
  display: inline;
}

.metric-suffix {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: inline;
}

.metric-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 12px 0 6px;
}

.metric-detail {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Comparison bar */
.metrics-comparison {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.comparison-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  min-width: 140px;
  text-align: right;
}

.comparison-track {
  flex: 1;
  height: 28px;
  background: var(--bg-card);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.comparison-fill {
  height: 100%;
  border-radius: 5px;
  transition: width 1.2s ease;
}

.comparison-fill-before {
  background: var(--border-light);
}

.comparison-fill-after {
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
}

.comparison-value {
  font-size: 0.85rem;
  font-weight: 700;
  min-width: 110px;
}

.comparison-value-before {
  color: var(--text-muted);
}

.comparison-value-after {
  color: var(--accent);
}

/* Metric card stagger */
.reveal-stagger .metric-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible .metric-card:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.reveal-stagger.visible .metric-card:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.reveal-stagger.visible .metric-card:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.reveal-stagger.visible .metric-card:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }

@media (max-width: 968px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .comparison-label {
    min-width: 100px;
    font-size: 0.8rem;
  }
  .comparison-value {
    min-width: 90px;
    font-size: 0.8rem;
  }
}

@media (max-width: 640px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .comparison-row {
    flex-wrap: wrap;
    gap: 8px;
  }
  .comparison-label {
    text-align: left;
    min-width: 100%;
  }
  .comparison-value {
    min-width: auto;
  }
}

/* ===== SAMPLE CONTENT ===== */
.sample-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ba-card {
  padding: 32px;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.ba-before {
  background: var(--bg-card);
}

.ba-after {
  background: rgba(212, 145, 30, 0.04);
  border-color: rgba(212, 145, 30, 0.25);
}

.ba-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.ba-badge-before {
  background: rgba(192, 57, 43, 0.1);
  color: #e74c3c;
}

.ba-badge-after {
  background: rgba(212, 145, 30, 0.1);
  color: var(--accent);
}

.ba-post {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-style: italic;
}

.ba-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

/* Platform tabs */
.sample-tabs {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.sample-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.sample-tab:hover {
  border-color: var(--border-light);
  color: var(--text-primary);
}

.sample-tab.active {
  background: rgba(212, 145, 30, 0.1);
  border-color: var(--accent);
  color: var(--accent);
}

/* Sample panels */
.sample-panels {
  max-width: 700px;
  margin: 0 auto;
}

.sample-panel {
  display: none;
}

.sample-panel.active {
  display: block;
}

.sample-post {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.sample-post-vertical {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.sample-post-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.sample-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sample-post-header strong {
  display: block;
  font-size: 0.9rem;
}

.sample-post-header span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.sample-post-body {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-primary);
}

.sample-post-hashtags {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--accent);
  line-height: 1.6;
}

.sample-post-meta {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.sample-post-meta i {
  color: var(--text-muted);
  margin-right: 4px;
}

.sample-explain {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border-left: 2px solid var(--accent);
}

.sample-explain strong {
  color: var(--accent);
}

@media (max-width: 640px) {
  .sample-before-after {
    grid-template-columns: 1fr;
  }
  .sample-tabs {
    gap: 4px;
  }
  .sample-tab {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}

/* ===== PRICING TIERS ===== */
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
}
@media (min-width: 1200px) {
  .pricing-tiers { grid-template-columns: repeat(4, 1fr); }
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
}

.pricing-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card-featured {
  border-color: var(--accent);
  background: rgba(212, 145, 30, 0.03);
  transform: scale(1.03);
  box-shadow: 0 8px 40px rgba(212, 145, 30, 0.1);
}

.pricing-card-featured:hover {
  border-color: var(--accent-hover);
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 16px 50px rgba(212, 145, 30, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 18px;
  border-radius: 20px;
}

.pricing-card-header {
  margin-bottom: 20px;
}

.pricing-card-header h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.pricing-card-desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.pricing-card-price {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-primary);
}

.pricing-card-featured .price-amount {
  color: var(--accent);
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-left: 4px;
}

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

.pricing-features li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 5px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.pricing-features li i {
  color: var(--accent);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-features li strong {
  color: var(--text-primary);
  font-weight: 600;
}

.pricing-features li span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.pricing-pitch {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border-left: 2px solid var(--accent);
}

@media (max-width: 968px) {
  .pricing-tiers {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .pricing-card-featured {
    transform: none;
  }
  .pricing-card-featured:hover {
    transform: translateY(-4px);
  }
}

/* ===== PACKAGE BUILDER ===== */
.package-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.package-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  transition: border-color var(--transition);
}

.package-item.active {
  border-color: var(--accent);
  background: rgba(212, 145, 30, 0.04);
}

.package-item-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.package-item-icon {
  width: 38px;
  height: 38px;
  background: rgba(212, 145, 30, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.package-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.package-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.package-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.qty-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.qty-value {
  min-width: 24px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.qty-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Toggle switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--border-light);
  border-radius: 26px;
  transition: background var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--text-primary);
  border-radius: 50%;
  transition: transform var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--accent);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

/* Summary panel */
.package-summary {
  position: sticky;
  top: 96px;
}

.package-summary-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.package-summary h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.summary-line-items {
  min-height: 40px;
}

.summary-empty {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.85rem;
}

.summary-line .label {
  color: var(--text-secondary);
}

.summary-line .price {
  font-weight: 600;
  color: var(--text-primary);
}

.summary-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.summary-total-main {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  padding: 8px 0 4px;
}

.summary-total-main span:last-child {
  color: var(--accent);
}

.summary-free-week {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(212, 145, 30, 0.08);
  border: 1px solid rgba(212, 145, 30, 0.2);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 968px) {
  .package-grid {
    grid-template-columns: 1fr;
  }
  .package-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .package-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .package-item-qty {
    align-self: flex-end;
  }
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse > * {
  direction: ltr;
}

.service-detail-visual {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 3rem;
}

.service-detail-content h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.service-detail-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-features {
  margin-bottom: 28px;
}

.service-features li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.price-tag {
  display: inline-block;
  background: rgba(212, 145, 30, 0.1);
  border: 1px solid rgba(212, 145, 30, 0.2);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== PORTFOLIO ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition);
}

.portfolio-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-card-media {
  aspect-ratio: 16/9;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.portfolio-card-media iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.portfolio-card-media .placeholder-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
}

.portfolio-card-body {
  padding: 24px;
}

.portfolio-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 8px;
}

.portfolio-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.portfolio-card-body p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

.portfolio-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.portfolio-card-link:hover {
  gap: 10px;
}

/* ===== ABOUT ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

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

.about-visual {
  aspect-ratio: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 145, 30, 0.08) 0%, transparent 70%);
}

.about-visual-text {
  font-size: 4rem;
  font-weight: 800;
  color: var(--border-light);
  letter-spacing: -2px;
  position: relative;
  z-index: 1;
}

.maximus-section {
  background: var(--bg-secondary);
}

.maximus-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.maximus-features {
  margin-top: 24px;
}

.maximus-feature {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.maximus-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(212, 145, 30, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.maximus-feature h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.maximus-feature p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ===== CONTACT & FORMS ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
}

.contact-info h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.contact-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-detail i {
  color: var(--accent);
  width: 20px;
  text-align: center;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a0a0a0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

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

.checkbox-group,
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.checkbox-label,
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.checkbox-label:hover,
.radio-label:hover {
  border-color: var(--border-light);
  color: var(--text-primary);
}

.checkbox-label input,
.radio-label input {
  accent-color: var(--accent);
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.char-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 4px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success.show {
  display: block;
}

.form-success i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 16px;
}

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

.form-success p {
  color: var(--text-secondary);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
}

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

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 320px;
}

.footer h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-links a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color var(--transition);
}

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

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(212, 145, 30, 0.25);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: var(--border-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question i {
  color: var(--text-muted);
  font-size: 0.75rem;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 22px 20px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* FAQ stagger */
.reveal-stagger .faq-item {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal-stagger.visible .faq-item:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.03s; }
.reveal-stagger.visible .faq-item:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
.reveal-stagger.visible .faq-item:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.13s; }
.reveal-stagger.visible .faq-item:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.18s; }
.reveal-stagger.visible .faq-item:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.23s; }
.reveal-stagger.visible .faq-item:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.28s; }
.reveal-stagger.visible .faq-item:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.33s; }
.reveal-stagger.visible .faq-item:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 0.38s; }

/* ===== ONBOARDING PAGE ===== */
.onboarding-form-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.form-section {
  margin-bottom: 36px;
}

.form-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(212, 145, 30, 0); }
  50% { box-shadow: 0 0 20px rgba(212, 145, 30, 0.15); }
}

/* Hero staggered entrance */
.hero-content .hero-label {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.2s;
}

.hero-content h1 {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.45s;
}

.hero-content > p {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.65s;
}

.hero-buttons {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.85s;
}

/* Scroll-triggered animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Staggered card reveals */
.reveal-stagger .service-card,
.reveal-stagger .step,
.reveal-stagger .package-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible .service-card,
.reveal-stagger.visible .step,
.reveal-stagger.visible .package-item {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.visible .service-card:nth-child(1),
.reveal-stagger.visible .step:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible .service-card:nth-child(2),
.reveal-stagger.visible .step:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.visible .service-card:nth-child(3),
.reveal-stagger.visible .step:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.visible .service-card:nth-child(4),
.reveal-stagger.visible .step:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.visible .service-card:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.visible .service-card:nth-child(6) { transition-delay: 0.40s; }

.reveal-stagger .pricing-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible .pricing-card:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.reveal-stagger.visible .pricing-card:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.reveal-stagger.visible .pricing-card:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }

.reveal-stagger.visible .pricing-card-featured {
  transform: scale(1.03);
}

@media (max-width: 968px) {
  .reveal-stagger.visible .pricing-card-featured {
    transform: none;
  }
}

/* Section label slide-in */
.reveal-label {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* CTA banner scale */
.cta-banner {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-banner:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 40px rgba(212, 145, 30, 0.1);
}

/* Accent text shimmer */
.hero h1 .accent {
  background: linear-gradient(90deg, var(--accent) 0%, #f0c45a 50%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

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

/* Step number pulse on reveal */
.reveal-stagger.visible .step-number {
  animation: scaleIn 0.4s ease forwards, glowPulse 2s ease-in-out 1s infinite;
}

/* Package summary slide-in */
.package-summary-inner {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.package-summary-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth button icon nudge */
.btn:hover i {
  transform: translateX(3px);
  transition: transform 0.2s ease;
}

.btn i {
  transition: transform 0.2s ease;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0a0a0a !important;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.25s ease-out;
    z-index: 999;
    visibility: hidden;
    padding: 24px;
  }

  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.25rem;
  }

  .nav-toggle {
    display: flex;
  }

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

  .service-detail.reverse {
    direction: ltr;
  }

  .about-content,
  .maximus-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    text-align: center;
    justify-content: center;
  }

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

  .cta-banner {
    padding: 40px 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

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

/* === Hero end-reveal: shows after intro video finishes (May 2026) ===
   z-index 5 sits ABOVE .hero::before (z-index 1 dark overlay) and
   .hero-content (z-index 2), so the wordmark renders against the actual
   video frame, not through the 80% darkening filter. */
.hero-end-mark {
  position: absolute;
  bottom: 7%;
  left: 50%;
  transform: translate(-50%, 24px);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: clamp(40px, 7vw, 84px);
  letter-spacing: 0.28em;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  white-space: nowrap;
  text-shadow:
    0 0 40px rgba(255,255,255,0.50),
    0 0 80px rgba(255,255,255,0.22),
    0 2px 4px rgba(0,0,0,0.5);
  transition: opacity 1.4s ease 0.2s, transform 1.4s ease 0.2s;
}
.hero-end-mark.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* === Hero continued ambient particles ===
   Also lifted above the darkening overlay (z-index 3 > 1). 20 particles,
   brighter glow, slightly larger so they read at a glance. */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.hero-particles.is-visible {
  opacity: 1;
}
.hero-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  box-shadow:
    0 0 10px rgba(255,255,255,0.85),
    0 0 22px rgba(255,255,255,0.45),
    0 0 38px rgba(255,255,255,0.20);
  animation: heroTwinkle 5s ease-in-out infinite;
}
.hero-particles span:nth-child(1)  { top: 14%; left:  8%; animation-delay: 0s;    animation-duration: 5.5s; }
.hero-particles span:nth-child(2)  { top: 22%; left: 78%; animation-delay: 1.4s;  animation-duration: 4.8s; }
.hero-particles span:nth-child(3)  { top: 52%; left: 18%; animation-delay: 2.6s;  animation-duration: 6.0s; }
.hero-particles span:nth-child(4)  { top: 65%; left: 88%; animation-delay: 0.9s;  animation-duration: 5.2s; }
.hero-particles span:nth-child(5)  { top: 38%; left: 48%; animation-delay: 3.1s;  animation-duration: 5.8s; }
.hero-particles span:nth-child(6)  { top: 75%; left: 32%; animation-delay: 1.8s;  animation-duration: 4.5s; }
.hero-particles span:nth-child(7)  { top: 18%; left: 62%; animation-delay: 2.2s;  animation-duration: 5.3s; }
.hero-particles span:nth-child(8)  { top: 58%; left: 70%; animation-delay: 0.4s;  animation-duration: 6.2s; }
.hero-particles span:nth-child(9)  { top: 30%; left: 92%; animation-delay: 3.6s;  animation-duration: 5.1s; }
.hero-particles span:nth-child(10) { top: 84%; left: 14%; animation-delay: 0.7s;  animation-duration: 5.9s; }
.hero-particles span:nth-child(11) { top: 45%; left:  4%; animation-delay: 2.9s;  animation-duration: 4.7s; }
.hero-particles span:nth-child(12) { top: 12%; left: 38%; animation-delay: 1.1s;  animation-duration: 6.1s; }
.hero-particles span:nth-child(13) { top: 80%; left: 60%; animation-delay: 3.4s;  animation-duration: 5.4s; }
.hero-particles span:nth-child(14) { top: 25%; left: 25%; animation-delay: 0.2s;  animation-duration: 4.9s; }
.hero-particles span:nth-child(15) { top: 90%; left: 78%; animation-delay: 2.4s;  animation-duration: 5.7s; }
.hero-particles span:nth-child(16) { top: 48%; left: 84%; animation-delay: 1.6s;  animation-duration: 5.0s; }
.hero-particles span:nth-child(17) { top:  8%; left: 50%; animation-delay: 3.8s;  animation-duration: 6.3s; }
.hero-particles span:nth-child(18) { top: 70%; left: 50%; animation-delay: 0.6s;  animation-duration: 5.6s; }
.hero-particles span:nth-child(19) { top: 32%; left: 12%; animation-delay: 2.0s;  animation-duration: 4.6s; }
.hero-particles span:nth-child(20) { top: 60%; left: 42%; animation-delay: 1.3s;  animation-duration: 5.8s; }

@keyframes heroTwinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.9); }
  50%      { opacity: 1.00; transform: scale(1.8); }
}

/* Respect reduced-motion: skip the twinkle, just show the mark instantly */
@media (prefers-reduced-motion: reduce) {
  .hero-particles span { animation: none; opacity: 0.5; }
  .hero-end-mark { transition: opacity 0.2s ease; transform: translate(-50%, 0); }
}
