/* =========================================
   CONSULTATION DELIVERY PAGE
   TheInsiderPOV
   ========================================= */

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

:root {
  --bg: #07070d;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --text: #e4e4e7;
  --text-dim: #8b8b9e;
  --text-bright: #ffffff;
  --accent-1: #7c3aed;
  --accent-2: #3b82f6;
  --accent-3: #a855f7;
  --green: #22c55e;
  --gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  --gradient-text: linear-gradient(135deg, #a78bfa, #60a5fa, #c084fc);
  --glow: rgba(124, 58, 237, 0.15);
  --glow-strong: rgba(124, 58, 237, 0.3);
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

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

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--accent-3); text-decoration: none; }
a:hover { text-decoration: underline; }

/* --- NAV --- */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(7, 7, 13, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-bright);
  text-decoration: none;
}

.nav-logo span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* --- HERO --- */
.hero {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 6s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.hero-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.04em;
  padding: 6px 18px;
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 100px;
  margin-bottom: 28px;
  background: rgba(34, 197, 94, 0.06);
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-bright);
  margin-bottom: 16px;
}

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

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto;
}

/* --- SECTION TITLES --- */
.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text-bright);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.section-sub {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-dim);
  margin-bottom: 48px;
}

/* --- STEPS --- */
.steps-section {
  padding: 60px 0 80px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  position: relative;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.step-number {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 26px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: #fff;
}

.step-icon {
  color: var(--accent-3);
  margin-bottom: 14px;
  display: flex; justify-content: center;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.step-card a { color: var(--accent-3); }

/* --- COPY SECTION --- */
.copy-section {
  padding: 40px 0 80px;
}

.copy-card {
  text-align: center;
  padding: 48px 36px;
  background: rgba(124, 58, 237, 0.03);
  border: 2px dashed rgba(124, 58, 237, 0.2);
  border-radius: var(--radius);
  transition: border-color 0.3s ease;
}

.copy-card:hover {
  border-color: rgba(124, 58, 237, 0.35);
}

.copy-icon-large {
  color: var(--accent-3);
  margin-bottom: 20px;
  opacity: 0.6;
}

.copy-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 8px;
}

.copy-desc {
  font-size: 0.95rem;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: #fff;
  background: var(--gradient);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 30px var(--glow);
  position: relative;
  overflow: hidden;
}

.copy-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  animation: btn-shine 3s ease-in-out infinite;
}

@keyframes btn-shine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--glow-strong);
}

.copy-btn:active { transform: translateY(0); }

.copy-btn.copied {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 4px 30px rgba(34, 197, 94, 0.3);
}

.copy-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 16px;
}

/* --- VISUAL GUIDE --- */
.guide-section {
  padding: 80px 0;
}

.guide-steps {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.guide-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.guide-step:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.guide-step:last-child { border-radius: 0 0 var(--radius) var(--radius); }

.guide-step:hover {
  background: var(--bg-card-hover);
}

.guide-step.highlight-step {
  background: rgba(34, 197, 94, 0.04);
  border-color: rgba(34, 197, 94, 0.15);
}

.guide-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: rgba(124, 58, 237, 0.15);
  color: var(--accent-3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  margin-top: 2px;
}

.highlight-step .guide-num {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
}

.guide-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 4px;
}

.guide-content p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* --- TIPS --- */
.tips-section {
  padding: 80px 0;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.tip-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

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

.tip-emoji {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 12px;
}

.tip-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 6px;
}

.tip-card p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.tip-card strong { color: var(--text); }

/* --- FAQ --- */
.faq {
  padding: 80px 0;
}

.faq-list {
  max-width: 640px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  background: none;
  border: none;
  color: var(--text-bright);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

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

.faq-icon {
  font-size: 1.3rem;
  color: var(--text-dim);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

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

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 18px;
}

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

.faq-answer a { color: var(--accent-3); }

/* --- FOOTER --- */
.footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-brand {
  font-size: 1rem; font-weight: 700; color: var(--text-dim); margin-bottom: 6px;
}

.footer-brand span { color: var(--accent-3); }

.footer-copy {
  font-size: 0.75rem; color: var(--text-dim); margin-bottom: 10px;
}

.footer-links {
  display: flex; justify-content: center; gap: 24px;
}

.footer-links a {
  font-size: 0.8rem; color: var(--text-dim); text-decoration: none;
}

.footer-links a:hover { color: var(--accent-3); }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 28px; }
  .tips-grid { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 50px; }
  .copy-card { padding: 36px 20px; }
  .copy-btn { font-size: 0.95rem; padding: 14px 28px; }
}
