/* ===== HOMEPAGE STYLES ===== */
:root {
  --hp-radius: 16px;
  --hp-shadow: 0 10px 40px rgba(2, 6, 23, 0.08), 0 2px 8px rgba(2, 6, 23, 0.04);
  --hp-shadow-lg: 0 20px 60px rgba(99, 102, 241, 0.18);
  --hp-gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3));
}
.hp-section {
  padding: 5rem 1.25rem;
}
.hp-container {
  max-width: 1200px;
  margin: 0 auto;
}
.hp-hero .hp-container {
  position: relative;
  z-index: 1;
}
/* ---------- UTILITY ---------- */
.hp-fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hp-fade-up.hp-visible {
  opacity: 1;
  transform: translateY(0);
}
.hp-gradient-text {
  background: var(--hp-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* ---------- NAVBAR ---------- */
.hp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  transition: transform 0.35s ease, background 0.35s ease;
}
.hp-nav-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}
.hp-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.hp-nav-logo img {
  height: 42px;
  object-fit: contain;
}
.hp-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hp-nav-link {
  padding: 8px 16px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.25s, color 0.25s;
  font-size: 15px;
}
.hp-nav-link:hover {
  background: rgba(99, 102, 241, 0.08);
  color: var(--accent-1);
}
.hp-nav-cta {
  padding: 10px 24px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  background: var(--hp-gradient);
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
  white-space: nowrap;
}
.hp-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}
.hp-nav-ghost {
  padding: 10px 20px;
  font-weight: 600;
  font-size: 15px;
  color: var(--accent-1);
  border: 2px solid var(--accent-1);
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
  white-space: nowrap;
}
.hp-nav-ghost:hover {
  background: rgba(99, 102, 241, 0.08);
  transform: translateY(-1px);
}
.hp-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.hp-nav-toggle span {
  width: 100%;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hp-nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hp-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.hp-nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.hp-nav-mobile {
  display: none;
}
/* ---------- FLOATING ICONS ---------- */
.hp-float-icons {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hp-fi {
  position: absolute;
  opacity: 0.2;
  color: var(--accent-1);
  width: 28px;
  height: 28px;
  animation: hp-float 18s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(99,102,241,0.06));
}
.hp-fi-1 { top: 8%; left: 5%; animation-delay: 0s; width: 36px; height: 36px; color: var(--accent-2); }
.hp-fi-2 { top: 15%; right: 8%; animation-delay: 2s; width: 32px; height: 32px; color: var(--accent-3); }
.hp-fi-3 { top: 55%; left: 3%; animation-delay: 4s; width: 40px; height: 40px; }
.hp-fi-4 { top: 30%; right: 4%; animation-delay: 1s; width: 30px; height: 30px; color: var(--accent-2); }
.hp-fi-5 { top: 70%; right: 12%; animation-delay: 3s; width: 34px; height: 34px; }
.hp-fi-6 { top: 45%; left: 8%; animation-delay: 5s; width: 26px; height: 26px; color: var(--accent-3); }
.hp-fi-7 { top: 80%; left: 10%; animation-delay: 1.5s; width: 30px; height: 30px; }
.hp-fi-8 { top: 10%; left: 50%; animation-delay: 3.5s; width: 28px; height: 28px; color: var(--accent-2); }
.hp-fi-9 { top: 22%; left: 22%; animation-delay: 0.5s; width: 24px; height: 24px; color: var(--accent-3); }
.hp-fi-10 { top: 65%; right: 25%; animation-delay: 2.5s; width: 34px; height: 34px; }
.hp-fi-11 { top: 40%; left: 30%; animation-delay: 4.5s; width: 28px; height: 28px; color: var(--accent-2); }
.hp-fi-12 { top: 5%; right: 30%; animation-delay: 1.2s; width: 26px; height: 26px; }
.hp-fi-13 { top: 75%; left: 25%; animation-delay: 3.2s; width: 32px; height: 32px; color: var(--accent-3); }
.hp-fi-14 { top: 35%; right: 15%; animation-delay: 5.5s; width: 30px; height: 30px; }
.hp-fi-15 { top: 90%; left: 40%; animation-delay: 0.8s; width: 36px; height: 36px; color: var(--accent-2); }
.hp-fi-16 { top: 50%; right: 35%; animation-delay: 2.8s; width: 22px; height: 22px; }

@keyframes hp-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-18px) rotate(6deg); }
  50% { transform: translateY(-6px) rotate(-4deg); }
  75% { transform: translateY(-24px) rotate(3deg); }
}
/* ---------- HERO ---------- */
.hp-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 2rem 1.25rem 3rem;
  background: radial-gradient(1100px 380px at 70% -30%, rgba(99,102,241,0.15), transparent 60%),
              radial-gradient(800px 380px at 0% 10%, rgba(59,130,246,0.13), transparent 60%),
              linear-gradient(160deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}
