:root {
  --bg-main: #0a071b;
  --bg-alt: #120b28;
  --bg-bright: #1a1035;
  --card: rgba(20, 14, 40, 0.92);
  --line: rgba(155, 118, 255, 0.25);
  --text: #f6f2ff;
  --muted: #c8b9f2;
  --accent: #a974ff;
  --accent-strong: #7a3df0;
  --accent-soft: rgba(169, 116, 255, 0.16);
  --glow: #ffb4f0;
  --gold: #f3c46b;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at 10% 20%, rgba(169, 116, 255, 0.15), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(255, 180, 240, 0.12), transparent 45%),
    linear-gradient(160deg, #070513 0%, #0c0820 45%, #130a2f 100%);
  color: var(--text);
  padding-top: 78px;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6, .brand-text {
  font-family: "Cinzel", serif;
  letter-spacing: 0.4px;
}

a {
  text-decoration: none;
  color: inherit;
}

.site-header {
  background: rgba(6, 4, 16, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(169, 116, 255, 0.2);
}

.navbar .nav-link {
  color: var(--muted);
  font-weight: 600;
}

.navbar .nav-link:hover {
  color: #fff;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.brand-orb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85), transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(255, 180, 240, 0.7), transparent 55%),
    linear-gradient(135deg, rgba(169, 116, 255, 0.9), rgba(122, 61, 240, 0.9));
  box-shadow: 0 0 18px rgba(169, 116, 255, 0.7);
  position: relative;
  flex-shrink: 0;
}

.brand-orb::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 12px rgba(255, 180, 240, 0.4);
}

.brand-logo {
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(169, 116, 255, 0.6));
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border: none;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(122, 61, 240, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-outline-primary {
  border-color: rgba(169, 116, 255, 0.7);
  color: #f3eaff;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background: rgba(169, 116, 255, 0.15);
  color: #fff;
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-fun {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 18px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.82rem;
}

.btn-fun i {
  font-size: 1rem;
}

.btn-cta {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 14px 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent 45%);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateX(-40%);
}

.btn-cta::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-50%);
  box-shadow: 0 0 14px rgba(255, 180, 240, 0.8);
}

.btn-cta:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}

.hero-parallax {
  background:
    linear-gradient(120deg, rgba(7, 5, 18, 0.92), rgba(15, 10, 30, 0.9)),
    url("../img/hero.webp") center/cover fixed;
  color: #f4f1ff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(169, 116, 255, 0.25), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(255, 180, 240, 0.2), transparent 50%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(169, 116, 255, 0.25), transparent 70%);
  filter: blur(12px);
  pointer-events: none;
}

.hero-parallax .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.hero-title {
  color: #fef6ff;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.75);
}

.hero-list {
  display: grid;
  gap: 14px;
}

.hero-list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(17, 12, 33, 0.65);
  border: 1px solid rgba(169, 116, 255, 0.2);
  backdrop-filter: blur(6px);
}

.hero-list-item h6 {
  margin-bottom: 4px;
  color: #fff;
}

.hero-list-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.hero-intro {
  background: rgba(12, 8, 26, 0.55);
  border: 1px solid rgba(169, 116, 255, 0.2);
  border-radius: 22px;
  padding: 26px;
  backdrop-filter: blur(8px);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 180, 240, 0.16);
  border: 1px solid rgba(255, 180, 240, 0.35);
  color: #ffe8ff;
  font-size: 0.8rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.highlight-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  background: rgba(17, 12, 33, 0.65);
  border: 1px solid rgba(169, 116, 255, 0.2);
  backdrop-filter: blur(6px);
}

.highlight-card h6 {
  margin-bottom: 4px;
  color: #fff;
}

.highlight-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 180, 240, 0.2);
  color: #ffd4f4;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-parallax .stat-value {
  color: var(--gold);
}

.hero-parallax .stat-label {
  color: rgba(255, 255, 255, 0.65);
}

.hero-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(169, 116, 255, 0.3);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.hero-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  filter: saturate(1.1) contrast(1.05);
}

.hero-media-card {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(10, 7, 22, 0.75);
  border: 1px solid rgba(169, 116, 255, 0.3);
  color: #f6f0ff;
  backdrop-filter: blur(10px);
}

