/* ============================================================
   ČistýDomov s.r.o. — Main Stylesheet
   Mobile-first, Classic style — white/blue/green palette
   ============================================================ */

/* === CSS VARIABLES === */
:root {
  --primary: #1a6bbf;
  --primary-dark: #1455a0;
  --primary-light: #e8f0fb;
  --secondary: #27ae60;
  --secondary-dark: #1e8449;
  --accent: #f39c12;
  --text: #2c3e50;
  --text-light: #555e6b;
  --text-muted: #8897a2;
  --border: #dde3ea;
  --bg: #ffffff;
  --bg-alt: #f5f8fc;
  --bg-dark: #1a2636;
  --white: #ffffff;
  --shadow: 0 2px 12px rgba(26, 107, 191, 0.1);
  --shadow-lg: 0 6px 32px rgba(26, 107, 191, 0.15);
  --radius: 8px;
  --radius-lg: 14px;
  --transition: 0.22s ease;
  --font: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
}

/* === RESET & BASE === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--primary-dark);
}
ul {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5 {
  color: var(--text);
  line-height: 1.25;
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

section {
  padding: 48px 0;
}
@media (min-width: 768px) {
  section {
    padding: 64px 0;
  }
}
@media (min-width: 1024px) {
  section {
    padding: 80px 0;
  }
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text);
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.1rem;
  }
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn-secondary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-lg {
  padding: 15px 34px;
  font-size: 1.05rem;
}
.btn-sm {
  padding: 8px 18px;
  font-size: 0.88rem;
}

/* === AD PLACEHOLDERS === */
.ad-placeholder {
  background: #f0f0f0;
  border: 2px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 12px;
  letter-spacing: 0.5px;
}
.ad-wrapper {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}
.ad-leaderboard-wrap {
  display: none;
}
.ad-mobile-wrap {
  display: flex;
}
.ad-billboard-wrap {
  display: none;
}
@media (min-width: 768px) {
  .ad-leaderboard-wrap {
    display: flex;
  }
  .ad-mobile-wrap {
    display: none;
  }
  .ad-billboard-wrap {
    display: flex;
  }
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}
.logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.logo-icon {
  color: var(--primary);
  font-size: 1.4rem;
}
.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}
.logo-text span {
  color: var(--primary);
}

.main-nav {
  display: none;
}
@media (min-width: 1024px) {
  .main-nav {
    display: flex;
  }
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  padding: 6px 13px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  transition: all var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  background: var(--primary-light);
}

.header-cta {
  display: none;
}
@media (min-width: 1024px) {
  .header-cta {
    display: flex;
  }
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.28s;
}
@media (min-width: 1024px) {
  .burger {
    display: none;
  }
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 16px 20px;
}
.mobile-nav.open {
  display: block;
}
.mobile-nav ul {
  flex-direction: column;
  gap: 0;
}
.mobile-nav li {
  border-bottom: 1px solid var(--border);
}
.mobile-nav li:last-child {
  border: none;
}
.mobile-nav a {
  display: block;
  padding: 12px 8px;
  color: var(--text);
  font-size: 1rem;
}
.mobile-nav a:hover {
  color: var(--primary);
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a6bbf 0%, #1455a0 50%, #0e3c78 100%);
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero {
    min-height: 580px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/images/banner-hlavni.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 107, 191, 0.85) 0%,
    rgba(20, 85, 160, 0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 700px;
  padding: 48px 0;
}
.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }
}
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.3rem;
  }
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.92;
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}
.hero-stat-label {
  font-size: 0.82rem;
  opacity: 0.8;
  color: var(--white);
}

/* === SERVICES SECTION === */
.services-section {
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--bg-alt);
}
.service-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light), #d4e8ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.service-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.service-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.service-card-body p {
  color: var(--text-light);
  font-size: 0.92rem;
  flex: 1;
}
.service-price {
  display: inline-block;
  margin-top: 14px;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 5px 13px;
  border-radius: 20px;
}

