/* ============================================
   Personata Studios Corporate - Style Sheet
   Dark premium theme with gold accents
   ============================================ */

/* --- CSS Variables --- */
:root {
  --bg-primary: #0a0e17;
  --bg-secondary: #111827;
  --bg-card: #1a2236;
  --bg-card-hover: #1f2a42;
  --text-primary: #f0f2f5;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --gold: #d4a843;
  --gold-light: #e8c96a;
  --gold-dark: #b08a2e;
  --accent-blue: #3b82f6;
  --border-color: rgba(212, 168, 67, 0.15);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --gradient-gold: linear-gradient(135deg, #d4a843, #e8c96a);
  --gradient-dark: linear-gradient(180deg, #0a0e17 0%, #111827 100%);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 4px 30px rgba(212, 168, 67, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

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

/* --- Utility --- */
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-secondary); }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 14, 23, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-logo-img {
  height: 120px;
  width: auto;
  display: block;
}

.footer-brand .nav-logo-img {
  height: 100px;
}

/* Legacy icon fallback */
.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--bg-primary);
  font-weight: 900;
}

.nav-logo .logo-corp {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-right-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.nav-cta-pill {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 8px 18px !important;
  background: rgba(212, 168, 67, 0.12) !important;
  border: 1px solid rgba(212, 168, 67, 0.25) !important;
  border-radius: 50px !important;
  color: var(--gold) !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  font-family: inherit !important;
  letter-spacing: 0.02em !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.nav-cta-pill:hover {
  background: rgba(212, 168, 67, 0.2) !important;
  border-color: var(--gold) !important;
  color: var(--gold-light) !important;
  transform: none !important;
  box-shadow: none !important;
}

.nav-consumer {
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  color: var(--text-muted) !important;
  letter-spacing: 0.03em;
  opacity: 0.7;
  transition: all var(--transition) !important;
}

.nav-consumer:hover {
  color: var(--gold) !important;
  opacity: 1;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--transition);
  position: relative;
}

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

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

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

.nav-cta {
  background: var(--gradient-gold) !important;
  color: var(--bg-primary) !important;
  padding: 8px 18px !important;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.02em;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
  color: var(--bg-primary) !important;
}

/* --- Dropdown Navigation --- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a .arrow {
  font-size: 0.6rem;
  transition: transform var(--transition);
  margin-left: 2px;
}

.nav-dropdown:hover > a .arrow,
.nav-dropdown.open > a .arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: rgba(17, 24, 39, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  list-style: none;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary) !important;
  transition: all var(--transition);
  white-space: nowrap;
}

.dropdown-menu a::after {
  display: none !important;
}

.dropdown-menu a:hover {
  color: var(--gold) !important;
  background: rgba(212, 168, 67, 0.06);
}

.dropdown-menu a .dd-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.dropdown-menu a:hover .dd-icon {
  background: rgba(212, 168, 67, 0.15);
  border-color: rgba(212, 168, 67, 0.25);
}

.dropdown-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 8px 0;
}

/* --- Industry page hero variant --- */
.industry-hero {
  padding: 160px 24px 80px;
  position: relative;
  overflow: hidden;
}

.industry-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 500px;
  background: radial-gradient(ellipse at top, rgba(212, 168, 67, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.industry-hero .container {
  position: relative;
  z-index: 1;
}

.industry-hero .hero-badge {
  margin-bottom: 24px;
}

.industry-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  max-width: 750px;
}

.industry-hero .hero-subtitle {
  max-width: 620px;
  margin-bottom: 40px;
}

/* --- Pain Points Grid --- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  border-left: 3px solid rgba(212, 168, 67, 0.3);
}

.pain-card:hover {
  border-left-color: var(--gold);
  background: var(--bg-card-hover);
}

.pain-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

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

/* --- Use Case / Touchpoint List --- */
.touchpoint-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.touchpoint-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
}

.touchpoint-item:hover {
  border-color: var(--border-color);
  transform: translateY(-3px);
}

.touchpoint-item .tp-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.touchpoint-item h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.touchpoint-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* --- ROI / Benefit Highlight --- */
.benefit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.benefit-row:last-child { margin-bottom: 0; }

.benefit-row.reverse { direction: rtl; }
.benefit-row.reverse > * { direction: ltr; }

.benefit-stat {
  text-align: center;
  padding: 60px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.benefit-stat .stat-number { margin-bottom: 12px; }

.benefit-text h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.benefit-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* --- Quote block --- */
.quote-block {
  background: var(--bg-card);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 32px 40px;
  margin: 48px 0;
  max-width: 800px;
}

.quote-block p {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-primary);
}

.quote-block .quote-source {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: normal;
  margin-top: 12px;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

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

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

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

.hero h1 .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--bg-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--bg-primary);
}

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

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

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* --- Sections --- */
/* --- Service Cards (animated) --- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.svc-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 0.85;
  cursor: pointer;
  perspective: 800px;
}

/* Hover indicator */
.svc-card-inner::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
  opacity: 0.4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity 0.4s ease;
  white-space: nowrap;
}

