/* Hiro VPN — anime-hero, electric pink + cobalt blue on deep dark */

:root {
  --primary: #FF006E;
  --primary-soft: #ff3d8e;
  --accent: #3A86FF;
  --accent-soft: #6aa1ff;
  --bg: #0F0F1F;
  --bg-alt: #161629;
  --bg-card: rgba(25, 25, 45, 0.6);
  --bg-card-strong: rgba(35, 35, 60, 0.78);
  --text: #F0F0FF;
  --text-muted: #9999B5;
  --border: rgba(255, 255, 255, 0.08);
  --border-bright: rgba(255, 255, 255, 0.16);
  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --pill: 50px;
  --shadow-glow: 0 18px 60px rgba(255, 0, 110, 0.22);
  --shadow-glow-blue: 0 18px 60px rgba(58, 134, 255, 0.22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: 'Reem Kufi', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #fff;
}

.container { width: min(1180px, 92%); margin: 0 auto; }

/* ===== HEADER (dark sticky) ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 15, 31, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background .25s, border-color .25s;
}
.site-header.scrolled {
  background: rgba(11, 11, 25, 0.95);
  border-bottom-color: var(--border-bright);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Reem Kufi', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}
.logo img { width: 34px; height: 34px; border-radius: 8px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 14.5px;
  color: var(--text-muted);
  font-weight: 600;
  transition: color .2s;
}
.nav-links a:hover { color: var(--primary-soft); }
.nav-links a.nav-cta {
  color: #000000;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 10px 22px;
  border-radius: var(--pill);
  box-shadow: var(--shadow-glow);
}
.nav-links a.nav-cta:hover {
  color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 22px 64px rgba(255, 0, 110, 0.3);
}

.burger {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border-bright);
  background: rgba(255, 255, 255, 0.04);
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}

/* mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 25, 0.96);
  backdrop-filter: blur(18px);
  z-index: 60;
  display: none;
  flex-direction: column;
  padding: 90px 24px 30px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 16px 4px;
  border-bottom: 1px solid var(--border);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.mobile-nav .close-mob {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border-bright);
  background: transparent;
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

/* ===== HERO (animated mesh gradient) ===== */
.hero {
  position: relative;
  padding: 90px 0 110px;
  overflow: hidden;
  isolation: isolate;
}
.mesh {
  position: absolute;
  inset: -10%;
  z-index: -1;
  filter: blur(80px);
  opacity: 0.85;
}
.mesh::before, .mesh::after, .mesh span {
  content: '';
  position: absolute;
  border-radius: 50%;
  display: block;
}
.mesh::before {
  width: 520px; height: 520px;
  background: var(--primary);
  top: -120px; left: -100px;
  animation: blob1 16s ease-in-out infinite alternate;
}
.mesh::after {
  width: 460px; height: 460px;
  background: var(--accent);
  bottom: -180px; right: -80px;
  animation: blob2 18s ease-in-out infinite alternate;
}
.mesh span {
  width: 380px; height: 380px;
  background: #b32fff;
  top: 30%; left: 40%;
  animation: blob3 20s ease-in-out infinite alternate;
}
@keyframes blob1 {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(180px, 80px) scale(1.12); }
}
@keyframes blob2 {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(-160px, -60px) scale(1.18); }
}
@keyframes blob3 {
  0% { transform: translate(0,0) scale(0.9); opacity: 0.55; }
  100% { transform: translate(-120px, 100px) scale(1.15); opacity: 0.8; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: var(--pill);
  background: rgba(255, 0, 110, 0.14);
  border: 1px solid rgba(255, 0, 110, 0.4);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-soft);
}
.badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}
.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  margin: 22px 0 18px;
  font-weight: 700;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--primary) 0%, var(--accent) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-desc {
  font-size: 18px;
  color: #cccce0;
  max-width: 560px;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

/* ===== Buttons (pill) ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--pill);
  font-weight: 800;
  font-size: 15.5px;
  letter-spacing: 0.01em;
  transition: transform .2s, box-shadow .2s, background .25s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #000;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(255, 0, 110, 0.35);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid var(--border-bright);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-soft);
}

.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 0, 110, 0.45);
}
.price-tag b {
  font-family: 'Reem Kufi', sans-serif;
  font-size: 22px;
  color: #fff;
}
.price-tag span { color: var(--text-muted); font-size: 14px; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 600;
}
.trust-row div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-row div::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

/* hero visual card */
.hero-visual {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--border-bright);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.hero-visual::before {
  content: 'POWER MODE';
  position: absolute;
  top: -14px; right: 24px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 6px 14px;
  border-radius: var(--pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #000;
}
.speed-bar {
  margin: 18px 0;
}
.speed-bar label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.speed-bar label b { color: var(--primary-soft); font-weight: 800; }
.speed-bar-track {
  height: 8px;
  border-radius: var(--pill);
  background: rgba(255,255,255,0.07);
  overflow: hidden;
}
.speed-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--pill);
  animation: fill 3s ease-in-out infinite alternate;
}
@keyframes fill {
  0% { width: 60%; }
  100% { width: 96%; }
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.hero-stat {
  text-align: center;
  padding: 14px 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}
.hero-stat b {
  display: block;
  font-family: 'Reem Kufi', sans-serif;
  font-size: 22px;
  color: #fff;
}
.hero-stat span {
  font-size: 11.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== Stats row ===== */
.stats-row {
  padding: 50px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stats-grid .stat {
  padding: 14px;
}
.stats-grid .stat b {
  font-family: 'Reem Kufi', sans-serif;
  font-size: 32px;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}
.stats-grid .stat span {
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 600;
}

/* ===== Sections shared ===== */
section { padding: 90px 0; }
.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-soft);
  margin-bottom: 14px;
}
.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 14px;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 50px;
  font-size: 16.5px;
}

