:root {
  --bg: #f5f1e8;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --text: #10233a;
  --muted: #5c6a79;
  --line: rgba(16, 35, 58, 0.12);
  --primary: #b63b20;
  --primary-strong: #8c2610;
  --accent: #0d5d56;
  --shadow: 0 24px 70px rgba(16, 35, 58, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(182, 59, 32, 0.18), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(13, 93, 86, 0.18), transparent 20%),
    linear-gradient(180deg, #f9f4eb 0%, #f3eee5 48%, #efe7dc 100%);
}

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

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

.site-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 20px auto;
}

.topbar,
.panel,
.embed-card,
.timeline__item,
.footer,
.hero-card,
.faq-item {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.74);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.brand__text,
.nav,
.btn,
.lang-btn,
.lang-link,
summary {
  font-family: "Space Grotesk", sans-serif;
}

.brand__text {
  font-weight: 700;
  letter-spacing: -0.03em;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.95rem;
}

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

.nav a:hover,
.nav a:focus-visible,
.footer a:hover,
.footer a:focus-visible {
  color: var(--primary);
}

.lang-switcher {
  display: inline-flex;
  gap: 8px;
}

.lang-btn,
.lang-link {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 8px 12px;
  cursor: pointer;
}

.lang-btn.is-active {
  background: var(--text);
  color: #fff;
}

.lang-link.is-active {
  background: var(--text);
  color: #fff;
}

.hero,
.section,
.footer {
  margin-top: 28px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  min-height: calc(100vh - 140px);
  padding: 36px 0 16px;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 800;
}

h1,
h2,
h3,
strong {
  letter-spacing: -0.04em;
}

h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.6rem, 4.8vw, 4.9rem);
  line-height: 1.02;
  max-width: 11ch;
  text-wrap: balance;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.hero__lead,
.section-heading > p,
.panel p,
.timeline__item p,
.faq-item p,
.footer p,
.embed-fallback p {
  color: var(--muted);
  line-height: 1.7;
}

.hero__lead {
  max-width: 60ch;
  font-size: 1.08rem;
  margin: 18px 0 0;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

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

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--primary-strong);
}

.btn--ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.hero__points {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
}

.hero__points li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
}

.hero__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.hero__visual {
  position: relative;
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card--image {
  overflow: hidden;
}

.hero-card--image img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.hero-card--stats {
  width: min(92%, 420px);
  padding: 22px;
  position: absolute;
  right: -14px;
  bottom: -18px;
}

.hero-card__label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.hero-card__grid article {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  padding: 14px;
}

.hero-card__grid strong,
.panel h3,
.timeline__item h3,
summary {
  display: block;
  font-family: "Space Grotesk", sans-serif;
}

.hero-card__grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 22px 0;
}

.section--band {
  padding: 28px;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.24));
  border: 1px solid rgba(16, 35, 58, 0.08);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading--split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading--compact {
  align-items: center;
}

.section-heading--compact h2 {
  margin-bottom: 8px;
}

.section-heading--store {
  padding: 28px 30px;
  border: 1px solid rgba(16, 35, 58, 0.08);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.28));
  box-shadow: var(--shadow);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.trust-showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.trust-showcase--reviews {
  grid-template-columns: 1fr 0.8fr;
}

.panel,
.timeline__item,
.faq-item,
.embed-card,
.footer {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.panel {
  padding: 24px;
}

.trust-panel {
  display: grid;
  align-content: start;
  gap: 16px;
}

.trust-panel--accent,
.quote-panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.78)),
    radial-gradient(circle at top right, rgba(182, 59, 32, 0.14), transparent 34%);
}

.trust-panel__eyebrow,
.quote-panel__label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 800;
}

.trust-panel h3,
.quote-panel__text {
  margin: 0;
}

.trust-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.quote-panel {
  display: grid;
  align-content: center;
  min-height: 100%;
}

.quote-panel__text {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  line-height: 1.2;
  color: var(--text);
}

.feedback-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 18px;
}

.feedback-card {
  border: 1px solid rgba(16, 35, 58, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 50px rgba(16, 35, 58, 0.08);
  overflow: hidden;
}

.feedback-card__title {
  padding: 18px 22px 14px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.feedback-card__subhead {
  padding: 10px 22px 0;
  border-top: 1px solid rgba(16, 35, 58, 0.12);
  color: var(--text);
}

.feedback-score-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.feedback-score-table thead th {
  padding: 10px 8px 6px;
  font-weight: 500;
  text-align: center;
  color: var(--text);
}

.feedback-score-table thead th:first-child {
  width: 40%;
}

.feedback-score-table tbody th,
.feedback-score-table tbody td {
  padding: 12px 8px;
  font-size: 1rem;
}

.feedback-score-table tbody th {
  text-align: left;
  font-weight: 500;
  white-space: nowrap;
}

.feedback-score-table tbody td {
  text-align: center;
  color: #0956d8;
}

.feedback-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  vertical-align: 1px;
}

.feedback-icon--positive {
  background: #05823f;
}

.feedback-icon--neutral {
  background: #6a6a6a;
  position: relative;
}

.feedback-icon--neutral::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 2px;
}

