/* =============================================================
   SHOZAP — Landing V3
   Design System
   ============================================================= */

:root {
  /* Core palette — 5 cores */
  --primary: #FF5E3A;         /* Shopee-inspired orange (brand) */
  --primary-hover: #E64A28;
  --primary-soft: #FFEDE6;
  --dark: #0A0E1A;            /* Deep navy/black */
  --dark-2: #141925;
  --cream: #FAF7F2;           /* Off-white */
  --ink: #0F1420;             /* Body text */
  --muted: #6B7280;           /* Secondary text */
  --border: #E8E3DC;          /* Subtle borders on cream */
  --border-dark: rgba(255, 255, 255, 0.08);
  --accent: #FFD84D;          /* Gold accent */

  --radius: 18px;
  --radius-lg: 28px;
  --radius-sm: 10px;

  --shadow-sm: 0 1px 2px rgba(10, 14, 26, 0.04), 0 1px 3px rgba(10, 14, 26, 0.06);
  --shadow: 0 4px 12px -2px rgba(10, 14, 26, 0.06), 0 8px 24px -4px rgba(10, 14, 26, 0.08);
  --shadow-lg: 0 10px 40px -8px rgba(10, 14, 26, 0.15), 0 20px 60px -12px rgba(10, 14, 26, 0.12);
  --shadow-primary: 0 12px 40px -12px rgba(255, 94, 58, 0.45);

  --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img, svg { display: block; max-width: 100%; }

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

/* =============================================================
   TYPOGRAPHY
   ============================================================= */
h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
}

.gradient-text {
  background: linear-gradient(120deg, var(--primary) 0%, #FF8A5C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.gradient-text-light {
  background: linear-gradient(120deg, #FFB59A 0%, #FF5E3A 60%, var(--accent) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255, 94, 58, 0.08);
  border: 1px solid rgba(255, 94, 58, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.eyebrow.light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #FFD3BF;
}
.pulse-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(255, 94, 58, 0.6);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 94, 58, 0.6); }
  100% { box-shadow: 0 0 0 10px rgba(255, 94, 58, 0); }
}

/* =============================================================
   BACKGROUND ORBS (ambient)
   ============================================================= */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  will-change: transform;
}
.orb-1 {
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 94, 58, 0.35), transparent 70%);
  animation: orb-float 20s ease-in-out infinite;
}
.orb-2 {
  top: 40%; left: -200px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255, 216, 77, 0.2), transparent 70%);
  animation: orb-float 25s ease-in-out infinite reverse;
}
.orb-3 {
  bottom: 10%; right: 10%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255, 94, 58, 0.18), transparent 70%);
  animation: orb-float 18s ease-in-out infinite;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}

/* =============================================================
   TICKER TOP
   ============================================================= */
