@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #2c3e50;
  --accent-gold: #e6b800;
  --accent-green: #2ecc71;
  --light-bg: #f8f8f8;
  --neutral-light: #ecf0f1;
  --neutral-mid: #bdc3c7;
  --text-dark: #2c3e50;
  --text-body: #3d4a57;
  --text-muted: #7f8c8d;
  --white: #ffffff;
  --border-color: #dde2e6;
  --shadow-soft: 0 4px 24px rgba(44,62,80,0.10);
  --shadow-card: 0 2px 12px rgba(44,62,80,0.08);
  --radius: 4px;
  --radius-card: 8px;
  --max-width: 1440px;
  --container: 1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  background: var(--light-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

p { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-green); }

ul, ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
li { margin-bottom: 0.4rem; }

img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.container--wide {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 96px 0;
}

.section--dark {
  background: var(--primary);
  color: var(--light-bg);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--dark p,
.section--dark li {
  color: var(--neutral-light);
}

.section--light {
  background: var(--light-bg);
}

.section--white {
  background: var(--white);
}

.section--neutral {
  background: var(--neutral-light);
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  margin-bottom: 24px;
}

.section-title--gold { color: var(--accent-gold); }

.divider {
  width: 56px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
  margin-bottom: 32px;
}

.divider--center { margin-left: auto; margin-right: auto; }

.text-center { text-align: center; }
.text-balance { text-wrap: balance; }

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--accent-gold);
  color: var(--primary);
  border-color: var(--accent-gold);
}

.btn--primary:hover {
  background: #cfab00;
  border-color: #cfab00;
  color: var(--primary);
  box-shadow: 0 6px 20px rgba(230,184,0,0.28);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.btn--outline:hover {
  background: var(--accent-gold);
  color: var(--primary);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn--green {
  background: var(--accent-green);
  color: var(--white);
  border-color: var(--accent-green);
}

.btn--green:hover {
  background: #27ae60;
  border-color: #27ae60;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(46,204,113,0.28);
  transform: translateY(-1px);
}

.card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s, transform 0.25s;
  border: 1px solid var(--border-color);
}

.card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230,184,0,0.1);
  border-radius: 50%;
  font-size: 1.4rem;
}

.card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.card__text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.grid { display: grid; gap: 32px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.flex { display: flex; }
.flex--center { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.split__image--tall {
  height: 560px;
}

.badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  background: var(--accent-gold);
  color: var(--primary);
}

.badge--green {
  background: var(--accent-green);
  color: var(--white);
}

.badge--outline {
  background: transparent;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
}

.disclaimer-box {
  background: rgba(230,184,0,0.08);
  border-left: 4px solid var(--accent-gold);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  padding: 24px 28px;
  margin: 40px 0;
}

.disclaimer-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.7;
}

.disclaimer-box strong {
  color: var(--text-dark);
}

.highlight-strip {
  background: var(--primary);
  color: var(--white);
  padding: 20px 32px;
  border-radius: var(--radius-card);
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.highlight-strip span {
  color: var(--accent-gold);
}

.separator {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 0;
}

.separator--gold {
  border-top: 2px solid var(--accent-gold);
  width: 56px;
  margin: 32px 0;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--primary);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.stat-strip__item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-strip__item:last-child { border-right: none; }

.stat-strip__number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent-gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-strip__label {
  font-size: 0.82rem;
  color: var(--neutral-light);
  font-weight: 500;
}

.quote-block {
  border-left: 4px solid var(--accent-gold);
  padding: 24px 32px;
  background: var(--white);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  box-shadow: var(--shadow-card);
}

.quote-block p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.75;
}

.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(44,62,80,0.06);
  border: 1px solid var(--border-color);
  border-radius: 40px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
}

.info-pill--gold {
  background: rgba(230,184,0,0.1);
  border-color: rgba(230,184,0,0.3);
  color: var(--primary);
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-row img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-card);
  transition: transform 0.35s, box-shadow 0.35s;
}

.gallery-row img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-soft);
}

.full-width-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 0;
}

.full-width-image--rounded {
  border-radius: var(--radius-card);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  background: var(--white);
  transition: border-color 0.2s, color 0.2s;
}

.tag:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(44,62,80,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: 72px;
  display: flex;
  align-items: center;
}

