/* ============================================================
   RESET & BASE
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #020617;
  color: #e2e8f0;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
 
/* ============================================================
   ANIMATED BACKGROUND — grid + floating orbs
   ============================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 70%);
}
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: orbFloat 18s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: rgba(0,212,255,0.35); top: -150px; left: -100px; }
.orb-2 { width: 400px; height: 400px; background: rgba(168,85,247,0.28); top: 30%; right: -120px; animation-delay: -6s; }
.orb-3 { width: 450px; height: 450px; background: rgba(16,185,129,0.18); bottom: -100px; left: 30%; animation-delay: -12s; }
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(60px,-40px) scale(1.1); }
  66%     { transform: translate(-40px,50px) scale(0.95); }
}

/* ============================================================
   FADE-IN ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   BASE BUTTON (shared)
   ============================================================ */
.btn {
  align-items: center;
  background: linear-gradient(135deg, #00d4ff, #09f);
  box-shadow: 0 0 1.5rem rgba(0,212,255,0.35), 0 0 4rem rgba(0,212,255,0.12);
  color: #000;
  display: inline-flex;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.02em;
  overflow: hidden;
  position: relative;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.2s ease, background 0.3s ease,
              color 0.3s ease, border-color 0.3s ease;
  padding: 0.7rem 1.4rem;
  border-radius: 2.5rem;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: inherit;
  white-space: nowrap;
}
.btn i { margin-right: 0.45rem; font-size: 0.95rem; }
.btn:hover { transform: scale(1.04); box-shadow: 0 0 2.5rem rgba(0,212,255,0.65), 0 0 6rem rgba(0,212,255,0.25); }
.btn:active { transform: scale(0.98); }

.btn--primary {
  animation: pulseGlow 2.8s ease-in-out infinite;
  box-shadow: inset 0 1px 0 hsla(0,0%,100%,0.35), 0 6px 18px rgba(0,212,255,0.25);
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 8px rgba(0,212,255,0.35), 0 0 20px rgba(0,212,255,0.3), 0 0 40px rgba(0,212,255,0.2), 0 0 60px rgba(0,212,255,0.1); }
  50%     { box-shadow: 0 0 12px rgba(0,212,255,0.55), 0 0 28px rgba(0,212,255,0.45), 0 0 55px rgba(0,212,255,0.3), 0 0 80px rgba(0,212,255,0.15); }
}
.btn--secondary {
  background: transparent;
  border: 2px solid #334155;
  color: #e2e8f0;
  box-shadow: none;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}