/* ===== Glass cards (features) ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.glass-card {
  position: relative;
  padding: 30px 26px;
  border-radius: var(--radius);
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-bright);
  transition: transform .3s, border-color .3s, box-shadow .3s;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.6;
}
.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 0, 110, 0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.glass-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,0,110,0.2), rgba(58,134,255,0.2));
  border: 1px solid rgba(255,0,110,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.glass-card .icon svg { width: 26px; height: 26px; stroke: var(--primary-soft); fill: none; stroke-width: 2; }
.glass-card h3 { font-size: 19px; margin-bottom: 10px; }
.glass-card p { color: var(--text-muted); font-size: 14.5px; }

/* ===== Platforms ===== */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.platform-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-bright);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: transform .25s, border-color .25s;
  color: inherit;
}
.platform-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-soft);
}
.platform-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(58, 134, 255, 0.16);
  border: 1px solid rgba(58, 134, 255, 0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.platform-card .icon svg { width: 24px; height: 24px; stroke: var(--accent-soft); fill: none; stroke-width: 2; }
.platform-card b { display: block; font-family: 'Reem Kufi', sans-serif; font-size: 17px; color: #fff; }
.platform-card span { font-size: 13px; color: var(--text-muted); }

/* ===== Why-us text block ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.why-text h2 { font-size: clamp(26px, 3.5vw, 36px); margin-bottom: 18px; }
.why-text p { color: #cdcde0; margin-bottom: 14px; font-size: 15.5px; }
.why-list { list-style: none; margin-top: 22px; }
.why-list li {
  position: relative;
  padding: 12px 0 12px 34px;
  border-bottom: 1px dashed var(--border);
  color: #d6d6e8;
  font-size: 15px;
}
.why-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.why-list li::after {
  content: '';
  position: absolute;
  left: 5px; top: 22px;
  width: 8px; height: 5px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(-45deg);
}
.why-visual {
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  background: var(--bg-card-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-bright);
  position: relative;
}
.why-visual::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.45;
  pointer-events: none;
}
.why-visual h3 { font-size: 20px; margin-bottom: 18px; }
.metric-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
}
.metric-row b { color: var(--primary-soft); font-family: 'Reem Kufi', sans-serif; font-size: 16px; }
.metric-row:last-child { border-bottom: none; }

/* ===== Use cases ===== */
.use-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.use-card {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-bright);
}
.use-card .num {
  font-family: 'Reem Kufi', sans-serif;
  font-size: 38px;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}
.use-card h3 { font-size: 19px; margin-bottom: 10px; }
.use-card p { color: var(--text-muted); font-size: 14.5px; }

/* ===== CTA banner ===== */
.cta-banner {
  margin: 60px auto;
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,0,110,0.18), rgba(58,134,255,0.18)), var(--bg-alt);
  border: 1px solid rgba(255, 0, 110, 0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
}
.cta-banner::before { background: var(--primary); top: -100px; left: -80px; }
.cta-banner::after { background: var(--accent); bottom: -100px; right: -60px; }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 14px; }
.cta-banner p { color: #d6d6e8; margin-bottom: 26px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ===== FAQ accordion ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item.active { border-color: rgba(255, 0, 110, 0.5); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Reem Kufi', sans-serif;
  font-size: 17px;
  color: #fff;
  font-weight: 600;
  gap: 18px;
}
.faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #000;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
  line-height: 1;
}
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner {
  padding: 0 26px 24px;
  color: var(--text-muted);
  font-size: 15px;
}

/* ===== Footer (4 dark columns) ===== */
.site-footer {
  background: #08081A;
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-size: 13.5px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-soft);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--text-muted);
  font-size: 14.5px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--primary-soft); }
.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 14px;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

/* ===== Instructions page ===== */
.instr-hero {
  padding: 80px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.instr-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: 16px;
}
.instr-hero p { color: var(--text-muted); max-width: 620px; margin: 0 auto; font-size: 17px; }

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin: 40px 0 60px;
}
.step-card {
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  background: var(--bg-card-strong);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-bright);
  position: relative;
}
.step-num {
  display: inline-block;
  font-family: 'Reem Kufi', sans-serif;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(58,134,255,0.4);
  border-radius: var(--pill);
  background: rgba(58, 134, 255, 0.1);
}
.step-card h2 { font-size: 24px; margin-bottom: 14px; }
.step-card p { color: #cccce0; font-size: 15px; margin-bottom: 14px; }
.after-pay {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
  border: 1px solid var(--border-bright);
  margin-bottom: 60px;
}
.after-pay h2 { font-size: 26px; margin-bottom: 14px; }
.after-pay p { color: var(--text-muted); font-size: 15px; margin-bottom: 22px; }
.minimal-footer {
  background: #08081A;
  border-top: 1px solid var(--border);
  padding: 26px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

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

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .hero { padding: 60px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 30px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .steps { grid-template-columns: 1fr; }
  .use-grid { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: 36px; }
  .features-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .cta-banner { padding: 44px 24px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .price-tag { width: 100%; justify-content: center; }
  .after-pay { padding: 28px; }
  .step-card { padding: 28px 22px; }
  .glass-card { padding: 24px 22px; }
}
