/* Express VPN — global-professional landing */
/* Fonts: Lora (serif headings) + Plus Jakarta Sans (body) */

:root {
  --primary: #DC0000;
  --primary-dark: #B30000;
  --accent: #1A2B5F;
  --accent-deep: #0D1638;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-dark: #0F172A;
  --text: #0F172A;
  --text-muted: #475569;
  --card-bg: #FFFFFF;
  --border: #E2E8F0;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.12);
  --shadow-red: 0 12px 32px rgba(220, 0, 0, 0.25);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }

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

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

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

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

/* ====== HEADER (Nav A: white sticky with shadow) ====== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

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

.logo img { width: 36px; height: 36px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

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

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

.nav-links a.nav-cta {
  color: #000000 !important;
  font-weight: 800;
  background: var(--primary);
  padding: 10px 22px;
  border-radius: 10px;
  transition: all var(--transition);
}

.nav-links a.nav-cta:hover {
  color: #000000 !important;
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-red);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  width: 26px;
  height: 2px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav */
.mobile-nav {
  position: fixed;
  top: 75px;
  right: 0;
  bottom: 0;
  width: 290px;
  background: var(--bg);
  border-left: 1px solid var(--border);
  padding: 32px 28px;
  transform: translateX(100%);
  transition: transform var(--transition);
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 1.05rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a.cta-mobile {
  background: var(--primary);
  color: #000;
  font-weight: 800;
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  border: none;
  margin-top: 12px;
}

/* ====== BUTTONS (A: rounded 10-12px) ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(220, 0, 0, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--bg);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

/* ====== HERO (B: dark hero, content left, visual right) ====== */
.hero {
  background: linear-gradient(135deg, #DC0000 0%, #B30000 60%, #8B0000 100%);
  color: #fff;
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(26, 43, 95, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -160px;
  left: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #FFD700;
  border-radius: 50%;
  box-shadow: 0 0 10px #FFD700;
}

.hero h1 {
  color: #fff;
  margin-bottom: 22px;
  font-weight: 700;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero .btn-primary {
  background: #fff;
  color: var(--primary);
}

.hero .btn-primary:hover {
  background: #fff;
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 480px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

.trust-item .check {
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #FFD700;
  font-weight: 800;
  font-size: 0.85rem;
}

/* hero visual (navy card on right) */
.hero-visual {
  background: var(--accent);
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, var(--primary));
  border-radius: 3px;
}

.visual-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
}

.visual-status .live {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.visual-server {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-server:last-child { border-bottom: none; }

.server-flag {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #FFD700 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  color: #fff;
  font-family: 'Lora', serif;
}

.server-info {
  flex: 1;
  margin-left: 14px;
  color: #fff;
}

.server-info .name { font-weight: 600; font-size: 0.95rem; }
.server-info .ping { font-size: 0.78rem; color: rgba(255, 255, 255, 0.5); margin-top: 2px; }

.server-speed {
  color: #4ADE80;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ====== STATS BAR ====== */
.stats {
  background: var(--bg-alt);
  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-value {
  font-family: 'Lora', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ====== SECTIONS — alternating ====== */
section { padding: 90px 0; }
section.alt { background: var(--bg-alt); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }

/* ====== FEATURES (Cards A: shadow + hover lift) ====== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: #fff;
}

.feature-icon svg { width: 28px; height: 28px; }

.feature-card h3 { margin-bottom: 12px; }
.feature-card p { font-size: 0.96rem; }

/* ====== PLATFORMS ====== */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.platform-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.platform-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.platform-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-alt);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
}

.platform-icon svg { width: 30px; height: 30px; }

.platform-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.platform-card .platform-meta { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 18px; }

.platform-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background var(--transition);
}

.platform-btn:hover { background: var(--accent-deep); color: #fff; }

/* ====== WHY EXPRESS — text block ====== */
.why-express {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.why-text h2 { margin-bottom: 22px; }
.why-text p { margin-bottom: 18px; font-size: 1.02rem; }

.why-points {
  list-style: none;
  margin-top: 24px;
}

.why-points li {
  position: relative;
  padding: 12px 0 12px 38px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-weight: 500;
}

.why-points li:last-child { border-bottom: none; }

.why-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.why-image {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  border-radius: 20px;
  padding: 50px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.why-image::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(220, 0, 0, 0.4) 0%, transparent 70%);
  border-radius: 50%;
}

.why-image-stat {
  position: relative;
  z-index: 2;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.why-image-stat:last-child { border-bottom: none; }

.why-image-stat .num {
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #FFD700;
  line-height: 1;
}

.why-image-stat .lab {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 6px;
}

/* ====== USE CASES ====== */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.usecase-card {
  background: var(--card-bg);
  padding: 32px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition);
}

.usecase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.usecase-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.usecase-icon svg { width: 26px; height: 26px; }

.usecase-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.usecase-card p { font-size: 0.95rem; }

/* ====== PRICE (gradient card red→navy) ====== */
.pricing {
  text-align: center;
}

.price-card {
  max-width: 560px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--primary) 0%, #8B0000 50%, var(--accent) 100%);
  color: #fff;
  border-radius: 22px;
  padding: 56px 44px;
  box-shadow: 0 28px 60px rgba(220, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.18), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1), transparent 50%);
  pointer-events: none;
}

.price-card > * { position: relative; z-index: 2; }

.price-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.price-card h2 {
  color: #fff;
  font-size: 2.1rem;
  margin-bottom: 14px;
}

.price-card p { color: rgba(255, 255, 255, 0.9); margin-bottom: 30px; font-size: 1rem; }

.price-features {
  list-style: none;
  margin: 30px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: left;
}

.price-features li {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
  padding-left: 22px;
  position: relative;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #FFD700;
  font-weight: 800;
}

.price-card .btn-primary {
  background: #fff;
  color: var(--primary);
  font-size: 1.05rem;
  padding: 16px 36px;
}

.price-card .btn-primary:hover {
  background: #FFD700;
  color: var(--primary-dark);
}

.price-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 18px;
}

/* ====== CTA banner ====== */
.cta-banner {
  background: var(--accent);
  color: #fff;
  text-align: center;
  border-radius: 18px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(220, 0, 0, 0.3), transparent 70%);
}

.cta-banner > * { position: relative; z-index: 2; }
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { color: rgba(255, 255, 255, 0.85); margin-bottom: 28px; font-size: 1.05rem; }

.cta-banner .btn-primary {
  background: var(--primary);
  color: #fff;
}

.cta-banner .btn-primary:hover {
  background: #fff;
  color: var(--primary);
}

/* ====== FAQ (A: accordion) ====== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 22px 26px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.faq-q .icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 600;
}

.faq-item.open .faq-q .icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-a-inner {
  padding: 0 26px 22px;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
}

/* ====== FOOTER (A: 4 dark columns) ====== */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand .logo { color: #fff; margin-bottom: 18px; }
.footer-brand p { color: rgba(255, 255, 255, 0.6); font-size: 0.92rem; max-width: 320px; }

.footer-col h4 {
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255, 255, 255, 0.65); font-size: 0.93rem; }
.footer-col ul a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ====== INSTRUKTSIYA (steps) ====== */
.instr-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.instr-hero h1 { color: #fff; margin-bottom: 16px; }
.instr-hero p { color: rgba(255, 255, 255, 0.92); max-width: 640px; margin: 0 auto; font-size: 1.08rem; }

.steps {
  padding: 90px 0;
}

.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  margin-bottom: 60px;
  background: var(--card-bg);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.step:hover { box-shadow: var(--shadow-md); }

.step-num {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 700;
}

.step-body h3 { font-size: 1.4rem; margin-bottom: 12px; }
.step-body p { margin-bottom: 14px; font-size: 1rem; }
.step-body .btn { margin-top: 12px; }

.after-pay {
  background: var(--bg-alt);
  padding: 80px 0;
}

.after-pay-text {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

/* ====== ANIM (A: fade-up via IO) ====== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 960px) {
  .hero { padding: 60px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid, .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .why-express { grid-template-columns: 1fr; gap: 40px; }
  .usecases-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .price-features { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
  .steps { padding: 60px 0; }
  .step { grid-template-columns: 1fr; padding: 30px 26px; }
  .step-num { width: 60px; height: 60px; font-size: 1.5rem; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .features-grid, .platforms-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero h1 { font-size: 2rem; }
  .hero-actions .btn { width: 100%; }
  .price-card { padding: 40px 28px; }
  .cta-banner { padding: 44px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
