/* ===== IKI VPN — Cosmic Black & White ===== */

:root {
  --black: #000000;
  --white: #ffffff;
  --g50: #fafafa;
  --g100: #f0f0f0;
  --g200: #d4d4d4;
  --g300: #a3a3a3;
  --g400: #737373;
  --g500: #525252;
  --g600: #3a3a3a;
  --g700: #262626;
  --g800: #171717;
  --g900: #0a0a0a;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 64px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: var(--font); border: none; background: none; cursor: pointer; color: inherit; }

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

/* ===== STARS CANVAS ===== */
#starsCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(255,255,255,0.06);
}

.nav-container {
  max-width: 1120px; margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  z-index: 10;
}
.logo-img { width: 32px; height: 32px; object-fit: contain; }
.logo-text { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.5px; }
.logo-accent { color: var(--g300); }

.nav-links {
  display: flex; gap: 32px;
}
.nav-link {
  font-size: 0.85rem; font-weight: 500;
  color: var(--g400);
  transition: color 0.3s var(--ease);
}
.nav-link:hover { color: var(--white); }

.nav-cta {
  font-size: 0.82rem; font-weight: 700;
  padding: 8px 20px;
  background: var(--white);
  color: var(--black);
  border-radius: 100px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav-cta:hover {
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(255,255,255,0.12);
}

.burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; z-index: 10;
}
.burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); border-radius: 2px;
  transition: 0.3s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  z-index: 99;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(24px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-link {
  font-size: 1.3rem; font-weight: 600;
  color: var(--g300);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--white); }
.mobile-cta-btn {
  margin-top: 12px;
  font-size: 1rem; font-weight: 700;
  padding: 14px 36px;
  background: var(--white); color: var(--black);
  border-radius: 100px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.07;
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: var(--white);
  top: -20%; left: -10%;
  animation: orbFloat 14s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: var(--white);
  bottom: -10%; right: -5%;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

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

.hero-content {
  max-width: 680px;
  display: flex; flex-direction: column; gap: 28px;
}
.hero-center {
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  width: fit-content;
  padding: 6px 16px 6px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: 0.78rem; font-weight: 500;
  color: var(--g300);
  background: rgba(255,255,255,0.03);
}
.chip-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--white);
  animation: pulse 2s ease-in-out infinite;
}
.chip-green {
  background: #22c55e;
  animation: pulseGreen 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}
@keyframes pulseGreen {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
}
.hero-title-thin {
  font-weight: 300;
  color: var(--g400);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--g400);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

.hero-buttons {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}

.btn-main {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: var(--white); color: var(--black);
  border-radius: 100px;
  font-size: 0.9rem; font-weight: 700;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn-main:hover {
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(255,255,255,0.12);
}
.btn-main svg { transition: transform 0.3s var(--ease); }
.btn-main:hover svg { transform: translateX(3px); }

.btn-full { width: 100%; justify-content: center; }

.btn-large { padding: 16px 36px; font-size: 1rem; }

.btn-ghost {
  font-size: 0.9rem; font-weight: 500;
  color: var(--g400);
  padding: 14px 4px;
  transition: color 0.3s;
}
.btn-ghost:hover { color: var(--white); }

.btn-outline-white {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  font-size: 0.9rem; font-weight: 600;
  color: var(--white);
  text-align: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}


.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ===== SECTIONS GENERAL ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}
.section-dark {
  background: var(--g900);
}
#locations {
  padding: 40px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--g500);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.f-card {
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.f-card:hover {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
}
.f-card-large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 20px;
}
.f-card-large .f-icon { grid-row: 1 / 3; align-self: start; }

.f-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.f-icon svg { width: 22px; height: 22px; stroke: var(--g300); }

.f-card h3 {
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 8px;
}
.f-card p {
  font-size: 0.88rem;
  color: var(--g400);
  line-height: 1.6;
}

/* ===== LOCATIONS MARQUEE ===== */
.marquee-wrap {
  width: 100%;
  overflow: hidden;
  padding: 4px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex; align-items: center; gap: 40px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.marquee-item {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: rgba(255,255,255,0.9);
  transition: color 0.3s;
  flex-shrink: 0;
}
.marquee-item:hover { color: var(--white); }
.marquee-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.price-card {
  padding: 32px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  background: rgba(255,255,255,0.02);
  display: flex; flex-direction: column;
  transition: border-color 0.3s;
}
.price-card:hover {
  border-color: rgba(255,255,255,0.16);
}
.price-card-featured {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}

.price-badge {
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--g500);
  margin-bottom: 12px;
}
.price-name {
  font-size: 1.3rem; font-weight: 800;
  margin-bottom: 16px;
}
.price-value {
  font-size: 2.8rem; font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 8px;
}
.price-value span {
  font-size: 1rem; font-weight: 500;
  color: var(--g500);
  letter-spacing: 0;
}
.price-desc {
  font-size: 0.85rem;
  color: var(--g400);
  margin-bottom: 24px;
  line-height: 1.6;
}
.price-math {
  display: flex; flex-direction: column; gap: 3px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  font-size: 0.8rem;
  color: var(--g400);
  margin-bottom: 10px;
}
.price-math strong { color: var(--white); }
.price-math-eq { color: var(--g500); font-size: 0.75rem; }

.price-gift {
  display: flex; align-items: flex-start; gap: 9px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  font-size: 0.8rem;
  color: var(--g300);
  line-height: 1.5;
  margin-bottom: 20px;
}
.price-gift svg { flex-shrink: 0; margin-top: 1px; stroke: var(--white); }
.price-gift strong { color: var(--white); }