.svc-card:hover .svc-card-inner::after {
  opacity: 0;
}

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

.svc-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
  pointer-events: none;
}

.svc-card:hover .svc-canvas {
  opacity: 1;
}

.svc-card-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.svc-card:hover .svc-card-bg {
  background: linear-gradient(
    135deg,
    rgba(212, 168, 67, 0.12) 0%,
    rgba(176, 138, 46, 0.06) 40%,
    rgba(10, 14, 23, 0.95) 100%
  );
  border-color: rgba(212, 168, 67, 0.3);
  box-shadow: 0 20px 60px rgba(212, 168, 67, 0.1), inset 0 0 80px rgba(212, 168, 67, 0.03);
}

.svc-card-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-icon-wrap {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-icon {
  width: 100%;
  height: 100%;
  color: var(--gold);
  filter: drop-shadow(0 0 12px rgba(212, 168, 67, 0.2));
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-card:hover .svc-icon-wrap {
  transform: scale(0.7) translateY(-10px);
  margin-bottom: 8px;
}

.svc-card:hover .svc-icon {
  filter: drop-shadow(0 0 20px rgba(212, 168, 67, 0.5));
}

.svc-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-card:hover .svc-title {
  transform: translateY(-8px);
  font-size: 0.95rem;
}

.svc-reveal {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-card:hover .svc-reveal {
  max-height: 160px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 12px;
}

.svc-reveal p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.svc-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold) !important;
  letter-spacing: 0.03em;
  transition: gap 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.svc-link:hover {
  gap: 8px;
}

/* Shimmer line on hover */
.svc-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 168, 67, 0.04) 40%,
    rgba(212, 168, 67, 0.08) 50%,
    rgba(212, 168, 67, 0.04) 60%,
    transparent 100%
  );
  transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  pointer-events: none;
  border-radius: var(--radius-lg);
}

.svc-card:hover::after {
  left: 120%;
}

/* Pulsing border glow at rest */
.svc-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.08), transparent 50%, rgba(212, 168, 67, 0.05));
  opacity: 0;
  animation: svc-pulse var(--float-dur, 5s) ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
  pointer-events: none;
  z-index: 0;
}

@keyframes svc-pulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card { aspect-ratio: 1 / 0.8; }
}

@media (max-width: 768px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card {
    aspect-ratio: auto;
    animation: none;
  }
  .svc-reveal {
    max-height: none;
    opacity: 1;
    transform: none;
    margin-top: 12px;
  }
  .svc-card:hover .svc-icon-wrap { transform: none; margin-bottom: 20px; }
  .svc-card:hover .svc-title { transform: none; font-size: 1.05rem; }
  .svc-card-inner { padding: 28px 24px; }
}

/* --- Why Cards (typewriter reveal) --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  position: relative;
  padding: 36px 28px;
  background: transparent;
  cursor: default;
  min-height: 200px;
}

/* Animated border using SVG-style drawing */
.why-card-border {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  pointer-events: none;
}

.why-card-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.4s ease;
}

.why-card-border::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold), var(--gold-light)) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1.5px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-card:hover .why-card-border::before {
  border-color: transparent;
}

.why-card:hover .why-card-border::after {
  opacity: 1;
  animation: why-border-draw 0.8s ease forwards;
}

@keyframes why-border-draw {
  0% {
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }
  25% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  50% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

/* Background glow on hover */
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: radial-gradient(ellipse at center, rgba(212, 168, 67, 0.04) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card-inner {
  position: relative;
  z-index: 1;
}

.why-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  margin-bottom: 14px;
  opacity: 0.25;
  transition: all 0.5s ease;
}

.why-card:hover .why-num {
  opacity: 0.6;
  transform: scale(0.85);
  transform-origin: left top;
}

.why-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0;
  transition: margin-bottom 0.4s ease;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 28px;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
  opacity: 0.4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity 0.4s ease;
}

