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

:root {
  --primary: #1e9fd4;
  --primary-dark: #1580ab;
  --dark: #0d1b2a;
  --dark-2: #132233;
  --dark-3: #1a2e42;
  --tinted: #f0f8ff;
  --text: #0d1b2a;
  --text-muted: #5a7184;
  --border: #dde8f0;
  --white: #ffffff;
  --success: #22c55e;
  --warning: #f59e0b;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); transform: translateY(-1px); }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-full { width: 100%; }

/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.2s;
}
.nav-scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}
.nav-logo img { height: 36px; }
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--white); }
.nav-ctas { display: flex; gap: 10px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0;
}

/* ═══════════════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════════════ */
.section {
  padding: 96px 0;
}
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-tinted {
  background: var(--tinted);
}
.section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-dark .section-label { color: var(--primary); }
h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.accent { color: var(--primary); }
.section-dark h2 { color: var(--white); }
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.65;
}
.section-dark .section-sub { color: rgba(255,255,255,0.55); }

/* ═══════════════════════════════════════════════
   DEAL CARD
═══════════════════════════════════════════════ */
.deal-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px;
  width: 100%;
  max-width: 340px;
  box-shadow: var(--shadow-lg);
}
.deal-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.deal-emoji { font-size: 28px; flex-shrink: 0; }
.deal-biz { color: var(--white); font-weight: 700; font-size: 14px; }
.deal-dist { color: rgba(255,255,255,0.45); font-size: 12px; margin-top: 1px; }
.deal-timer {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 50px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.timer-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.deal-offer {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.deal-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.deal-value {
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}
.deal-type {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}
.deal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.deal-spots {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-3) 60%, #0f2840 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30,159,212,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  color: #fca5a5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.live-badge .live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulse 1.4s ease-in-out infinite;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.3px;
}
.hero-card-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}
.deal-card-2 {
  opacity: 0.7;
  transform: scale(0.96);
  margin-right: 24px;
}
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.3);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 48px;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ═══════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════ */
.trust-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  padding: 8px 24px;
}
.trust-item strong { color: var(--white); }
.trust-icon { font-size: 16px; }
.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════════════════
   HOW IT WORKS — STEPS
═══════════════════════════════════════════════ */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 16px;
}
.step {
  flex: 1;
  background: var(--tinted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.step-num {
  position: absolute;
  top: -14px; left: 24px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon { font-size: 36px; margin-bottom: 14px; }
.step h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.step-arrow {
  font-size: 24px;
  color: var(--primary);
  padding: 0 12px;
  margin-top: 80px;
  flex-shrink: 0;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════
   FEATURES GRID
═══════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background 0.2s, transform 0.2s;
}
.feature-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.feature-icon { font-size: 32px; margin-bottom: 14px; }
.feature-card h3 { font-size: 16px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ═══════════════════════════════════════════════
   WORKFLOW STEPS
═══════════════════════════════════════════════ */
.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--border);
  margin-left: 20px;
  padding-left: 0;
}
.workflow-step {
  display: flex;
  gap: 28px;
  padding: 0 0 40px 40px;
  position: relative;
}
.workflow-step:last-child { padding-bottom: 0; }
.workflow-step-num {
  position: absolute;
  left: -18px;
  top: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--white);
}
.workflow-step-content h4 { font-size: 17px; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.workflow-step-content p { font-size: 14px; color: var(--text-muted); line-height: 1.65; max-width: 560px; }

/* ═══════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.pricing-card-featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30,159,212,0.15), var(--shadow-lg);
  transform: scale(1.03);
}
.pricing-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-badge { font-size: 15px; font-weight: 800; margin-bottom: 12px; }
.pricing-price {
  font-size: 44px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 2px;
}
.pricing-price span { font-size: 18px; font-weight: 600; color: var(--text-muted); }
.pricing-period { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}
.pricing-features li.muted { color: var(--text-muted); }
.pricing-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 24px;
}

/* ═══════════════════════════════════════════════
   WHY GRID
═══════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--tinted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.why-icon { font-size: 32px; margin-bottom: 12px; }
.why-card h4 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.testimonial-stars { color: #fbbf24; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-quote {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--white); }
.testimonial-role { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ═══════════════════════════════════════════════
   TWO COLUMN
═══════════════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col-text h2 { margin-bottom: 16px; }
.two-col-text p { font-size: 16px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  font-size: 15px;
  color: var(--text);
  padding-left: 24px;
  position: relative;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}
.two-col-card { display: flex; justify-content: center; }

/* ═══════════════════════════════════════════════
   APPLY CTA
═══════════════════════════════════════════════ */
.section-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 96px 0;
}
.cta-inner { text-align: center; }
.cta-inner h2 { color: var(--white); margin-bottom: 12px; }
.cta-inner p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.apply-form { max-width: 680px; margin: 0 auto; }
.apply-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.apply-row input {
  flex: 1;
  min-width: 180px;
  padding: 14px 18px;
  border-radius: 50px;
  border: none;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.apply-row input::placeholder { color: rgba(255,255,255,0.55); }
.apply-row input:focus { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.2); }
.apply-row .btn-primary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.apply-row .btn-primary:hover { background: rgba(255,255,255,0.9); }
.apply-note { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 12px; }
.apply-success {
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto;
}
.apply-success-icon { font-size: 48px; }
.apply-success h3 { font-size: 22px; font-weight: 800; color: var(--white); }
.apply-success p { color: rgba(255,255,255,0.7); font-size: 15px; }

/* ═══════════════════════════════════════════════
   APP STORE BUTTONS
═══════════════════════════════════════════════ */
.app-store-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  transition: all 0.18s;
  min-width: 180px;
}
.store-btn:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }
.store-label { font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: 0.5px; }
.store-name { font-size: 17px; font-weight: 700; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: #080f17;
  color: rgba(255,255,255,0.5);
  padding: 56px 0 0;
}
.footer-inner {
  display: flex;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-brand img { margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links, .nav-ctas { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card-wrap { align-items: center; }
  .deal-card-2 { display: none; }
  .hero { padding: 110px 0 60px; }

  .steps { flex-direction: column; }
  .step-arrow { display: none; }

  .pricing-grid, .pricing-grid-4 { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card-featured { transform: none; }

  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col-card { display: none; }

  .trust-inner { gap: 0; }
  .trust-divider { display: none; }
  .trust-item { padding: 8px 16px; }

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

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .apply-row { flex-direction: column; }
  .apply-row input, .apply-row .btn { width: 100%; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { gap: 28px; }
  .trust-inner { flex-direction: column; align-items: flex-start; padding: 0 24px; }
}

/* ═══════════════════════════════════════════════
   HAPPY HOUR — CSS VARIABLES & SECTION
═══════════════════════════════════════════════ */
:root {
  --hh-amber: #f59e0b;
  --hh-amber-dark: #d97706;
  --hh-amber-light: #fef3c7;
  --hh-amber-bg: rgba(245, 158, 11, 0.12);
  --hh-amber-border: rgba(245, 158, 11, 0.3);
}

/* Happy Hour section background */
.section-hh {
  background: linear-gradient(160deg, #0d1b2a 0%, #1a1200 60%, #0d1b2a 100%);
  color: var(--white);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.section-hh::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* HH section label */
.hh-label {
  color: var(--hh-amber) !important;
}
.section-hh h2 { color: var(--white); }
.accent-hh { color: var(--hh-amber); }
.section-hh .section-sub { color: rgba(255,255,255,0.55); }

/* HH split layout */
.hh-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 16px;
}
.hh-side-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hh-amber);
  margin-bottom: 12px;
}
.hh-side h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 28px;
}

/* HH feature list */
.hh-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.hh-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.hh-list-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.hh-list li strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.hh-list li p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0;
}

/* HH amber banner pill on deal cards */
.hh-banner-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--hh-amber-bg);
  border: 1px solid var(--hh-amber-border);
  color: var(--hh-amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}

