/* ============================================================
   Max Vibe Poland — Global CSS
   Design System: European Online Pharmacy Style
   ============================================================ */

/* ---------- 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 Variables ---------- */
:root {
  --brand-primary: #1a3a5c;
  --brand-secondary: #0ea5e9;
  --brand-accent: #f59e0b;
  --brand-gold: #d97706;
  --brand-green: #059669;
  --brand-red: #dc2626;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-dark: #0f172a;
  --border-color: #e5e7eb;

  --font-heading: 'Poppins', sans-serif;
  --font-sans: 'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.15), 0 8px 16px rgba(0,0,0,0.10);

  --container-max: 1200px;
  --container-narrow: 800px;
  --nav-height: 72px;

  --transition: 0.2s ease;
  --transition-slow: 0.35s ease;
}

/* ---------- Reset & Base ---------- */
*, *::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.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--brand-secondary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--brand-primary);
}

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

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }

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

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

li { margin-bottom: 0.4rem; }

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

/* ---------- Layout ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

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

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

.section--dark h2,
.section--dark h3,
.section--dark p {
  color: #e2e8f0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  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 14px rgba(217, 119, 6, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.45);
  color: #fff;
}

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

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
}

.btn--full {
  width: 100%;
  display: flex;
}

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

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

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

/* ---------- Banner / Image Wraps ---------- */
.banner-wrap {
  margin: 2.5rem 0;
  padding: 0 clamp(0px, 10vw, 140px);
}

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

.banner-wrap--tall img {
  height: auto;
}

/* ---------- Price Display ---------- */
.price-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

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

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

.price-badge {
  display: inline-flex;
  align-items: center;
  background: var(--brand-red);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

/* ---------- Stars Rating ---------- */
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--brand-accent);
  font-size: 1.1rem;
}

.stars-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars-count {
  font-weight: 600;
  color: var(--text-primary);
}

.stars-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ---------- Trust Badges ---------- */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.trust-badge svg {
  color: var(--brand-green);
  flex-shrink: 0;
}

/* ---------- Ingredient Cards ---------- */
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.ingredient-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.ingredient-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

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

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

.ingredient-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- Review Cards ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand-primary);
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.review-card__meta {
  flex: 1;
}

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

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

.review-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-top: 0.75rem;
}

.review-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--brand-green);
  font-weight: 500;
  margin-top: 0.75rem;
}

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

.comparison-table th {
  background: var(--brand-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 1rem 1.25rem;
  text-align: left;
}

.comparison-table th:nth-child(2) {
  background: var(--brand-secondary);
}

.comparison-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.comparison-table tr:nth-child(even) td {
  background: var(--bg-secondary);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

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

.comparison-table .cross {
  color: var(--text-secondary);
}

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

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--brand-primary);
  cursor: pointer;
  list-style: none;
  background: var(--bg-secondary);
  transition: background var(--transition);
  user-select: none;
}

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

.faq-item[open] summary {
  background: var(--brand-primary);
  color: #fff;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-answer {
  padding: 1.1rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--border-color);
  background: var(--bg-primary);
}

/* ---------- Expert / Editorial Review ---------- */
.expert-review {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 2rem 0;
}

.expert-review__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--brand-primary);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.expert-review__team {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.expert-review__person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

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

.expert-review__info {}

.expert-review__role {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 0.1rem;
}

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

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

/* ---------- Highlight Box ---------- */
.highlight-box {
  background: linear-gradient(135deg, rgba(26, 58, 92, 0.05), rgba(14, 165, 233, 0.07));
  border-left: 4px solid var(--brand-secondary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.highlight-box p {
  color: var(--text-primary);
  font-size: 0.95rem;
}

/* ---------- Section Headings ---------- */
.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  margin-bottom: 0.75rem;
}

.section-heading p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- Benefits List ---------- */
.benefits-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.benefits-list li::before {
  content: '✓';
  color: var(--brand-green);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ---------- Steps / How To ---------- */
.steps-list {
  list-style: none;
  padding: 0;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  counter-increment: steps;
}

.steps-list li::before {
  content: counter(steps);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  height: var(--nav-height);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand-primary);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  flex: 1;
}

.nav__links a {
  display: block;
  padding: 0.4rem 0.65rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav__links a:hover {
  color: var(--brand-primary);
  background: var(--bg-secondary);
}

.nav__cta {
  flex-shrink: 0;
}

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-primary);
  margin-left: auto;
}

.nav__mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  z-index: 99;
  flex-direction: column;
  padding: 1.5rem;
  gap: 0.5rem;
  overflow-y: auto;
}

.nav__mobile-menu.is-open {
  display: flex;
}

.nav__mobile-menu a {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: var(--radius-md);
  border-bottom: 1px solid var(--border-color);
  text-decoration: none;
}

.nav__mobile-menu a:hover {
  background: var(--bg-secondary);
  color: var(--brand-primary);
}

.nav__mobile-cta {
  margin-top: 1rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-dark);
  color: #94a3b8;
  padding: 3.5rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer__brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-top: 0.75rem;
  max-width: 280px;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: #e2e8f0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

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

.footer__links a:hover {
  color: #e2e8f0;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__disclaimer {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 700px;
}

.footer__copyright {
  font-size: 0.8rem;
  color: #64748b;
  flex-shrink: 0;
}

/* ---------- Order Form ---------- */
.order-form {
  background: var(--bg-primary);
  border: 2px solid var(--brand-secondary);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}

.order-form__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--brand-primary);
  text-align: center;
  margin-bottom: 1.25rem;
}

.order-form__price {
  text-align: center;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
}

.order-form .price-new {
  font-size: 2.25rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

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

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

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

.form-phone-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

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

.form-phone-prefix {
  padding: 0.875rem 0.875rem;
  background: var(--bg-secondary);
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-right: 1px solid var(--border-color);
  flex-shrink: 0;
}

.form-phone-wrap input {
  border: none;
  box-shadow: none;
  border-radius: 0;
  flex: 1;
  padding: 0.875rem 1rem;
}

.form-phone-wrap input:focus {
  box-shadow: none;
}

.order-form__privacy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-align: center;
  justify-content: center;
  margin-top: 0.75rem;
}

.order-form__privacy svg {
  color: var(--brand-green);
  flex-shrink: 0;
}

.order-form__msg {
  display: none;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.75rem;
  text-align: center;
}

.order-form__msg--success {
  background: rgba(5, 150, 105, 0.1);
  color: var(--brand-green);
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.order-form__msg--error {
  background: rgba(220, 38, 38, 0.08);
  color: var(--brand-red);
  border: 1px solid rgba(220, 38, 38, 0.15);
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0d2a47 60%, var(--brand-primary) 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230ea5e9' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: #7dd3fc;
  padding: 0.35rem 0.875rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.hero__lead {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 520px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #94a3b8;
}

.hero__trust span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hero__product-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__product-img img {
  max-width: 340px;
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.gap-2 { gap: 1rem; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }
}

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

.hero__img--mobile img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__product-img {
    display: none;
  }

  .hero__img--mobile {
    display: block;
  }

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

  .section { padding: 2.5rem 0; }

  .banner-wrap { padding: 0; }

  .comparison-table { font-size: 0.85rem; }
  .comparison-table th,
  .comparison-table td { padding: 0.625rem 0.75rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 480px) {
  .price-new { font-size: 1.75rem; }
  .btn--lg { padding: 0.9rem 1.5rem; font-size: 1rem; }
}
