/* Jump VPN — bouncy rose & lemon palette, rounded Quicksand vibes */

:root {
  --primary: #F43F5E;
  --primary-dark: #E11D48;
  --accent: #FACC15;
  --accent-soft: #FEF3C7;
  --bg: #FFFFFF;
  --bg-alt: #FFF1F2;
  --bg-warm: #FFFBEB;
  --text: #1F1F2C;
  --text-muted: #525078;
  --card-bg: #FFFFFF;
  --border: #FCE7EB;
  --shadow-sm: 0 4px 14px rgba(244, 63, 94, 0.08);
  --shadow-md: 0 12px 32px rgba(244, 63, 94, 0.14);
  --shadow-lg: 0 22px 60px rgba(244, 63, 94, 0.22);
  --radius: 22px;
  --radius-sm: 14px;
  --radius-pill: 50px;
  --grad: linear-gradient(125deg, #F43F5E 0%, #FB7185 45%, #FACC15 100%);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  line-height: 1.18;
  color: var(--text);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 5.5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 18px; font-weight: 700; }
h3 { font-size: 1.3rem; margin-bottom: 10px; font-weight: 600; }

p { color: var(--text-muted); }

a { color: var(--primary); text-decoration: none; transition: all .25s ease; }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; display: block; }

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

/* === Accent bar === */
.accent-bar {
  height: 4px;
  background: var(--grad);
  width: 100%;
}

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
}

.logo img { width: 38px; height: 38px; border-radius: 10px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.96rem;
  position: relative;
}

.nav-links a:not(.nav-cta):hover { color: var(--primary); }

.nav-links a.nav-cta {
  color: #000000;
  font-weight: 800;
  background: var(--accent);
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: 2px solid #000;
  transition: transform .25s ease, box-shadow .25s ease;
}

.nav-links a.nav-cta:hover {
  color: #000000;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 22px rgba(250, 204, 21, 0.5);
}

.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.burger span {
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: all .3s ease;
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(31, 31, 44, 0.55);
  backdrop-filter: blur(6px);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}
.mobile-nav.open { opacity: 1; visibility: visible; }

.mobile-nav-inner {
  position: absolute;
  right: 0; top: 0;
  height: 100%;
  width: min(82%, 340px);
  background: #fff;
  padding: 70px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.6,.05,.3,1.05);
}
.mobile-nav.open .mobile-nav-inner { transform: translateX(0); }
.mobile-nav-inner a {
  color: var(--text);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-inner a.nav-cta {
  background: var(--accent);
  color: #000;
  font-weight: 800;
  text-align: center;
  border: 2px solid #000;
  border-radius: var(--radius-pill);
  margin-top: 16px;
  padding: 14px 22px;
}
.mobile-close {
  position: absolute;
  top: 18px; right: 22px;
  background: none; border: 0; font-size: 32px;
  cursor: pointer; color: var(--text);
}

/* === Buttons (pill) === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  border: 0;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 28px rgba(244, 63, 94, 0.32);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 36px rgba(244, 63, 94, 0.42);
}

.btn-ghost {
  background: #fff;
  color: var(--text);
  border: 2px solid var(--text);
}
.btn-ghost:hover {
  background: var(--text);
  color: #fff;
  transform: translateY(-3px) scale(1.03);
}

.btn-yellow {
  background: var(--accent);
  color: #000;
  border: 2px solid #000;
}
.btn-yellow:hover {
  color: #000;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 28px rgba(250, 204, 21, 0.45);
}

/* === Hero — central card form === */
.hero {
  background: linear-gradient(160deg, #FFF1F2 0%, #FFFBEB 60%, #FEF3C7 100%);
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
}
.hero::before {
  width: 320px; height: 320px;
  background: var(--primary);
  top: -80px; left: -90px;
}
.hero::after {
  width: 380px; height: 380px;
  background: var(--accent);
  bottom: -120px; right: -100px;
}

.hero-card {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: 32px;
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: #92400E;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.86rem;
  margin-bottom: 22px;
  letter-spacing: .02em;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 1.6s ease infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: .55; }
}

.hero-card h1 {
  margin-bottom: 18px;
}
.hero-card h1 span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 28px;
  border-top: 1px dashed var(--border);
}
.trust-badge {
  text-align: center;
}
.trust-badge .num {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}
.trust-badge .lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* === Stats === */
.stats {
  background: #fff;
  padding: 50px 0;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}
