/*
 * apex-premium.css — Aura-inspired premium design layer for ApexWeb subpages
 * Load AFTER landing.css: <link rel="stylesheet" href="/apex-premium.css">
 */

/* ── 0. Cormorant Garamond serif import ─────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,600;1,300;1,600&display=swap');

/* ── 1. Shiny gold headline animation ─────────────────────── */
@keyframes apexShiny {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

.apex-shiny {
  background-image: linear-gradient(
    to right,
    #2a1f08 0%,
    #7a5f00 12.5%,
    #f5e6b8 32.5%,
    #c9a84c 50%,
    #7a5f00 67.5%,
    #2a1f08 87.5%,
    #2a1f08 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: apexShiny 6s linear infinite;
}

/* ── 2. Liquid-glass card treatment ────────────────────────── */
.liquid-glass {
  background: rgba(255,255,255,0.015);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.07),
    0 24px 70px rgba(201,168,76,0.04),
    0 0 0 0 transparent;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.2px;
  background: linear-gradient(
    180deg,
    rgba(201,168,76,0.45) 0%,
    rgba(255,255,255,0.12) 20%,
    rgba(255,255,255,0)   45%,
    rgba(255,255,255,0)   55%,
    rgba(255,255,255,0.12) 80%,
    rgba(201,168,76,0.45) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.liquid-glass:hover {
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.10),
    0 28px 80px rgba(201,168,76,0.14),
    0 0 0 0 transparent;
  transform: translateY(-2px);
}

/* ── 3. Background canvas (orbs + grid) ─────────────────────── */
.apex-bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.apex-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: apexOrbIn 1.8s ease forwards, apexOrbFloat 14s ease-in-out infinite;
}
.apex-orb-1 {
  width: 520px; height: 520px;
  top: -120px; left: -80px;
  background: radial-gradient(circle, rgba(201,168,76,0.18), transparent 70%);
  animation-delay: 0.2s, 1.8s;
  animation-duration: 1.8s, 16s;
}
.apex-orb-2 {
  width: 380px; height: 380px;
  top: 40%; right: -60px;
  background: radial-gradient(circle, rgba(99,102,241,0.22), transparent 70%);
  animation-delay: 0.5s, 1.8s;
  animation-duration: 1.8s, 12s;
}
.apex-orb-3 {
  width: 260px; height: 260px;
  bottom: 10%; left: 30%;
  background: radial-gradient(circle, rgba(201,168,76,0.14), transparent 70%);
  animation-delay: 0.8s, 1.8s;
  animation-duration: 1.8s, 20s;
}

@keyframes apexOrbIn {
  to { opacity: 1; }
}
@keyframes apexOrbFloat {
  0%,100% { transform: translate(0, 0); }
  25%     { transform: translate(30px, -40px); }
  50%     { transform: translate(-20px, 25px); }
  75%     { transform: translate(15px, 10px); }
}

.apex-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.08));
}

/* Vertical guide rails */
.apex-rail-left,
.apex-rail-right {
  position: fixed;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(201,168,76,0.08);
  z-index: 5;
  pointer-events: none;
}
.apex-rail-left  { left: calc(50% - min(36rem, 48vw)); }
.apex-rail-right { right: calc(50% - min(36rem, 48vw)); }

/* ── 4. Browser / URL bar ────────────────────────────────────── */
.apex-browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 20px;
  position: sticky;
  top: 60px;
  z-index: 40;
}
.apex-browser-dots {
  display: flex;
  gap: 6px;
}
.apex-browser-dots span {
  width: 12px; height: 12px;
  border-radius: 50%;
  display: block;
}
.apex-dot-red   { background: #ff5f57; }
.apex-dot-amber { background: #febc2e; }
.apex-dot-green { background: #28c840; }

.apex-url-pill {
  flex: 1;
  max-width: 320px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  gap: 5px;
  padding: 0 10px;
}
.apex-url-lock { color: #28c840; font-size: 9px; }

/* ── 5. Hero override ────────────────────────────────────────── */
.apex-hero-premium {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  z-index: 10;
}

.apex-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold, #c9a84c);
  margin-bottom: 24px;
}
.apex-eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold, #c9a84c);
  box-shadow: 0 0 12px rgba(201,168,76,0.6);
  animation: apexDotPulse 2.4s ease-in-out infinite;
}
@keyframes apexDotPulse {
  0%,100% { box-shadow: 0 0 8px rgba(201,168,76,0.5); }
  50%     { box-shadow: 0 0 20px rgba(201,168,76,0.9); }
}
.apex-eyebrow-tag {
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,0.25);
  color: rgba(201,168,76,0.8);
  font-size: 0.58rem;
}

/* Hero headline — Cormorant Garamond */
.apex-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.93;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 28px;
  text-wrap: balance;
}
.apex-h1 em {
  font-style: italic;
}

/* Hero sub */
.apex-hero-lead {
  font-size: 1.06rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  line-height: 1.75;
  margin: 0 auto 40px;
}

