/* =========================================================
   Max Vibe Europe — Global Stylesheet
   ========================================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* =========================================================
   CSS Custom Properties
   ========================================================= */
:root {
  /* Brand colours */
  --brand-primary:   #1a3a5c;
  --brand-secondary: #0ea5e9;
  --brand-accent:    #f59e0b;
  --brand-gold:      #d97706;
  --brand-green:     #059669;
  --brand-red:       #dc2626;

  /* Text */
  --text-primary:   #111827;
  --text-secondary: #6b7280;

  /* Backgrounds */
  --bg-primary:   #ffffff;
  --bg-secondary: #f8fafc;
  --bg-dark:      #0f172a;

  /* Borders */
  --border-color: #e5e7eb;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-sans:    'Inter', sans-serif;

  /* Spacing */
  --section-padding: 80px;
  --container-max:   1200px;
  --container-pad:   24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.08), 0 4px 6px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,.10), 0 10px 10px rgba(0,0,0,.04);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  /* Transitions */
  --transition: 0.2s ease;
  --transition-slow: 0.35s ease;
}

/* =========================================================
   CSS Reset
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

/* =========================================================
   Layout Utilities
   ========================================================= */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--section-padding) 0;
}

.section--alt {
  background: var(--bg-secondary);
}

.section--dark {
  background: var(--bg-dark);
  color: #f1f5f9;
}

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section__label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-secondary);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--brand-primary);
  margin-bottom: 16px;
}

.section--dark .section__title {
  color: #f1f5f9;
}

.section__subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
}

/* =========================================================
   Typography
   ========================================================= */
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1.1em;
  color: var(--text-secondary);
  line-height: 1.75;
}

p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--text-primary); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-accent) 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 119, 6, 0.45);
  background: linear-gradient(135deg, #b45309 0%, var(--brand-gold) 100%);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.btn-secondary:hover {
  background: var(--brand-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

/* =========================================================
   Cards
   ========================================================= */
.card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}

.card--flat {
  box-shadow: none;
  border: 1px solid var(--border-color);
}

.card--featured {
  border-color: var(--brand-secondary);
  box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.15), var(--shadow-lg);
}

/* =========================================================
   Badges
   ========================================================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
}

.badge-discount {
  background: #fef2f2;
  color: var(--brand-red);
  border: 1px solid #fecaca;
}

.badge-verified {
  background: #f0fdf4;
  color: var(--brand-green);
  border: 1px solid #bbf7d0;
}

.badge-new {
  background: #eff6ff;
  color: var(--brand-secondary);
  border: 1px solid #bfdbfe;
}

/* =========================================================
   Stars Rating
   ========================================================= */
.stars {
  display: inline-flex;
  gap: 2px;
  line-height: 1;
}

.star {
  color: #fbbf24;
  font-size: 1rem;
}

.star--empty {
  color: #d1d5db;
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.rating-score {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-primary);
}

.rating-count {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* =========================================================
   Form Styles
   ========================================================= */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--bg-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--brand-secondary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

.form-input::placeholder {
  color: #9ca3af;
}

/* =========================================================
   Price Display
   ========================================================= */
.price-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.price-old {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-decoration: line-through;
}

.price-new {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-green);
}

.price-currency {
  font-size: 1rem;
  font-weight: 600;
}

/* =========================================================
   Sticky Navigation
   ========================================================= */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: box-shadow var(--transition-slow);
}

.site-nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo__monogram {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.nav-logo__text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--brand-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-primary);
  background: rgba(26, 58, 92, 0.06);
}

.nav-cta {
  flex-shrink: 0;
}

/* Hamburger toggle (CSS-only) */
.nav-toggle-input {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.nav-toggle-label span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =========================================================
   Banner Image
   ========================================================= */
.banner-wrap {
  padding: 0 140px;
  margin: 48px 0;
}

.banner-wrap img,
img.banner {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: contain;
  box-shadow: var(--shadow-lg);
  display: block;
}

/* =========================================================
   Grid helpers
   ========================================================= */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--bg-dark);
  color: #94a3b8;
  padding: 72px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand__monogram {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #38bdf8 100%);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  color: #fff;
}

.footer-brand__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #f1f5f9;
}

.footer-brand__desc {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 20px;
  color: #94a3b8;
}

.footer-compliance {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #7dd3fc;
}

.footer-col__title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cbd5e1;
  margin-bottom: 16px;
}

.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col__links a {
  font-size: 0.9rem;
  color: #94a3b8;
  transition: color var(--transition);
}

.footer-col__links a:hover {
  color: #f1f5f9;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-disclaimer {
  font-size: 0.8rem;
  line-height: 1.7;
  color: #64748b;
  max-width: 800px;
}

.footer-copyright {
  font-size: 0.8rem;
  color: #475569;
}

/* =========================================================
   Expert Review Block
   ========================================================= */
.expert-review {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  background: #f8fafc;
  margin: 40px 0;
}