.price-features {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.price-features li {
  font-size: 0.85rem;
  color: var(--g300);
  padding-left: 20px;
  position: relative;
}
.price-features li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.step-card {
  padding: 32px 24px;
  position: relative;
}
.step-number {
  font-size: 3rem; font-weight: 900;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 20px;
}
.step-line {
  position: absolute;
  top: 0; right: 0;
  width: 1px; height: 100%;
  background: rgba(255,255,255,0.08);
}
.step-line.last { display: none; }

.step-card h3 {
  font-size: 1rem; font-weight: 700;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 0.85rem;
  color: var(--g400);
  line-height: 1.6;
}
.step-stores {
  display: flex; gap: 8px;
  margin-top: 12px;
}
.store-link {
  font-size: 0.78rem; font-weight: 600;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: var(--g300);
  transition: border-color 0.3s, color 0.3s;
}
.store-link:hover { border-color: var(--white); color: var(--white); }

/* ===== CTA ===== */
.cta-section {
  padding: 140px 0;
  text-align: center;
}
.cta-block {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 24px;
}
.cta-orb {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: var(--white);
  filter: blur(180px);
  opacity: 0.04;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -1.5px;
}
.cta-desc {
  font-size: 1rem;
  color: var(--g400);
  line-height: 1.7;
}
.cta-hint {
  font-size: 0.82rem;
  color: var(--g500);
}
.cta-hint a {
  color: var(--g300);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}
.cta-hint a:hover { color: var(--white); }

/* ===== FOOTER ===== */
.footer {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand p { font-size: 0.85rem; color: var(--g500); max-width: 280px; }

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--g500);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.85rem; color: var(--g400);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem;
  color: var(--g600);
}
.footer-status {
  display: flex; align-items: center; gap: 6px;
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--white);
  animation: pulse 2s ease-in-out infinite;
}

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 9999;
  background: var(--white); color: var(--black);
  border-radius: 100px;
  padding: 12px 22px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  transition: transform 0.4s var(--ease), opacity 0.4s;
  opacity: 0; pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast svg { stroke: var(--black); flex-shrink: 0; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
  padding: 16px;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-box {
  position: relative;
  background: var(--g900);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 28px;
  width: 100%; max-width: 480px;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s var(--ease);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--g400);
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.trial-state {
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
  width: 100%;
}

.trial-spinner {
  width: 40px; height: 40px;
  border: 2px solid rgba(255,255,255,0.1);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.trial-loading-text { color: var(--g500); font-size: 0.88rem; }

.trial-ok-icon svg { stroke: var(--white); }
.trial-err-icon svg { stroke: var(--g400); }

.trial-title { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.5px; }
.trial-sub { font-size: 0.88rem; color: var(--g400); }

.trial-warning {
  width: 100%;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  font-size: 0.78rem;
  color: var(--g300);
  line-height: 1.5;
}
.trial-warning svg { flex-shrink: 0; stroke: var(--g300); }

.key-block {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.key-block code {
  font-family: 'Courier New', monospace;
  font-size: 0.68rem;
  color: var(--g300);
  word-break: break-all;
  line-height: 1.7;
  user-select: all;
}
.key-copy {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  font-size: 0.8rem; font-weight: 600;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s;
}
.key-copy:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); }

.trial-instructions {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
}
.ti-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ti-item:last-child { border: none; }

.ti-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700;
  color: var(--g400);
  flex-shrink: 0;
}
.ti-item strong { font-size: 0.85rem; font-weight: 600; }
.ti-item p { font-size: 0.78rem; color: var(--g500); margin-top: 2px; }

.ti-stores {
  display: flex; gap: 6px; margin-top: 6px;
}
.ti-stores a {
  font-size: 0.72rem; font-weight: 600;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  color: var(--g300);
  transition: border-color 0.2s, color 0.2s;
}
.ti-stores a:hover { border-color: var(--white); color: var(--white); }

.trial-bot-link {
  width: 100%;
  text-align: center;
  padding-top: 8px;
}
.trial-bot-link p {
  font-size: 0.82rem; color: var(--g500);
  margin-bottom: 10px;
}

.trial-error-msg {
  font-size: 0.88rem; color: var(--g400);
  text-align: center;
}

/* ===== AOS ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-aos="fade-up"] { transform: translateY(24px); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .f-card-large { grid-template-columns: 1fr; }
  .f-card-large .f-icon { grid-row: auto; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-card:nth-child(2) .step-line,
  .step-card:last-child .step-line { display: none; }
  .step-card:nth-child(2) { border-right: none; }
  .step-card { border-bottom: 1px solid rgba(255,255,255,0.06); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }

  .hero-title { letter-spacing: -1.5px; }
  .hero-scroll { display: none; }

  .section { padding: 80px 0; }
  .section-head { margin-bottom: 40px; }

  .features-grid { grid-template-columns: 1fr; }
  .f-card-large { grid-template-columns: 1fr; }

  .locations-grid { grid-template-columns: 1fr 1fr; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }

  .steps-grid { grid-template-columns: 1fr; }
  .step-line { display: none !important; }
  .step-card { border-bottom: 1px solid rgba(255,255,255,0.06); padding: 24px 0; }

  .cta-section { padding: 80px 0; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn-ghost { text-align: center; }
  .modal-box { padding: 28px 20px; border-radius: 16px; }
}