.why-card:hover::after {
  opacity: 0;
}

.why-card:hover .why-title {
  margin-bottom: 14px;
}

.why-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  min-height: 0;
  overflow: hidden;
}

/* Typing cursor */
.why-desc.typing::after {
  content: '|';
  color: var(--gold);
  font-weight: 300;
  animation: why-blink 0.6s step-end infinite;
  margin-left: 1px;
}

.why-desc.done::after {
  display: none;
}

@keyframes why-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card { min-height: auto; padding: 28px 24px; }
}

/* --- Equal hero buttons --- */
.hero-buttons-equal {
  display: grid !important;
  grid-template-columns: repeat(3, auto);
  gap: 12px;
  max-width: 540px;
}

.hero-buttons-equal .btn {
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  padding: 12px 18px;
  font-size: 0.82rem;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-buttons-equal .btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.12);
}

/* --- Radio Player (in navbar) --- */
.radio-player {
  position: relative;
  z-index: 10;
}

.radio-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.radio-toggle:hover {
  background: rgba(212, 168, 67, 0.2);
  border-color: var(--gold);
}

.radio-toggle.playing {
  background: rgba(212, 168, 67, 0.25);
  border-color: var(--gold);
}

.radio-toggle.playing .radio-icon {
  animation: radio-icon-pulse 1.5s ease-in-out infinite;
}

@keyframes radio-icon-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.radio-icon {
  font-size: 1rem;
}

.radio-expanded {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 300px;
  background: var(--bg-secondary);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.radio-player.open .radio-expanded {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Equalizer bars */
.radio-eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
  min-width: 28px;
}

.radio-bar {
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
  height: 4px;
  transition: height 0.2s ease;
}

.radio-player.playing .radio-bar {
  animation: radio-eq-bounce 0.8s ease-in-out infinite alternate;
}

.radio-player.playing .radio-bar:nth-child(1) { animation-delay: 0s; }
.radio-player.playing .radio-bar:nth-child(2) { animation-delay: 0.15s; }
.radio-player.playing .radio-bar:nth-child(3) { animation-delay: 0.3s; }
.radio-player.playing .radio-bar:nth-child(4) { animation-delay: 0.1s; }
.radio-player.playing .radio-bar:nth-child(5) { animation-delay: 0.25s; }

@keyframes radio-eq-bounce {
  0% { height: 4px; }
  100% { height: 22px; }
}

.radio-info {
  flex: 1;
  min-width: 0;
}

.radio-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.radio-status {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.radio-player.playing .radio-status {
  color: var(--gold);
}

.radio-play-btn {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.radio-play-btn:hover {
  background: rgba(212, 168, 67, 0.15);
}

.radio-player.playing .radio-play-btn {
  background: var(--gradient-gold);
  color: var(--bg-primary);
  border-color: transparent;
}

/* Volume slider */
.radio-volume {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--border-subtle);
  border-radius: 2px;
  outline: none;
  margin-top: 4px;
}

.radio-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 8px rgba(212, 168, 67, 0.3);
}

.radio-volume::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: none;
}

/* Pulsing dot when playing */
.radio-player.playing .radio-toggle::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
  margin-right: -4px;
}

@media (max-width: 768px) {
  .hero-buttons-equal {
    grid-template-columns: 1fr !important;
  }
  .radio-player { right: 16px; top: 12px; }
  .radio-toggle .radio-label { display: none; }
  .radio-expanded { width: 260px; }
}

/* --- Brands Row (scrolling) --- */
.brands-row {
  max-width: var(--max-width);
  margin: 32px auto 0;
  text-align: center;
  overflow: hidden;
}

.brands-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 14px;
}

.brands-scroll {
  display: flex;
  gap: 12px;
  animation: brands-scroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.brand-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  opacity: 0.6;
}

.brand-sep {
  color: rgba(212, 168, 67, 0.3);
}

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

/* --- Dual Path Cards --- */
.path-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.path-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text-primary) !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.path-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(212, 168, 67, 0.12);
}

