:root {
  --bg: #F8F6F1;
  --ink: #231F1A;
  --muted: #5C564C;
  --faint: #8A8478;
  --border: #ECE6D9;
  --border-strong: #E8E2D6;
  --card: #FFFFFF;
  --info-bg: #F1ECE2;
  --price: #C9502F;
  --free: #2F7D4F;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
::selection { background: #EBD9CE; }

.page { min-height: 100vh; background: var(--bg); }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 246, 241, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-strong);
}
.header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px clamp(16px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--price);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 17px;
}
.brand__text { line-height: 1.2; }
.brand__name { font-weight: 800; font-size: 16px; }
.brand__tagline { font-size: 12px; color: var(--faint); }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  font-size: 14px;
  font-weight: 600;
}
.nav a { text-decoration: none; }
.nav__muted { color: var(--faint); }

/* Bookmakers strip */
.bk-strip { max-width: 1180px; margin: 0 auto; padding: 12px clamp(16px, 4vw, 32px) 0; }
.bk-strip__inner { display: flex; align-items: center; gap: 10px; overflow-x: auto; padding-bottom: 2px; }
.bk-strip__label { font-size: 12px; font-weight: 700; color: var(--faint); white-space: nowrap; }
.bk-pill {
  display: flex; align-items: center; gap: 6px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 14px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.bk-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* Hero */
.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 88px) clamp(16px, 4vw, 32px) clamp(24px, 5vw, 48px);
}
.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 6.5vw, 58px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 720px;
  text-wrap: pretty;
}
.hero p {
  margin: 0 0 28px;
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 560px;
  text-wrap: pretty;
}
.hero__actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
}
.hero__count { font-size: 14px; color: var(--faint); font-weight: 600; }

/* Services */
.services { max-width: 1180px; margin: 0 auto; padding: 12px clamp(16px, 4vw, 32px) clamp(40px, 6vw, 64px); }
.services h2 { margin: 0 0 22px; font-size: clamp(22px, 3.5vw, 28px); font-weight: 800; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card__top { display: flex; align-items: center; gap: 14px; }
.card__logo {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: #FBFAF7;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.card__logo img { max-width: 68%; max-height: 68%; object-fit: contain; }
.card__logo span { font-weight: 800; font-size: 19px; }
.card__meta { flex: 1; min-width: 0; }
.card__name { font-weight: 700; font-size: 17px; line-height: 1.25; }
.card__price { font-size: 14px; font-weight: 700; margin-top: 2px; }
.card__desc { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--muted); flex: 1; text-wrap: pretty; }
.card__bonus { font-size: 14.5px; font-weight: 800; }
.card__bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.badge { font-size: 12.5px; font-weight: 700; padding: 6px 12px; border-radius: 100px; white-space: nowrap; }
.card__link { text-decoration: none; font-size: 14px; font-weight: 700; color: var(--ink); white-space: nowrap; }

/* Info */
.info { background: var(--info-bg); }
.info__inner { max-width: 1180px; margin: 0 auto; padding: clamp(40px, 6vw, 64px) clamp(16px, 4vw, 32px); }
.info__inner h2 { margin: 0 0 8px; font-size: clamp(22px, 3.5vw, 28px); font-weight: 800; }
.info__lead { margin: 0 0 28px; font-size: 15px; color: var(--muted); max-width: 560px; }
.info__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }

.info-card {
  background: var(--card);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-card__title { display: flex; align-items: center; gap: 10px; }
.info-card__title h3 { margin: 0; font-size: 18px; font-weight: 800; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--paid { background: var(--price); }
.dot--free { background: var(--free); }
.info-card__label {
  font-size: 13px; font-weight: 700; color: var(--faint);
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px;
}
.info-card ul { margin: 0; padding: 0 0 0 18px; font-size: 15px; line-height: 1.7; color: #3A352E; }

/* Footer */
.footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 40px) clamp(16px, 4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer p { margin: 0; font-size: 13px; color: var(--faint); }
.footer a { color: var(--faint); }
