/* ═══════════════════════════════════════════════════════════
   style4.css — ONIX VPN App-Inspired Theme
   Inspired by preview-all-devices.html app design
   Colors: #060810 bg · #00d4ff cyan · #7b61ff purple
═══════════════════════════════════════════════════════════ */

:root {
  --bg:     #060810;
  --bg1:    #0a0e1a;
  --bg2:    #141b2d;
  --card:   #1a2235;
  --border: rgba(42,53,80,0.8);
  --cyan:   #00d4ff;
  --purple: #7b61ff;
  --green:  #1fd158;
  --red:    #e8453a;
  --muted:  #8892a7;
  --text:   #e8f4ff;
  --font:   -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
  --r:      16px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg1); }
::-webkit-scrollbar-thumb { background: rgba(0,212,255,.25); border-radius: 3px; }
::selection { background: rgba(0,212,255,.18); color: var(--cyan); }

/* ═══ ANIMATIONS ═══ */
@keyframes gpulse  { 0%,100%{opacity:.5;transform:scale(.95)} 50%{opacity:1;transform:scale(1.05)} }
@keyframes spin    { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes spin-r  { from{transform:rotate(0deg)} to{transform:rotate(-360deg)} }
@keyframes blink   { 0%,100%{opacity:1} 50%{opacity:.35} }
@keyframes float   { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes fadeUp  { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* ═══ HEADER ═══ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1030;
  background: rgba(6,8,16,.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(0,212,255,.07);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.logo-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(0,212,255,.22);
  box-shadow: 0 0 12px rgba(0,212,255,.13);
}
.nav-menu { display: flex; list-style: none; gap: 2rem; }
.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-link:hover { color: var(--cyan); }

.header .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1.25rem;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 18px rgba(0,212,255,.28);
  transition: all .2s;
  white-space: nowrap;
}
.header .btn-primary:hover { box-shadow: 0 0 28px rgba(0,212,255,.45); transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span { width: 22px; height: 1.5px; background: var(--muted); border-radius: 2px; transition: all .3s; }

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 70% 45%, rgba(0,212,255,.05), transparent),
    radial-gradient(ellipse 50% 55% at 20% 55%, rgba(123,97,255,.04), transparent),
    linear-gradient(180deg, var(--bg) 0%, var(--bg1) 100%);
  pointer-events: none;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,.06);
  border: 1px solid rgba(0,212,255,.16);
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 7px var(--green);
  animation: blink 2s ease-in-out infinite;
}
.hero-badge span {
  color: rgba(255,255,255,.45);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 900;
  letter-spacing: 10px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,.62) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .8rem;
  line-height: 1.08;
}
.hero-subtitle {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 400px;
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2rem;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: .45rem;
  background: rgba(26,34,53,.8);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: .4rem .8rem;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.hero-feature i { color: var(--cyan); font-size: 10px; }

.hero-buttons { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 2.25rem; }

.btn-large { padding: .875rem 2rem; font-size: 13px; border-radius: 13px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 12px;
  padding: .875rem 2rem;
  box-shadow: 0 4px 24px rgba(0,212,255,.32);
  transition: all .25s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { box-shadow: 0 4px 32px rgba(0,212,255,.5); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 12px;
  padding: .875rem 2rem;
  transition: all .25s;
}
.btn-secondary:hover { border-color: rgba(0,212,255,.3); color: var(--text); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
}
.hero-stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .7rem .65rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s;
}
.hero-stat:hover { border-color: rgba(0,212,255,.22); }
.hero-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  opacity: 0;
  transition: opacity .3s;
}
.hero-stat:hover::before { opacity: 1; }
.hero-stat-icon { color: var(--cyan); font-size: 10px; margin-bottom: .1rem; }
.hero-stat-value { color: #fff; font-size: 17px; font-weight: 800; letter-spacing: .5px; line-height: 1; }
.hero-stat-unit { color: var(--muted); font-size: 9px; }
.hero-stat-label { color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

.hero-video { display: none; }

/* ── Hero right: App Mockup ── */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.hero-visual::before {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(0,212,255,.06) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
.app-card {
  width: 300px;
  background: linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 100%);
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.6),
    0 32px 72px rgba(0,0,0,.65),
    inset 0 1px 0 rgba(255,255,255,.05);
  overflow: hidden;
  padding: 18px 18px 14px;
  position: relative;
  z-index: 1;
}
.app-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.app-card-title { font-size: 12px; font-weight: 900; letter-spacing: 4px; color: #fff; }
.app-card-btns { display: flex; gap: 5px; }
.app-card-btn {
  width: 26px; height: 26px;
  background: var(--card);
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}

.srv-card {
  background: var(--card);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}
.srv-flag { font-size: 18px; }
.srv-name { color: #fff; font-size: 12px; font-weight: 600; flex: 1; }
.srv-status { display: flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 600; color: var(--green); }
.srv-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 5px var(--green); }

.rocket-wrap { display: flex; flex-direction: column; align-items: center; padding: 6px 0 10px; }
.orbit-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 178px; height: 178px;
  margin-bottom: 12px;
}
.orb-glow {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,.11), transparent 70%);
  animation: gpulse 2.5s ease-in-out infinite;
}
.orb-track { position: absolute; border-radius: 50%; border: 1.5px solid rgba(42,53,80,.55); width: 162px; height: 162px; }
.orb-arc {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--cyan);
  border-right-color: rgba(123,97,255,.4);
  animation: spin 3s linear infinite;
  width: 162px; height: 162px;
}
.orb-arc-2 {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-bottom-color: rgba(0,212,255,.18);
  border-left-color: rgba(123,97,255,.18);
  animation: spin-r 5s linear infinite;
  width: 136px; height: 136px;
}
.btn-circle {
  width: 128px; height: 128px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,212,255,.32);
  background: rgba(0,212,255,.05);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}