.hero-media-card.compact h5 {
  margin-bottom: 6px;
}

.hero-media-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(169, 116, 255, 0.2);
  color: #f0d8ff;
  font-size: 0.8rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(2.4rem, 3.5vw, 3.7rem);
}

.hero .lead {
  color: var(--muted);
  max-width: 640px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.stat-value {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.section {
  padding: 86px 0;
}

.section-title {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.section-title p {
  color: var(--muted);
}

.offers-section {
  background: linear-gradient(160deg, #0a071b 0%, #0f0a23 60%, #130b2b 100%);
}

.offers-header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: center;
}

.offers-pillars {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(12, 8, 26, 0.6);
  border: 1px solid rgba(169, 116, 255, 0.25);
}

.pill-title {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(169, 116, 255, 0.18);
  color: #f3e3ff;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin-bottom: 6px;
}

.offer-compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.offer-card {
  background: rgba(18, 12, 34, 0.92);
  border: 1px solid rgba(169, 116, 255, 0.25);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 16px;
}

.offer-card.alt {
  background: linear-gradient(135deg, rgba(25, 16, 48, 0.92), rgba(18, 11, 36, 0.95));
  border-color: rgba(255, 180, 240, 0.4);
}

.offer-badge {
  align-self: start;
  justify-self: start;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 180, 240, 0.2);
  border: 1px solid rgba(255, 180, 240, 0.4);
  color: #ffe6ff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 700;
}

.offer-brandline {
  display: flex;
  gap: 16px;
  align-items: center;
}

.offer-brandline img {
  width: 86px;
  height: 56px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  border: 1px solid rgba(169, 116, 255, 0.4);
  padding: 8px;
}

.offer-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.offer-metrics div {
  padding: 12px;
  border-radius: 14px;
  background: rgba(14, 9, 28, 0.8);
  border: 1px solid rgba(169, 116, 255, 0.2);
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #f6ebff;
}

.metric-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
}

.offer-points {
  display: grid;
  gap: 8px;
  color: #f0eaff;
}

.offer-points span {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.offer-points i {
  color: var(--glow);
}

.offer-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-divider span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 180, 240, 0.2);
  border: 1px solid rgba(255, 180, 240, 0.5);
  color: #ffe6ff;
  font-weight: 700;
  letter-spacing: 1px;
}

.offer-insight {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 20px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(12, 8, 26, 0.6);
  border: 1px solid rgba(169, 116, 255, 0.25);
}

.offer-insight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: center;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(169, 116, 255, 0.2);
  border: 1px solid rgba(169, 116, 255, 0.4);
  color: #f5e9ff;
  font-size: 0.82rem;
}

.notice-card {
  background: linear-gradient(135deg, rgba(255, 180, 240, 0.18), rgba(18, 12, 34, 0.9));
  border: 1px solid rgba(255, 180, 240, 0.5);
  border-radius: 16px;
  padding: 26px;
  text-align: center;
}

.platforma-section {
  background: linear-gradient(180deg, #110b26 0%, #0e0a1f 55%, #0b0819 100%);
}

.platforma-merge {
  display: grid;
  gap: 28px;
}

.platforma-intro {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(12, 8, 26, 0.55);
  border: 1px solid rgba(169, 116, 255, 0.25);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.platforma-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.platforma-tiles .tile {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  background: rgba(17, 12, 33, 0.65);
  border: 1px solid rgba(169, 116, 255, 0.2);
}

.platforma-flow {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 20px;
}

.flow-card {
  padding: 24px;
  border-radius: 20px;
  background: rgba(18, 12, 34, 0.92);
  border: 1px solid rgba(169, 116, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.flow-card.soft {
  background: linear-gradient(135deg, rgba(25, 16, 48, 0.9), rgba(18, 11, 36, 0.95));
  border-color: rgba(255, 180, 240, 0.4);
}

.flow-steps {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.flow-steps div {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(12, 8, 26, 0.6);
  border: 1px solid rgba(169, 116, 255, 0.2);
}

.flow-steps span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 180, 240, 0.2);
  color: #ffe6ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.flow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.platforma-outro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 20px;
  align-items: center;
  padding: 22px;
  border-radius: 20px;
  background: rgba(12, 8, 26, 0.6);
  border: 1px solid rgba(169, 116, 255, 0.25);
}

.platforma-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.platforma-stats div {
  padding: 12px;
  border-radius: 14px;
  background: rgba(17, 12, 33, 0.65);
  border: 1px solid rgba(169, 116, 255, 0.2);
  text-align: center;
}

.prednosti-parallax {
  position: relative;
  background:
    linear-gradient(120deg, rgba(7, 5, 18, 0.92), rgba(14, 9, 28, 0.92)),
    url("../img/hero2.webp") center/cover fixed;
  color: #f3f0ff;
  overflow: hidden;
}

.prednosti-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(169, 116, 255, 0.22), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(255, 180, 240, 0.2), transparent 45%);
  pointer-events: none;
}

.prednosti-parallax .section-title p,
.prednosti-parallax .section-title h2 {
  color: #f7f2ff;
}

.prednosti-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.prednosti-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(169, 116, 255, 0.2);
  border-radius: 18px;
  padding: 22px;
  backdrop-filter: blur(6px);
}

