:root {
  --primary: #C0392B;
  --primary-dark: #922B21;
  --primary-light: #E74C3C;
  --accent: #E67E22;
  --accent-light: #F39C12;
  --bg: #FAFAFA;
  --bg-alt: #FDF2F0;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --border: #E8D5D0;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(192,57,43,0.10);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

/* Desktop nav */
.navigation { display: none; }
.navigation ul { display: flex; gap: 32px; }
.navigation a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.navigation a:hover { color: var(--primary); border-color: var(--primary); }

/* Hamburger */
#menu-toggle { display: none; }
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}
.hamburger .line {
  width: 26px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  padding: 16px 20px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 0; }
.mobile-nav a {
  display: block;
  padding: 13px 0;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 1rem;
}
.mobile-nav a:hover { color: var(--primary); }

#menu-toggle:checked ~ .mobile-nav { display: block; }
#menu-toggle:checked ~ .hamburger .line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#menu-toggle:checked ~ .hamburger .line:nth-child(2) { opacity: 0; }
#menu-toggle:checked ~ .hamburger .line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 768px) {
  .hamburger { display: none; }
  .navigation { display: block; }
  .mobile-nav { display: none !important; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-align: center;
}
.btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-accent { background: var(--accent); }
.btn-accent:hover { background: #D35400; }

/* ===== SECTIONS ===== */
.section { padding: 64px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--primary-dark); color: var(--white); }

.section-label {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 14px;
}
.section-dark .section-label { background: rgba(255,255,255,0.12); color: var(--white); }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
}
.section-dark .section-desc { color: rgba(255,255,255,0.78); }
.text-center { text-align: center; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('img/bg.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(146,43,33,0.88) 0%, rgba(192,57,43,0.65) 60%, rgba(230,126,34,0.30) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 600px; color: var(--white); }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stat {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-stat-item { text-align: center; }
.hero-stat-num { font-size: 1.8rem; font-weight: 900; color: var(--accent-light); }
.hero-stat-label { font-size: 0.78rem; opacity: 0.82; }

/* ===== CARDS ===== */
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 600px) { .cards-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .cards-grid { grid-template-columns: 1fr 1fr 1fr; } }

.cards-grid-4 { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 600px) { .cards-grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .cards-grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(192,57,43,0.14); }
.card-icon {
  width: 52px; height: 52px;
  background: var(--bg-alt);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.6rem;
}
.card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.card-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ===== SPLIT BLOCK ===== */
.split { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 768px) { .split { grid-template-columns: 1fr 1fr; } }
.split-img { border-radius: var(--radius-lg); overflow: hidden; }
.split-img img { width: 100%; height: 360px; object-fit: cover; }
.pill-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.pill-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.pill-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.pill-text { font-size: 0.92rem; }
.pill-text strong { display: block; font-weight: 700; margin-bottom: 3px; }

/* ===== STATS BAR ===== */
.stats-bar { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
@media (min-width: 768px) { .stats-bar { grid-template-columns: repeat(4, 1fr); } }
.stat-cell {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-cell:last-child { border-right: none; }
.stat-num { font-size: 2.2rem; font-weight: 900; color: var(--accent-light); }
.stat-label { font-size: 0.85rem; opacity: 0.82; margin-top: 4px; }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 11px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}
.tl-item { position: relative; margin-bottom: 36px; }
.tl-dot {
  position: absolute;
  left: -26px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
}
.tl-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.tl-text { font-size: 0.92rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item input { display: none; }
.faq-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  gap: 12px;
}
.faq-label::after { content: '+'; font-size: 1.4rem; color: var(--primary); flex-shrink: 0; transition: transform 0.3s; }
.faq-item input:checked ~ .faq-label::after { transform: rotate(45deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: 0 20px;
}
.faq-item input:checked ~ .faq-body { max-height: 300px; padding: 0 20px 18px; }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 600px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .reviews-grid { grid-template-columns: 1fr 1fr 1fr; } }
.review-card {
  background: var(--white);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.review-stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 12px; }
.review-text { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.65; }
.review-author { font-weight: 700; font-size: 0.9rem; }
.review-city { font-size: 0.8rem; color: var(--text-muted); }

/* ===== FORM ===== */
.form-section { background: var(--bg-alt); }
.form-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-weight: 600; font-size: 0.9rem; }
.form-group input,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
  width: 100%;
  background: var(--bg);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-consent { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 10px; margin-top: 6px; }
.form-consent input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; }

/* ===== VALUES ===== */
.values-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .values-grid { grid-template-columns: 1fr 1fr; } }
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.value-icon { font-size: 1.8rem; flex-shrink: 0; }
.value-title { font-weight: 700; margin-bottom: 6px; }
.value-text { font-size: 0.9rem; color: var(--text-muted); }

/* ===== INFO BLOCK ===== */
.info-row { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .info-row { grid-template-columns: 1fr 1fr 1fr; } }
.info-block h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); margin-bottom: 8px; }
.info-block p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; }

/* ===== NUMBERED LIST ===== */
.num-list { display: flex; flex-direction: column; gap: 20px; }
.num-item { display: flex; gap: 18px; align-items: flex-start; }
.num-badge {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem;
}
.num-body { flex: 1; }
.num-title { font-weight: 700; margin-bottom: 5px; }
.num-text { font-size: 0.9rem; color: var(--text-muted); }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
}
.highlight-box h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; }
.highlight-box p { opacity: 0.9; margin-bottom: 24px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--text); color: rgba(255,255,255,0.85); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand .logo { color: var(--primary-light); font-size: 1.4rem; }
.footer-desc { font-size: 0.88rem; margin-top: 12px; opacity: 0.7; line-height: 1.65; }
.footer-col h5 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9rem; opacity: 0.8; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 1; color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  opacity: 0.6;
}

/* ===== DISCLAIMER ===== */
.disclaimer {
  background: #FFF8F6;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 40px;
}

/* ===== MANIFESTO ===== */
.manifesto {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}
.manifesto h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 20px; }
.manifesto p { opacity: 0.9; margin-bottom: 16px; line-height: 1.75; }

/* ===== THANK PAGE ===== */
.thank-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.thank-icon { font-size: 4rem; margin-bottom: 20px; }
.thank-title { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.thank-text { font-size: 1.05rem; color: var(--text-muted); max-width: 500px; margin: 0 auto 32px; }
.next-links { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--text);
  color: rgba(255,255,255,0.9);
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  transform: translateY(0); transition: transform 0.4s ease;
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 0.9rem; }
#cookie-banner a { color: var(--primary-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept {
  background: var(--primary); color: var(--white);
  border: none; padding: 9px 20px; border-radius: 8px;
  font-weight: 700; font-size: 0.9rem; cursor: pointer;
}
.cookie-btn-decline {
  background: transparent; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3); padding: 9px 20px; border-radius: 8px;
  font-weight: 600; font-size: 0.9rem; cursor: pointer;
}
@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-btns { width: 100%; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}

/* ===== LEGAL ===== */
.legal-content h2 { font-size: 1.3rem; font-weight: 700; margin: 32px 0 12px; color: var(--primary); }
.legal-content h3 { font-size: 1.05rem; font-weight: 700; margin: 24px 0 10px; }
.legal-content p { font-size: 0.95rem; margin-bottom: 14px; color: var(--text-muted); }
.legal-content ul { padding-left: 20px; list-style: disc; margin-bottom: 14px; }
.legal-content ul li { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 6px; }

/* ===== UTILITY ===== */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.hidden { display: none !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }

@media (min-width: 768px) {
  .section { padding: 88px 0; }
  .form-wrap { padding: 52px 48px; }
}
