/* ============================================================
   OrganicWhey — Premium Organic Whey Protein Guide
   ============================================================ */

:root {
  --bg: #FDFCFA;
  --bg-alt: #F5F1EB;
  --dark: #1B2B1B;
  --primary: #3A6B35;
  --primary-light: #4A8B45;
  --accent: #C4883C;
  --accent-light: #D4A85C;
  --white: #FFFFFF;
  --text: #2C2C2C;
  --text-muted: #6B6B6B;
  --border: #E8E3DB;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-hover: 0 4px 12px rgba(0,0,0,0.06), 0 12px 32px rgba(0,0,0,0.1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: rgba(58,107,53,0.15); color: var(--dark); }

/* --- Utilities --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn--primary {
  background: var(--primary);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(58,107,53,0.3);
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn--large {
  padding: 20px 40px;
  font-size: 1.05rem;
}

.section__label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}
.section__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}
.section__subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.7;
}

.section {
  padding: 100px 0;
}
.section--alt {
  background: var(--bg-alt);
}

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253,252,250,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav--scrolled {
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.nav__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
.nav__logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--dark);
  text-decoration: none;
}
.nav__logo-accent {
  color: var(--primary);
}
.nav__links {
  display: flex;
  gap: 36px;
}
.nav__links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--primary);
}
.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 1px;
  transition: all var(--transition);
}

/* --- Hero --- */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(58,107,53,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,136,60,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero__content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero__label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 24px;
}
.hero__title em {
  color: var(--primary);
  font-style: normal;
}
.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero__stat {
  text-align: center;
}
.hero__stat strong {
  display: block;
  font-size: 1.25rem;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 4px;
}
.hero__stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* --- Trust Bar --- */
.trust-bar {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.trust-bar__container {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-bar__item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* --- Products --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  color: var(--white);
}
.product-card__badge--green {
  background: var(--primary);
}
.product-card__badge--amber {
  background: var(--accent);
}

.product-card__image {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.product-card__image--1 {
  background: linear-gradient(135deg, #e8f5e4 0%, #c8e6c0 40%, #a8d89a 100%);
}
.product-card__image--2 {
  background: linear-gradient(135deg, #f5f0e4 0%, #e8dcc8 40%, #d4c8a8 100%);
}
.product-card__image--3 {
  background: linear-gradient(135deg, #e4f0e8 0%, #c0dac8 40%, #9ac8a8 100%);
}
.product-card__image--4 {
  background: linear-gradient(135deg, #f0ebe4 0%, #dcd4c4 40%, #c8bca4 100%);
}
.product-card__image--5 {
  background: linear-gradient(135deg, #e8ece4 0%, #d0d8c4 40%, #b8c4a4 100%);
}
.product-card__image::after {
  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%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='10' fill='none' stroke='rgba(255,255,255,0.2)' stroke-width='1'/%3E%3C/svg%3E") center/80px;
  opacity: 0.5;
}

.product-card__content {
  padding: 28px;
}
.product-card__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}
.product-card__rating {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.product-card__score {
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--primary);
  white-space: nowrap;
}
.product-card__score small {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}
.product-card__bar {
  flex-grow: 1;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.product-card__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 3px;
  width: 0;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card__meta {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.product-card__meta strong {
  color: var(--dark);
  font-weight: 600;
}
.product-card__features {
  margin-bottom: 24px;
}
.product-card__features li {
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--text);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.product-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
}
.product-card__cta {
  display: block;
  width: 100%;
  text-align: center;
}

/* --- Ad Native Slots --- */
.ad-native.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.ad-native.product-card:hover {
  transform: none;
  box-shadow: var(--shadow);
}
.ad-native__label {
  display: block;
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 0 8px;
  opacity: 0.5;
}
.ad-native__content {
  flex: 1;
  width: 100%;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ad-native--banner {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.ad-native--banner .ad-native__content {
  min-height: 120px;
}

/* --- Guide Section --- */
.guide-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.guide-grid__content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--dark);
  line-height: 1.3;
}
.guide-grid__content h3:first-of-type {
  margin-top: 20px;
}
.guide-grid__content p {
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
  font-size: 0.98rem;
}

.checklist-card {
  position: sticky;
  top: 100px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.checklist-card__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 24px;
}
.checklist-card__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.checklist-card__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}
.checklist-card__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.checklist-card__check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* --- Benefits --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.benefit-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.benefit-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}
.benefit-card__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark);
  line-height: 1.3;
}
.benefit-card__text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark);
  text-align: left;
  line-height: 1.5;
  gap: 20px;
  transition: color var(--transition);
}
.faq-item__question:hover {
  color: var(--primary);
}
.faq-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all var(--transition);
  line-height: 1;
}
.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
  border-color: var(--primary);
  color: var(--primary);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-item__answer {
  max-height: 400px;
}
.faq-item__answer p {
  padding: 0 0 24px;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* --- CTA Section --- */
.cta-section {
  background: var(--dark);
  text-align: center;
  padding: 100px 0;
}
.cta-section__content {
  max-width: 600px;
  margin: 0 auto;
}
.cta-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
  color: var(--white);
  line-height: 1.2;
}
.cta-section p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  font-size: 1.1rem;
  line-height: 1.7;
}
.cta-section .btn--primary {
  background: var(--accent);
}
.cta-section .btn--primary:hover {
  background: var(--accent-light);
  box-shadow: 0 4px 16px rgba(196,136,60,0.3);
}