.expert-review__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-secondary);
  margin-bottom: 16px;
}

.expert-review__persons {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.expert-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.expert-person__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.expert-person__avatar--placeholder {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expert-person__role {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.expert-person__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.expert-person__title {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* =========================================================
   FAQ Accordion
   ========================================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-color);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  list-style: none;
  gap: 16px;
  transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-item summary:hover {
  color: var(--brand-primary);
}

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--brand-secondary);
  transition: all var(--transition);
}

.faq-item[open] summary::after {
  content: '−';
  background: var(--brand-secondary);
  color: #fff;
  border-color: var(--brand-secondary);
}

.faq-body {
  padding: 0 0 20px;
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* =========================================================
   Ingredient Card
   ========================================================= */
.ingredient-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.ingredient-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.ingredient-card__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.ingredient-card__img--placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.ingredient-card__body {
  padding: 22px 22px 26px;
}

.ingredient-card__sci {
  font-style: italic;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.ingredient-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand-primary);
  margin-bottom: 10px;
}

.ingredient-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.ingredient-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-secondary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.ingredient-card__link:hover {
  gap: 8px;
}

/* =========================================================
   Review Card
   ========================================================= */
.review-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  transition: box-shadow var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-lg);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border-color);
}

.review-card__avatar--initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__meta {
  flex: 1;
}

.review-card__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.review-card__info {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.review-card__stars {
  margin-bottom: 10px;
}

.review-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}

/* =========================================================
   Comparison Table
   ========================================================= */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.comparison-table th {
  background: var(--brand-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
}

.comparison-table th:first-child { border-radius: 0; }

.comparison-table td:first-child {
  font-weight: 500;
  color: var(--text-primary);
}

.comparison-table td.col-featured {
  background: #f0f9ff;
  font-weight: 600;
  color: var(--brand-primary);
}

.comparison-table tr:hover td {
  background: #f8fafc;
}

.comparison-table tr:hover td.col-featured {
  background: #e0f2fe;
}

.check { color: var(--brand-green); font-weight: 700; }
.cross { color: var(--brand-red); }

/* =========================================================
   Trust Badges
   ========================================================= */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-badge__icon {
  font-size: 1.1rem;
}

/* =========================================================
   Country Picker
   ========================================================= */
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.country-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 12px;
  background: var(--bg-primary);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}

.country-card:hover {
  border-color: var(--brand-secondary);
  background: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.country-card__flag {
  font-size: 2rem;
}

.country-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--brand-primary);
}

/* =========================================================
   Hero Section
   ========================================================= */
.hero {
  padding: 88px 0 72px;
  background: linear-gradient(160deg, #f0f7ff 0%, #f8fafc 60%, #fff 100%);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(14, 165, 233, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-secondary);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.hero__title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  color: var(--brand-primary);
  line-height: 1.18;
  margin-bottom: 22px;
}

.hero__title em {
  font-style: normal;
  color: var(--brand-secondary);
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.hero__image-wrap {
  position: relative;
}

.hero__product-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(26, 58, 92, 0.2));
}

/* =========================================================
   Utility classes
   ========================================================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.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; }

.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap    { flex-wrap: wrap; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   Responsive — Tablet (≤ 1024px)
   ========================================================= */
@media (max-width: 1024px) {
  :root {
    --section-padding: 64px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__desc { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__image-wrap { display: none; }

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

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

  .banner-wrap {
    padding: 0 64px;
  }

  .nav-links { display: none; }

  .nav-toggle-label {
    display: flex;
  }

  /* Mobile nav open */
  .nav-toggle-input:checked ~ .nav-mobile {
    display: flex;
  }

  .nav-mobile {
    display: none;
    flex-direction: column;
    padding: 16px 0 24px;
    border-top: 1px solid var(--border-color);
    background: rgba(255,255,255,0.98);
    gap: 4px;
  }

  .nav-mobile .nav-link {
    padding: 12px 16px;
    font-size: 1rem;
    width: 100%;
  }

  .nav-mobile .btn {
    margin: 8px 16px 0;
    width: calc(100% - 32px);
    justify-content: center;
  }
}

/* Mobile hero banner (hidden on desktop, shown on mobile) */
.hero__img--mobile {
  display: none;
  margin-top: 28px;
}

.hero__img--mobile img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}

/* =========================================================
   Responsive — Mobile (≤ 768px)
   ========================================================= */
@media (max-width: 768px) {
  :root {
    --section-padding: 48px;
  }

  .hero__img--mobile {
    display: block;
  }

  .banner-wrap {
    padding: 0;
    margin: 32px 0;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

  .comparison-table th,
  .comparison-table td {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .expert-review__persons {
    flex-direction: column;
    gap: 16px;
  }

  .hero {
    padding: 56px 0 48px;
  }

  .trust-badges {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 8px;
  }

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

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn { width: 100%; }
}