.ticker-top {
  position: relative;
  z-index: 60;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 10px 0;
  overflow: hidden;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.ticker-track {
  display: flex;
  gap: 18px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  width: max-content;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ticker-track span i { color: var(--primary); }
.ticker-track .dot { color: rgba(255, 255, 255, 0.25); }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================================
   HEADER
   ============================================================= */
#header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.75);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--primary) 0%, #FF8A5C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 4px 14px -2px rgba(255, 94, 58, 0.35);
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: mark-spin 4s linear infinite;
}
.mark-s { position: relative; z-index: 1; }
@keyframes mark-spin {
  to { transform: rotate(360deg); }
}
.brand-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  transition: all 0.2s var(--ease);
}
.nav-links a:hover {
  color: var(--ink);
  background: rgba(10, 14, 26, 0.04);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-primary, .btn-outline, .btn-ghost, .btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px;
  padding: 10px 18px;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-primary);
}
.btn-outline {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}
.btn-ghost {
  color: var(--ink);
}
.btn-ghost:hover { color: var(--primary); }
.btn-ghost-light {
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-lg {
  padding: 14px 24px;
  font-size: 15px;
  border-radius: 14px;
}

/* Mobile menu */
.mobile-btn {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
  background: transparent;
}
.mobile-btn span {
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.mobile-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-btn.open span:nth-child(2) { opacity: 0; }
.mobile-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 10px 16px 24px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  color: var(--ink);
}
.mobile-menu a:hover { background: rgba(10, 14, 26, 0.04); }
.mobile-menu .mm-divider {
  margin-top: 8px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.mobile-menu .mm-cta {
  margin-top: 8px;
  background: var(--ink);
  color: #fff;
  text-align: center;
  justify-content: center;
  display: flex;
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  z-index: 1;
  padding: 80px 0 0 0;
}
.hero-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-copy { max-width: 620px; }
.hero-title {
  font-size: clamp(42px, 6.5vw, 84px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.hero-lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-lead strong { color: var(--ink); font-weight: 600; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
}
.hero-meta li { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta i { color: var(--primary); font-size: 11px; }

/* Phone mockup */
.hero-mockup-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
}
.phone {
  position: relative;
  width: 320px;
  min-height: 540px;
  background: #fff;
  border-radius: 42px;
  box-shadow:
    0 0 0 10px var(--dark),
    0 30px 80px -20px rgba(10, 14, 26, 0.45),
    0 50px 120px -40px rgba(255, 94, 58, 0.3);
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
  z-index: 2;
  animation: phone-float 6s ease-in-out infinite;
}
@keyframes phone-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.phone-notch {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 22px;
  background: var(--dark);
  border-radius: 0 0 14px 14px;
}
.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0eeea;
  margin-top: 18px;
  transition: all 0.4s var(--ease);
}
.ph-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ph-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all 0.4s var(--ease);
}
.ph-avatar.tg { background: linear-gradient(135deg, #37AEE2, #0088CC); }
.ph-avatar.ig { background: linear-gradient(135deg, #F58529, #DD2A7B 50%, #8134AF 75%, #515BD4); }
.ph-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.ph-status {
  font-size: 10px;
  color: var(--muted);
  margin-top: 1px;
}
.ph-actions { color: var(--muted); font-size: 14px; }

.phone-body {
  flex: 1;
  padding: 14px 2px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  min-height: 340px;
}

/* chat msg */
.chat-msg {
  display: flex;
  gap: 10px;
  padding: 10px;
  background: #fafaf7;
  border: 1px solid #f0ebe4;
  border-radius: 14px;
  animation: msg-slide 0.5s var(--ease) both;
}
@keyframes msg-slide {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.msg-thumb {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 16px;
}
.msg-body { min-width: 0; flex: 1; }
.msg-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 3px;
}
.msg-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 3px;
}
.msg-old {
  font-size: 10px;
  color: var(--muted);
  text-decoration: line-through;
}
.msg-new {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
}
.msg-store {
  font-size: 10px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Instagram Story preview */
.ig-stories-preview {
  flex: 1;
  display: flex;
  gap: 6px;
  overflow: hidden;
}
.ig-story {
  flex: 1;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  animation: msg-slide 0.5s var(--ease) both;
  background: linear-gradient(180deg, #2d1a13 0%, #0a0e1a 100%);
}
.ig-story-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, #FF8A5C 60%, var(--accent) 100%);
  opacity: 0.85;
}
.ig-story-content {
  position: absolute;
  inset: 0;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.ig-story-bar {
  height: 2px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 10px;
}
.ig-story-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 60%;
  background: #fff;
  border-radius: 2px;
  animation: bar-fill 3s linear infinite;
}
@keyframes bar-fill {
  from { width: 0; }
  to { width: 100%; }
}
.ig-story-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.ig-story-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ig-story-price {
  font-size: 22px;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
}
.ig-story-cta {
  background: #fff;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-shadow: none;
}

/* IG feed post */
.ig-feed-post {
  background: #fff;
  border: 1px solid #f0ebe4;
  border-radius: 14px;
  overflow: hidden;
  animation: msg-slide 0.5s var(--ease) both;
}
.ig-feed-img {
  height: 180px;
  background: linear-gradient(135deg, var(--primary) 0%, #FF8A5C 70%, var(--accent) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 40px;
}
.ig-feed-info {
  padding: 10px;
}
.ig-feed-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.3;
}
.ig-feed-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
}
.ig-feed-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px 10px;
  color: var(--muted);
  font-size: 14px;
}

.phone-foot {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: #fafaf7;
  border-radius: 12px;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.typing-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
  animation: typing 1.4s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
.typing-text { margin-left: 4px; }

/* Floating badges around phone */
.floating-badge {
  position: absolute;
  width: 64px; height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 16px 40px -8px rgba(10, 14, 26, 0.3);
  z-index: 3;
  animation: badge-float 5s ease-in-out infinite;
}
.fb-wa {
  top: 20px; left: -20px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  animation-delay: 0s;
}
.fb-tg {
  top: 180px; right: -30px;
  background: linear-gradient(135deg, #37AEE2, #0088CC);
  animation-delay: 1.5s;
}
.fb-ig {
  bottom: 120px; left: -30px;
  background: linear-gradient(135deg, #F58529, #DD2A7B 60%, #8134AF);
  animation-delay: 3s;
}
@keyframes badge-float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}

.floating-stat {
  position: absolute;
  bottom: 20px; right: -10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: stat-float 6s ease-in-out infinite;
}
@keyframes stat-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fs-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.fs-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.fs-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* Brand strip */
.brand-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.5);
  padding: 20px 0;
}
.brand-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.bs-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.bs-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.bs-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #4b5563;
  transition: color 0.2s;
}
.bs-logo:hover { color: var(--ink); }
.bs-logo i { color: var(--primary); font-size: 18px; }
.bs-sep { color: var(--border); font-size: 20px; }

/* =============================================================
   STATS
   ============================================================= */
.stats-section {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-value .accent { color: var(--primary); }
.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

/* =============================================================
   SECTION GENERIC
   ============================================================= */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.section-cream {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-dark {
  background: var(--dark);
  color: #fff;
  border-top: 1px solid var(--dark-2);
  border-bottom: 1px solid var(--dark-2);
}

.section-head {
  max-width: 680px;
  margin-bottom: 60px;
}
.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding: 6px 12px;
  background: var(--primary-soft);
  border-radius: 8px;
}
.section-tag.light {
  background: rgba(255, 94, 58, 0.12);
  color: #FFB59A;
}
.section-title {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}
.section-title.light { color: #fff; }
.section-title em {
  font-style: normal;
  color: var(--primary);
}
.section-lead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 18px;
  max-width: 580px;
}
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }
.section-lead.light { color: rgba(255, 255, 255, 0.6); }

/* =============================================================
   CHANNELS — INTERACTIVE
   ============================================================= */
.channels-wrap {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 40px;
  align-items: start;
}
.channel-picker {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chan-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: left;
  transition: all 0.25s var(--ease);
  position: relative;
}
.chan-btn:hover {
  border-color: var(--ink);
  transform: translateX(4px);
}
.chan-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.chan-btn.active .chan-sub { color: rgba(255, 255, 255, 0.55); }
.chan-btn.active .chan-arrow { color: var(--primary); transform: translateX(0); }

.chan-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}
.chan-icon.wa { background: linear-gradient(135deg, #25D366, #128C7E); }
.chan-icon.tg { background: linear-gradient(135deg, #37AEE2, #0088CC); }
.chan-icon.ig { background: linear-gradient(135deg, #F58529, #DD2A7B 50%, #8134AF 75%, #515BD4); }

.chan-info { flex: 1; min-width: 0; }
.chan-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.chan-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.chan-arrow {
  color: var(--muted);
  font-size: 12px;
  transform: translateX(-6px);
  opacity: 0.6;
  transition: all 0.25s var(--ease);
}
.chan-btn:hover .chan-arrow { transform: translateX(0); opacity: 1; }

/* Preview box */
.channel-preview {
  background: linear-gradient(165deg, #fff 0%, var(--cream) 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  min-height: 520px;
  position: sticky;
  top: 100px;
  overflow: hidden;
}
.cp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.cp-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cp-ico {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 18px;
}
.cp-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.cp-sub {
  font-size: 12px;
  color: var(--muted);
}
.cp-live {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cp-live::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
  100% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}
.cp-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 18px 0;
}
.cp-desc strong { color: var(--ink); font-weight: 600; }

.cp-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.cp-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #4b5563;
}
.cp-tag i { color: var(--primary); margin-right: 4px; }

.cp-mockup {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  margin-top: 10px;
}

/* =============================================================
   MARQUEE
   ============================================================= */
.marquee {
  background: var(--ink);
  color: #fff;
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid var(--dark-2);
  border-bottom: 1px solid var(--dark-2);
  font-family: 'Space Grotesk', sans-serif;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.marquee-track i {
  color: var(--primary);
  font-size: 16px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =============================================================
   MODES (dark)
   ============================================================= */
.modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.mode-card {
  position: relative;
  padding: 36px 30px 30px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  transition: all 0.3s var(--ease);
  overflow: hidden;
}
.mode-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.mode-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 94, 58, 0.4);
  background: linear-gradient(165deg, var(--dark-2), #1d2436);
}
.mode-card:hover::before { opacity: 1; }

.mode-card.highlight {
  background: linear-gradient(165deg, #1f2538 0%, var(--dark-2) 100%);
  border-color: rgba(255, 94, 58, 0.35);
}
.mode-card.highlight::before { opacity: 1; }

.mode-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.1em;
  position: absolute;
  top: 24px; right: 28px;
}
.mode-tag {
  position: absolute;
  top: 24px; left: 24px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
}
.mode-ico {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(255, 94, 58, 0.12);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  margin-top: 10px;
}
.mode-card h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
}
.mode-card > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}
.mode-card > p strong { color: #fff; font-weight: 600; }
.mode-card ul {
  list-style: none;
  padding-top: 20px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mode-card ul li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.mode-card ul li i {
  color: var(--primary);
  font-size: 11px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* =============================================================
   MARKETPLACES
   ============================================================= */
.mkt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.mkt-card {
  position: relative;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.mkt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.mkt-glow {
  position: absolute;
  top: -50%; right: -50%;
  width: 300px; height: 300px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s;
  filter: blur(60px);
}
.mkt-card:hover .mkt-glow { opacity: 0.4; }

.mkt-shopee .mkt-glow { background: var(--primary); }
.mkt-ml .mkt-glow { background: #FDD835; }
.mkt-amazon .mkt-glow { background: #FF9900; }

.mkt-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  position: relative;
}
.mkt-logo {
  width: 52px; height: 52px;
  border-radius: 14px;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.mkt-shopee .mkt-logo { background: linear-gradient(135deg, #FF8A5C, var(--primary)); }
.mkt-ml .mkt-logo { background: linear-gradient(135deg, #FFE066, #FDD835); color: #3A3A3A; }
.mkt-amazon .mkt-logo { background: linear-gradient(135deg, #1f2937, var(--dark)); }

.mkt-head h3 {
  font-size: 20px;
  line-height: 1.1;
}
.mkt-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-top: 4px;
}
.mkt-card > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 22px;
  position: relative;
}
.mkt-card > p strong { color: var(--ink); font-weight: 600; }
.mkt-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px dashed var(--border);
  position: relative;
}
.mkt-metric {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.mkt-footer i {
  color: var(--primary);
  transition: transform 0.3s;
}
.mkt-card:hover .mkt-footer i { transform: translateX(4px); }

/* =============================================================
   BENTO GRID (features)
   ============================================================= */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 16px;
  margin-top: 20px;
}
.bento-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bento-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
}
.bento-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}
.bento-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.bento-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}
.bento-card p strong { color: var(--ink); font-weight: 600; }

/* bento-ai takes 2 cols */
.bento-ai {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(165deg, var(--ink) 0%, var(--dark-2) 100%);
  color: #fff;
  border-color: var(--dark-2);
}
.bento-ai:hover { border-color: var(--primary); }
.bento-ai .bento-ico {
  background: rgba(255, 94, 58, 0.18);
  color: var(--primary);
}
.bento-ai h3 { color: #fff; font-size: 26px; }
.bento-ai p { color: rgba(255, 255, 255, 0.65); font-size: 15px; line-height: 1.6; }
.bento-ai p strong { color: #fff; }
.ai-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.ai-chips span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
}
.ai-pulse {
  position: absolute;
  top: -50px; right: -50px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 94, 58, 0.3), transparent 70%);
  filter: blur(40px);
  animation: ai-breathe 4s ease-in-out infinite;
}
@keyframes ai-breathe {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.2); }
}

/* bento-dash takes 2 cols */
.bento-dash {
  grid-column: span 2;
}
.dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
  margin-top: 16px;
}
.bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--primary), #FF8A5C);
  border-radius: 6px 6px 2px 2px;
  animation: bar-grow 1.2s var(--ease) both;
}
@keyframes bar-grow {
  from { height: 0; }
}
.bar:nth-child(1) { animation-delay: 0.1s; }
.bar:nth-child(2) { animation-delay: 0.15s; }
.bar:nth-child(3) { animation-delay: 0.2s; }
.bar:nth-child(4) { animation-delay: 0.25s; }
.bar:nth-child(5) { animation-delay: 0.3s; }
.bar:nth-child(6) { animation-delay: 0.35s; }
.bar:nth-child(7) { animation-delay: 0.4s; }

/* bento-store */
.bento-store { grid-column: span 2; }
.store-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 16px;
}
.sp-item {
  aspect-ratio: 1;
  border-radius: 10px;
  background: linear-gradient(135deg, #e8e3dc, #fff);
  border: 1px solid var(--border);
}
.sp-item:nth-child(1) { background: linear-gradient(135deg, var(--primary), #FF8A5C); }
.sp-item:nth-child(2) { background: linear-gradient(135deg, #FDD835, #FFE066); }
.sp-item:nth-child(3) { background: linear-gradient(135deg, var(--ink), var(--dark-2)); }
.sp-item:nth-child(4) { background: linear-gradient(135deg, #37AEE2, #0088CC); }

/* bento-affil */
.bento-affil {
  background: linear-gradient(165deg, #fff 0%, var(--primary-soft) 100%);
  border-color: rgba(255, 94, 58, 0.2);
}
.affil-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  margin-top: 16px;
  align-self: flex-start;
}

/* =============================================================
   PRICING
   ============================================================= */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 6px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
}
.billing-toggle .lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.billing-toggle .lbl.active { color: var(--ink); }
.save-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.toggle {
  position: relative;
  width: 44px; height: 24px;
  background: #e5e7eb;
  border-radius: 999px;
  transition: background 0.25s;
}
.toggle.on { background: var(--primary); }
.toggle .thumb {
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s var(--ease);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle.on .thumb { transform: translateX(20px); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.price-card.featured {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: scale(1.02);
  z-index: 1;
}
.price-card.featured:hover { transform: scale(1.02) translateY(-4px); }

.pc-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.pc-head { margin-bottom: 18px; }
.pc-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 8px;
}
.price-card.featured .pc-name { color: #FFB59A; }
.pc-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}
.price-card.featured .pc-desc { color: rgba(255,255,255,0.5); }

.pc-old-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 2px;
  opacity: 0.7;
  text-decoration: line-through;
  text-decoration-color: var(--muted);
  font-size: 14px;
  color: var(--muted);
}
.pc-old-price .currency,
.pc-old-price .old-amount {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
}
.price-card.featured .pc-old-price,
.price-card.featured .pc-old-price .currency,
.price-card.featured .pc-old-price .old-amount {
  color: rgba(255, 255, 255, 0.55);
  text-decoration-color: rgba(255, 255, 255, 0.55);
}
.pc-lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: 2px;
  text-decoration: none;
}
.price-card.featured .pc-lbl { color: rgba(255, 255, 255, 0.6); }

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
}
.pc-price .currency {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}
.price-card.featured .pc-price .currency { color: rgba(255,255,255,0.6); }
.pc-price .amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.price-card.featured .pc-price .amount { color: #fff; }
.pc-price .interval {
  font-size: 13px;
  color: var(--muted);
}

.pc-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  padding: 12px;
  background: var(--cream);
  border-radius: 14px;
  margin-bottom: 20px;
}
.price-card.featured .pc-specs {
  background: rgba(255, 255, 255, 0.05);
}
.pc-specs > div {
  text-align: center;
  padding: 6px;
}
.pc-specs b {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.price-card.featured .pc-specs b { color: #fff; }
.pc-specs span {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 4px;
}
.price-card.featured .pc-specs span { color: rgba(255,255,255,0.5); }

.pc-feats {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pc-feats li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #4b5563;
  line-height: 1.4;
}
.price-card.featured .pc-feats li { color: rgba(255,255,255,0.75); }
.pc-feats li i {
  color: var(--primary);
  font-size: 10px;
  margin-top: 4px;
  flex-shrink: 0;
}
.pc-feats li.off { color: #9ca3af; text-decoration: line-through; }
.pc-feats li.off i { color: #9ca3af; }
.price-card.featured .pc-feats li.off { color: rgba(255,255,255,0.3); }

.pc-cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  background: #f3f4f6;
  color: var(--ink);
  transition: all 0.2s var(--ease);
}
.pc-cta:hover { background: var(--ink); color: #fff; }
.pc-cta-primary {
  background: var(--primary);
  color: #fff;
}
.pc-cta-primary:hover { background: #fff; color: var(--ink); }
.pc-cta-dark {
  background: var(--ink);
  color: #fff;
}
.pc-cta-dark:hover { background: var(--primary); }

.pricing-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 30px;
}

/* =============================================================
   FAQ
   ============================================================= */
.faq-container { max-width: 860px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--primary); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  transition: color 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--primary); }
.faq-item summary i {
  color: #9ca3af;
  font-size: 13px;
  transition: transform 0.25s, color 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary i {
  transform: rotate(45deg);
  color: var(--primary);
}
.faq-body {
  padding: 0 24px 22px 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.faq-body strong { color: var(--ink); font-weight: 600; }

/* =============================================================
   FINAL CTA
   ============================================================= */
.cta-final {
  padding: 80px 0 100px;
  position: relative;
  z-index: 1;
}
.cta-box {
  background: linear-gradient(135deg, var(--ink) 0%, var(--dark-2) 60%, #251a1f 100%);
  border-radius: 36px;
  padding: 64px 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(10, 14, 26, 0.3);
}
.cta-box::before {
  content: '';
  position: absolute;
  top: 50%; left: 30%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 94, 58, 0.4), transparent 70%);
  filter: blur(60px);
}
.cta-copy { position: relative; z-index: 1; }
.cta-copy h2 {
  font-size: clamp(36px, 5vw, 60px);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  margin-top: 8px;
}
.cta-copy p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 30px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cta-copy .btn-primary { background: var(--primary); }
.cta-copy .btn-primary:hover { background: #fff; color: var(--ink); }

/* CTA Graphic - orbital system */
.cta-graphic {
  position: relative;
  width: 340px;
  height: 340px;
  margin-left: auto;
  z-index: 1;
}
.cg-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 280px; height: 280px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}
.cg-ring-2 {
  width: 200px; height: 200px;
  animation: spin 20s linear infinite reverse;
}
@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.cg-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #FF8A5C);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  box-shadow: 0 20px 50px -10px rgba(255, 94, 58, 0.6);
  z-index: 2;
}
.cg-icon {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 22px;
  z-index: 2;
}
.cg-i1 { top: 20px; left: 50%; transform: translateX(-50%); color: #25D366; }
.cg-i2 { top: 50%; right: 10px; transform: translateY(-50%); color: #37AEE2; }
.cg-i3 { bottom: 20px; left: 50%; transform: translateX(-50%); color: #DD2A7B; }
.cg-i4 { top: 50%; left: 10px; transform: translateY(-50%); color: var(--primary); }
.cg-i5 { top: 55px; right: 55px; color: var(--accent); }
.cg-i6 { bottom: 55px; left: 55px; color: #FF9900; }

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 0;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.ft-brand .brand-text { color: #fff; }
.ft-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin: 18px 0;
  max-width: 320px;
}
.ft-socials {
  display: flex;
  gap: 10px;
}
.ft-socials a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: all 0.2s;
}
.ft-socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.ft-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.ft-col { display: flex; flex-direction: column; }
.ft-col a {
  font-size: 14px;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}
.ft-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 22px 0;
}
.fb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.fb-links { display: flex; gap: 20px; }
.fb-links a:hover { color: #fff; }

/* =============================================================
   FLOATING WA BUTTON
   ============================================================= */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 100;
  box-shadow: 0 10px 30px -6px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.05); }
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: wa-pulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-mockup-wrap { min-height: 500px; }
  .channels-wrap { grid-template-columns: 1fr; }
  .channel-preview { position: static; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-ai, .bento-dash, .bento-store { grid-column: span 2; grid-row: auto; }
  .modes-grid { grid-template-columns: 1fr; }
  .mkt-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .cta-box { grid-template-columns: 1fr; padding: 48px 36px; }
  .cta-graphic { margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .section { padding: 70px 0; }
  .hero { padding: 60px 0 0; }
  .hero-grid { padding-bottom: 60px; }
  .hero-title { font-size: 44px; }
  .hero-lead { font-size: 15px; }
  .section-title { font-size: 36px; }

  .nav-links { display: none; }
  .nav-actions { display: none; }
  .mobile-btn { display: flex; }

  .phone { width: 280px; min-height: 480px; }
  .floating-badge { width: 52px; height: 52px; font-size: 22px; }
  .fb-wa { left: -10px; top: 10px; }
  .fb-tg { right: -15px; top: 140px; }
  .fb-ig { left: -15px; bottom: 100px; }
  .floating-stat { right: 0; padding: 10px 14px; }
  .fs-num { font-size: 16px; }

  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-box { padding: 36px 24px; border-radius: 24px; }
  .bento { grid-template-columns: 1fr; }
  .bento-ai, .bento-dash, .bento-store { grid-column: span 1; }
  .billing-toggle { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 420px) {
  .brand-strip-inner { gap: 20px; }
  .bs-logos { gap: 16px; }
  .cta-graphic { width: 280px; height: 280px; }
  .cg-ring { width: 240px; height: 240px; }
  .cg-ring-2 { width: 170px; height: 170px; }
}

/* =============================================================
   PROTEÇÃO DE GRUPO — NEW FEATURE SPOTLIGHT
   ============================================================= */
.section-protection {
  background: radial-gradient(120% 80% at 50% 0%, #161d33 0%, var(--dark) 55%, #050810 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--dark-2);
  border-bottom: 1px solid var(--dark-2);
}
.prot-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.prot-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}
.prot-orb-1 {
  top: -120px;
  left: -80px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(255, 94, 58, 0.55), transparent 70%);
  animation: prot-float-a 14s ease-in-out infinite;
}
.prot-orb-2 {
  bottom: -160px;
  right: -100px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(16, 242, 160, 0.45), transparent 70%);
  animation: prot-float-b 18s ease-in-out infinite;
}
.prot-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(80% 70% at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(80% 70% at 50% 50%, #000 30%, transparent 75%);
  opacity: 0.5;
}
@keyframes prot-float-a {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(60px, 40px); }
}
@keyframes prot-float-b {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-50px, -30px); }
}

.section-protection .container { position: relative; z-index: 1; }

/* Eyebrow / NEW badge */
.prot-head { margin-bottom: 60px; }
.prot-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 14px;
  background: linear-gradient(90deg, rgba(255, 94, 58, 0.18), rgba(16, 242, 160, 0.18));
  border: 1px solid rgba(255, 94, 58, 0.35);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFD3BF;
  margin-bottom: 22px;
  box-shadow: 0 0 24px rgba(255, 94, 58, 0.18);
}
.prot-eyebrow i { color: var(--primary); }
.prot-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10F2A0;
  box-shadow: 0 0 0 0 rgba(16, 242, 160, 0.7);
  animation: prot-pulse-green 1.8s ease-out infinite;
}
.prot-eyebrow-new {
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--primary);
  color: #fff;
  letter-spacing: 0.1em;
  box-shadow: 0 6px 18px -4px rgba(255, 94, 58, 0.55);
}
@keyframes prot-pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(16, 242, 160, 0.7); }
  100% { box-shadow: 0 0 0 12px rgba(16, 242, 160, 0); }
}

.prot-title { font-size: clamp(38px, 5.6vw, 68px); }
.prot-gradient {
  background: linear-gradient(120deg, #FFB59A 0%, var(--primary) 40%, #10F2A0 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.prot-lead { max-width: 640px; }
.prot-lead strong { color: #fff; font-weight: 600; }

/* Showcase: shield + cards */
.prot-showcase {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}

/* Animated shield */
.prot-shield-wrap {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.prot-rings { position: absolute; inset: 0; }
.prot-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(16, 242, 160, 0.18);
}
.prot-ring.r1 { animation: prot-ring 4s ease-out infinite; }
.prot-ring.r2 {
  inset: 20px;
  border-color: rgba(255, 94, 58, 0.22);
  animation: prot-ring 4s ease-out infinite 1.2s;
}
.prot-ring.r3 {
  inset: 40px;
  border-color: rgba(16, 242, 160, 0.16);
  animation: prot-ring 4s ease-out infinite 2.4s;
}
@keyframes prot-ring {
  0% { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.35); opacity: 0; }
}
.prot-shield {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 60%),
    linear-gradient(160deg, #FF7A52 0%, var(--primary) 60%, #B53A1F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 78px;
  box-shadow:
    0 0 0 8px rgba(255, 94, 58, 0.12),
    0 0 40px rgba(255, 94, 58, 0.45),
    0 30px 80px -20px rgba(255, 94, 58, 0.6),
    inset 0 -10px 30px rgba(0, 0, 0, 0.25);
  animation: prot-shield-bob 5s ease-in-out infinite;
}
.prot-shield-lock {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #10F2A0;
  color: #07241A;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 4px rgba(16, 242, 160, 0.22),
    0 0 30px rgba(16, 242, 160, 0.55);
}
@keyframes prot-shield-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.prot-shield-tag {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translate(-50%, 50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #07241A;
  border: 1px solid rgba(16, 242, 160, 0.6);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #10F2A0;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 16px 30px -10px rgba(0, 0, 0, 0.55);
}
.prot-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10F2A0;
  box-shadow: 0 0 10px #10F2A0;
  animation: prot-pulse-green 1.6s ease-out infinite;
}
.prot-float {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(20, 25, 37, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  backdrop-filter: blur(6px);
  animation: prot-float-icon 5s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.6);
}
.pf-wa { top: 6%; left: 4%; color: #25D366; }
.pf-bot { top: 8%; right: 6%; color: #FFD84D; }
.pf-eye { bottom: 14%; left: 2%; color: #10F2A0; }
.pf-trash { bottom: 8%; right: 4%; color: #FF8A5C; }
@keyframes prot-float-icon {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

/* Problem vs Solution cards */
.prot-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.prot-card {
  position: relative;
  padding: 26px 24px;
  background: rgba(20, 25, 37, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  backdrop-filter: blur(6px);
  overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.prot-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0.5;
}
.prot-card:hover { transform: translateY(-4px); }
.prot-card-problem {
  color: #FF6E6E;
  border-color: rgba(255, 110, 110, 0.18);
}
.prot-card-problem:hover { border-color: rgba(255, 110, 110, 0.45); }
.prot-card-solution {
  color: #10F2A0;
  border-color: rgba(16, 242, 160, 0.22);
  background: linear-gradient(160deg, rgba(16, 242, 160, 0.08), rgba(20, 25, 37, 0.7));
}
.prot-card-solution:hover { border-color: rgba(16, 242, 160, 0.5); }
.prot-card-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.prot-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.prot-tag-red {
  background: rgba(255, 110, 110, 0.12);
  color: #FF8B8B;
  border: 1px solid rgba(255, 110, 110, 0.3);
}
.prot-tag-green {
  background: rgba(16, 242, 160, 0.12);
  color: #10F2A0;
  border: 1px solid rgba(16, 242, 160, 0.35);
}
.prot-card h3 {
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.02em;
}

/* Mini chat preview */
.prot-chat {
  background: rgba(7, 11, 22, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 18px;
}
.prot-msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.prot-msg-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.prot-avatar-bad {
  background: rgba(255, 110, 110, 0.18);
  color: #FF8B8B;
}
.prot-avatar-shield {
  background: rgba(16, 242, 160, 0.18);
  color: #10F2A0;
}
.prot-msg-body { flex: 1; min-width: 0; }
.prot-msg-name {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.prot-msg-flag {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 110, 110, 0.18);
  color: #FF8B8B;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.prot-msg-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}
.prot-msg-link {
  color: #6CA8FF;
  text-decoration: underline;
  text-decoration-style: dashed;
}
.prot-msg-deleted .prot-msg-name { color: #10F2A0; }
.prot-msg-strike {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}
.prot-msg-strike i { margin-right: 6px; color: #10F2A0; }
.prot-stamp {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(16, 242, 160, 0.12);
  border: 1px dashed rgba(16, 242, 160, 0.5);
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #10F2A0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Feature lists inside cards */
.prot-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}
.prot-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}
.prot-list li i {
  margin-top: 4px;
  font-size: 11px;
  flex-shrink: 0;
}
.prot-list-red li i { color: #FF6E6E; }
.prot-list-green li i { color: #10F2A0; }

/* Two action modes */
.prot-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 60px;
}
.prot-action {
  position: relative;
  padding: 30px 28px;
  background: linear-gradient(160deg, rgba(20, 25, 37, 0.9), rgba(10, 14, 26, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  transition: all 0.25s var(--ease);
  overflow: hidden;
}
.prot-action:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 94, 58, 0.4);
}
.prot-action-strong {
  background: linear-gradient(160deg, rgba(255, 94, 58, 0.18) 0%, rgba(16, 242, 160, 0.06) 60%, rgba(20, 25, 37, 0.9) 100%);
  border-color: rgba(255, 94, 58, 0.35);
}
.prot-action-strong::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, var(--primary), #10F2A0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
}
.prot-action-num {
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
}
.prot-action-badge {
  position: absolute;
  top: 22px;
  left: 24px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 20px -6px rgba(255, 94, 58, 0.6);
}
.prot-action-ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 94, 58, 0.14);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  margin-top: 14px;
}
.prot-action-strong .prot-action-ico {
  background: linear-gradient(135deg, rgba(255, 94, 58, 0.25), rgba(16, 242, 160, 0.2));
  color: #fff;
}
.prot-action h4 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.prot-action h4 em {
  font-style: normal;
  color: var(--primary);
  font-weight: 800;
}
.prot-action p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}
.prot-action p strong { color: #fff; font-weight: 600; }

/* Footer block */
.prot-foot {
  text-align: center;
  padding: 44px 24px;
  background: linear-gradient(135deg, rgba(255, 94, 58, 0.08), rgba(16, 242, 160, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.prot-foot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(255, 94, 58, 0.25), transparent 70%);
  pointer-events: none;
}
.prot-foot-title {
  position: relative;
  font-size: clamp(24px, 3vw, 36px);
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.prot-foot-sub {
  position: relative;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}
.prot-foot-sub strong { color: #fff; font-weight: 600; }
.prot-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #FF8A5C);
  box-shadow:
    0 12px 30px -8px rgba(255, 94, 58, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.prot-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(255, 94, 58, 0.7);
}

/* Nav NEW tag */
.nav-new { position: relative; display: inline-flex; align-items: center; gap: 6px; }
.nav-new-tag {
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 5px;
  background: var(--primary);
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1;
}
.mobile-menu .nav-new-tag { font-size: 10px; }

/* Responsive overrides for protection section */
@media (max-width: 1024px) {
  .prot-showcase { grid-template-columns: 1fr; gap: 40px; }
  .prot-shield-wrap { width: 300px; height: 300px; }
  .prot-shield { width: 150px; height: 150px; font-size: 64px; }
}
@media (max-width: 720px) {
  .prot-compare { grid-template-columns: 1fr; }
  .prot-actions { grid-template-columns: 1fr; }
  .prot-shield-wrap { width: 260px; height: 260px; }
  .prot-shield { width: 130px; height: 130px; font-size: 54px; }
  .prot-shield-lock { width: 38px; height: 38px; font-size: 15px; }
  .prot-foot { padding: 36px 20px; border-radius: 20px; }
  .prot-eyebrow { padding: 7px 12px 7px 12px; font-size: 11px; }
}

/* =============================================================
   REDUCED MOTION
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* =============================================================
   FOCUS
   ============================================================= */
a:focus-visible, button:focus-visible, details summary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 8px;
}