.prednosti-card .icon-circle {
  background: rgba(255, 180, 240, 0.2);
  color: #ffd9f7;
}

.prednosti-card h5 {
  color: #f8f2ff;
}

.prednosti-card p {
  color: rgba(255, 255, 255, 0.7);
}

.prednosti-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.prednosti-panel {
  background: rgba(10, 7, 22, 0.78);
  border: 1px solid rgba(169, 116, 255, 0.25);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  color: #f3f0ff;
}

.prednosti-panel.highlight {
  background: linear-gradient(135deg, rgba(25, 16, 45, 0.92), rgba(13, 8, 26, 0.94));
  border-color: rgba(255, 180, 240, 0.35);
}

.prednosti-panel p {
  color: rgba(255, 255, 255, 0.7);
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.panel-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(169, 116, 255, 0.2);
  color: #f0dfff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.prednosti-panel .progress {
  background: rgba(255, 255, 255, 0.15);
}

.prednosti-panel .progress-bar {
  background: linear-gradient(135deg, var(--accent), var(--glow));
}

.prednosti-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
}

.about-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(169, 116, 255, 0.35);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.about-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: saturate(1.1) contrast(1.05);
}

.about-media-chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.about-copy {
  background: rgba(12, 8, 26, 0.6);
  border: 1px solid rgba(169, 116, 255, 0.25);
  border-radius: 22px;
  padding: 26px;
  backdrop-filter: blur(8px);
}

.about-signals {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.signal {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 16px;
  background: rgba(17, 12, 33, 0.65);
  border: 1px solid rgba(169, 116, 255, 0.2);
}

.signal-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 180, 240, 0.2);
  color: #ffd4f4;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-card {
  background: rgba(18, 12, 34, 0.92);
  border: 1px solid rgba(169, 116, 255, 0.25);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

.about-card.highlight {
  background: linear-gradient(135deg, rgba(25, 16, 48, 0.9), rgba(18, 11, 36, 0.95));
  border-color: rgba(255, 180, 240, 0.4);
}

.about-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(12, 8, 26, 0.6);
  border: 1px solid rgba(169, 116, 255, 0.25);
  text-align: center;
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: #f0e2ff;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.rating {
  background: rgba(169, 116, 255, 0.2);
  border: 1px solid rgba(169, 116, 255, 0.45);
  color: #f6ebff;
  padding: 6px 12px;
  border-radius: 12px;
  font-weight: 700;
}