/* ── 6. Section layout ───────────────────────────────────────── */
.apex-section {
  position: relative;
  z-index: 10;
  padding: 80px 24px;
}
.apex-wrap {
  max-width: 1180px;
  margin: 0 auto;
}
.apex-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.apex-section-head h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 16px 0 0;
}
.apex-section-head h2 em {
  font-style: italic;
  color: var(--gold, #c9a84c);
}
.apex-section-desc {
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  font-size: 0.96rem;
  margin-top: 16px;
  max-width: 460px;
}

/* ── 7. Product mockup shell ─────────────────────────────────── */
.apex-mockup-shell {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(14,16,20,0.92);
  backdrop-filter: blur(24px);
  position: relative;
}
.apex-mockup-titlebar {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.3);
  gap: 8px;
}
.apex-mockup-titlebar span {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  flex: 1;
  text-align: center;
}

/* ── 8. Chat bubble styles (mockup) ──────────────────────────── */
.apex-chat-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  height: 100%;
}
.apex-chat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.apex-chat-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #28c840;
  animation: apexDotPulse 2s ease-in-out infinite;
}
.apex-bubble-user {
  align-self: flex-end;
  background: rgba(255,255,255,0.08);
  border-radius: 16px 16px 4px 16px;
  padding: 10px 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.88);
  max-width: 80%;
  line-height: 1.5;
}
.apex-bubble-ai {
  align-self: flex-start;
  background: rgba(201,168,76,0.10);
  border-radius: 16px 16px 16px 4px;
  padding: 10px 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.88);
  max-width: 80%;
  line-height: 1.5;
  border: 1px solid rgba(201,168,76,0.18);
}
.apex-bubble-ai-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  color: var(--gold, #c9a84c);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.apex-chat-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.07);
  margin-top: auto;
}
.apex-chat-input-row span {
  flex: 1;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}
.apex-send-btn {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--gold, #c9a84c);
  display: grid;
  place-items: center;
  color: #04040a;
  font-size: 11px;
  flex-shrink: 0;
}

/* ── 9. Feature triage cards ─────────────────────────────────── */
.apex-triage-card {
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 10px;
}
.apex-triage-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.apex-triage-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.apex-triage-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.apex-triage-item {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.apex-triage-item:last-child {
  border-bottom: none;
}

/* ── 10. Chip row ────────────────────────────────────────────── */
.apex-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.apex-chip {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  font-size: 12px;
  color: rgba(255,255,255,0.70);
  transition: border-color 0.25s, color 0.25s;
}
.apex-chip:hover {
  border-color: rgba(201,168,76,0.40);
  color: var(--gold, #c9a84c);
}

/* ── 11. Testimonials ────────────────────────────────────────── */
.apex-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.apex-testimonial {
  border-radius: 20px;
  padding: 28px;
}
.apex-testimonial blockquote {
  font-size: 13px;
  color: rgba(255,255,255,0.80);
  line-height: 1.65;
  font-style: italic;
  quotes: '\201E' '\201D';
  margin: 0;
}
.apex-testimonial blockquote::before {
  content: open-quote;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  line-height: 0;
  vertical-align: -0.55em;
  margin-right: 4px;
  color: var(--gold, #c9a84c);
  opacity: 0.7;
}
.apex-testimonial figcaption {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.apex-test-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.apex-test-role {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
.apex-test-company {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold, #c9a84c);
  margin-top: 4px;
}

/* ── 12. Pricing watermark section ──────────────────────────── */
.apex-pricing-section {
  position: relative;
  padding: 60px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  z-index: 10;
}
.apex-watermark-wrap {
  width: 100%;
  max-width: 1100px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.apex-watermark-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 800;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.apex-watermark-line1 { color: #fff; }
.apex-watermark-line2 {
  background: linear-gradient(to right, #2a1f08 0%, #7a5f00 25%, #f5e6b8 65%, #c9a84c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.apex-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1100px;
  margin-top: 60px;
  position: relative;
  z-index: 3;
}
.apex-price-card {
  background: linear-gradient(135deg, rgba(0,0,0,0.72), rgba(0,0,0,0.42));
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 36px;
  padding: 48px 28px;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  transition: all 0.55s cubic-bezier(.22,1,.36,1);
  overflow: hidden;
  position: relative;
}
.apex-price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 50%);
  pointer-events: none;
}
.apex-price-card:hover {
  border-color: rgba(201,168,76,0.65);
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 40px 80px rgba(201,168,76,0.15);
}
.apex-price-card-pro {
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(0,0,0,0.58));
  border-color: rgba(201,168,76,0.38);
}

.apex-price-tier {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}
.apex-price-amount {
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  margin-top: 8px;
}
.apex-price-was {
  font-size: 1rem;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
  display: inline-block;
  margin-right: 8px;
}
.apex-price-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 12px;
  margin-bottom: 32px;
  line-height: 1.55;
  min-height: 3em;
}
.apex-price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.apex-price-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 16px;
  line-height: 1.45;
}
.apex-price-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(201,168,76,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold, #c9a84c);
  font-size: 10px;
}
.apex-price-btn {
  background: rgba(255,255,255,0.95);
  color: #04040a;
  border: none;
  border-radius: 999px;
  padding: 12px 32px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  align-self: center;
  margin-top: auto;
  transition: all 0.3s cubic-bezier(.22,1,.36,1);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.apex-price-btn:hover {
  background: #fff;
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(255,255,255,0.18);
}
.apex-price-btn-gold {
  background: linear-gradient(135deg, #c9a84c, #dbb85a);
  color: #04040a;
}
.apex-price-btn-gold:hover {
  background: linear-gradient(135deg, #dbb85a, #e8d5a0);
}

/* ── 13. Final CTA section ───────────────────────────────────── */
.apex-final-cta {
  border-radius: 28px;
  padding: 96px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 60px 24px 80px;
}
.apex-final-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at 50% 0%, rgba(201,168,76,0.18), transparent 70%);
  pointer-events: none;
}
.apex-final-cta h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}
.apex-final-cta h2 em {
  font-style: italic;
  color: var(--gold, #c9a84c);
}
.apex-final-cta p {
  margin: 20px auto 0;
  max-width: 420px;
  color: rgba(255,255,255,0.60);
  font-size: 15px;
  line-height: 1.7;
}
.apex-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 40px;
}

/* ── 14. Gold primary button ─────────────────────────────────── */
.apex-btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c9a84c, #dbb85a);
  color: #04040a;
  font-weight: 700;
  font-size: 13px;
  padding: 14px 28px;
  text-decoration: none;
  transition: all 0.28s ease;
  box-shadow: 0 0 30px rgba(201,168,76,0.22);
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
}
.apex-btn-gold:hover {
  background: linear-gradient(135deg, #dbb85a, #e8d5a0);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(201,168,76,0.38);
}

.apex-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 14px 26px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.16);
  transition: all 0.28s ease;
}
.apex-btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.28);
}