.path-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  z-index: 0;
  opacity: 0.4;
  transition: opacity 0.5s ease;
}

.path-card:hover .path-canvas {
  opacity: 1;
}

.path-card-inner {
  position: relative;
  z-index: 1;
  padding: 44px 36px;
  background: rgba(26, 34, 54, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s ease, background 0.4s ease;
}

.path-card:hover .path-card-inner {
  border-color: rgba(212, 168, 67, 0.3);
  background: rgba(26, 34, 54, 0.7);
}

.path-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.path-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.path-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.path-features span {
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.path-features span::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.path-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold) !important;
  letter-spacing: 0.02em;
  transition: gap 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.path-card:hover .path-link {
  letter-spacing: 0.05em;
}

/* CTA dual buttons */
.cta-dual {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .path-grid { grid-template-columns: 1fr; }
  .path-card-inner { padding: 32px 24px; }
  .cta-dual { flex-direction: column; align-items: center; }
}

/* --- Partner Model Cards (3-up) --- */
.partner-models {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.pm-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  animation: svc-float var(--float-dur, 5s) ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(212, 168, 67, 0.1);
}

.pm-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  z-index: 0;
  opacity: 0.3;
  transition: opacity 0.5s ease;
}

.pm-card:hover .pm-canvas {
  opacity: 0.8;
}

.pm-inner {
  position: relative;
  z-index: 1;
  padding: 36px 28px;
  background: rgba(26, 34, 54, 0.88);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s ease, background 0.4s ease;
}

.pm-card:hover .pm-inner {
  border-color: rgba(212, 168, 67, 0.3);
  background: rgba(26, 34, 54, 0.7);
}

.pm-tier {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.pm-inner h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.pm-inner p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

@media (max-width: 1024px) {
  .partner-models { grid-template-columns: 1fr; max-width: 480px; }
}

/* --- Industry Pills --- */
.industry-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.industry-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 60px;
  color: var(--text-secondary) !important;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
}

.industry-pill:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.1);
}

.ip-icon {
  font-size: 1.1rem;
}

/* --- Revenue Math --- */
.revenue-math {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 780px;
  margin: 0 auto;
}

.rm-step {
  text-align: center;
  padding: 20px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  min-width: 140px;
  flex: 1;
  max-width: 180px;
  transition: border-color 0.3s ease;
}

.rm-step:hover {
  border-color: var(--border-color);
}

.rm-result {
  border-color: var(--gold) !important;
  box-shadow: var(--shadow-gold);
}

.rm-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

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

.rm-operator {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.4;
}

@media (max-width: 768px) {
  .revenue-math { flex-direction: column; gap: 12px; }
  .rm-operator { transform: rotate(90deg); }
}

/* --- Audio Showcase --- */
.audio-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.audio-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

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

.ac-play {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ac-play:hover {
  background: rgba(212, 168, 67, 0.15);
}

.ac-play.playing {
  background: var(--gradient-gold);
  color: var(--bg-primary);
  border-color: transparent;
}

.ac-info { flex: 1; }
.ac-info h4 { font-size: 0.92rem; margin-bottom: 2px; }
.ac-info p { font-size: 0.75rem; color: var(--text-muted); }

.ac-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 24px;
}

.ac-wave span {
  width: 3px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.2;
  transition: height 0.2s ease;
}

.audio-card:hover .ac-wave span {
  animation: ac-wave-idle 1s ease-in-out infinite alternate;
}

.audio-card:hover .ac-wave span:nth-child(1) { animation-delay: 0s; }
.audio-card:hover .ac-wave span:nth-child(2) { animation-delay: 0.1s; }
.audio-card:hover .ac-wave span:nth-child(3) { animation-delay: 0.2s; }
.audio-card:hover .ac-wave span:nth-child(4) { animation-delay: 0.3s; }
.audio-card:hover .ac-wave span:nth-child(5) { animation-delay: 0.15s; }
.audio-card:hover .ac-wave span:nth-child(6) { animation-delay: 0.25s; }
.audio-card:hover .ac-wave span:nth-child(7) { animation-delay: 0.05s; }
.audio-card:hover .ac-wave span:nth-child(8) { animation-delay: 0.35s; }

@keyframes ac-wave-idle {
  0% { height: 4px; opacity: 0.2; }
  100% { height: 20px; opacity: 0.5; }
}