.contact-faq {
  background: linear-gradient(160deg, #0a071b 0%, #0f0a23 60%, #140b2f 100%);
}

.faq-card,
.form-card {
  background: rgba(18, 12, 36, 0.92);
  border: 1px solid rgba(169, 116, 255, 0.25);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

.contact-card {
  background: linear-gradient(135deg, rgba(20, 13, 40, 0.95), rgba(28, 18, 50, 0.95));
  border: 1px solid rgba(255, 180, 240, 0.35);
}

.accordion-item {
  background: rgba(18, 12, 36, 0.92);
  border: 1px solid rgba(169, 116, 255, 0.2);
  color: var(--text);
}

.accordion-button {
  background: rgba(18, 12, 36, 0.92);
  color: var(--text);
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background: rgba(169, 116, 255, 0.18);
}

.form-control {
  background: rgba(11, 7, 24, 0.9);
  border: 1px solid rgba(169, 116, 255, 0.3);
  color: var(--text);
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(169, 116, 255, 0.2);
}

.responsible-section {
  background: linear-gradient(140deg, #080512 0%, #0f0822 50%, #140a2c 100%);
}

.responsible-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.responsible-card {
  background: rgba(15, 10, 30, 0.92);
  border: 1px solid rgba(169, 116, 255, 0.25);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

.site-footer {
  background: linear-gradient(160deg, #070511 0%, #0d081f 50%, #120a2b 100%);
  border-top: 1px solid rgba(169, 116, 255, 0.2);
  padding: 70px 0 34px;
}

.site-footer a {
  color: var(--muted);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: start;
  background: rgba(16, 10, 32, 0.92);
  border: 1px solid rgba(169, 116, 255, 0.25);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.brand-stack {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.brand-stack h3 {
  margin-bottom: 6px;
}

.footer-callout {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(28, 18, 50, 0.95), rgba(18, 12, 34, 0.95));
  border: 1px solid rgba(255, 180, 240, 0.35);
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.footer-columns ul {
  display: grid;
  gap: 8px;
}

.footer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(169, 116, 255, 0.2);
  color: #f6ebff;
  font-weight: 600;
  font-size: 0.82rem;
}

.footer-tips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.footer-tips h6 {
  margin-bottom: 6px;
  color: #f5e9ff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid rgba(169, 116, 255, 0.2);
  padding-top: 20px;
}

.footer-logos,
.ft-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
}

.ft-org-link {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(169, 116, 255, 0.25);
  background: rgba(16, 10, 28, 0.85);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.ft-org-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 180, 240, 0.5);
}

.ft-org-link img {
  display: block;
  height: 36px;
  width: auto;
  filter: grayscale(100%) brightness(1.1);
}

.muted {
  color: var(--muted);
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(6, 4, 16, 0.82);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2000;
}

.age-gate.is-visible {
  display: flex;
}

.age-gate-card {
  width: min(520px, 100%);
  background: rgba(16, 10, 32, 0.95);
  border: 1px solid rgba(169, 116, 255, 0.35);
  border-radius: 24px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.age-gate-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--glow));
  color: #130a2b;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
  box-shadow: 0 0 18px rgba(169, 116, 255, 0.7);
}

.age-gate-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.policy-wrap {
  background: rgba(12, 8, 26, 0.6);
  border: 1px solid rgba(169, 116, 255, 0.25);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.policy-header {
  display: grid;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(169, 116, 255, 0.2);
}

.policy-meta {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}

.policy-meta .tag {
  font-size: 0.78rem;
}

.policy-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.policy-block {
  background: rgba(17, 12, 33, 0.65);
  border: 1px solid rgba(169, 116, 255, 0.2);
  border-radius: 18px;
  padding: 18px;
}

.policy-block h4 {
  margin-bottom: 8px;
}

.policy-block ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 992px) {
  .hero {
    padding: 110px 0 80px;
  }

  .prednosti-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prednosti-panels {
    grid-template-columns: 1fr;
  }

  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-stats-bar {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .platforma-tiles {
    grid-template-columns: 1fr;
  }

  .platforma-flow {
    grid-template-columns: 1fr;
  }

  .platforma-outro {
    grid-template-columns: 1fr;
  }

  .offers-header,
  .offer-compare,
  .offer-insight {
    grid-template-columns: 1fr;
  }

  .offer-divider {
    height: 40px;
  }

  .hero-media img {
    height: 380px;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .methodology-grid,
  .responsible-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .hero-stats {
    gap: 16px;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .footer-tips {
    grid-template-columns: 1fr;
  }

  .methodology-grid,
  .responsible-grid {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    height: 320px;
  }

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

  .about-media img {
    height: 320px;
  }

  .offer-metrics {
    grid-template-columns: 1fr;
  }
}
