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

:root {
  --bg: #f3f3f3;
  --card: #ffffff;
  --text: #1a1a1a;
  --muted: #8a8a8a;
  --red: #d62828;
  --red-dark: #b81f1f;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  --radius-card: 20px;
  --radius-btn: 12px;
  --font: 'Montserrat', system-ui, -apple-system, sans-serif;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100dvh;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 28px 18px 40px;
}

/* Cards */
.card {
  background: var(--card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 20px 18px 18px;
}

.card-top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.card-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.card-icon-vpn {
  width: 88px;
  height: 88px;
}

.card-info {
  flex: 1;
  min-width: 0;
}

.card-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 6px;
}

.text-dark {
  color: var(--text);
}

.text-red {
  color: var(--red);
}

.card-subtitle {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.4;
}

.features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: #333;
}

.check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--red);
}

.check svg {
  display: block;
  width: 18px;
  height: 18px;
}

/* Buttons */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  padding: 14px 16px;
  border: none;
  border-radius: var(--radius-btn);
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn:active {
  transform: scale(0.98);
}

.btn-vpn {
  background: var(--red);
  color: #fff;
}

.btn-vpn:hover {
  background: var(--red-dark);
}

.btn-icon {
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
}

@media (min-width: 480px) {
  .page {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .card {
    padding: 24px 22px 20px;
  }

  .card-title {
    font-size: 22px;
  }
}