/* ── 15. Stats strip ─────────────────────────────────────────── */
.apex-stats-strip {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.apex-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.apex-stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold, #c9a84c);
  line-height: 1;
}
.apex-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
}

/* ── 16. Process steps (numbered) ───────────────────────────── */
.apex-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.apex-step {
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}
.apex-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 42px;
  bottom: 0;
  width: 1px;
  background: rgba(201,168,76,0.2);
}
.apex-step-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(201,168,76,0.10);
  border: 1px solid rgba(201,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  color: var(--gold, #c9a84c);
}
.apex-step-body strong {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 4px;
  margin-top: 10px;
}
.apex-step-body p {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* ── 17. FAQ upgrade ─────────────────────────────────────────── */
.apex-faq details {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  padding: 16px 20px;
  margin-bottom: 10px;
  transition: border-color 0.25s;
}
.apex-faq details[open] {
  border-color: rgba(201,168,76,0.25);
}
.apex-faq summary {
  cursor: pointer;
  color: rgba(255,255,255,0.90);
  font-size: 14px;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.apex-faq summary::after {
  content: '+';
  color: var(--gold, #c9a84c);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.apex-faq details[open] summary::after {
  transform: rotate(45deg);
}
.apex-faq p {
  color: rgba(255,255,255,0.60);
  line-height: 1.7;
  font-size: 13px;
  margin: 14px 0 2px;
}

/* ── 18. Section border ──────────────────────────────────────── */
.apex-border-top {
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ── 19. AEO answer box upgrade ─────────────────────────────── */
.apex-answer-box {
  border: 1px solid rgba(201,168,76,0.32);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201,168,76,0.10), rgba(255,255,255,0.02));
  padding: 28px 32px;
  margin-top: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.apex-answer-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold, #c9a84c);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.apex-answer-text {
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin: 0;
}

/* ── 20. Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .apex-two-col { grid-template-columns: 1fr; }
  .apex-testimonials-grid { grid-template-columns: 1fr; }
  .apex-price-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    width: 100vw;
    margin-left: -24px;
    padding: 0 24px;
    scrollbar-width: none;
  }
  .apex-price-grid::-webkit-scrollbar { display: none; }
  .apex-price-card { flex: 0 0 300px; scroll-snap-align: center; }
  .apex-watermark-text { font-size: clamp(2.5rem, 8vw, 4rem); }
  .apex-h1 { font-size: clamp(2.6rem, 8vw, 3.8rem); }
  .apex-final-cta { margin: 40px 16px 60px; padding: 64px 24px; }
  .apex-rail-left, .apex-rail-right { display: none; }
  .apex-browser-bar { top: 56px; }
}
@media (max-width: 560px) {
  .apex-hero-premium { padding: 60px 20px 48px; }
  .apex-section { padding: 56px 20px; }
  .apex-testimonials-grid { grid-template-columns: 1fr; }
}