.hp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hp-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(99, 102, 241, 0.1);
  color: var(--accent-1);
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 1.25rem;
}
.hp-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: var(--text);
}
.hp-hero p {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2rem;
}
.hp-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background: var(--hp-gradient);
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}
.hp-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}
.hp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  color: var(--accent-1);
  background: rgba(99, 102, 241, 0.06);
  border: 2px solid rgba(99, 102, 241, 0.2);
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.hp-btn-secondary:hover {
  background: rgba(99, 102, 241, 0.12);
  transform: translateY(-3px);
}
.hp-hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hp-stat {
  text-align: center;
}
.hp-stat-num {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--accent-1);
  line-height: 1;
}
.hp-stat-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}
/* Hero Video Card */
.hp-hero-video {
  position: relative;
  border-radius: var(--hp-radius);
  overflow: hidden;
  box-shadow: var(--hp-shadow-lg);
  aspect-ratio: 16 / 9;
  background: #0f172a;
}
.hp-hero-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
/* ---------- SOCIAL PROOF MARQUEE ---------- */
.hp-marquee {
  padding: 2.5rem 0;
  background: #f8fafc;
  overflow: hidden;
}
.hp-marquee-label {
  text-align: center;
  font-weight: 700;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 1.5rem;
}
.hp-marquee-track {
  overflow-x: auto;
  padding: 0 16px 8px;
  direction: ltr;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.hp-marquee-track::-webkit-scrollbar {
  height: 4px;
}
.hp-marquee-track::-webkit-scrollbar-thumb {
  background: rgba(148,163,184,0.4);
  border-radius: 4px;
}
.hp-marquee-track img {
  height: 130px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.hp-marquee-track img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.hp-marquee-inner {
  display: flex;
  gap: 16px;
  width: fit-content;
  direction: ltr;
}

/* ---------- TESTIMONIAL LIGHTBOX ---------- */
.hp-testimonial-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
.hp-testimonial-modal.active {
  display: flex;
}
.hp-testimonial-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hp-testimonial-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.25s;
}
.hp-testimonial-close:hover {
  opacity: 1;
}
/* ---------- COMPARISON ---------- */
.hp-compare {
  background: radial-gradient(circle at 20% 20%, rgba(99,102,241,0.08), transparent 40%),
              radial-gradient(circle at 80% 80%, rgba(59,130,246,0.08), transparent 40%);
}
.hp-compare h2 {
  text-align: center;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.hp-compare-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-size: 16px;
}
.hp-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.hp-compare-card {
  border-radius: var(--hp-radius);
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(2, 6, 23, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(148, 163, 184, 0.12);
  transition: box-shadow 0.25s;
}
.hp-compare-card.bad {
  background: linear-gradient(145deg, #fff, rgba(254, 226, 226, 0.55));
  border-color: rgba(239, 68, 68, 0.18);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  cursor: pointer;
}
.hp-compare-card.bad:hover,
.hp-compare-card.bad:active {
  border-color: #ef4444;
  border-width: 2px;
  box-shadow: 8px -9px 30px 10px rgba(239, 68, 68, 0.15);
}
.hp-compare-card.good {
  background: linear-gradient(145deg, #fff, rgba(224, 242, 254, 0.65));
  border-color: rgba(34, 197, 94, 0.18);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  cursor: pointer;
}
.hp-compare-card.good:hover,
.hp-compare-card.good:active {
  border-color: #22c55e;
  border-width: 2px;
  box-shadow: -10px -10px 30px 10px rgba(34, 197, 94, 0.15);
}
.hp-compare-title {
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hp-compare-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  width: fit-content;
}
.hp-compare-pill.bad {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}
.hp-compare-pill.good {
  background: rgba(16, 185, 129, 0.14);
  color: #0f766e;
}
.hp-compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  color: #334155;
  font-weight: 600;
}
.hp-compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.6;
  font-size: 14px;
}
.hp-compare-result {
  margin-top: auto;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.hp-compare-result.bad {
  background: linear-gradient(120deg, rgba(248, 113, 113, 0.14), rgba(248, 113, 113, 0.06));
  color: #b91c1c;
}
.hp-compare-result.good {
  background: linear-gradient(120deg, rgba(45, 212, 191, 0.18), rgba(34, 197, 94, 0.1));
  color: #0f766e;
}
.hp-compare-footer {
  text-align: center;
  margin-top: 2rem;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.08), rgba(245, 158, 11, 0.08));
  padding: 1rem 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(99, 102, 241, 0.1);
  max-width: 1000px;
  margin-inline: auto;
}
/* ---------- FEATURES ---------- */
.hp-features {
  background: #f8fafc;
}
.hp-features h2 {
  text-align: center;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.hp-features-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-inline: auto;
}
.hp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.hp-feature-card {
  background: #fff;
  border-radius: var(--hp-radius);
  padding: 1.75rem;
  box-shadow: var(--hp-shadow);
  border: 1px solid rgba(148, 163, 184, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.hp-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hp-shadow-lg);
}
.hp-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.hp-feature-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--text);
}
.hp-feature-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
/* ---------- STRATEGY ---------- */
.hp-strategy {
  background: #fff;
}
.hp-strategy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hp-strategy h2 {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 900;
  margin: 0 0 1rem;
}
.hp-strategy p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.hp-strategy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.hp-strategy-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #334155;
  font-weight: 600;
  font-size: 15px;
}
.hp-strategy-list li i {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}
.hp-strategy-visual {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.06), rgba(59, 130, 246, 0.06));
  border-radius: var(--hp-radius);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(99, 102, 241, 0.08);
}
.hp-strategy-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
/* ---------- HOW IT WORKS ---------- */
.hp-how {
  background: #f8fafc;
}
.hp-how h2 {
  text-align: center;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.hp-how-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 3rem;
}
.hp-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.hp-how-card {
  text-align: center;
}
.hp-how-icon-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 1.25rem;
}
.hp-how-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.12), rgba(59, 130, 246, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-1);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.12);
}
.hp-how-badge {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--hp-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
}
.hp-how-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--text);
}
.hp-how-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
/* ---------- PRICING ---------- */
.hp-pricing {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 50%, #f8fafc 100%);
}
.hp-pricing h2 {
  text-align: center;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.hp-pricing-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.hp-countdown-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2.5rem;
}
.hp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.hp-plan-card {
  background: #fff;
  border-radius: var(--hp-radius);
  overflow: hidden;
  box-shadow: var(--hp-shadow);
  border: 1px solid rgba(148, 163, 184, 0.12);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.hp-plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hp-shadow-lg);
}
.hp-plan-card.featured {
  border: 2px solid #f59e0b;
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.2);
  transform: scale(1.03);
}
.hp-plan-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}
.hp-plan-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
}
.hp-plan-header {
  padding: 2.5rem 1.75rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}