/* HH deal card variant */
.deal-card-hh {
  border-color: var(--hh-amber-border) !important;
  box-shadow: 0 0 0 1px var(--hh-amber-border), var(--shadow-lg);
}

/* HH timer variant */
.deal-timer-urgent {
  background: rgba(245,158,11,0.15) !important;
  color: var(--hh-amber) !important;
  border: 1px solid var(--hh-amber-border);
}

/* HH claim button */
.btn-hh {
  background: var(--hh-amber);
  color: #0d1b2a;
  border-color: var(--hh-amber);
  font-weight: 800;
}
.btn-hh:hover {
  background: var(--hh-amber-dark);
  border-color: var(--hh-amber-dark);
  transform: translateY(-1px);
}

/* HH post-deal mockup card */
.hh-mockup-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-top: 8px;
}
.hh-mockup-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}
.hh-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hh-toggle-title {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
}
.hh-toggle-sub {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}
.hh-toggle-pill {
  width: 48px;
  height: 28px;
  border-radius: 50px;
  background: rgba(255,255,255,0.15);
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s;
}
.hh-toggle-on {
  background: var(--hh-amber);
}
.hh-toggle-thumb {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.hh-quota-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hh-quota-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.hh-quota-val {
  font-size: 13px;
  font-weight: 800;
  color: var(--hh-amber);
}

/* HH customer tab mockup */
.hh-customer-mockup {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.1);
}
.hh-tab-bar {
  display: flex;
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hh-tab {
  flex: 1;
  text-align: center;
  padding: 10px 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  white-space: nowrap;
}
.hh-tab-active {
  color: var(--hh-amber);
  border-bottom: 2px solid var(--hh-amber);
  font-weight: 800;
}
.hh-tab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hh-amber);
  color: #0d1b2a;
  font-size: 10px;
  font-weight: 900;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: middle;
}

/* HH feature card highlight */
.feature-card-hh {
  border-color: var(--hh-amber-border) !important;
  background: rgba(245,158,11,0.07) !important;
}
.feature-card-hh:hover {
  background: rgba(245,158,11,0.12) !important;
}
.feature-card-hh h3 { color: var(--hh-amber) !important; }

/* HH why card highlight */
.why-card-hh {
  background: var(--hh-amber-light);
  border-color: rgba(245,158,11,0.4);
}
.why-card-hh h4 { color: #92400e; }
.why-card-hh p { color: #78350f; }

/* HH pricing feature line */
.pricing-features li.hh-feature {
  color: #92400e;
  font-weight: 700;
  background: var(--hh-amber-light);
  border-radius: 6px;
  padding: 4px 8px;
  margin: 2px 0;
}

/* HH testimonial variant */
.testimonial-hh {
  border-color: var(--hh-amber-border) !important;
  background: rgba(245,158,11,0.06) !important;
}
.testimonial-hh-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--hh-amber-bg);
  border: 1px solid var(--hh-amber-border);
  color: var(--hh-amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — HAPPY HOUR
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hh-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hh-customer-mockup {
    display: none;
  }
  .hh-mockup-card {
    max-width: 400px;
  }
}

@media (max-width: 600px) {
  .hh-tab { font-size: 11px; padding: 10px 4px; }
}
