/* ===================================================
   HOME CSS - Lissac Lille
   Optique & Santé visuelle - 2026
   =================================================== */

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

.hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.22;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-color: #1e1b4b;
  opacity: 0.55;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 840px;
  padding: 0 24px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(52,211,153,0.15);
  border: 1px solid rgba(52,211,153,0.35);
  color: #34d399;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero__title span {
  color: #a5b4fc;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__scroll-arrow {
  width: 24px;
  height: 24px;
  animation: bounceDown 1.8s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* === FEATURED ARTICLE - HERO SECONDARY === */
.hero__featured {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 960px;
  margin-top: 48px;
  padding: 0 24px;
}

.featured-card {
  background-color: rgba(255,255,255,0.07);
  border: 1px solid rgba(165,180,252,0.2);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.featured-card__image-wrap {
  overflow: hidden;
  max-height: 320px;
}

.featured-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-card__body {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-card__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #34d399;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.featured-card__title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 14px;
}

.featured-card__title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.featured-card__title a:hover {
  color: #a5b4fc;
}

.featured-card__excerpt {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 22px;
}

.featured-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: rgba(165,180,252,0.7);
}

.featured-card__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* === STATS BAND === */
.stats-band {
  background-color: #312e81;
  padding: 40px 0;
}

.stats-band__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(165,180,252,0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item__icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  color: #34d399;
}

.stat-item__value {
  display: block;
  font-size: 1.9rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item__label {
  display: block;
  font-size: 0.82rem;
  color: #a5b4fc;
  letter-spacing: 0.03em;
}

/* === ABOUT INTRO STRIP === */
.about-strip {
  background-color: #f0eeff;
  padding: 56px 0;
}

.about-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.about-strip__visual {
  position: relative;
}

.about-strip__image {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.about-strip__badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background-color: #34d399;
  color: #1a1a2e;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 14px;
  text-align: center;
  line-height: 1.4;
  max-width: 160px;
  box-shadow: 0 6px 20px rgba(52,211,153,0.3);
}

.about-strip__content {}

.about-strip__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #312e81;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-strip__title {
  font-size: 2rem;
  font-weight: 800;
  color: #1e1b4b;
  margin-bottom: 18px;
  line-height: 1.2;
}

.about-strip__text {
  font-size: 0.97rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 28px;
}

.about-strip__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #ffffff;
  border: 1.5px solid #c7d2fe;
  color: #312e81;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 50px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.about-tag:hover {
  background-color: #312e81;
  border-color: #312e81;
  color: #ffffff;
}

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