@media (max-width: 768px) {
  .audio-showcase { grid-template-columns: 1fr; }
}

/* --- Credibility Strip --- */
.cred-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.cred-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cred-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.cred-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.cred-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .cred-strip { grid-template-columns: 1fr; }
}

/* --- Trust Badges --- */
.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.tb-icon {
  font-size: 1rem;
  color: var(--gold);
  opacity: 0.6;
}

@media (max-width: 768px) {
  .industry-pills { gap: 10px; }
  .industry-pill { padding: 10px 18px; font-size: 0.8rem; }
  .trust-badges { gap: 16px; }
  .trust-badge { font-size: 0.7rem; }
}

/* --- Listen Button --- */
.btn-listen {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(212, 168, 67, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-listen:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(212, 168, 67, 0.15);
}

/* Pulsing glow to draw attention */
.btn-listen::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 10px;
  background: rgba(212, 168, 67, 0.08);
  animation: listen-pulse 2.5s ease-in-out infinite;
}

@keyframes listen-pulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

/* --- Demo Reel Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 24px;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 640px;
  width: 100%;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
  padding: 4px 8px;
}

.modal-close:hover {
  color: var(--gold);
}

.modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.demo-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-slot {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: border-color 0.3s ease;
}

.demo-slot:hover {
  border-color: var(--border-color);
}

.demo-slot-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
}

.demo-slot-info {
  flex: 1;
}

.demo-slot-info h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.demo-slot-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.demo-play {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-play:not(:disabled):hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 168, 67, 0.08);
}

.demo-play:disabled {
  opacity: 0.3;
  cursor: default;
}

.demo-play.playing {
  border-color: var(--gold);
  color: var(--bg-primary);
  background: var(--gradient-gold);
}

@media (max-width: 768px) {
  .modal-box { padding: 32px 24px; }
  .hero-buttons .btn-listen { width: 100%; justify-content: center; }
}

/* --- Sections --- */
section {
  padding: 100px 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

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

.section-subtitle.centered {
  margin: 0 auto 60px;
}

.section-header {
  margin-bottom: 60px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin: 16px auto 0;
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 60px 24px;
}

.stats-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 220px;
  margin: 0 auto;
}

.stat-source {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* --- Card Grid --- */
.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 36px;
  transition: all var(--transition);
}

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

.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

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