.site-header .container--wide {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo span {
  color: var(--accent-gold);
}

.site-logo__dot {
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: inline-block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.25s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}


.site-footer {
  background: #1a252f;
  color: var(--neutral-light);
  padding: 80px 0 0;
}

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.site-footer a {
  color: var(--neutral-light);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.site-footer a:hover { color: var(--accent-gold); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-contact strong {
  color: rgba(255,255,255,0.8);
}

.footer-hours p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.footer-hours strong {
  color: rgba(255,255,255,0.8);
}

.footer-disclaimer {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.75;
  margin-bottom: 12px;
}

.footer-disclaimer p:last-child { margin-bottom: 0; }

.footer-bar {
  background: #111d26;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bar p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

.footer-bar a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-bar a:hover { color: var(--accent-gold); }

.footer-edu-message {
  background: rgba(230,184,0,0.07);
  border: 1px solid rgba(230,184,0,0.2);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-bottom: 28px;
  text-align: center;
}

.footer-edu-message p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-gold) !important;
  margin: 0;
}


#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a252f;
  border-top: 2px solid var(--accent-gold);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.25);
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

#cookie-banner.hidden {
  transform: translateY(110%);
  pointer-events: none;
}

.cookie-text {
  flex: 1;
  min-width: 240px;
}

.cookie-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 10px 22px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.cookie-btn--accept {
  background: var(--accent-gold);
  color: var(--primary);
  border-color: var(--accent-gold);
}

.cookie-btn--accept:hover {
  background: #cfab00;
}

.cookie-btn--refuse {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.2);
}

.cookie-btn--refuse:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.cookie-btn--learn {
  background: transparent;
  color: var(--accent-gold);
  border: none;
  text-decoration: underline;
  padding: 10px 8px;
  font-size: 0.8rem;
}


.page-hero {
  padding-top: 144px;
  padding-bottom: 96px;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,62,80,0.96) 0%, rgba(28,40,51,0.99) 100%);
  z-index: 1;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.25;
  filter: grayscale(30%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero h1 { color: var(--white); }
.page-hero .section-label { color: var(--accent-gold); }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 640px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.breadcrumb a,
.breadcrumb span {
  font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--accent-gold); }

.breadcrumb .sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.7rem;
}

.breadcrumb .current {
  color: var(--accent-gold);
}


.policy-page {
  padding-top: 120px;
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 32px 96px;
}

.policy-container h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 8px;
}

.policy-container h2 {
  font-size: 1.3rem;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--primary);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

.policy-container h3 {
  font-size: 1.05rem;
  margin-top: 28px;
  margin-bottom: 12px;
}

.policy-container .policy-date {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.policy-title-line {
  width: 56px;
  height: 3px;
  background: var(--accent-gold);
  margin: 16px 0 32px;
  border-radius: 2px;
}

.policy-frame {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 48px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.table-wrap {
  overflow-x: auto;
  margin: 24px 0;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.cookie-table th {
  background: var(--primary);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cookie-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-body);
  vertical-align: top;
}

.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:hover td { background: rgba(44,62,80,0.03); }

.info-panel {
  background: rgba(44,62,80,0.04);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  margin: 32px 0;
}

.info-panel h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.info-panel p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.consumer-rights-box {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 36px;
  margin: 32px 0;
}

.consumer-rights-box h3 {
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.consumer-rights-box p,
.consumer-rights-box li {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}


.quiz-page {
  background: var(--primary);
  min-height: 100vh;
  padding-top: 72px;
}

.quiz-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}

.quiz-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: grayscale(20%);
}

.quiz-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28,40,51,0.98) 50%, rgba(28,40,51,0.6) 100%);
}

.quiz-hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 80px 0;
}

.quiz-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.quiz-hero h1 em {
  color: var(--accent-gold);
  font-style: normal;
}

.quiz-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.quiz-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.quiz-counter__dot {
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.quiz-counter span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quiz-trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.quiz-trust-row span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}


.quiz-block {
  background: var(--light-bg);
  padding: 80px 0 96px;
}

.quiz-wrapper {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}

.progress-bar-wrap {
  margin-bottom: 48px;
}

.progress-bar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.progress-bar-header span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.progress-bar-header .progress-percent {
  color: var(--accent-gold);
}

.progress-track {
  height: 6px;
  background: var(--border-color);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--accent-gold);
  border-radius: 10px;
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
  width: 0%;
}


.quiz-step {
  display: none;
  animation: fadeInUp 0.4s ease;
}

.quiz-step.active {
  display: block;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-step__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
  display: block;
}

.quiz-step h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--primary);
  margin-bottom: 8px;
  text-wrap: balance;
}

.quiz-step__sub {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 40px;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.quiz-options--wide {
  grid-template-columns: 1fr;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-card);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  text-align: left;
  font-family: 'Open Sans', sans-serif;
}

.quiz-option:hover {
  border-color: var(--accent-gold);
  background: rgba(230,184,0,0.04);
  box-shadow: var(--shadow-card);
}