.articles-section__header {
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.articles-section__header-left {}

.articles-section__all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #312e81;
  text-decoration: none;
  padding: 9px 20px;
  border: 2px solid #c7d2fe;
  border-radius: 50px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.articles-section__all-link:hover {
  background-color: #312e81;
  color: #ffffff;
  border-color: #312e81;
}

/* === FILTER TABS === */
.filter-tabs {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid #e5e0f8;
  background-color: #ffffff;
  color: #4b5563;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  user-select: none;
}

.filter-tab:hover {
  border-color: #a5b4fc;
  color: #312e81;
}

.filter-tab.active,
.filter-tab[data-active="true"] {
  background-color: #312e81;
  color: #ffffff;
  border-color: #312e81;
}

.filter-tab__count {
  background-color: rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 1px 7px;
  font-size: 0.75rem;
  font-weight: 700;
}

.filter-tab.active .filter-tab__count {
  background-color: rgba(255,255,255,0.25);
}

.filter-tab:not(.active) .filter-tab__count {
  background-color: #ede9fe;
  color: #312e81;
}

/* === ARTICLES GRID === */
.articles-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.articles-grid .article-card:first-child {
  grid-column: span 2;
}

.articles-grid .article-card:first-child .article-card__title {
  font-size: 1.3rem;
}

.articles-grid .article-card:first-child .article-card__image {
  aspect-ratio: 16/8;
}

/* === TOPICS / CATEGORIES SECTION === */
.topics-section {
  background-color: #1e1b4b;
  padding: 80px 0;
}

.topics-section .section-label {
  color: #34d399;
}

.topics-section .section-title {
  color: #ffffff;
}

.topics-section .section-subtitle {
  color: rgba(165,180,252,0.8);
}

.topics-grid {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.topic-card {
  background-color: rgba(165,180,252,0.07);
  border: 1px solid rgba(165,180,252,0.15);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.topic-card:hover {
  background-color: rgba(165,180,252,0.14);
  border-color: rgba(165,180,252,0.35);
  transform: translateY(-3px);
}

.topic-card__icon {
  width: 48px;
  height: 48px;
  color: #a5b4fc;
  transition: color 0.2s ease;
}

.topic-card:hover .topic-card__icon {
  color: #34d399;
}

.topic-card__name {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}

.topic-card__count {
  color: rgba(165,180,252,0.6);
  font-size: 0.78rem;
}

/* === VISION TOOLS SECTION === */
.tools-section {
  padding: 80px 0;
  background-color: #f8f7ff;
}

.tools-grid {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* === CALCULATOR TOOL === */
.tool-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 2px 14px rgba(49,46,129,0.08);
  border: 1px solid #ede9fe;
}

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

.tool-card__icon-wrap {
  width: 52px;
  height: 52px;
  background-color: #ede9fe;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #312e81;
}

.tool-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1e1b4b;
  margin-bottom: 4px;
}

.tool-card__subtitle {
  font-size: 0.83rem;
  color: #9ca3af;
}

/* === REIMBURSEMENT CALCULATOR === */
.calc-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calc-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #4b5563;
}

.calc-select,
.calc-input {
  padding: 10px 14px;
  border: 2px solid #e5e0f8;
  border-radius: 10px;
  font-size: 0.88rem;
  font-family: inherit;
  color: #1e1b4b;
  background-color: #f8f7ff;
  transition: border-color 0.2s ease;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
}

.calc-select:focus,
.calc-input:focus {
  outline: none;
  border-color: #312e81;
  background-color: #ffffff;
}

.calc-result {
  background-color: #f0eeff;
  border-radius: 12px;
  padding: 18px 20px;
  border-left: 4px solid #312e81;
}

.calc-result__label {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 4px;
  font-weight: 600;
}

.calc-result__value {
  font-size: 1.6rem;
  font-weight: 900;
  color: #312e81;
}

.calc-result__note {
  font-size: 0.76rem;
  color: #9ca3af;
  margin-top: 6px;
}

.calc-btn {
  background-color: #312e81;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
  align-self: flex-start;
}

.calc-btn:hover {
  background-color: #3730a3;
  transform: translateY(-1px);
}

.calc-btn:focus-visible {
  outline: 2px solid #34d399;
  outline-offset: 2px;
}

/* === VISION TEST TOOL === */
.vision-test {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vision-test__scale {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vision-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.vision-row__label {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 600;
  width: 50px;
  flex-shrink: 0;
  text-align: right;
}

.vision-row__bar {
  flex: 1;
  height: 8px;
  background-color: #ede9fe;
  border-radius: 50px;
  overflow: hidden;
}

.vision-row__fill {
  height: 100%;
  border-radius: 50px;
  background-color: #312e81;
}

.vision-row__letters {
  font-size: 0.78rem;
  color: #4b5563;
  font-weight: 700;
  letter-spacing: 0.1em;
  min-width: 80px;
}

.vision-test__info {
  background-color: #f0eeff;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.82rem;
  color: #4b5563;
  line-height: 1.6;
}

.vision-test__info strong {
  color: #312e81;
}

/* === COMPARISON TABLE SECTION === */
.comparison-section {
  background-color: #f0eeff;
  padding: 80px 0;
}

.comparison-table-wrap {
  max-width: 1000px;
  margin: 48px auto 0;
  padding: 0 24px;
}

/* === NEWSLETTER SECTION === */
.newsletter-section {
  background-color: #312e81;
  padding: 72px 0;
}

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

.newsletter-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(52,211,153,0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #34d399;
}

.newsletter-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.newsletter-desc {
  font-size: 0.97rem;
  color: rgba(165,180,252,0.85);
  margin-bottom: 32px;
  line-height: 1.65;
}

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

.newsletter-input {
  flex: 1;
  padding: 13px 18px;
  border-radius: 50px;
  border: 2px solid rgba(165,180,252,0.3);
  background-color: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 0.92rem;
  font-family: inherit;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  min-width: 0;
}

.newsletter-input::placeholder {
  color: rgba(165,180,252,0.6);
}

.newsletter-input:focus {
  outline: none;
  border-color: #34d399;
  background-color: rgba(255,255,255,0.12);
}

.newsletter-submit {
  background-color: #34d399;
  color: #1a1a2e;
  border: none;
  border-radius: 50px;
  padding: 13px 24px;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.newsletter-submit:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.newsletter-disclaimer {
  margin-top: 14px;
  font-size: 0.78rem;
  color: rgba(165,180,252,0.5);
}

.newsletter-success {
  display: none;
  background-color: rgba(52,211,153,0.15);
  border: 1px solid rgba(52,211,153,0.4);
  border-radius: 12px;
  padding: 16px 20px;
  color: #34d399;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
}

/* === BUTTON MORPHING === */
.btn-morph {
  position: relative;
  overflow: hidden;
  background-color: #34d399;
  color: #1a1a2e;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.15s ease, border-radius 0.3s ease, padding 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-morph:hover {
  background-color: #2ec48a;
  border-radius: 14px;
  transform: scale(1.03);
  padding: 14px 36px;
}

.btn-morph:active {
  transform: scale(0.97);
}

.btn-morph:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.btn-morph--dark {
  background-color: #312e81;
  color: #ffffff;
}

.btn-morph--dark:hover {
  background-color: #3730a3;
}

/* === READING PROGRESS & ARTICLE META === */
.article-read-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: #ede9fe;
  color: #312e81;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

/* === COLOR TRANSITIONS === */
.color-transition-card {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.color-transition-card:hover {
  background-color: #ede9fe;
  border-color: #a5b4fc;
}

/* ===== RESPONSIVE (auto-repair) ===== */
@media (max-width: 1024px) {
  .hero__content {
    max-width: 700px;
  }

  .hero__featured {
    max-width: 800px;
    margin-top: 36px;
  }

  .featured-card {
    grid-template-columns: 1fr 1fr;
  }

  .featured-card__body {
    padding: 24px 28px;
  }

  .featured-card__title {
    font-size: 1.2rem;
  }

  .stats-band__inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .about-strip__inner {
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
  }

  .about-strip {
    padding: 48px 0;
  }

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

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

  .articles-grid .article-card:first-child {
    grid-column: span 2;
  }

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

  .tools-section {
    padding: 60px 0;
  }

  .tools-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .tool-card {
    padding: 26px;
  }

  .topics-section {
    padding: 60px 0;
  }

  .comparison-section {
    padding: 60px 0;
  }

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

  .newsletter-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    justify-content: flex-start;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero__content {
    max-width: 100%;
    padding: 0 20px;
  }

  .hero__eyebrow {
    font-size: 0.72rem;
    padding: 6px 14px;
    margin-bottom: 20px;
  }

  .hero__subtitle {
    margin-bottom: 28px;
  }

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

  .hero__scroll-hint {
    bottom: 20px;
    font-size: 0.7rem;
  }

  .hero__featured {
    margin-top: 32px;
    padding: 0 16px;
  }

  .featured-card {
    grid-template-columns: 1fr;
  }

  .featured-card__image-wrap {
    max-height: 220px;
  }

  .featured-card__body {
    padding: 22px 22px;
  }

  .featured-card__title {
    font-size: 1.1rem;
  }

  .featured-card__excerpt {
    font-size: 0.88rem;
  }

  .featured-card__meta {
    flex-wrap: wrap;
    gap: 10px;
  }

  .stats-band {
    padding: 28px 0;
  }

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(165,180,252,0.15);
    padding: 16px 12px;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(165,180,252,0.15);
  }

  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .stat-item__value {
    font-size: 1.6rem;
  }

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

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

  .about-strip__badge {
    bottom: -12px;
    right: -8px;
    font-size: 0.76rem;
    padding: 10px 14px;
    max-width: 140px;
  }

  .about-strip__title {
    font-size: 1.65rem;
  }

  .about-strip__text {
    font-size: 0.93rem;
  }

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

  .articles-section__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
    gap: 16px;
  }

  .articles-section__all-link {
    font-size: 0.84rem;
    padding: 8px 16px;
  }

  .filter-tabs {
    gap: 8px;
    margin-bottom: 28px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .filter-tab {
    font-size: 0.8rem;
    padding: 7px 14px;
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .articles-grid .article-card:first-child {
    grid-column: span 1;
  }

  .articles-grid .article-card:first-child .article-card__title {
    font-size: 1.1rem;
  }

  .articles-grid .article-card:first-child .article-card__image {
    aspect-ratio: 16/9;
  }

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

  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 32px;
  }

  .topic-card {
    padding: 18px 14px;
    gap: 10px;
    border-radius: 14px;
  }

  .topic-card__icon {
    width: 38px;
    height: 38px;
  }

  .topic-card__name {
    font-size: 0.82rem;
  }

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

  .tools-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 32px;
  }

  .tool-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .tool-card__header {
    gap: 12px;
    margin-bottom: 20px;
  }

  .tool-card__title {
    font-size: 1rem;
  }

  .calc-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .calc-result__value {
    font-size: 1.4rem;
  }

  .calc-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    align-self: stretch;
    padding: 12px 20px;
  }

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

  .comparison-table-wrap {
    padding: 0 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

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

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

  .newsletter-title {
    font-size: 1.45rem;
  }

  .newsletter-desc {
    font-size: 0.92rem;
  }

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

  .newsletter-input {
    width: 100%;
    box-sizing: border-box;
    border-radius: 14px;
    padding: 12px 16px;
  }

  .newsletter-submit {
    width: 100%;
    border-radius: 14px;
    padding: 13px 20px;
  }

  .btn-morph {
    padding: 12px 26px;
    font-size: 0.95rem;
  }

  .btn-morph:hover {
    padding: 12px 30px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero__content {
    padding: 0 16px;
  }

  .hero__eyebrow {
    font-size: 0.68rem;
    padding: 5px 12px;
    margin-bottom: 16px;
    letter-spacing: 0.07em;
  }

  .hero__actions {
    gap: 10px;
    width: 100%;
  }

  .hero__scroll-hint {
    bottom: 14px;
    font-size: 0.65rem;
  }

  .hero__featured {
    margin-top: 24px;
    padding: 0 12px;
  }

  .featured-card {
    border-radius: 14px;
  }

  .featured-card__image-wrap {
    max-height: 180px;
  }

  .featured-card__body {
    padding: 16px 16px;
  }

  .featured-card__title {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .featured-card__excerpt {
    font-size: 0.84rem;
    margin-bottom: 16px;
  }

  .featured-card__label {
    font-size: 0.68rem;
    margin-bottom: 10px;
  }

  .featured-card__meta {
    font-size: 0.74rem;
    gap: 8px;
  }

  .stats-band {
    padding: 20px 0;
  }

  .stats-band__inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 12px;
  }

  .stat-item {
    padding: 14px 8px;
  }

  .stat-item__value {
    font-size: 1.4rem;
  }

  .stat-item__label {
    font-size: 0.74rem;
  }

  .stat-item__icon {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
  }

  .about-strip {
    padding: 32px 0;
  }

  .about-strip__inner {
    padding: 0 16px;
    gap: 24px;
  }

  .about-strip__badge {
    bottom: -10px;
    right: -4px;
    font-size: 0.7rem;
    padding: 8px 10px;
    max-width: 120px;
    border-radius: 10px;
  }

  .about-strip__title {
    font-size: 1.4rem;
  }

  .about-strip__kicker {
    font-size: 0.72rem;
  }

  .about-strip__text {
    font-size: 0.88rem;
    margin-bottom: 20px;
  }

  .about-tag {
    font-size: 0.76rem;
    padding: 6px 10px;
  }

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

  .articles-section__header {
    padding: 0 16px;
    margin-bottom: 24px;
  }

  .articles-section__all-link {
    font-size: 0.8rem;
    padding: 7px 14px;
  }

  .filter-tabs {
    padding: 0 16px 4px;
    margin-bottom: 20px;
  }

  .filter-tab {
    font-size: 0.76rem;
    padding: 6px 12px;
  }

  .filter-tab__count {
    font-size: 0.68rem;
    padding: 1px 5px;
  }

  .articles-grid {
    padding: 0 16px;
    gap: 16px;
  }

  .articles-grid .article-card:first-child .article-card__image {
    aspect-ratio: 4/3;
  }

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

  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 16px;
    gap: 10px;
    margin-top: 24px;
  }

  .topic-card {
    padding: 14px 10px;
    gap: 8px;
    border-radius: 12px;
  }

  .topic-card__icon {
    width: 32px;
    height: 32px;
  }

  .topic-card__name {
    font-size: 0.76rem;
  }

  .topic-card__count {
    font-size: 0.7rem;
  }

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

  .tools-grid {
    padding: 0 16px;
    gap: 16px;
    margin-top: 24px;
  }

  .tool-card {
    padding: 18px 14px;
    border-radius: 14px;
  }

  .tool-card__header {
    gap: 10px;
    margin-bottom: 16px;
  }

  .tool-card__icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .tool-card__title {
    font-size: 0.95rem;
  }

  .tool-card__subtitle {
    font-size: 0.76rem;
  }

  .calc-form {
    gap: 12px;
  }

  .calc-select,
  .calc-input {
    font-size: 0.84rem;
    padding: 9px 12px;
  }

  .calc-label {
    font-size: 0.76rem;
  }

  .calc-result {
    padding: 14px 16px;
  }

  .calc-result__value {
    font-size: 1.25rem;
  }

  .calc-result__label {
    font-size: 0.74rem;
  }

  .calc-result__note {
    font-size: 0.7rem;
  }

  .calc-btn {
    font-size: 0.86rem;
    padding: 11px 16px;
  }

  .vision-row__label {
    font-size: 0.68rem;
    width: 40px;
  }

  .vision-row__letters {
    font-size: 0.7rem;
    min-width: 60px;
  }

  .vision-test__info {
    font-size: 0.76rem;
    padding: 12px 14px;
  }

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

  .comparison-table-wrap {
    padding: 0 12px;
  }

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

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

  .newsletter-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    margin-bottom: 14px;
  }

  .newsletter-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }

  .newsletter-desc {
    font-size: 0.86rem;
    margin-bottom: 24px;
  }

  .newsletter-input {
    font-size: 0.86rem;
    padding: 11px 14px;
  }

  .newsletter-submit {
    font-size: 0.86rem;
    padding: 11px 16px;
  }

  .newsletter-disclaimer {
    font-size: 0.72rem;
  }

  .btn-morph {
    padding: 11px 22px;
    font-size: 0.88rem;
    width: 100%;
    justify-content: center;
  }

  .btn-morph:hover {
    padding: 11px 26px;
  }
}