.stat-lbl {
  font-size: 0.96rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* === Sections === */
section { padding: 90px 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .kicker {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 14px;
}
.section-head p {
  font-size: 1.06rem;
  margin-top: 12px;
}

/* white bg + colored accent blocks */
.features { background: #fff; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 38px 30px 32px;
  border: 1px solid var(--border);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  position: relative;
}
.feature:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.feature-icon {
  width: 78px;
  height: 78px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 22px;
  background: var(--bg-alt);
  color: var(--primary);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
}
.feature:nth-child(2n) .feature-icon { background: var(--accent-soft); color: #92400E; }
.feature:nth-child(3n) .feature-icon { background: var(--grad); color: #fff; }

.feature h3 { margin-bottom: 12px; }

/* === Why-jump (text block with accent rails) === */
.why-jump {
  background: var(--bg-alt);
  position: relative;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-text p {
  margin-bottom: 18px;
  font-size: 1.04rem;
}
.why-text p:last-child { margin-bottom: 0; }
.why-card {
  background: #fff;
  border-radius: 26px;
  padding: 36px;
  box-shadow: var(--shadow-md);
  border-left: 6px solid var(--primary);
}
.why-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 14px;
}
.why-list {
  list-style: none;
  margin-top: 18px;
}
.why-list li {
  padding: 12px 0 12px 36px;
  position: relative;
  border-bottom: 1px dashed var(--border);
  font-weight: 500;
  color: var(--text);
}
.why-list li:last-child { border-bottom: 0; }
.why-list li::before {
  content: '↑';
  position: absolute;
  left: 0; top: 10px;
  width: 26px; height: 26px;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

/* === Use cases === */
.use-cases { background: #fff; }
.uses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.use-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .3s ease, background .3s ease;
}
.use-card:hover {
  transform: translateY(-4px) scale(1.02);
  background: var(--accent-soft);
}
.use-card h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 8px;
}
.use-card p { font-size: 0.96rem; }

/* === Platforms / Download === */
.download {
  background: var(--bg-warm);
}
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.platform {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  border: 2px solid var(--border);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  display: block;
  color: var(--text);
}
.platform:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  color: var(--text);
}
.platform-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  background: var(--grad);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.4rem;
}
.platform:nth-child(2n) .platform-icon {
  background: var(--accent);
  color: #000;
}
.platform h3 { font-size: 1.1rem; margin-bottom: 4px; }
.platform p { font-size: 0.86rem; color: var(--text-muted); }

/* === Pricing — gradient card === */
.pricing { background: #fff; }
.price-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--grad);
  border-radius: 32px;
  padding: 56px 50px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.price-card::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  top: -100px; right: -100px;
}
.price-card > * { position: relative; z-index: 2; }
.price-card .label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.22);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.86rem;
  margin-bottom: 18px;
}
.price-card h2 { color: #fff; margin-bottom: 10px; }
.price-card p { color: rgba(255, 255, 255, 0.92); margin-bottom: 26px; font-size: 1.05rem; }
.price-amount {
  font-family: 'Quicksand', sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.price-amount small { font-size: 1.1rem; font-weight: 500; }
.price-meta {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}
.price-card .btn {
  background: #fff;
  color: var(--primary);
}
.price-card .btn:hover {
  background: var(--accent);
  color: #000;
}

/* === CTA banner === */
.cta-banner {
  background: var(--bg-alt);
  text-align: center;
}
.cta-banner h2 { margin-bottom: 14px; }
.cta-banner p {
  font-size: 1.08rem;
  margin-bottom: 28px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* === FAQ — open card grid === */
.faq { background: #fff; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.faq-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 28px 26px;
  border-top: 4px solid var(--primary);
  transition: transform .3s ease, box-shadow .3s ease;
}
.faq-card:nth-child(2n) { border-top-color: var(--accent); }
.faq-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-md);
}
.faq-card h3 {
  font-size: 1.08rem;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}
.faq-card p { font-size: 0.96rem; }

/* === Footer (two-level) === */
.site-footer {
  background: #1F1F2C;
  color: #C9C8DC;
  padding-top: 0;
}
.footer-cta-strip {
  background: var(--grad);
  padding: 36px 0;
  text-align: center;
  color: #fff;
}
.footer-cta-strip h3 {
  color: #fff;
  font-size: 1.45rem;
  margin-bottom: 0;
  font-family: 'Quicksand', sans-serif;
}
.footer-cta-strip .strip-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-main {
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a {
  color: #C9C8DC;
  font-size: 0.94rem;
}
.footer-grid a:hover { color: var(--accent); }
.footer-about p {
  color: #C9C8DC;
  font-size: 0.94rem;
  margin-top: 16px;
  line-height: 1.65;
}
.footer-about .logo { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p {
  color: #84839A;
  font-size: 0.86rem;
}
.footer-mini-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-mini-nav a {
  color: #84839A;
  font-size: 0.86rem;
}
.footer-mini-nav a:hover { color: var(--accent); }

/* === Instruktsiya page === */
.steps-section { background: #fff; }
.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 32px;
  background: var(--bg-alt);
  padding: 40px;
  border-radius: 28px;
  margin-bottom: 30px;
  align-items: start;
  border-left: 6px solid var(--primary);
}
.step:nth-child(2n) { border-left-color: var(--accent); }
.step-num {
  width: 80px; height: 80px;
  background: var(--grad);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.step h2 { font-size: 1.7rem; margin-bottom: 12px; }
.step p { margin-bottom: 14px; font-size: 1.02rem; }
.step .btn { margin-top: 12px; }

.after-pay {
  background: var(--bg-warm);
}
.after-pay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.after-pay-text p { margin-bottom: 14px; font-size: 1.02rem; }
.after-pay-list {
  list-style: none;
  margin-top: 22px;
}
.after-pay-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-weight: 500;
  color: var(--text);
}
.after-pay-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 10px;
  width: 22px; height: 22px;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

/* === Animations === */
.fade-up {
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  transition: opacity .7s ease, transform .7s cubic-bezier(.4, .1, .3, 1.1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* === Responsive === */
@media (max-width: 980px) {
  .features-grid, .platforms-grid, .uses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid, .after-pay-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  section { padding: 60px 0; }
  .hero { padding: 50px 0 70px; }
  .hero-card { padding: 38px 24px; border-radius: 24px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .trust-badges { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .features-grid, .platforms-grid, .uses-grid, .faq-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .price-card { padding: 40px 26px; }
  .price-amount { font-size: 2.6rem; }
  .step {
    grid-template-columns: 1fr;
    padding: 30px 24px;
    gap: 18px;
  }
  .step-num { width: 64px; height: 64px; font-size: 1.7rem; border-radius: 18px; }
  .footer-cta-strip .strip-row { flex-direction: column; gap: 16px; }
}

@media (max-width: 380px) {
  .container { padding: 0 18px; }
  .hero-card { padding: 28px 18px; }
}
