/* ============================================================
   Hooles Marketing – Global Styles v2
   Warm charcoal + amber gold. Social-native. Bold.
   ============================================================ */

html { scroll-behavior: smooth; }

/* ── Palette vars ─────────────────────────────────────────── */
:root {
  --bg:       #0c0a09;
  --bg2:      #111110;
  --bg3:      #1c1917;
  --bg4:      #292524;
  --amber:    #f59e0b;
  --amber-d:  #d97706;
  --orange:   #ea580c;
  --cream:    #fafaf9;
  --muted:    #78716c;
  --muted2:   #a8a29e;
}

/* ── Typography ───────────────────────────────────────────── */
body { background: var(--bg); color: var(--cream); }

.gradient-text {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 60%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-subtle {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero-bg {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* warm amber glow top-right */
.hero-bg::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  top: -200px; right: -200px;
  background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 65%);
  pointer-events: none;
  animation: blob-drift 9s ease-in-out infinite alternate;
}

/* orange glow bottom-left */
.hero-bg::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  bottom: -150px; left: -100px;
  background: radial-gradient(circle, rgba(234,88,12,0.10) 0%, transparent 65%);
  pointer-events: none;
  animation: blob-drift 11s ease-in-out infinite alternate-reverse;
}

@keyframes blob-drift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(30px,-25px) scale(1.08); }
}

/* subtle dot grid */
.hero-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(245,158,11,0.07) 1px, transparent 0);
  background-size: 36px 36px;
  pointer-events: none;
}

/* ── Marquee ticker ───────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: var(--amber);
  padding: 10px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
  gap: 0;
}

.ticker-track:hover { animation-play-state: paused; }

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

.ticker-item {
  white-space: nowrap;
  padding: 0 2rem;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0c0a09;
}

/* ── Glass card ───────────────────────────────────────────── */
.glass-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.07);
}

/* ── Card hover ───────────────────────────────────────────── */
.card-hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(245,158,11,0.10);
  border-color: rgba(245,158,11,0.25);
}

/* ── Mock social post cards ───────────────────────────────── */
.post-card {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.post-card .post-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.post-engagement {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  color: var(--muted2);
}

.engagement-num {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--cream);
}

/* ── Phone mockup ─────────────────────────────────────────── */
.phone-frame {
  position: relative;
  width: 260px;
  background: var(--bg3);
  border-radius: 32px;
  border: 2px solid rgba(245,158,11,0.3);
  box-shadow: 0 0 0 6px rgba(245,158,11,0.06), 0 40px 80px rgba(0,0,0,0.6);
  overflow: hidden;
  flex-shrink: 0;
}

.phone-notch {
  background: var(--bg);
  height: 28px;
  border-radius: 0 0 18px 18px;
  width: 100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ── Pulse badge ──────────────────────────────────────────── */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(245,158,11,0); }
}
.badge-pulse { animation: pulse-glow 2s infinite; }

/* ── CTA button ───────────────────────────────────────────── */
.btn-amber {
  background: var(--amber);
  color: #0c0a09;
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-amber:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.4);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--cream);
  font-weight: 600;
  transition: background 0.2s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

/* ── Stat item ────────────────────────────────────────────── */
@keyframes count-up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.stat-item { animation: count-up 0.5s ease forwards; }

/* ── Section backgrounds ──────────────────────────────────── */
.section-dark   { background: var(--bg); }
.section-darker { background: var(--bg2); }
.section-warm   { background: var(--bg3); }

/* ── Service card icon ─────────────────────────────────────── */
.icon-wrap { transition: transform 0.2s ease; }
.service-card:hover .icon-wrap { transform: scale(1.1); }

/* ── Pricing featured ─────────────────────────────────────── */
.pricing-featured {
  box-shadow: 0 0 0 2px var(--amber), 0 20px 48px rgba(245,158,11,0.15);
}

/* ── Platform pill ────────────────────────────────────────── */
.platform-pill {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.platform-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.2);
}

/* ── FAQ accordion ────────────────────────────────────────── */
.faq-item details summary::-webkit-details-marker { display: none; }
.faq-item details summary { list-style: none; }
.faq-item details[open] .faq-icon { transform: rotate(45deg); }
.faq-icon { transition: transform 0.2s ease; }

/* ── Scroll reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Result number counter ────────────────────────────────── */
.big-stat {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* ── Testimonial ──────────────────────────────────────────── */
.testimonial-card {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
}

/* ── Verified badge ───────────────────────────────────────── */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.25);
  color: var(--amber);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
}

/* ── Step connector ───────────────────────────────────────── */
.steps-connector { position: relative; }
.steps-connector::after {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(50% + 2rem);
  width: calc(100% - 4rem);
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  opacity: 0.25;
}
.steps-connector:last-child::after { display: none; }

/* ── Story ring (avatar decoration) ──────────────────────── */
.story-ring {
  background: linear-gradient(135deg, #f59e0b, #ea580c, #f59e0b);
  padding: 2px;
  border-radius: 50%;
  display: inline-flex;
}
.story-ring-inner {
  background: var(--bg3);
  border-radius: 50%;
  padding: 2px;
}