/* === BENEFITS SECTION === */
.benefits-section {
  background: var(--bg-alt);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.benefit-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.benefit-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.benefit-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* === TEAM SECTION === */
.team-section {
  background: var(--bg);
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.team-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.team-card-img-placeholder {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, #e8f0fb, #c5d8f7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.team-card-body {
  padding: 20px;
}
.team-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.team-role {
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 600;
}
.team-desc {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-top: 8px;
}

/* === TESTIMONIALS === */
.testimonials-section {
  background: var(--primary);
  color: var(--white);
}
.testimonials-section .section-title {
  color: var(--white);
}
.testimonials-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(4px);
}
.testimonial-stars {
  color: #ffd700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
  opacity: 0.95;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
}
.testimonial-location {
  font-size: 0.82rem;
  opacity: 0.75;
}

/* === CONTACT FORM === */
.contact-form-section {
  background: var(--bg-alt);
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .contact-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.contact-info p {
  color: var(--text-light);
  margin-bottom: 24px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-detail-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-detail-text a {
  color: var(--text);
  font-weight: 500;
}
.contact-detail-text a:hover {
  color: var(--primary);
}

.order-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.order-form h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: var(--text);
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 107, 191, 0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-success {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 14px;
  border-radius: var(--radius);
  margin-top: 12px;
  font-size: 0.95rem;
}

/* === BLOG / NEWS CARDS === */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light), #d4e8ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.blog-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.blog-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-card-body h3 a {
  color: var(--text);
}
.blog-card-body h3 a:hover {
  color: var(--primary);
}
.blog-card-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  flex: 1;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}
.blog-read-more:hover {
  gap: 8px;
}

.blog-category {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === ARTICLE PAGE === */
.article-hero {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  padding: 48px 0;
}
.article-hero h1 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .article-hero h1 {
    font-size: 2.3rem;
  }
}
.article-hero-meta {
  opacity: 0.85;
  font-size: 0.9rem;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 48px 0;
}
@media (min-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr 300px;
  }
}

.article-content {
  min-width: 0;
}
.article-content h2 {
  font-size: 1.4rem;
  margin: 28px 0 12px;
  color: var(--text);
}
.article-content h3 {
  font-size: 1.15rem;
  margin: 20px 0 10px;
  color: var(--text);
}
.article-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.75;
}
.article-content ul,
.article-content ol {
  margin: 12px 0 16px 20px;
  color: var(--text-light);
}
.article-content li {
  margin-bottom: 7px;
  line-height: 1.65;
}
.article-content ul {
  list-style: disc;
}
.article-content ol {
  list-style: decimal;
}
.article-content img {
  border-radius: var(--radius-lg);
  margin: 20px 0;
}
.article-content .highlight-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 20px 0;
  color: var(--text);
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-widget {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border);
}
.sidebar-widget h4 {
  font-size: 1rem;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.sidebar-links li {
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.sidebar-links li:last-child {
  border: none;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  padding: 48px 0;
  text-align: center;
}
.page-hero h1 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 2.5rem;
  }
}
.page-hero p {
  opacity: 0.88;
  font-size: 1.05rem;
}

/* === BREADCRUMBS === */
.breadcrumbs {
  background: var(--bg-alt);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumbs nav {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumbs a {
  color: var(--primary);
}
.breadcrumbs span {
  margin: 0 6px;
}

/* === FOOTER === */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}
.footer-col ul a:hover {
  color: var(--white);
}

.footer-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.footer-contacts svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
}
.footer-contacts a {
  color: rgba(255, 255, 255, 0.85);
}
.footer-contacts a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-badge {
  display: flex;
  gap: 20px;
}
.badge-item {
  text-align: center;
}
.badge-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.badge-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.newsletter-form input {
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.92rem;
  outline: none;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-form input:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.footer-legal a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-legal a:hover {
  color: var(--white);
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.9);
  z-index: 9999;
  border-top: 2px solid var(--primary);
  padding: 14px 0;
}
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cookie-content p {
  font-size: 0.9rem;
  margin: 0;
}
.cookie-content a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* === UTILITY === */
.text-center {
  text-align: center;
}
.mt-4 {
  margin-top: 16px;
}
.mt-6 {
  margin-top: 24px;
}
.mb-4 {
  margin-bottom: 16px;
}
.mb-6 {
  margin-bottom: 24px;
}
.bg-alt {
  background: var(--bg-alt);
}

.tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-right: 5px;
  margin-bottom: 5px;
}

/* Sidebar ad */
.sidebar-ad {
  position: sticky;
  top: 84px;
}