.quiz-option.selected {
  border-color: var(--accent-gold);
  background: rgba(230,184,0,0.08);
}

.quiz-option__icon {
  width: 40px;
  height: 40px;
  background: var(--neutral-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.quiz-option.selected .quiz-option__icon {
  background: var(--accent-gold);
}

.quiz-option__text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.quiz-option__sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
  margin-top: 3px;
}

.quiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.quiz-nav-back {
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 0;
}

.quiz-nav-back:hover { color: var(--text-dark); }
.quiz-nav-back:disabled { opacity: 0.3; cursor: default; }


.quiz-result {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.quiz-result.active { display: block; }

.result-header {
  text-align: center;
  padding: 64px 0 48px;
}

.result-header .result-tag {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.result-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 16px;
  text-wrap: balance;
}

.result-header p {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1rem;
}

.result-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 48px;
}

.result-card__image {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.result-card__body {
  padding: 48px;
}

.result-card__body h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.result-card__body p {
  color: var(--text-muted);
  line-height: 1.75;
}

.result-ingredient-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0;
}

.ingredient-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
}

.ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.ingredient-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(230,184,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
}

.ingredient-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.ingredient-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

.result-profiles {
  background: var(--neutral-light);
  border-radius: var(--radius-card);
  padding: 40px;
  margin: 40px 0;
}

.result-profiles h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.profile-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.profile-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.profile-item__dot {
  width: 10px;
  height: 10px;
  background: var(--accent-gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.profile-item p {
  font-size: 0.88rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.65;
}

.retake-btn-wrap {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.retake-btn-wrap p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.quiz-faq-section {
  background: var(--white);
  padding: 80px 0;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--accent-gold); }

.faq-icon {
  width: 24px;
  height: 24px;
  background: rgba(230,184,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--accent-gold);
  font-weight: 700;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}


.about-timeline {
  position: relative;
  padding-left: 40px;
  margin: 48px 0;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(230,184,0,0.12);
}

.timeline-item__year {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.timeline-item h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 48px 0;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.value-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(44,62,80,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}

.value-card h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}


.contact-page {
  padding-top: 120px;
  padding-bottom: 96px;
  background: var(--light-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.6rem;
  margin-bottom: 24px;
  color: var(--primary);
}

.contact-info p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-detail__icon {
  width: 40px;
  height: 40px;
  background: rgba(230,184,0,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-detail__info strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-detail__info span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.contact-form-wrap h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.contact-form-wrap .sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.65;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--light-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(230,184,0,0.12);
  background: var(--white);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

.form-disclaimer {
  background: rgba(44,62,80,0.04);
  border-left: 3px solid var(--accent-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin-bottom: 28px;
}

.form-disclaimer p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}


.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  padding: 120px 32px 96px;
}

.thank-you-box {
  max-width: 540px;
  width: 100%;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 64px 48px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.thank-you-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gold);
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.thank-you-icon {
  width: 72px;
  height: 72px;
  background: rgba(46,204,113,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2rem;
}

.thank-you-box h1 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.thank-you-box p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0;
}

.thank-you-divider {
  width: 48px;
  height: 2px;
  background: var(--border-color);
  margin: 28px auto;
}


@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .result-ingredient-grid { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse { direction: ltr; }
  .split__image { height: 320px; }
  .grid--3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .quiz-options { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

@media (max-width: 768px) {
  .site-nav { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: #1a252f; padding: 24px 32px; gap: 0; border-bottom: 1px solid rgba(255,255,255,0.08); z-index: 999; }
  .site-nav.open { display: flex; }
  .site-nav li { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .site-nav a { display: block; padding: 14px 0; font-size: 0.9rem; }
  .site-nav a::after { display: none; }
  .hamburger { display: flex; }
  .grid--2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .gallery-row { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .container--wide { padding: 0 20px; }
  .quiz-wrapper { padding: 0 20px; }
  .policy-container { padding: 40px 20px 64px; }
  .policy-frame { padding: 28px 20px; }
  .contact-form-wrap { padding: 28px 20px; }
  .thank-you-box { padding: 40px 24px; }
  .result-card__body { padding: 28px; }
  .result-profiles { padding: 24px; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  #cookie-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .stat-strip { grid-template-columns: 1fr; }
  .result-ingredient-grid { grid-template-columns: 1fr 1fr; }
  .quiz-hero__content { padding: 60px 0; }
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

.accent-line {
  display: inline-block;
  position: relative;
}

.accent-line::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.geometric-pattern {
  background-image: radial-gradient(circle, rgba(230,184,0,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.border-top-gold {
  border-top: 3px solid var(--accent-gold);
}

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