.rkt {
  width: 32px; height: 56px;
  filter: drop-shadow(0 0 12px rgba(0,212,255,.85));
  animation: float 3s ease-in-out infinite;
}
.prot-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,212,255,.06);
  border: 1px solid rgba(0,212,255,.18);
  border-radius: 16px;
  padding: 5px 13px;
}
.prot-text {
  font-size: 10px;
  font-weight: 600;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.app-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 12px; }
.app-stat {
  background: rgba(10,14,26,.75);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 8px 9px;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.app-stat-hd { display: flex; align-items: center; gap: 3px; }
.app-stat-icon { color: var(--cyan); font-size: 9px; }
.app-stat-lbl { color: var(--muted); font-size: 7px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.app-stat-val { color: #fff; font-size: 15px; font-weight: 800; }
.app-stat-u { color: var(--muted); font-size: 8px; margin-left: 1px; }

/* ═══ SECTION BASE ═══ */
section { padding: 6rem 0; }
.section-title {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-bottom: .65rem;
}
.section-subtitle { text-align: center; color: var(--muted); font-size: 13px; letter-spacing: .5px; margin-bottom: 3rem; }

/* ═══ HOW IT WORKS ═══ */
.how-it-works { background: var(--bg1); border-top: 1px solid rgba(0,212,255,.05); border-bottom: 1px solid rgba(0,212,255,.05); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,.2), transparent);
  pointer-events: none;
}
.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem 1.25rem 1.5rem;
  text-align: center;
  position: relative;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.step:hover { border-color: rgba(0,212,255,.2); box-shadow: 0 8px 28px rgba(0,0,0,.4); transform: translateY(-2px); }
.step-number {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg); border: 1.5px solid var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: var(--cyan);
}
.step-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(0,212,255,.07); border: 1px solid rgba(0,212,255,.13);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step-icon i { color: var(--cyan); font-size: 18px; }
.step-title { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 1px; margin-bottom: .45rem; }
.step-description { color: var(--muted); font-size: 12px; line-height: 1.6; }