.hp-plan-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.hp-plan-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
}
.hp-plan-price span {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.hp-plan-usdt {
  color: var(--accent-1);
  font-weight: 700;
  font-size: 16px;
}
.hp-plan-body {
  padding: 1.75rem;
}
.hp-plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.hp-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #334155;
  font-weight: 600;
}
.hp-plan-features li i {
  flex-shrink: 0;
  margin-top: 2px;
}
.hp-plan-features .included i { color: #10b981; }
.hp-plan-features .excluded i { color: #9ca3af; }
.hp-plan-features .excluded span { color: #9ca3af; }
.hp-plan-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  margin-top: 1.5rem;
}
.hp-plan-cta.primary {
  background: var(--hp-gradient);
  color: #fff;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}
.hp-plan-cta.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}
.hp-plan-cta.gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}
.hp-plan-cta.gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.45);
}
.hp-plan-cta.secondary {
  background: var(--text);
  color: #fff;
}
.hp-plan-cta.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}
.hp-plan-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
}
.hp-pricing-footnote {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-top: 2rem;
}
/* ---------- FAQ ---------- */
.hp-faq {
  background: #fff;
}
.hp-faq h2 {
  text-align: center;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.hp-faq-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2.5rem;
}
.hp-faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.hp-faq-item {
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.hp-faq-item.active {
  border-color: rgba(99, 102, 241, 0.3);
}
.hp-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  text-align: right;
  transition: background 0.25s;
  gap: 12px;
}
.hp-faq-question:hover {
  background: rgba(99, 102, 241, 0.04);
}
.hp-faq-arrow {
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--muted);
}
.hp-faq-item.active .hp-faq-arrow {
  transform: rotate(180deg);
  color: var(--accent-1);
}
.hp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.hp-faq-item.active .hp-faq-answer {
  max-height: 300px;
}
.hp-faq-answer-inner {
  padding: 0 20px 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
/* ---------- FINAL CTA ---------- */
.hp-cta-banner {
  padding: 5rem 1.25rem;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  text-align: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hp-cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 30% 50%, rgba(255,255,255,0.12), transparent 60%),
              radial-gradient(600px 300px at 70% 50%, rgba(167,139,250,0.15), transparent 60%);
  z-index: 0;
}
.hp-cta-banner > * {
  position: relative;
  z-index: 1;
}
.hp-cta-banner h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 0.75rem;
}
.hp-cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.hp-cta-banner .hp-btn-primary {
  background: #fff;
  color: var(--accent-1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.hp-cta-banner .hp-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
/* ---------- FOOTER ---------- */
.hp-footer {
  background: #0f172a;
  color: #fff;
  padding: 3rem 1.25rem 1.5rem;
}
.hp-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
}
.hp-footer-brand {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hp-footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.hp-footer-social {
  display: flex;
  gap: 10px;
}
.hp-footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.hp-footer-social a:hover {
  background: var(--accent-1);
  color: #fff;
}
.hp-footer-heading {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.hp-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.hp-footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.25s;
}
.hp-footer-links a:hover {
  color: #fff;
}
.hp-footer-payments {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hp-footer-payment {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}
.hp-footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.hp-footer-copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}
.hp-footer-tg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.25s;
}
.hp-footer-tg:hover {
  color: #fff;
}
/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hp-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hp-hero {
    min-height: auto;
    padding: 5rem 1.25rem 2.5rem;
  }
  .hp-hero p {
    max-width: 100%;
  }
  .hp-strategy-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hp-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .hp-plan-card.featured {
    transform: none;
  }
  .hp-plan-card.featured:hover {
    transform: translateY(-6px);
  }
  .hp-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .hp-section {
    padding: 3rem 1rem;
  }
  /* Nav mobile */
  .hp-nav-links {
    display: none;
  }
  .hp-nav-toggle {
    display: flex;
  }
  .hp-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
  }
  .hp-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
  }
  .hp-nav-mobile {
    display: inline-flex;
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    width: 280px;
    z-index: 999;
    flex-direction: column;
    gap: 8px;
    padding: 80px 24px 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    direction: rtl;
  }
  .hp-nav-mobile.active {
    transform: translateX(0);
  }
  .hp-nav-mobile .hp-nav-link {
    font-size: 16px;
    padding: 12px 16px;
    border-radius: 10px;
  }
  .hp-nav-mobile .hp-nav-ghost,
  .hp-nav-mobile .hp-nav-cta {
    font-size: 16px;
    padding: 12px 20px;
    text-align: center;
    display: block;
  }
  .hp-compare-grid {
    grid-template-columns: 1fr;
  }
  .hp-features-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
  }
  .hp-feature-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
  }
  .hp-how-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
  .hp-footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hp-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .hp-hero-stats {
    justify-content: center;
  }
  .hp-hero-actions {
    justify-content: center;
    flex-wrap: nowrap;
  }
  .hp-hero-actions .hp-btn-primary,
  .hp-hero-actions .hp-btn-secondary {
    font-size: 13px;
    padding: 12px 16px;
    white-space: nowrap;
  }
  .hp-hero h1, .hp-hero p {
    text-align: center;
  }
  .hp-hero-tag {
    margin-left: auto;
    margin-right: auto;
  }
  .hp-strategy h2 {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hp-nav {
    padding: 12px 16px;
  }
  .hp-nav-logo img {
    height: 34px;
  }
  .hp-hero {
    padding: 4.5rem 1rem 2rem;
  }
}