/* --- Footer --- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding-top: 80px;
}
.footer__container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.footer__logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
}
.footer__description {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 16px;
}
.footer__copyright {
  font-size: 0.8rem;
  opacity: 0.5;
}
.footer__heading {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer__links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  display: block;
  padding: 7px 0;
  transition: color var(--transition);
}
.footer__links a:hover {
  color: var(--white);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 60px;
  padding: 24px 0;
}
.footer__bottom p {
  font-size: 0.8rem;
  opacity: 0.4;
  text-align: center;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* --- Scroll Animations --- */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .guide-grid {
    grid-template-columns: 1fr 320px;
    gap: 40px;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__stats {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  body { font-size: 16px; }

  .section { padding: 72px 0; }
  .hero { padding: 80px 0 60px; }

  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav.nav--open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 0;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  }
  .nav.nav--open .nav__links a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .nav.nav--open .nav__links li:last-child a {
    border-bottom: none;
  }

  .hero__title { font-size: clamp(2rem, 7vw, 3rem); }
  .hero__stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .trust-bar__container {
    gap: 20px;
    justify-content: center;
  }
  .trust-bar__item {
    font-size: 0.8rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .guide-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .checklist-card {
    position: static;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer__container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .footer__description {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn { padding: 14px 24px; font-size: 0.9rem; }
  .btn--large { padding: 16px 28px; }
  .hero__cta { flex-direction: column; align-items: center; }
  .hero__cta .btn { width: 100%; max-width: 280px; }
  .product-card__content { padding: 20px; }
  .benefit-card { padding: 28px; }
  .faq-item__question { font-size: 0.95rem; }
}

@media (min-width: 1200px) {
  body { font-size: 18px; }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

/* --- Article Layout --- */
.article-layout {
  max-width: 800px;
}
.article-content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--dark);
  line-height: 1.3;
}
.article-content h3:first-of-type {
  margin-top: 24px;
}
.article-content p {
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
  font-size: 1.02rem;
}
.article-lead {
  font-size: 1.15rem !important;
  color: var(--text-muted) !important;
  line-height: 1.8 !important;
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin-bottom: 32px !important;
}

/* --- Info Cards (certifications) --- */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
  margin-bottom: 20px;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.info-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.info-card p {
  font-size: 0.88rem !important;
  color: var(--text-muted) !important;
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
}

/* --- Type Cards --- */
.type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  margin-bottom: 48px;
}
.type-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.type-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.type-card__header {
  padding: 32px 28px 24px;
  position: relative;
}
.type-card__header--1 {
  background: linear-gradient(135deg, #e8f5e4 0%, #c8e6c0 40%, #a8d89a 100%);
}
.type-card__header--2 {
  background: linear-gradient(135deg, #e4f0e8 0%, #c0dac8 40%, #9ac8a8 100%);
}
.type-card__header--3 {
  background: linear-gradient(135deg, #f5f0e4 0%, #e8dcc8 40%, #d4c8a8 100%);
}
.type-card__number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0,0,0,0.08);
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
}
.type-card__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--dark);
}
.type-card__body {
  padding: 28px;
}
.type-card__stat-row {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}
.type-card__stat {
  flex: 1;
  text-align: center;
}
.type-card__stat:not(:last-child) {
  border-right: 1px solid var(--border);
}
.type-card__stat-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.type-card__stat-value {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
}
.type-card__body p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.type-card__body h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 600;
}
.type-card__body ul {
  list-style: none;
}
.type-card__body li {
  padding: 5px 0;
  font-size: 0.85rem;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}
.type-card__body li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.8rem;
}

/* --- Sidebar Ad --- */
.ad-native--sidebar {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.ad-native--sidebar .ad-native__content {
  min-height: 300px;
}

/* --- Responsive additions --- */
@media (max-width: 1024px) {
  .type-grid {
    grid-template-columns: 1fr 1fr;
  }
  .type-grid .type-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .info-cards {
    grid-template-columns: 1fr;
  }
  .type-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .type-grid .type-card:last-child {
    max-width: none;
  }
}

/* --- Print --- */
@media print {
  .nav, .cta-section, .ad-native, .hero__cta { display: none; }
  body { color: #000; background: #fff; }
  .product-card, .benefit-card, .checklist-card { box-shadow: none; border: 1px solid #ccc; }
  .section, .hero { padding: 32px 0; }
}

/* --- Focus Visible --- */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}