/* ═══ WHY US ═══ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.why-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.75rem;
  transition: all .3s; position: relative; overflow: hidden;
}
.why-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,.3), transparent);
  opacity: 0; transition: opacity .3s;
}
.why-card:hover { border-color: rgba(0,212,255,.15); box-shadow: 0 8px 32px rgba(0,0,0,.4); transform: translateY(-3px); }
.why-card:hover::after { opacity: 1; }
.why-icon {
  width: 44px; height: 44px; border-radius: 13px;
  background: rgba(0,212,255,.07); border: 1px solid rgba(0,212,255,.13);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .9rem;
}
.why-icon i { color: var(--cyan); font-size: 17px; }
.why-title { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: .5rem; }
.why-description { color: var(--muted); font-size: 12px; line-height: 1.7; }

/* ═══ PRICING ═══ */
.pricing { background: var(--bg1); }
.urgency-banner {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(0,212,255,.04); border: 1px solid rgba(0,212,255,.12);
  border-radius: 12px; padding: .9rem 1.5rem;
  margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto;
}
.urgency-icon { color: var(--cyan); font-size: 16px; }
.urgency-title { color: #fff; font-size: 12px; font-weight: 700; }
.urgency-text { color: var(--muted); font-size: 11px; }
.urgency-text strong { color: var(--cyan); }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.pricing-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .3s; position: relative;
}
.pricing-card:hover { border-color: rgba(0,212,255,.2); box-shadow: 0 16px 48px rgba(0,0,0,.5); transform: translateY(-3px); }
.pricing-card-popular { border-color: rgba(0,212,255,.28); box-shadow: 0 0 0 1px rgba(0,212,255,.08), 0 0 48px rgba(0,212,255,.06); }
.pricing-badge {
  position: absolute; top: 14px; right: 14px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  color: #fff; font-size: 8px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 9px; border-radius: 5px;
}
.pricing-header { padding: 1.75rem 1.5rem 1.25rem; border-bottom: 1px solid rgba(42,53,80,.5); }
.pricing-icon { font-size: 26px; margin-bottom: .6rem; }
.pricing-icon-wrap {
  width: 54px; height: 54px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: .75rem;
  transition: transform .3s;
}
.pricing-card:hover .pricing-icon-wrap { transform: scale(1.08) rotate(-4deg); }
.pricing-icon-cyan   { background: linear-gradient(135deg,rgba(0,212,255,.2),rgba(0,212,255,.06)); border: 1px solid rgba(0,212,255,.3); color: #00d4ff; box-shadow: 0 0 20px rgba(0,212,255,.15); }
.pricing-icon-purple { background: linear-gradient(135deg,rgba(123,97,255,.2),rgba(196,97,255,.06)); border: 1px solid rgba(123,97,255,.3); color: #a374ff; box-shadow: 0 0 20px rgba(123,97,255,.15); }
.pricing-icon-gold   { background: linear-gradient(135deg,rgba(255,167,38,.2),rgba(255,167,38,.06)); border: 1px solid rgba(255,167,38,.3); color: #ffa726; box-shadow: 0 0 20px rgba(255,167,38,.15); }
.pricing-name { color: #fff; font-size: 14px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: .25rem; }
.pricing-devices { color: var(--muted); font-size: 11px; }
.pricing-body { padding: 1.25rem 1.5rem; flex: 1; }
.pricing-options { margin-bottom: 1.25rem; }
.pricing-option { display: flex; align-items: center; justify-content: space-between; padding: .55rem 0; border-bottom: 1px solid rgba(42,53,80,.35); }
.pricing-option:last-child { border-bottom: none; }
.pricing-period { color: var(--muted); font-size: 11px; font-weight: 600; }
.pricing-price { color: var(--cyan); font-size: 13px; font-weight: 800; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.pricing-features li { color: var(--muted); font-size: 11px; display: flex; align-items: center; gap: .5rem; }
.pricing-features i { color: var(--green); font-size: 9px; }
.pricing-footer { padding: 1.25rem 1.5rem; }
.pricing-footer .btn { width: 100%; justify-content: center; }
.pricing-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.5rem; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .7rem 1.5rem; border-radius: 10px; font-size: 12px; font-weight: 700; letter-spacing: .5px;
  background: transparent; border: 1px solid rgba(0,212,255,.22); color: var(--cyan);
  text-decoration: none; transition: all .2s;
}
.btn-outline:hover { background: rgba(0,212,255,.06); border-color: rgba(0,212,255,.4); }
.btn-email-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1.1rem; border-radius: 8px; font-size: 11px; font-weight: 700;
  background: transparent; border: 1px solid rgba(123,97,255,.25); color: var(--purple);
  text-decoration: none; transition: all .2s; margin-top: .5rem;
}
.btn-email-outline:hover { background: rgba(123,97,255,.06); }

/* ═══ TESTIMONIALS ═══ */
.testimonials-carousel { position: relative; overflow: hidden; }
.testimonials-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testimonial-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 1.5rem; display: flex; flex-direction: column; gap: .9rem;
  transition: border-color .3s;
}
.testimonial-card:hover { border-color: rgba(0,212,255,.13); }
.testimonial-rating { display: flex; gap: 3px; }
.testimonial-rating i { color: #fbbf24; font-size: 11px; }
.testimonial-text { color: var(--muted); font-size: 12px; line-height: 1.75; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: .7rem; }
.author-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,212,255,.13), rgba(123,97,255,.13));
  border: 1px solid rgba(0,212,255,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.author-name { color: #fff; font-size: 12px; font-weight: 700; }
.author-location { color: var(--muted); font-size: 10px; }
.testimonial-nav { display: none; }
.testimonials-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.5rem; }

/* ═══ FEATURES ═══ */
.features { background: var(--bg1); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.feature-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start;
  transition: all .3s;
}
.feature-card:hover { border-color: rgba(0,212,255,.14); transform: translateY(-2px); }
.feature-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(0,212,255,.07); border: 1px solid rgba(0,212,255,.13);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-icon i { color: var(--cyan); font-size: 15px; }
.feature-title { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: .3rem; }
.feature-description { color: var(--muted); font-size: 12px; line-height: 1.65; }

/* ── Features v2 ─────────────────────────────────────────────────── */
.features-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-card-v2 {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.feature-card-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  opacity: 0;
  transition: opacity .3s;
}
.feature-card-v2:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.25); }
.feature-card-v2:hover::before { opacity: 1; }

.feature-icon-v2 {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  transition: transform .3s;
}
.feature-card-v2:hover .feature-icon-v2 { transform: scale(1.1) rotate(-4deg); }

