/* ===================================================
   HOME.CSS - Hyperbare.fr - v5.1
   Styles spécifiques à la page d'accueil
   =================================================== */

/* ===== HERO FULLSCREEN ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #0f2460;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 22, 74, 0.72);
  z-index: 1;
}

/* Subtle decorative circles */
.hero-circles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(219,234,254,0.08);
}

.hero-circle-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -80px;
}

.hero-circle-2 {
  width: 320px;
  height: 320px;
  bottom: -60px;
  left: -40px;
}

.hero-circle-3 {
  width: 180px;
  height: 180px;
  top: 30%;
  right: 15%;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(13,148,136,0.2);
  border: 1px solid rgba(13,148,136,0.4);
  color: #5eead4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 24px;
  margin-bottom: 24px;
}

.hero-tag svg { flex-shrink: 0; }

.hero-title {
  font-size: clamp(32px, 5.5vw, 62px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title .hero-accent {
  color: #5eead4;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-hero-primary {
  background-color: #0d9488;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-hero-primary:hover {
  background-color: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,148,136,0.4);
  color: #ffffff;
}

.btn-hero-outline {
  background-color: transparent;
  color: #dbeafe;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(219,234,254,0.4);
  transition: border-color 0.2s, background-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-hero-outline:hover {
  border-color: #dbeafe;
  background-color: rgba(219,234,254,0.1);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Hero stats row */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.hero-stat {
  padding: 12px 28px;
  border-right: 1px solid rgba(219,234,254,0.15);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }

.hero-stat-number {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #5eead4;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  display: block;
  font-size: 12px;
  color: #93c5fd;
  font-weight: 500;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(219,234,254,0.5);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background-color: rgba(219,234,254,0.3);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.6); }
}

/* ===== INTRO SECTION ===== */
.intro-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro-visual {
  position: relative;
}

.intro-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(30,58,138,0.15);
}

.intro-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: #0d9488;
  color: #ffffff;
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 8px 24px rgba(13,148,136,0.35);
}

.intro-badge-float strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 3px;
}

.intro-badge-float span {
  font-size: 11px;
  color: #ccfbf1;
  font-weight: 500;
}

.intro-text .label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 14px;
}

.intro-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
  line-height: 1.2;
}

.intro-text p {
  font-size: 16px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 16px;
}

.intro-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.intro-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #334155;
}

.intro-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #0d9488;
}

/* ===== WHAT IS OHB SECTION ===== */
.ohb-explain {
  padding: 80px 0;
  background-color: #1e3a8a;
}

.ohb-explain-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.ohb-explain-header {
  text-align: center;
  margin-bottom: 56px;
}

.ohb-explain-header .label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5eead4;
  margin-bottom: 14px;
}

.ohb-explain-header h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.ohb-explain-header p {
  font-size: 16px;
  color: #93c5fd;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.ohb-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.ohb-step {
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(219,234,254,0.12);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}

.ohb-step:hover {
  background-color: rgba(255,255,255,0.10);
  border-color: rgba(94,234,212,0.3);
  transform: translateY(-3px);
}

.ohb-step-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(13,148,136,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.ohb-step-number {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5eead4;
  margin-bottom: 8px;
  display: block;
}

.ohb-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.ohb-step p {
  font-size: 13px;
  color: #93c5fd;
  line-height: 1.65;
  margin: 0;
}

/* ===== ARTICLES SECTION ===== */
.articles-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.articles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.articles-header .label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 8px;
}

.articles-header h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.articles-header p {
  font-size: 14px;
  color: #64748b;
  margin: 8px 0 0;
}

.link-all-articles {
  color: #1e3a8a;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 8px 16px;
  border: 1.5px solid #1e3a8a;
  border-radius: 8px;
  transition: background-color 0.2s, color 0.2s;
}
.link-all-articles:hover {
  background-color: #1e3a8a;
  color: #ffffff;
}

/* Articles Grid - featured + regular */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  background-color: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  box-shadow: 0 12px 40px rgba(30,58,138,0.12);
  transform: translateY(-3px);
}

.article-card.featured {
  grid-column: span 2;
}