.btn--secondary::before {
  animation: shineSweep 4s linear infinite;
  background: linear-gradient(120deg, hsla(0,0%,100%,0) 30%, hsla(0,0%,100%,0.18) 50%, hsla(0,0%,100%,0) 70%);
  background-size: 200% 100%;
  border-radius: inherit;
  content: '';
  inset: -30%;
  pointer-events: none;
  position: absolute;
}
.btn--secondary:hover { border-color: #00d4ff; color: #00d4ff; box-shadow: 0 0 1.5rem rgba(0,212,255,0.3); }
@keyframes shineSweep { 0%{background-position:200%} 100%{background-position:-200%} }

.btn--ghost {
  background: transparent;
  border: 2px solid #00d4ff;
  box-shadow: none;
  color: #00d4ff;
}
.btn--ghost:hover { background: #00d4ff; color: #000; box-shadow: 0 0 2.5rem rgba(0,212,255,0.7); }
.btn--login {
  background: transparent;
  border: 2px solid #00d4ff;
  color: #00d4ff;
  box-shadow: none;
}
.btn--login:hover { background: #00d4ff; color: #000; box-shadow: 0 0 1.5rem rgba(0,212,255,0.6); }
.btn--signup {
  background: linear-gradient(135deg, #00d4ff, #09f);
  animation: pulseGlow 2.8s ease-in-out infinite;
}
.btn--search-standalone {
  animation: searchPulse 3s ease-in-out infinite;
  background: linear-gradient(135deg, #00d4ff, #0077ff);
}
@keyframes searchPulse {
  0%,100% { box-shadow: 0 0 8px rgba(0,212,255,0.4), 0 0 24px rgba(0,119,255,0.3); transform: scale(1); }
  50%     { box-shadow: 0 0 16px rgba(0,212,255,0.7), 0 0 40px rgba(0,119,255,0.5); transform: scale(1.02); }
}
.btn--affiliate {
  animation: affiliateGlow 3.5s ease-in-out infinite;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}
@keyframes affiliateGlow {
  0%,100% { box-shadow: 0 0 8px rgba(255,107,107,0.3), 0 0 24px rgba(238,90,36,0.2); }
  50%     { box-shadow: 0 0 16px rgba(255,107,107,0.6), 0 0 40px rgba(238,90,36,0.4); }
}
.btn--price-standard {
  animation: standardPulse 3s ease-in-out infinite;
  background: linear-gradient(135deg, #00d4ff, #09f);
  width: 100%;
  padding: 0.85rem 1.5rem;
}
@keyframes standardPulse {
  0%,100% { box-shadow: 0 0 8px rgba(0,212,255,0.3), 0 0 24px rgba(0,212,255,0.1); }
  50%     { box-shadow: 0 0 12px rgba(0,212,255,0.5), 0 0 40px rgba(0,212,255,0.2); }
}
.btn--price-recommended {
  animation: recommendedPulse 2.2s ease-in-out infinite;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  width: 100%;
  padding: 0.85rem 1.5rem;
}
@keyframes recommendedPulse {
  0%,100% { box-shadow: 0 0 12px rgba(168,85,247,0.4), 0 0 32px rgba(59,130,246,0.2); transform: scale(1); }
  50%     { box-shadow: 0 0 24px rgba(168,85,247,0.7), 0 0 56px rgba(59,130,246,0.4); transform: scale(1.02); }
}
.btn--price-bestseller {
  animation: bestsellerPulse 2s ease-in-out infinite;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  width: 100%;
  padding: 0.85rem 1.5rem;
}
@keyframes bestsellerPulse {
  0%,100% { box-shadow: 0 0 12px rgba(251,191,36,0.5), 0 0 32px rgba(217,119,6,0.3); transform: scale(1); }
  50%     { box-shadow: 0 0 24px rgba(251,191,36,0.9), 0 0 64px rgba(217,119,6,0.5); transform: scale(1.02); }
}
.btn--trial {
  background: linear-gradient(135deg, #00d4ff, #10b981);
  animation: trialPulse 2s ease-in-out infinite;
}
@keyframes trialPulse {
  0%,100% { box-shadow: 0 0 10px rgba(0,212,255,0.4), 0 0 28px rgba(16,185,129,0.2); }
  50%     { box-shadow: 0 0 20px rgba(0,212,255,0.8), 0 0 48px rgba(16,185,129,0.5); }
}
.btn--chat {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #00d4ff);
  padding: 0;
  animation: chatPulse 2s ease-in-out infinite;
  z-index: 1000;
}
.btn--chat i { font-size: 1.5rem; margin: 0; }
@keyframes chatPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.6), 0 0 20px rgba(16,185,129,0.4); }
  50%     { box-shadow: 0 0 0 12px rgba(16,185,129,0), 0 0 30px rgba(16,185,129,0.6); }
}
.btn--top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  padding: 0;
  background: linear-gradient(135deg, #00d4ff, #09f);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  z-index: 999;
}
.btn--top i { margin: 0; }
.btn--top.show { opacity: 1; visibility: visible; }
.btn--toggle {
  background: #1e293b;
  border: 1px solid #334155;
  color: #94a3b8;
  padding: 0.4rem 1rem;
  box-shadow: none;
  position: relative;
  width: 5rem;
  height: 2.25rem;
  overflow: hidden;
}
.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: #00d4ff;
  box-shadow: 0 0 10px rgba(0,212,255,0.8);
  transition: transform 0.35s cubic-bezier(0.5, 0, 0.2, 1.3);
}
.btn--toggle.on .toggle-knob { transform: translateX(2.5rem); }
.btn--toggle .t-icon { position: absolute; font-size: 0.85rem; }
.btn--toggle .t-sun { left: 0.6rem; color: #fbbf24; opacity: 1; transition: opacity 0.3s; }
.btn--toggle .t-moon { right: 0.6rem; color: #94a3b8; opacity: 0.5; transition: opacity 0.3s; }
.btn--toggle.on .t-sun { opacity: 0.5; }
.btn--toggle.on .t-moon { opacity: 1; }

/* ============================================================
   SEARCH BAR
   ============================================================ */
.search-wrapper {
  background: rgba(15,23,42,0.9);
  border-radius: 1.5rem;
  padding: 0.5rem;
  border: 1px solid #1e293b;
  transition: border-color 0.3s, box-shadow 0.3s;
  max-width: 720px;
  margin: 1.75rem auto 0;
  backdrop-filter: blur(12px);
}
.search-wrapper:focus-within { border-color: #00d4ff; box-shadow: 0 0 2rem rgba(0,212,255,0.2); }
.search-container {
  display: flex;
  align-items: center;
  background: transparent;
  border-radius: 1.25rem;
  padding: 0 0.25rem 0 1.1rem;
  gap: 0.5rem;
}
.search-icon { color: #475569; transition: color 0.3s; }
.search-container:focus-within .search-icon { color: #00d4ff; }
.search-container input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.85rem 0;
  font-size: 1rem;
  color: #f1f5f9;
  outline: none;
  min-width: 0;
}
.search-container input::placeholder { color: #475569; }
.btn--search-chip {
  animation: searchPulse 3s ease-in-out infinite;
  background: linear-gradient(135deg, #00d4ff, #0077ff);
  padding: 0.55rem 1.3rem;
  font-size: 0.9rem;
  border-radius: 2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.btn--search-chip i { margin-right: 0.4rem; }
.btn--search-submit {
  background: linear-gradient(135deg, #00d4ff, #0077ff);
  padding: 0.65rem 1.2rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
  min-width: 3rem;
  justify-content: center;
}
.btn--search-submit i { margin-right: 0; }

/* ============================================================
   HEADER
   ============================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(2,6,23,0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(30,41,59,0.6);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.logo-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.6rem;
  background: linear-gradient(135deg, #00d4ff, #09f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 0.95rem;
  box-shadow: 0 0 1rem rgba(0,212,255,0.5);
}
.logo-text {
  background: linear-gradient(135deg, #00d4ff, #09f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
nav { display: flex; gap: 1.6rem; align-items: center; }
nav a {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00d4ff;
  box-shadow: 0 0 8px rgba(0,212,255,0.8);
  transition: width 0.3s;
}
nav a:hover { color: #00d4ff; }
nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-actions .btn { padding: 0.5rem 1.1rem; font-size: 0.85rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 9rem 1.5rem 5rem;
  z-index: 1;
  overflow: hidden;
}
.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.25);
  color: #00d4ff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero h1 .grad {
  background: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  color: #94a3b8;
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #64748b;
  font-size: 0.85rem;
}
.hero-avatars { display: flex; }
.hero-avatars .av {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid #020617;
  margin-left: -0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #000;
}
.hero-avatars .av:first-child { margin-left: 0; }
.av-1 { background: linear-gradient(135deg, #00d4ff, #09f); }
.av-2 { background: linear-gradient(135deg, #a855f7, #ec4899); }
.av-3 { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.av-4 { background: linear-gradient(135deg, #10b981, #00d4ff); }
.hero-stars { color: #fbbf24; font-size: 0.75rem; }

/* ---- Hero visual (floating dashboard) ---- */
.hero-visual {
  position: relative;
  height: 480px;
  perspective: 1200px;
}
.dashboard {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  max-width: 460px;
  height: fit-content;
  background: rgba(15,23,42,0.85);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 1.25rem;
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(0,212,255,0.1),
    0 0 60px rgba(0,212,255,0.15);
  transform: rotateY(-8deg) rotateX(4deg);
  animation: floatY 6s ease-in-out infinite;
  z-index: 2;
}
@keyframes floatY {
  0%,100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0); }
  50%     { transform: rotateY(-8deg) rotateX(4deg) translateY(-14px); }
}
.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid #1e293b;
  margin-bottom: 1.25rem;
}
.dash-dots { display: flex; gap: 0.4rem; }
.dash-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.dash-dots span:nth-child(1) { background: #ff5f56; }
.dash-dots span:nth-child(2) { background: #ffbd2e; }
.dash-dots span:nth-child(3) { background: #27c93f; }
.dash-title {
  font-size: 0.75rem;
  color: #64748b;
  font-family: 'Courier New', monospace;
}
.dash-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: #10b981;
  font-weight: 600;
}
.dash-status .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #10b981;
  box-shadow: 0 0 6px #10b981;
  animation: blink 2s ease-in-out infinite;
}
.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.85rem;
  background: rgba(30,41,59,0.5);
  border-radius: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.82rem;
}
.dash-row-label { display: flex; align-items: center; gap: 0.6rem; color: #cbd5e1; }
.dash-row-label i { color: #00d4ff; font-size: 0.85rem; }
.dash-row-value { color: #f1f5f9; font-weight: 600; font-family: 'Courier New', monospace; }
.dash-row-value.good { color: #10b981; }
.dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
  margin: 1rem 0 0.75rem;
  padding: 0 0.25rem;
}
.dash-bar {
  flex: 1;
  background: linear-gradient(180deg, #00d4ff, rgba(0,212,255,0.2));
  border-radius: 4px 4px 0 0;
  animation: barGrow 2.5s ease-in-out infinite;
}
.dash-bar:nth-child(1) { height: 40%; animation-delay: 0s; }
.dash-bar:nth-child(2) { height: 65%; animation-delay: 0.1s; }
.dash-bar:nth-child(3) { height: 45%; animation-delay: 0.2s; }
.dash-bar:nth-child(4) { height: 80%; animation-delay: 0.3s; }
.dash-bar:nth-child(5) { height: 60%; animation-delay: 0.4s; }
.dash-bar:nth-child(6) { height: 90%; animation-delay: 0.5s; }
.dash-bar:nth-child(7) { height: 70%; animation-delay: 0.6s; }
@keyframes barGrow {
  0%,100% { transform: scaleY(0.85); opacity: 0.85; }
  50%     { transform: scaleY(1); opacity: 1; }
}
.dash-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: #475569;
  font-family: 'Courier New', monospace;
  padding-top: 0.75rem;
  border-top: 1px solid #1e293b;
}

/* Floating cards around the dashboard */
.float-card {
  position: absolute;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 0.85rem;
  padding: 0.75rem 1rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4), 0 0 20px rgba(0,212,255,0.15);
  z-index: 3;
  animation: floatY2 5s ease-in-out infinite;
}
.float-card-1 {
  top: 5%;
  left: -10%;
  animation-delay: -1s;
}
.float-card-2 {
  bottom: 12%;
  right: -8%;
  animation-delay: -3s;
  border-color: rgba(251,191,36,0.35);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4), 0 0 20px rgba(251,191,36,0.2);
}
.float-card-2 .fc-icon { background: linear-gradient(135deg, #fbbf24, #d97706); }
@keyframes floatY2 {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
.fc-inner { display: flex; align-items: center; gap: 0.75rem; }
.fc-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.55rem;
  background: linear-gradient(135deg, #00d4ff, #09f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 0.95rem;
}
.fc-value { font-size: 1rem; font-weight: 700; color: #f1f5f9; line-height: 1.1; }
.fc-label { font-size: 0.68rem; color: #64748b; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(30,41,59,0.6);
  border-bottom: 1px solid rgba(30,41,59,0.6);
  padding: 2rem 1.5rem;
  background: rgba(10,15,30,0.4);
  backdrop-filter: blur(8px);
}
.trust-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #475569;
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}
.trust-logo {
  color: #64748b;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.trust-logo:hover { opacity: 1; color: #00d4ff; }
.trust-logo i { font-size: 1.1rem; }

/* ============================================================
   SECTIONS
   ============================================================ */
section { position: relative; padding: 5rem 1.5rem; z-index: 1; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.section-header h2 .grad {
  background: linear-gradient(135deg, #00d4ff, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header p {
  color: #94a3b8;
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.02rem;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #00d4ff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.9rem;
  padding: 0.3rem 0.9rem;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 2rem;
}

/* ============================================================
   DOMAIN SECTION
   ============================================================ */
.domain-section {
  background: rgba(10,15,30,0.6);
  border-top: 1px solid #1e293b;
  border-bottom: 1px solid #1e293b;
}
.domain-section .section-inner { text-align: center; }
.domain-pills {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}
.domain-pill {
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  background: rgba(30,41,59,0.6);
  border: 1px solid #334155;
  font-size: 0.8rem;
  color: #94a3b8;
  font-family: 'Courier New', monospace;
}
.domain-pill strong { color: #00d4ff; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  position: relative;
  background: rgba(15,23,42,0.7);
  border: 1px solid #1e293b;
  border-radius: 1.25rem;
  padding: 2rem 1.6rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  border-color: rgba(0,212,255,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(0,212,255,0.15);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.35rem;
  position: relative;
}
.service-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 1rem;
  background: inherit;
  opacity: 0.35;
  filter: blur(12px);
  z-index: -1;
}
.service-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem; }
.service-card p { color: #94a3b8; font-size: 0.9rem; margin-bottom: 1.35rem; }
.service-price {
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}
.service-price strong { color: #00d4ff; font-size: 1.15rem; font-weight: 700; }

/* ============================================================
   WHY CHOOSE US (with image)
   ============================================================ */
.why-section {
  background: rgba(10,15,30,0.5);
  border-top: 1px solid #1e293b;
  border-bottom: 1px solid #1e293b;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(0,212,255,0.2);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 60px rgba(0,212,255,0.1);
}
.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}
.why-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,6,23,0) 40%, rgba(2,6,23,0.85) 100%);
}
.why-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(15,23,42,0.85);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 1rem;
  backdrop-filter: blur(12px);
}
.why-image-badge .icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.7rem;
  background: linear-gradient(135deg, #00d4ff, #09f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.why-image-badge .text strong { display: block; font-size: 0.95rem; color: #f1f5f9; }
.why-image-badge .text span { font-size: 0.78rem; color: #64748b; }

.why-content h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.why-content > p { color: #94a3b8; margin-bottom: 2rem; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 1.15rem; margin-bottom: 2rem; }
.why-list li { display: flex; gap: 1rem; align-items: flex-start; }
.why-list .check {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.4);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.why-list .text strong { color: #f1f5f9; font-size: 0.95rem; display: block; margin-bottom: 0.15rem; }
.why-list .text span { color: #94a3b8; font-size: 0.88rem; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  align-items: stretch;
}
.plan-card {
  position: relative;
  background: rgba(15,23,42,0.7);
  border: 1px solid #1e293b;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(8px);
}
.plan-card:hover { border-color: #334155; transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.4); }
.plan-card.recommended {
  border-color: #8b5cf6;
  background: rgba(17,24,39,0.85);
  transform: scale(1.03);
  box-shadow: 0 0 0 1px rgba(139,92,246,0.3), 0 0 60px rgba(139,92,246,0.2), 0 24px 48px rgba(0,0,0,0.4);
}
.plan-card.recommended:hover { transform: scale(1.03) translateY(-6px); }
.plan-card.bestseller {
  border-color: #f59e0b;
  background: rgba(17,24,39,0.85);
  box-shadow: 0 0 0 1px rgba(245,158,11,0.2), 0 0 50px rgba(245,158,11,0.12);
}
.plan-badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  background: #1e293b;
  color: #94a3b8;
  border: 1px solid #334155;
  white-space: nowrap;
}
.plan-card.recommended .plan-badge {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(139,92,246,0.6);
}
.plan-card.bestseller .plan-badge {
  background: linear-gradient(135deg, #fbbf24, #d97706);
  color: #000;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(251,191,36,0.6);
}
.plan-name { font-size: 1.1rem; font-weight: 600; color: #f1f5f9; margin-bottom: 0.75rem; }
.plan-price {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.plan-price span { font-size: 0.95rem; font-weight: 500; color: #64748b; }
.plan-desc { font-size: 0.85rem; color: #64748b; margin-bottom: 1.75rem; }
.plan-features {
  list-style: none;
  margin: 0 0 2rem;
  width: 100%;
  text-align: left;
  flex: 1;
}
.plan-features li {
  padding: 0.55rem 0;
  font-size: 0.9rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.plan-features li i {
  color: #10b981;
  font-size: 0.75rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: rgba(16,185,129,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.plan-features li.muted { color: #475569; }
.plan-features li.muted i { color: #475569; background: rgba(71,85,105,0.2); }

/* ============================================================
   AFFILIATE
   ============================================================ */
.affiliate-section {
  background: rgba(10,15,30,0.5);
  border-top: 1px solid #1e293b;
  border-bottom: 1px solid #1e293b;
}
.affiliate-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.affiliate-content h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.affiliate-content > p { color: #94a3b8; margin-bottom: 1.5rem; }
.affiliate-perks {
  display: flex;
  gap: 2rem;
  margin: 1.75rem 0 2rem;
  flex-wrap: wrap;
}
.affiliate-perk strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.affiliate-perk span { font-size: 0.8rem; color: #64748b; }

.affiliate-visual {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255,107,107,0.25);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 60px rgba(255,107,107,0.1);
}
.affiliate-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
}
.affiliate-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,107,0.15), rgba(238,90,36,0.05) 60%, transparent);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: rgba(15,23,42,0.7);
  border: 1px solid #1e293b;
  border-radius: 1.25rem;
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s;
  backdrop-filter: blur(8px);
}
.testimonial:hover { border-color: #334155; transform: translateY(-4px); }
.testimonial-stars { color: #fbbf24; margin-bottom: 1rem; font-size: 0.85rem; }
.testimonial-quote { color: #cbd5e1; font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.65; }
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; }
.testimonial-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #000;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: #f1f5f9; }
.testimonial-author span { font-size: 0.78rem; color: #64748b; }

/* ============================================================
   STATS
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.stat {
  padding: 2rem 1rem;
  background: rgba(15,23,42,0.5);
  border: 1px solid #1e293b;
  border-radius: 1.25rem;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, transform 0.3s;
}
.stat:hover { border-color: rgba(0,212,255,0.3); transform: translateY(-4px); }
.stat-icon {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto 1rem;
  border-radius: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,212,255,0.12);
  color: #00d4ff;
  font-size: 1.15rem;
}
.stat h3 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #00d4ff, #09f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
  line-height: 1;
}
.stat p { color: #94a3b8; font-size: 0.85rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(0,212,255,0.12), rgba(168,85,247,0.08));
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 2rem;
  padding: 4rem 2rem;
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent, rgba(0,212,255,0.15), transparent 30%);
  animation: rotate 8s linear infinite;
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: rgba(2,6,23,0.85);
  border-radius: calc(2rem - 1px);
  z-index: 0;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta-banner p { color: #94a3b8; max-width: 480px; margin: 0 auto 2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  position: relative;
  border-top: 1px solid #1e293b;
  padding: 4rem 1.5rem 2rem;
  background: rgba(2,6,23,0.9);
  z-index: 1;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 2.5rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { color: #64748b; font-size: 0.88rem; margin-bottom: 1.5rem; max-width: 280px; }
.footer-newsletter {
  display: flex;
  gap: 0.5rem;
  background: rgba(15,23,42,0.8);
  border: 1px solid #1e293b;
  border-radius: 2.5rem;
  padding: 0.25rem 0.25rem 0.25rem 1rem;
  max-width: 320px;
  transition: border-color 0.3s;
}
.footer-newsletter:focus-within { border-color: #00d4ff; }
.footer-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  color: #f1f5f9;
  outline: none;
  font-size: 0.85rem;
  min-width: 0;
}
.footer-newsletter input::placeholder { color: #475569; }
.footer-newsletter button {
  background: linear-gradient(135deg, #00d4ff, #09f);
  border: none;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  cursor: pointer;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.footer-newsletter button:hover { transform: scale(1.08); box-shadow: 0 0 16px rgba(0,212,255,0.7); }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  margin-bottom: 1.15rem;
}
.footer-col a {
  display: block;
  color: #94a3b8;
  font-size: 0.88rem;
  padding: 0.35rem 0;
  transition: color 0.3s, padding-left 0.3s;
}
.footer-col a:hover { color: #00d4ff; padding-left: 4px; }
.footer-bottom {
  max-width: 1240px;
  margin: 3rem auto 0;
  padding-top: 1.75rem;
  border-top: 1px solid #1e293b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: #475569;
  font-size: 0.82rem;
}
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: #1e293b;
  border: 1px solid #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 0.85rem;
  transition: all 0.3s;
}
.footer-social a:hover { background: #00d4ff; color: #000; border-color: #00d4ff; box-shadow: 0 0 16px rgba(0,212,255,0.6); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { height: 420px; }
  .why-inner, .affiliate-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .header-actions .btn--login { display: none; }
  .hero { padding-top: 7rem; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .float-card-1 { left: 0; }
  .float-card-2 { right: 0; }
  .btn--chat { bottom: 1rem; right: 1rem; width: 3.5rem; height: 3.5rem; }
  .btn--top { bottom: 1rem; left: 1rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .trust-inner { flex-direction: column; }
  .plan-card.recommended { transform: none; }
}