.ficon-cyan  { background: linear-gradient(135deg,rgba(0,212,255,.18),rgba(0,212,255,.06)); border: 1px solid rgba(0,212,255,.25); color: #00d4ff; box-shadow: 0 0 18px rgba(0,212,255,.12); }
.ficon-cyan  i { color: #00d4ff; }
.ficon-purple{ background: linear-gradient(135deg,rgba(123,97,255,.18),rgba(196,97,255,.06)); border: 1px solid rgba(123,97,255,.25); box-shadow: 0 0 18px rgba(123,97,255,.12); }
.ficon-purple i { color: #a374ff; }
.ficon-green { background: linear-gradient(135deg,rgba(0,230,130,.18),rgba(0,230,130,.06)); border: 1px solid rgba(0,230,130,.25); box-shadow: 0 0 18px rgba(0,230,130,.12); }
.ficon-green i { color: #00e682; }
.ficon-blue  { background: linear-gradient(135deg,rgba(41,182,246,.18),rgba(41,182,246,.06)); border: 1px solid rgba(41,182,246,.25); box-shadow: 0 0 18px rgba(41,182,246,.12); }
.ficon-blue  i { color: #29b6f6; }
.ficon-orange{ background: linear-gradient(135deg,rgba(255,167,38,.18),rgba(255,167,38,.06)); border: 1px solid rgba(255,167,38,.25); box-shadow: 0 0 18px rgba(255,167,38,.12); }
.ficon-orange i { color: #ffa726; }

.feature-card-v2:hover.feature-card-v2 { border-color: rgba(0,212,255,.22); }

.feature-body-v2 { flex: 1; }
.feature-title-v2 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: .4rem; }
.feature-desc-v2  { color: var(--muted); font-size: 13px; line-height: 1.6; }

/* ═══ ABOUT ═══ */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.about-story, .about-mission {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 2rem;
}
.about-story h3, .about-mission h3, .about-team h3 {
  color: var(--cyan); font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 1rem;
}
.about-story p, .about-mission p { color: var(--muted); font-size: 13px; line-height: 1.8; margin-bottom: .75rem; }
.about-story p:last-child, .about-mission p:last-child { margin-bottom: 0; }
.about-story strong, .about-mission strong { color: var(--text); }
.about-team { grid-column: 1 / -1; background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 2rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1rem; }
.team-member { text-align: center; }
.team-avatar {
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(0,212,255,.07); border: 1px solid rgba(0,212,255,.18);
  display: flex; align-items: center; justify-content: center; margin: 0 auto .7rem;
}
.team-avatar i { color: var(--cyan); font-size: 21px; }
.team-member h4 { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: .25rem; }
.team-role { color: var(--cyan); font-size: 10px; font-weight: 600; letter-spacing: 1px; margin-bottom: .25rem; }
.team-bio { color: var(--muted); font-size: 11px; }

/* ═══ FAQ ═══ */
.faq { background: var(--bg1); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0; background: none; border: none; cursor: pointer;
  color: var(--text); font-size: 13px; font-weight: 600; text-align: left; gap: 1rem;
  transition: color .2s; font-family: var(--font);
}
.faq-question:hover { color: var(--cyan); }
.faq-question i { color: var(--cyan); font-size: 11px; flex-shrink: 0; transition: transform .3s; }
.faq-question[aria-expanded="true"] i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer.open { max-height: 500px; }
.faq-answer p { color: var(--muted); font-size: 13px; line-height: 1.8; padding-bottom: 1.1rem; }

/* ═══ INSTALLATION ═══ */
.tabs-nav { display: flex; gap: .5rem; border-bottom: 1px solid var(--border); margin-bottom: 2rem; flex-wrap: wrap; }
.tab-button {
  display: flex; align-items: center; gap: .45rem; padding: .6rem 1.2rem;
  background: none; border: none; cursor: pointer; color: var(--muted);
  font-size: 12px; font-weight: 600; letter-spacing: .5px;
  border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all .2s;
  font-family: var(--font);
}
.tab-button:hover { color: var(--text); }
.tab-button.active { color: var(--cyan); border-bottom-color: var(--cyan); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.tab-pane h3 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 1.25rem; }
.installation-steps {
  list-style: none; counter-reset: step-counter;
  display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.75rem;
}
.installation-steps li {
  counter-increment: step-counter; display: flex; align-items: flex-start; gap: .9rem;
  color: var(--muted); font-size: 13px; line-height: 1.6;
}
.installation-steps li::before {
  content: counter(step-counter); min-width: 26px; height: 26px; border-radius: 50%;
  background: rgba(0,212,255,.07); border: 1.5px solid rgba(0,212,255,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); font-size: 10px; font-weight: 800; flex-shrink: 0;
}
.installation-steps strong { color: var(--text); }

/* ── Detailed guide ── */
.guide-header {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem;
  padding-bottom: 1.25rem; border-bottom: 1px solid var(--border);
}
.guide-platform-icon {
  width: 52px; height: 52px; border-radius: 16px; flex-shrink: 0;
  background: linear-gradient(135deg,rgba(0,212,255,.1),rgba(123,97,255,.1));
  border: 1px solid rgba(0,212,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--cyan);
}
.guide-header h3 { color: #fff; font-size: 16px; font-weight: 800; margin-bottom: 3px; }
.guide-subtitle { color: var(--muted); font-size: 12px; margin: 0; }
.guide-steps { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.guide-step {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.25rem 1.4rem;
  transition: border-color .2s;
}
.guide-step:hover { border-color: rgba(0,212,255,.2); }
.guide-step-num {
  min-width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg,#00d4ff,#7b61ff);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: #fff;
}
.guide-step-body { flex: 1; min-width: 0; }
.guide-step-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.guide-step-desc { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: .75rem; }
.guide-step-desc:last-child { margin-bottom: 0; }
.guide-step-desc strong { color: var(--text); }
.guide-step-desc code {
  background: rgba(0,212,255,.08); border: 1px solid rgba(0,212,255,.15);
  border-radius: 5px; padding: 1px 6px; font-size: 12px; color: var(--cyan);
  font-family: 'Courier New', monospace;
}
.guide-ways { display: flex; flex-direction: column; gap: .65rem; margin-top: .5rem; }
.guide-way {
  background: rgba(6,8,16,.6); border: 1px solid rgba(42,53,80,.7);
  border-radius: 10px; padding: .85rem 1rem;
  font-size: 12.5px; color: var(--muted); line-height: 1.65;
}
.guide-way strong { color: var(--text); }
.guide-way-label {
  font-size: 10px; font-weight: 800; color: var(--cyan);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: .4rem;
}
.guide-note {
  display: flex; gap: .6rem; align-items: flex-start;
  background: rgba(0,212,255,.05); border: 1px solid rgba(0,212,255,.15);
  border-radius: 10px; padding: .75rem 1rem; margin-top: .75rem;
  font-size: 12px; color: var(--muted); line-height: 1.6;
}
.guide-note i { color: var(--cyan); flex-shrink: 0; margin-top: 2px; font-size: 13px; }
.guide-note strong { color: var(--text); }
.guide-success {
  display: flex; gap: .6rem; align-items: center;
  background: rgba(0,212,110,.06); border: 1px solid rgba(0,212,110,.2);
  border-radius: 10px; padding: .75rem 1rem; margin-top: .75rem;
  font-size: 13px; font-weight: 600; color: #4dffa0; line-height: 1.5;
}
.guide-success i { flex-shrink: 0; font-size: 15px; }
.guide-success a { color: #4dffa0; text-decoration: underline; }
.guide-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(90deg,#00d4ff,#7b61ff);
  color: #fff; text-decoration: none; border-radius: 9px;
  padding: .55rem 1.2rem; font-size: 12px; font-weight: 700; letter-spacing: .5px;
  margin-top: .6rem; transition: opacity .2s, transform .15s;
}
.guide-btn:hover { opacity: .85; transform: translateY(-1px); }
.guide-support-hint {
  text-align: center; margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: rgba(0,212,255,.04); border: 1px solid rgba(0,212,255,.1);
  border-radius: 12px; font-size: 13px; color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: .6rem;
}
.guide-support-hint i { color: var(--cyan); }
.guide-support-hint a { color: var(--cyan); text-decoration: none; font-weight: 600; }
.guide-support-hint a:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .guide-step { padding: 1rem; gap: .75rem; }
  .guide-step-num { min-width: 30px; height: 30px; font-size: 12px; }
  .guide-header { gap: .75rem; }
  .guide-platform-icon { width: 42px; height: 42px; font-size: 18px; }
}

/* ═══ REFERRAL ═══ */
.referral {
  background: linear-gradient(135deg, rgba(0,212,255,.04), rgba(123,97,255,.04));
  border-top: 1px solid rgba(0,212,255,.07);
  border-bottom: 1px solid rgba(123,97,255,.07);
  padding: 5rem 0;
}
.referral-content { text-align: center; }
.referral-icon {
  width: 58px; height: 58px; border-radius: 18px;
  background: rgba(0,212,255,.07); border: 1px solid rgba(0,212,255,.18);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
}
.referral-icon i { color: var(--cyan); font-size: 22px; }
.referral-title { color: #fff; font-size: clamp(1.1rem, 2.5vw, 1.6rem); font-weight: 800; letter-spacing: 2px; margin-bottom: .6rem; }
.referral-subtitle { color: var(--muted); font-size: 13px; margin-bottom: 2.5rem; }
.referral-steps { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.referral-step { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 1.2rem 1.4rem; text-align: center; max-width: 180px; }
.referral-step-icon {
  width: 38px; height: 38px; border-radius: 12px;
  background: rgba(0,212,255,.07); border: 1px solid rgba(0,212,255,.13);
  display: flex; align-items: center; justify-content: center; margin: 0 auto .65rem;
}
.referral-step-icon i { color: var(--cyan); font-size: 14px; }
.referral-step h4 { color: #fff; font-size: 12px; font-weight: 700; margin-bottom: .3rem; }
.referral-step p { color: var(--muted); font-size: 11px; line-height: 1.5; }
.referral-arrow { color: rgba(0,212,255,.3); font-size: 16px; }
.referral-benefits { display: flex; flex-direction: column; align-items: center; gap: .65rem; margin-bottom: 2rem; }
.referral-benefit { display: flex; align-items: center; gap: .7rem; color: var(--muted); font-size: 13px; }
.referral-benefit i { color: var(--cyan); font-size: 13px; }

/* ── Referral Tiers ──────────────────────────────────────────────── */
.referral-tiers {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.referral-tier {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  min-width: 200px;
  transition: border-color .25s, transform .25s;
}
.referral-tier:hover { transform: translateY(-3px); }
.referral-tier-badge {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800;
  flex-shrink: 0;
}
.tier-bronze { background: linear-gradient(135deg,rgba(205,127,50,.25),rgba(205,127,50,.08)); border: 1px solid rgba(205,127,50,.35); color: #cd7f32; }
.tier-silver { background: linear-gradient(135deg,rgba(192,192,192,.25),rgba(192,192,192,.08)); border: 1px solid rgba(192,192,192,.35); color: #c0c0c0; }
.tier-gold   { background: linear-gradient(135deg,rgba(255,215,0,.25),rgba(255,215,0,.08));   border: 1px solid rgba(255,215,0,.35);   color: #ffd700; }
.referral-tier-info { display: flex; flex-direction: column; gap: 2px; }
.referral-tier-label { font-size: 12px; color: var(--muted); }
.referral-tier-bonus { font-size: 16px; font-weight: 700; color: #fff; }
.tier-note { font-size: 11px; color: var(--muted); font-weight: 400; }

.referral-tier:nth-child(1) { border-color: rgba(205,127,50,.2); }
.referral-tier:nth-child(1):hover { border-color: rgba(205,127,50,.45); }
.referral-tier:nth-child(2) { border-color: rgba(192,192,192,.2); }
.referral-tier:nth-child(2):hover { border-color: rgba(192,192,192,.45); }
.referral-tier:nth-child(3) { border-color: rgba(255,215,0,.2); }
.referral-tier:nth-child(3):hover { border-color: rgba(255,215,0,.45); }

/* ═══ FOOTER ═══ */
.footer { background: var(--bg1); border-top: 1px solid rgba(0,212,255,.06); padding: 4rem 0 2rem; }
.footer-main { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-bottom: 2.5rem; }
.footer-title { color: rgba(255,255,255,.75); font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 12px; transition: color .2s; }
.footer-links a:hover { color: var(--cyan); }
.footer-socials { display: flex; gap: .65rem; margin-bottom: .9rem; }
.social-link {
  width: 34px; height: 34px; border-radius: 10px; background: var(--card);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 14px; text-decoration: none; transition: all .2s;
}
.social-link:hover { border-color: rgba(0,212,255,.28); color: var(--cyan); }
.footer-description { color: var(--muted); font-size: 12px; line-height: 1.7; max-width: 190px; }
.trust-badges {
  display: flex; flex-wrap: wrap; gap: .8rem;
  padding: 1.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem; justify-content: center;
}
.trust-badge {
  display: flex; align-items: center; gap: .45rem; background: var(--card);
  border: 1px solid var(--border); border-radius: 8px; padding: .45rem .9rem;
  font-size: 10px; font-weight: 600; color: var(--muted); letter-spacing: .5px;
}
.trust-badge i { color: var(--cyan); font-size: 11px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copyright { color: rgba(136,146,167,.45); font-size: 11px; }
.footer-bottom-links { display: flex; gap: .9rem; align-items: center; }
.footer-bottom-links a { color: rgba(136,146,167,.35); font-size: 11px; text-decoration: none; transition: color .2s; }
.footer-bottom-links a:hover { color: var(--cyan); }
.footer-bottom-links span { color: rgba(136,146,167,.25); }

/* ═══ MISC ═══ */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--card); border: 1px solid rgba(0,212,255,.2);
  color: var(--cyan); font-size: 13px; cursor: pointer;
  z-index: 999; display: none; align-items: center; justify-content: center;
  transition: all .2s;
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: rgba(0,212,255,.09); box-shadow: 0 0 14px rgba(0,212,255,.18); }
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  z-index: 9999; width: 0%; transition: width .1s linear;
}
.video-modal { display: none; }
.video-modal.active { display: flex; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .hero .container { gap: 3rem; }
  .app-card { width: 270px; }
}

@media (max-width: 900px) {
  .burger { display: flex; }
  .nav-menu {
    position: fixed; top: 72px; left: 0; right: 0;
    flex-direction: column; background: rgba(6,8,16,.97);
    backdrop-filter: blur(28px); padding: 1.5rem; gap: 1rem;
    transform: translateY(-100%); opacity: 0; pointer-events: none;
    transition: all .3s; z-index: 1000; border-bottom: 1px solid var(--border);
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .hero .container { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .hero-content { text-align: center; }
  .hero-badge, .hero-features, .hero-buttons { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .orbit-box { width: 158px; height: 158px; }
  .orb-track { width: 142px; height: 142px; }
  .orb-arc { width: 142px; height: 142px; }
  .orb-arc-2 { width: 118px; height: 118px; }
  .btn-circle { width: 112px; height: 112px; }
  .rkt { width: 28px; height: 48px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .testimonials-track { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .features-grid-v2 { grid-template-columns: 1fr 1fr; }
  .about-content { grid-template-columns: 1fr; }
  .about-team { grid-column: 1; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
}

/* ── Pricing extra ────────────────────────────────────────────── */
.pricing-plan-for {
  font-size: 10px; color: var(--cyan); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: .3rem;
}
.pricing-save {
  font-size: 9px; font-weight: 800; color: #000;
  background: var(--green); padding: 1px 6px; border-radius: 4px;
  margin-left: .4rem; flex-shrink: 0;
}
.pricing-cta {
  width: 100%; justify-content: center; margin-bottom: .5rem;
  font-size: 11px !important; letter-spacing: .3px !important;
}
.btn-outline-sm {
  display: block; text-align: center; width: 100%;
  padding: .4rem .8rem; border-radius: 7px; font-size: 10px; font-weight: 600;
  color: var(--muted); background: transparent;
  border: 1px solid rgba(42,53,80,.6); text-decoration: none;
  transition: all .2s;
}
.btn-outline-sm:hover { color: var(--cyan); border-color: rgba(0,212,255,.3); }
.pricing-cta-sm { margin-top: 0; }

/* ── Team Section ─────────────────────────────────────────────── */
.team-section-4 { padding: 100px 0; }
.team-unified { display: flex; flex-direction: column; align-items: center; gap: 1.75rem; }

.team-unified-card {
  position: relative; overflow: hidden;
  background: var(--card); border-radius: 24px;
  border: 1px solid rgba(42,53,80,.8);
  padding: 3rem 2.5rem; text-align: center;
  max-width: 560px; width: 100%;
  transition: border-color .3s;
}
.team-unified-card:hover { border-color: rgba(0,212,255,.2); }
.team-unified-glow {
  position: absolute; width: 300px; height: 200px;
  top: -60px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, rgba(0,212,255,.15), rgba(123,97,255,.15));
  filter: blur(60px); border-radius: 50%; pointer-events: none;
}

.team-unified-avatars {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-bottom: 1.5rem;
}
.team-avatar-4 {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 900; color: #fff;
  position: relative; z-index: 1; flex-shrink: 0;
}
.team-avatar-l { background: linear-gradient(135deg, #00d4ff, #0077ff); box-shadow: 0 0 24px rgba(0,212,255,.3); overflow: hidden; padding: 0; }
.team-avatar-photo { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.team-avatar-x { background: linear-gradient(135deg, #7b61ff, #c461ff); box-shadow: 0 0 24px rgba(123,97,255,.3); }
.team-avatar-connector {
  font-size: 22px; font-weight: 900; color: var(--muted);
  flex-shrink: 0; line-height: 1;
}

.team-unified-names {
  display: flex; align-items: center; justify-content: center;
  gap: .6rem; margin-bottom: .35rem;
}
.team-unified-name { font-size: 22px; font-weight: 900; letter-spacing: 1px; }
.team-unified-name.cyan  { color: var(--cyan); }
.team-unified-name.purple{ color: var(--purple); }
.team-unified-sep { color: var(--muted); font-size: 18px; }

.team-unified-title {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--muted); margin-bottom: 1.5rem;
}
.team-unified-bio {
  font-size: 14px; color: var(--muted); line-height: 1.75;
  margin-bottom: 1.75rem; max-width: 440px; margin-left: auto; margin-right: auto;
}

.team-unified-skills {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center;
}
.team-skill-tag {
  font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 6px;
  background: linear-gradient(135deg, rgba(0,212,255,.07), rgba(123,97,255,.07));
  border: 1px solid rgba(42,53,80,.9);
  color: var(--muted);
  transition: all .2s;
}
.team-skill-tag:hover { color: var(--text); border-color: rgba(0,212,255,.25); }

.team-mission {
  background: linear-gradient(135deg, rgba(0,212,255,.04), rgba(123,97,255,.04));
  border: 1px solid rgba(42,53,80,.6);
  border-radius: 16px; padding: 1.75rem 2rem; text-align: center;
  max-width: 560px; width: 100%;
}
.team-mission-icon { font-size: 26px; margin-bottom: .75rem; }
.team-mission-text { font-size: 13px; color: var(--muted); line-height: 1.8; }
.team-mission-text strong { color: var(--text); }

@media (max-width: 600px) {
  .hero-title { letter-spacing: 5px; }
  .steps { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .features-grid-v2 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .referral-steps { flex-direction: column; align-items: center; }
  .referral-arrow { transform: rotate(90deg); }
  .team-card-4 { width: 100%; }
  .team-duo { gap: 1.5rem; }
}

/* ── Reviews Empty ───────────────────────────────────────────────── */
.reviews-empty {
  display: flex; flex-direction: column; align-items: center;
  padding: 4rem 2rem; text-align: center;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; max-width: 480px; margin: 0 auto;
}
.reviews-empty-icon { font-size: 40px; margin-bottom: 1rem; }
.reviews-empty-title {
  font-size: 18px; font-weight: 700; color: var(--text);
  margin-bottom: .5rem;
}
.reviews-empty-text {
  font-size: 14px; color: var(--muted); line-height: 1.7;
}
.reviews-empty-text a { color: var(--cyan); text-decoration: none; }
.reviews-empty-text a:hover { text-decoration: underline; }

/* ── Pricing card new elements ───────────────────────────────────── */
.pricing-price-hint {
  font-size: 12px; color: var(--muted); margin-bottom: .75rem; text-align: center;
}
.pricing-price-hint strong { color: var(--cyan); font-size: 15px; }

/* ── Pricing price block ──────────────────────────────────────────── */
.pricing-price-block {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: .875rem;
  justify-content: center;
}
.pricing-price-from {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .5px;
  margin-right: 3px;
}
.pricing-price-num {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #fff 30%, rgba(0,212,255,.85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}
.pricing-card-popular .pricing-price-num {
  background: linear-gradient(135deg, #fff 20%, #a374ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-price-cur {
  font-size: 18px;
  font-weight: 700;
  color: var(--cyan);
  -webkit-text-fill-color: var(--cyan);
  margin-left: 2px;
}
.pricing-card-popular .pricing-price-cur {
  color: #a374ff;
  -webkit-text-fill-color: #a374ff;
}
.pricing-price-period {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  margin-left: 3px;
}

.pricing-open-modal { width: 100%; justify-content: center; }

/* ── Plan Modal ──────────────────────────────────────────────────── */
.plan-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.plan-modal.open { opacity: 1; pointer-events: all; }

.plan-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(6, 8, 16, .8);
  backdrop-filter: blur(8px);
}
.plan-modal-box {
  position: relative; z-index: 1;
  background: var(--bg2);
  border: 1px solid rgba(0, 212, 255, .15);
  border-radius: 20px;
  padding: 2rem;
  width: 100%; max-width: 460px;
  transform: translateY(24px) scale(.97);
  transition: transform .25s;
  box-shadow: 0 24px 80px rgba(0,0,0,.6), 0 0 40px rgba(0,212,255,.06);
}
.plan-modal.open .plan-modal-box {
  transform: translateY(0) scale(1);
}

.plan-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(42,53,80,.6); border: none; border-radius: 8px;
  width: 32px; height: 32px; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 13px; transition: all .2s;
}
.plan-modal-close:hover { background: rgba(0,212,255,.12); color: var(--cyan); }

.plan-modal-head {
  display: flex; align-items: center; gap: .875rem; margin-bottom: 1.5rem;
}
.plan-modal-icon { font-size: 28px; line-height: 1; flex-shrink: 0; }
.plan-modal-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--muted); margin-bottom: .2rem;
}
.plan-modal-name { font-size: 18px; font-weight: 800; color: #fff; }

.plan-modal-step-title {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--muted); margin-bottom: .75rem;
}

/* Duration cards */
.plan-duration-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: .6rem; margin-bottom: 1.5rem;
}
.duration-card {
  position: relative;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: .875rem .6rem;
  text-align: center; cursor: pointer;
  transition: border-color .2s, background .2s;
}
.duration-card:hover { border-color: rgba(0,212,255,.3); background: rgba(0,212,255,.04); }
.duration-card.selected {
  border-color: var(--cyan); background: rgba(0,212,255,.08);
}
.duration-card-months {
  font-size: 11px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: .3rem;
}
.duration-card.selected .duration-card-months { color: var(--cyan); }
.duration-card-price {
  font-size: 16px; font-weight: 900; color: #fff;
}
.duration-card.selected .duration-card-price { color: var(--cyan); }
.duration-card-total {
  font-size: 9px; color: var(--muted); margin-top: .15rem;
}
.duration-card-save {
  position: absolute; top: -7px; right: -1px;
  background: var(--green); color: #000;
  font-size: 8px; font-weight: 800; padding: 1px 6px;
  border-radius: 4px;
}

/* Email form */
.plan-modal-form { display: flex; flex-direction: column; gap: .5rem; }
.plan-modal-email-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--muted);
}
.plan-modal-email {
  width: 100%;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; padding: .75rem 1rem;
  color: var(--text); font-size: 14px;
  font-family: var(--font);
  outline: none; transition: border-color .2s;
}
.plan-modal-email:focus { border-color: rgba(0,212,255,.4); }
.plan-modal-email::placeholder { color: var(--muted); }
.plan-modal-hint {
  font-size: 11px; color: var(--muted); display: flex;
  align-items: center; gap: .4rem;
}
.plan-modal-hint i { color: var(--green); font-size: 10px; flex-shrink: 0; }
.plan-modal-submit {
  width: 100%; justify-content: center; gap: .5rem;
  padding: .875rem 1.5rem;
  transition: opacity .2s, transform .2s;
}
.plan-modal-submit:disabled {
  opacity: .45; cursor: not-allowed; transform: none !important;
}

@media (max-width: 480px) {
  .plan-modal-box { padding: 1.5rem; }
  .plan-duration-grid { grid-template-columns: 1fr; }
}

/* ── Review Cards ────────────────────────────────────────────────── */
.reviews-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.review-card-4 {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .875rem;
  transition: border-color .25s, transform .25s;
}
.review-card-4:hover {
  border-color: rgba(0,212,255,.35);
  transform: translateY(-3px);
}
.review-rating-4 {
  color: #f4c542;
  font-size: 15px;
  letter-spacing: 1px;
}
.review-text-4 {
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
  flex: 1;
}
.review-author-4 {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.review-avatar-4 {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--bg);
  flex-shrink: 0;
  text-transform: uppercase;
}
.review-author-info-4 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-author-name-4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.review-author-city-4 {
  font-size: 11px;
  color: var(--muted);
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 13, 26, 0.97);
  border-top: 1px solid rgba(0, 212, 255, 0.15);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1rem 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.4);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner.hiding {
  transform: translateY(100%);
  transition: transform 0.35s ease-in;
}
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 260px;
}
.cookie-banner-icon {
  font-size: 1.4rem;
  color: var(--cyan);
  flex-shrink: 0;
}
.cookie-banner-text p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.cookie-banner-link {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-color: rgba(0, 212, 255, 0.4);
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.cookie-banner-link:hover {
  color: #fff;
}
.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}
.btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem;
}
@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }
  .cookie-banner-actions {
    width: 100%;
    justify-content: flex-end;
  }
}