.article-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background-color: #dbeafe;
}

.article-card.featured .article-card-img {
  aspect-ratio: 21 / 9;
}

.article-card-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.article-card-cat {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1e3a8a;
  background-color: #dbeafe;
  padding: 3px 9px;
  border-radius: 20px;
}

.article-card-cat.teal {
  color: #0f766e;
  background-color: #ccfbf1;
}

.article-card-date {
  font-size: 11px;
  color: #94a3b8;
}

.article-card-readtime {
  font-size: 11px;
  color: #94a3b8;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.article-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.article-card.featured h3 {
  font-size: 21px;
}

.article-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.article-card h3 a:hover { color: #0d9488; }

.article-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* ===== INFO TABLE SECTION ===== */
.info-table-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.info-table-section .section-header {
  margin-bottom: 40px;
}

.info-table-section .label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 8px;
}

/* Indications table */
.indications-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.indications-table thead th {
  background-color: #1e3a8a;
  color: #ffffff;
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
}

.indications-table tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
  vertical-align: top;
}

.indications-table tbody tr:hover td {
  background-color: #f0f9ff;
}

.evidence-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
}

.evidence-high { background-color: #dcfce7; color: #166534; }
.evidence-mid  { background-color: #fef9c3; color: #854d0e; }
.evidence-low  { background-color: #fee2e2; color: #991b1b; }

/* ===== CATEGORIES SECTION ===== */
.categories-section {
  padding: 72px 0;
  background-color: #f0f9ff;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.category-card {
  background-color: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.category-card:hover {
  border-color: #0d9488;
  box-shadow: 0 8px 28px rgba(13,148,136,0.12);
  transform: translateY(-2px);
}

.category-card-icon {
  width: 52px;
  height: 52px;
  background-color: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #1e3a8a;
  text-decoration: none;
  transition: color 0.2s;
}
.category-card-title:hover { color: #0d9488; }

.category-card-count {
  font-size: 12px;
  color: #94a3b8;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  padding: 80px 0;
  background-color: #0d9488;
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.newsletter-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.newsletter-section h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.newsletter-section p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto 14px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 13px 18px;
  border-radius: 9px;
  border: none;
  font-size: 15px;
  background-color: #ffffff;
  color: #1e293b;
  min-width: 0;
}

.newsletter-form input[type="email"]:focus {
  outline: 3px solid #5eead4;
  border-color: transparent;
  box-shadow: none;
}

.newsletter-submit-btn {
  background-color: #1e3a8a;
  color: #ffffff;
  border: none;
  border-radius: 9px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s, transform 0.15s;
  font-family: inherit;
}

.newsletter-submit-btn:hover {
  background-color: #1e3060;
  transform: translateY(-1px);
}

.newsletter-note {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.newsletter-success {
  display: none;
  background-color: rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 16px 20px;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  margin-top: 16px;
}

/* ===== ABOUT TEASER ===== */
.about-teaser {
  padding: 80px 0;
  background-color: #f8fafc;
}

.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-teaser-text .label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 14px;
}

.about-teaser-text h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
}

.about-teaser-text p {
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 14px;
}

.about-teaser-img {
  position: relative;
}

.about-teaser-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(30,58,138,0.12);
}

/* ===== RESPONSIVE (auto-repair) ===== */
@media (max-width: 1024px) {
  .hero-circle-1 {
    width: 360px;
    height: 360px;
    top: -60px;
    right: -50px;
  }

  .hero-circle-2 {
    width: 240px;
    height: 240px;
    bottom: -40px;
    left: -30px;
  }

  .hero-circle-3 {
    width: 140px;
    height: 140px;
  }

  .hero-content {
    max-width: 680px;
    padding: 0 32px;
  }

  .hero-stat {
    padding: 10px 20px;
  }

  .hero-stat-number {
    font-size: 19px;
  }

  .intro-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .intro-badge-float {
    bottom: -14px;
    right: -14px;
    padding: 12px 16px;
  }

  .intro-badge-float strong {
    font-size: 20px;
  }

  .ohb-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .article-card.featured {
    grid-column: span 2;
  }

  .article-card.featured h3 {
    font-size: 18px;
  }

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

  .about-teaser-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .newsletter-form {
    max-width: 420px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    align-items: center;
  }

  .hero-circle-1 {
    width: 260px;
    height: 260px;
    top: -40px;
    right: -40px;
  }

  .hero-circle-2 {
    width: 180px;
    height: 180px;
    bottom: -30px;
    left: -20px;
  }

  .hero-circle-3 {
    display: none;
  }

  .hero-content {
    max-width: 100%;
    padding: 80px 20px 100px;
  }

  .hero-tag {
    font-size: 11px;
    padding: 6px 13px;
    margin-bottom: 18px;
  }

  .hero-actions {
    gap: 12px;
    margin-bottom: 40px;
    flex-direction: column;
    align-items: stretch;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
  }

  .hero-stat {
    padding: 10px 14px;
    border-right: 1px solid rgba(219,234,254,0.15);
    flex: 1 1 calc(50% - 1px);
    min-width: 0;
  }

  .hero-stat:nth-child(2) {
    border-right: none;
  }

  .hero-stat:nth-child(3) {
    border-right: 1px solid rgba(219,234,254,0.15);
    border-top: 1px solid rgba(219,234,254,0.1);
  }

  .hero-stat:last-child {
    border-right: none;
    border-top: 1px solid rgba(219,234,254,0.1);
  }

  .hero-stat-number {
    font-size: 18px;
  }

  .hero-stat-label {
    font-size: 11px;
  }

  .hero-scroll {
    display: none;
  }

  .intro-section {
    padding: 56px 0;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-badge-float {
    bottom: -12px;
    right: 12px;
    padding: 10px 14px;
  }

  .intro-badge-float strong {
    font-size: 18px;
  }

  .intro-text h2 {
    font-size: 22px;
  }

  .intro-text p {
    font-size: 15px;
  }

  .intro-features {
    margin: 18px 0 24px;
    gap: 10px;
  }

  .intro-features li {
    font-size: 14px;
  }

  .ohb-explain {
    padding: 56px 0;
  }

  .ohb-explain-header {
    margin-bottom: 36px;
  }

  .ohb-explain-header h2 {
    font-size: 22px;
  }

  .ohb-explain-header p {
    font-size: 15px;
  }

  .ohb-steps {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .ohb-step {
    padding: 22px 16px;
  }

  .ohb-step-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .ohb-step h3 {
    font-size: 14px;
  }

  .ohb-step p {
    font-size: 12px;
  }

  .articles-section {
    padding: 56px 0;
  }

  .articles-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 28px;
    gap: 12px;
  }

  .articles-header h2 {
    font-size: 22px;
  }

  .link-all-articles {
    font-size: 13px;
    padding: 7px 14px;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .article-card.featured {
    grid-column: span 1;
  }

  .article-card.featured h3 {
    font-size: 17px;
  }

  .article-card.featured .article-card-img {
    aspect-ratio: 16 / 9;
  }

  .article-card h3 {
    font-size: 16px;
  }

  .article-card p {
    font-size: 13px;
  }

  .info-table-section {
    padding: 56px 0;
  }

  .info-table-section .section-header {
    margin-bottom: 28px;
  }

  .indications-table thead th {
    padding: 11px 12px;
    font-size: 11px;
  }

  .indications-table tbody td {
    padding: 11px 12px;
    font-size: 13px;
  }

  .categories-section {
    padding: 48px 0;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 28px;
  }

  .category-card {
    padding: 22px 16px;
    gap: 10px;
  }

  .category-card-icon {
    width: 44px;
    height: 44px;
  }

  .category-card-title {
    font-size: 14px;
  }

  .newsletter-section {
    padding: 56px 0;
  }

  .newsletter-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
  }

  .newsletter-section h2 {
    font-size: 22px;
  }

  .newsletter-section p {
    font-size: 14px;
    margin-bottom: 22px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
  }

  .newsletter-form input[type="email"] {
    width: 100%;
    padding: 13px 16px;
    font-size: 14px;
  }

  .newsletter-submit-btn {
    width: 100%;
    padding: 13px 20px;
    font-size: 14px;
  }

  .about-teaser {
    padding: 56px 0;
  }

  .about-teaser-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-teaser-text h2 {
    font-size: 22px;
  }

  .about-teaser-text p {
    font-size: 14px;
  }

  .about-teaser-img img {
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 72px 16px 88px;
  }

  .hero-tag {
    font-size: 10px;
    padding: 5px 11px;
    gap: 6px;
    margin-bottom: 14px;
  }

  .hero-actions {
    margin-bottom: 32px;
    gap: 10px;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    padding: 12px 16px;
    font-size: 13px;
    border-radius: 9px;
  }

  .hero-stat {
    padding: 8px 10px;
  }

  .hero-stat-number {
    font-size: 16px;
  }

  .hero-stat-label {
    font-size: 10px;
  }

  .intro-section {
    padding: 40px 0;
  }

  .intro-grid {
    gap: 28px;
  }

  .intro-badge-float {
    bottom: -10px;
    right: 8px;
    padding: 8px 12px;
    border-radius: 10px;
  }

  .intro-badge-float strong {
    font-size: 16px;
  }

  .intro-badge-float span {
    font-size: 10px;
  }

  .intro-text h2 {
    font-size: 20px;
  }

  .intro-text p {
    font-size: 14px;
  }

  .intro-features li {
    font-size: 13px;
  }

  .ohb-explain {
    padding: 40px 0;
  }

  .ohb-explain-inner {
    padding: 0 16px;
  }

  .ohb-explain-header {
    margin-bottom: 28px;
  }

  .ohb-explain-header h2 {
    font-size: 20px;
  }

  .ohb-explain-header p {
    font-size: 14px;
  }

  .ohb-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ohb-step {
    padding: 18px 14px;
    border-radius: 12px;
  }

  .ohb-step-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
  }

  .ohb-step h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .ohb-step p {
    font-size: 12px;
  }

  .articles-section {
    padding: 40px 0;
  }

  .articles-header {
    margin-bottom: 20px;
    gap: 10px;
  }

  .articles-header h2 {
    font-size: 20px;
  }

  .articles-header p {
    font-size: 13px;
  }

  .link-all-articles {
    font-size: 12px;
    padding: 6px 12px;
  }

  .articles-grid {
    gap: 14px;
  }

  .article-card-body {
    padding: 16px 16px 18px;
  }

  .article-card h3 {
    font-size: 15px;
  }

  .article-card p {
    font-size: 13px;
  }

  .article-card-cat {
    font-size: 9px;
    padding: 2px 7px;
  }

  .article-card-date,
  .article-card-readtime {
    font-size: 10px;
  }

  .info-table-section {
    padding: 40px 0;
  }

  .indications-table thead th {
    padding: 9px 10px;
    font-size: 10px;
  }

  .indications-table tbody td {
    padding: 9px 10px;
    font-size: 12px;
  }

  .evidence-badge {
    font-size: 10px;
    padding: 2px 7px;
  }

  .categories-section {
    padding: 36px 0;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
  }

  .category-card {
    padding: 18px 12px;
    gap: 8px;
    border-radius: 12px;
  }

  .category-card-icon {
    width: 40px;
    height: 40px;
  }

  .category-card-title {
    font-size: 13px;
  }

  .category-card-count {
    font-size: 11px;
  }

  .newsletter-section {
    padding: 40px 0;
  }

  .newsletter-inner {
    padding: 0 16px;
  }

  .newsletter-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

  .newsletter-section h2 {
    font-size: 20px;
  }

  .newsletter-section p {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .newsletter-form input[type="email"] {
    padding: 12px 14px;
    font-size: 13px;
    border-radius: 8px;
  }

  .newsletter-submit-btn {
    padding: 12px 16px;
    font-size: 13px;
    border-radius: 8px;
  }

  .newsletter-note {
    font-size: 11px;
  }

  .about-teaser {
    padding: 40px 0;
  }

  .about-teaser-inner {
    gap: 24px;
  }

  .about-teaser-text h2 {
    font-size: 20px;
  }

  .about-teaser-text p {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .about-teaser-img img {
    border-radius: 10px;
  }
}