.feedback-icon--negative {
  background: #e0103a;
  position: relative;
}

.feedback-icon--negative::after {
  content: "";
  width: 8px;
  height: 2px;
  background: #fff;
}

.feedback-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
  padding: 20px 22px 24px;
}

.feedback-detail-item > span {
  display: block;
  margin-bottom: 4px;
}

.feedback-stars {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feedback-stars i {
  --percent: calc(var(--rating) / 5 * 100%);
  position: relative;
  display: inline-block;
  font-style: normal;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #d7dce3;
}

.feedback-stars i::before {
  content: "★★★★★";
}

.feedback-stars i::after {
  content: "★★★★★";
  position: absolute;
  inset: 0;
  width: var(--percent);
  overflow: hidden;
  color: #f59e0b;
}

.feedback-stars em {
  color: #0956d8;
  font-style: normal;
}

.panel--icon span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(182, 59, 32, 0.1);
  color: var(--primary);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.embed-card {
  overflow: hidden;
}

.embed-card iframe {
  display: block;
  width: 100%;
  min-height: 680px;
  border: 0;
  background: rgba(16, 35, 58, 0.06);
}

.embed-card--reviews iframe {
  min-height: 760px;
}

.embed-fallback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px 22px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.embed-fallback p {
  margin: 0;
}

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

.timeline__item {
  padding: 22px;
}

.timeline__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--text);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

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

.faq-item {
  padding: 18px 22px;
}

summary {
  cursor: pointer;
  font-size: 1.04rem;
}

summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 14px 0 0;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 24px;
  padding: 28px;
  margin-bottom: 36px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .topbar,
  .section-heading--split,
  .embed-fallback,
  .footer,
  .hero,
  .timeline,
  .grid--3,
  .grid--4,
  .feedback-showcase,
  .trust-showcase,
  .trust-showcase--reviews {
    grid-template-columns: 1fr;
  }

  .topbar {
    border-radius: 28px;
    align-items: start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    padding-top: 12px;
  }

  .hero-card--stats {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

  .section-heading--split,
  .embed-fallback,
  .footer {
    display: grid;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max));
  }

  .topbar {
    top: 10px;
    padding: 14px;
  }

  .hero-card--image img,
  .embed-card iframe,
  .embed-card--reviews iframe {
    min-height: 360px;
  }

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

  .feedback-score-table {
    font-size: 0.92rem;
  }

  .feedback-score-table tbody th,
  .feedback-score-table tbody td,
  .feedback-score-table thead th {
    padding: 10px 8px;
  }

  .feedback-detail-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 9vw, 3.8rem);
  }

  .btn,
  .lang-btn,
  .lang-link {
    width: 100%;
  }

  .hero__actions,
  .lang-switcher {
    width: 100%;
  }

  .lang-switcher {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}


.faq-schema-only { display: none; }


.policy-shell {
  display: grid;
  gap: 18px;
}

.policy-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 26px;
}

.policy-card h2,
.policy-card h3 {
  margin-top: 0;
}

.policy-card p {
  color: var(--muted);
  line-height: 1.7;
}


.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 110;
  width: min(430px, calc(100% - 24px));
  border: 1px solid rgba(16, 35, 58, 0.14);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98) 0%, rgba(248, 241, 232, 0.98) 100%);
  box-shadow: 0 28px 70px rgba(16, 35, 58, 0.22);
  padding: 22px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-banner__title {
  margin: 0 32px 8px 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
}

.cookie-banner__body {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.cookie-banner__link {
  color: var(--primary);
  font-weight: 700;
}

.footer__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-top: 8px;
}

.cookie-settings-btn {
  border: 1px solid rgba(16, 35, 58, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 10px 16px;
  color: var(--primary);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cookie-settings-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(16, 35, 58, 0.08);
  border-color: rgba(16, 35, 58, 0.24);
}

@media (max-width: 720px) {
  .cookie-banner {
    left: 10px;
    right: 10px;
    width: auto;
    bottom: 10px;
  }
}