.card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* --- Feature list --- */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.feature-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* --- Pricing Tables --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--bg-primary);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.pricing-name {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.pricing-price .from { font-size: 0.85rem; font-weight: 400; color: var(--text-muted); }
.pricing-price .period { font-size: 0.8rem; font-weight: 400; color: var(--text-muted); }

.pricing-card .feature-list {
  margin: 24px 0;
  flex: 1;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* --- A La Carte --- */
.alacarte-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.alacarte-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: all var(--transition);
}

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

.alacarte-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.alacarte-price {
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

/* --- Case Studies --- */
.case-study {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  transition: all var(--transition);
}

.case-study:hover {
  border-color: var(--border-color);
}

.case-study-header {
  padding: 40px 48px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.case-study-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.case-study-industry {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.case-study-body {
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.case-study-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.case-study-col p, .case-study-col li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.case-study-col ul {
  list-style: none;
  padding: 0;
}

.case-study-col ul li {
  padding: 4px 0 4px 20px;
  position: relative;
}

.case-study-col ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
}

/* --- Process / How It Works --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

/* Animated connecting line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  opacity: 0;
  transform-origin: left;
  transform: scaleX(0);
}

.process-grid.revealed::before {
  opacity: 0.4;
  transform: scaleX(1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

/* Glowing dot that travels the line */
.process-grid::after {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(212, 168, 67, 0.6), 0 0 40px rgba(212, 168, 67, 0.3);
  opacity: 0;
  z-index: 2;
}

.process-grid.revealed::after {
  opacity: 1;
  animation: process-dot-travel 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes process-dot-travel {
  0% { left: 10%; opacity: 1; }
  90% { left: 88%; opacity: 1; }
  100% { left: 90%; opacity: 0; }
}

.process-step {
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateX(40px);
}

.process-grid.revealed .process-step {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-grid.revealed .process-step:nth-child(1) { transition-delay: 0.15s; }
.process-grid.revealed .process-step:nth-child(2) { transition-delay: 0.55s; }
.process-grid.revealed .process-step:nth-child(3) { transition-delay: 0.95s; }
.process-grid.revealed .process-step:nth-child(4) { transition-delay: 1.35s; }

.process-number {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Number lights up when step is revealed */
.process-grid.revealed .process-step:nth-child(1) .process-number { transition-delay: 0.15s; }
.process-grid.revealed .process-step:nth-child(2) .process-number { transition-delay: 0.55s; }
.process-grid.revealed .process-step:nth-child(3) .process-number { transition-delay: 0.95s; }
.process-grid.revealed .process-step:nth-child(4) .process-number { transition-delay: 1.35s; }

.process-grid.revealed .process-number {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.15);
}

.process-step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

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

/* --- Testimonials --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 24px;
}

.testimonial-quote {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.6;
  position: relative;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
}

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

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .section-title { max-width: 700px; margin: 0 auto 16px; }
.cta-section .section-subtitle { max-width: 500px; margin: 0 auto 40px; }

.cta-section .btn { margin: 0 8px; }

/* --- About / Team --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  transition: all var(--transition);
}

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

.team-avatar {
  width: 100px;
  height: 100px;
  background: var(--gradient-gold);
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--bg-primary);
}

.team-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.team-card .team-title { color: var(--gold); font-size: 0.85rem; font-weight: 600; margin-bottom: 16px; }
.team-card p { color: var(--text-secondary); font-size: 0.92rem; }

/* --- Split Section (image + text) --- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-info { padding-top: 20px; }

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

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

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.92rem;
  font-family: inherit;
  transition: border-color var(--transition);
}

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

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

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

.form-group select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

/* --- Footer --- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 24px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: color var(--transition);
}

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

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

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

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

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* --- Alt Section Backgrounds --- */
.bg-dark { background: var(--bg-secondary); }
.bg-gradient { background: var(--gradient-dark); }

/* --- Divider --- */
.divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
  margin: 16px 0;
}

.divider.centered { margin: 16px auto; }

/* --- Specialty pricing table --- */
.specialty-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
}

.specialty-table th {
  background: rgba(212, 168, 67, 0.1);
  padding: 16px 24px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.specialty-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.specialty-table tr:last-child td { border-bottom: none; }

.specialty-table tr:nth-child(even) td { background: rgba(255, 255, 255, 0.02); }

.specialty-table .price-cell {
  font-weight: 700;
  color: var(--gold);
}

/* --- Page Hero (interior pages) --- */
.page-hero {
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 400px;
  background: radial-gradient(ellipse at top, rgba(212, 168, 67, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

.page-hero .section-subtitle {
  max-width: 600px;
  margin: 0 auto;
}

/* --- Includes section --- */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.includes-item {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}

.includes-item h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.includes-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* --- Radio format grid --- */
.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.format-tag {
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: all var(--transition);
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .case-study-body { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 130px;
    left: 0; right: 0;
    background: rgba(10, 14, 23, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid var(--border-subtle);
    justify-content: flex-start;
  }

  .nav-right {
    gap: 8px;
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-links a::after { display: none; }

  .nav-cta {
    margin-top: 16px;
    text-align: center;
    display: block !important;
    padding: 14px 24px !important;
  }

  .nav-toggle { display: flex; }

  /* Mobile dropdown */
  .nav-dropdown > a .arrow { display: inline-block; }

  .dropdown-menu {
    position: static;
    transform: none;
    min-width: 100%;
    background: rgba(10, 14, 23, 0.95);
    border: none;
    border-radius: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
    max-height: 600px;
  }

  .dropdown-menu a {
    padding: 10px 24px 10px 32px;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border-subtle);
  }

  .dropdown-menu a .dd-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 0.8rem;
  }

  .pain-grid { grid-template-columns: 1fr; }
  .touchpoint-grid { grid-template-columns: 1fr; }
  .benefit-row { grid-template-columns: 1fr; gap: 32px; }
  .benefit-row.reverse { direction: ltr; }
  .industry-hero { padding: 120px 16px 60px; }

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

  .card-grid.cols-2,
  .card-grid.cols-3,
  .card-grid.cols-4 { grid-template-columns: 1fr; }

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

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

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

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

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

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

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

  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

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

  .case-study-header { padding: 24px; }
  .case-study-body { padding: 24px; }

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

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

  section { padding: 60px 16px; }
  .page-hero { padding: 120px 16px 60px; }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
