/* ================================================
   HOME.CSS - RFENCE.FR
   Styles page d'accueil - Sécurité / Tech / Entreprise
   ================================================ */

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

.hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(10, 10, 10, 0.78);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 120px 24px 100px;
  text-align: center;
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6ea6ff;
  margin-bottom: 28px;
  background-color: rgba(15, 98, 254, 0.12);
  border: 1px solid rgba(15, 98, 254, 0.25);
  padding: 8px 16px;
  border-radius: 24px;
}

.hero__status-dot {
  width: 8px;
  height: 8px;
  background-color: #42be65;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.hero__title {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__title-accent {
  color: #0f62fe;
}

.hero__desc {
  font-size: 18px;
  color: #a8a8a8;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background-color: #0f62fe;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.hero__btn-primary:hover,
.hero__btn-primary:focus {
  background-color: #0353e9;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}

.hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background-color: transparent;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.25);
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.hero__btn-secondary:hover,
.hero__btn-secondary:focus {
  border-color: rgba(255,255,255,0.6);
  background-color: rgba(255,255,255,0.07);
  color: #ffffff;
  text-decoration: none;
}

/* Hero stats */
.hero__stats {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 16px 28px;
  flex-wrap: wrap;
  justify-content: center;
}

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

.hero__stat strong {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.hero__stat span {
  font-size: 11px;
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero__stat-sep {
  width: 1px;
  height: 32px;
  background-color: rgba(255,255,255,0.12);
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.3);
  animation: bounce-down 2.5s infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =====================
   FEATURED STRIP
   ===================== */
.featured-strip {
  background-color: #161616;
  border-bottom: 1px solid #222;
}

.featured-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.featured-strip__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #42be65;
  white-space: nowrap;
  flex-shrink: 0;
}

.featured-strip__content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  min-width: 0;
}

.featured-strip__cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0f62fe;
  white-space: nowrap;
}

.featured-strip__title {
  font-size: 14px;
  font-weight: 500;
  color: #c6c6c6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.featured-strip__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.featured-strip__title a:hover,
.featured-strip__title a:focus {
  color: #ffffff;
  text-decoration: none;
}

.featured-strip__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #525252;
  white-space: nowrap;
  flex-shrink: 0;
}

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

/* Category filter buttons */
.cat-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cat-filter__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background-color: #f4f4f4;
  color: #525252;
  border: 1.5px solid transparent;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.cat-filter__btn:hover,
.cat-filter__btn:focus {
  background-color: #e8f0ff;
  color: #0f62fe;
  border-color: #b8d0ff;
  outline: none;
}

.cat-filter__btn--active {
  background-color: #161616;
  color: #ffffff;
  border-color: #161616;
}

.cat-filter__btn--active:hover,
.cat-filter__btn--active:focus {
  background-color: #262626;
  color: #ffffff;
  border-color: #262626;
}

.cat-filter__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background-color: rgba(0,0,0,0.12);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
}

.cat-filter__btn--active .cat-filter__count {
  background-color: rgba(255,255,255,0.15);
}

/* Categories grid */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.cat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background-color: #f8f8f8;
  border: 1.5px solid #e8e8e8;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.15s ease;
}

.cat-card:hover,
.cat-card:focus {
  border-color: #0f62fe;
  background-color: #f0f6ff;
  transform: translateY(-2px);
  text-decoration: none;
}

.cat-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #161616;
  border-radius: 8px;
  color: #0f62fe;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.cat-card:hover .cat-card__icon,
.cat-card:focus .cat-card__icon {
  background-color: #0f62fe;
  color: #ffffff;
}

.cat-card__body {
  flex: 1;
  min-width: 0;
}

.cat-card__name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #161616;
  margin-bottom: 3px;
  transition: color 0.2s ease;
}

.cat-card:hover .cat-card__name,
.cat-card:focus .cat-card__name {
  color: #0f62fe;
}

.cat-card__count {
  font-size: 12.5px;
  color: #8a8a8a;
}

.cat-card__arrow {
  color: #c6c6c6;
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.cat-card:hover .cat-card__arrow,
.cat-card:focus .cat-card__arrow {
  color: #0f62fe;
  transform: translateX(3px);
}

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

/* Featured pair */
.articles-featured-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

/* Grid articles */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

/* Article card base */
.article-card {
  background-color: #ffffff;
  border: 1.5px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.article-card:hover,
.article-card:focus-within {
  border-color: #0f62fe;
  transform: translateY(-3px);
}

/* Image wrap */
.article-card__image-wrap {
  position: relative;
  overflow: hidden;
  background-color: #1e1e1e;
}

.article-card__image-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.article-card--featured .article-card__image-wrap img {
  height: 260px;
}

.article-card:hover .article-card__image-wrap img {
  transform: scale(1.03);
}

.article-card__image-wrap--small img {
  height: 180px;
}

/* Badge catégorie sur image */
.article-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background-color: #161616;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  border-left: 3px solid #0f62fe;
}

/* Card body */
.article-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Meta */
.article-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #8a8a8a;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.article-card__read-time {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Title */
.article-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #161616;
  line-height: 1.35;
  margin-bottom: 10px;
}

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

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

.article-card__title a:hover,
.article-card__title a:focus {
  color: #0f62fe;
  text-decoration: none;
}

/* Excerpt */
.article-card__excerpt {
  font-size: 14px;
  color: #525252;
  line-height: 1.6;
  flex: 1;
}

/* See all */
.articles-see-all {
  text-align: center;
}

.btn-see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background-color: #ffffff;
  color: #161616;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid #d0d0d0;
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.btn-see-all:hover,
.btn-see-all:focus {
  border-color: #0f62fe;
  color: #0f62fe;
  background-color: #f0f6ff;
  text-decoration: none;
}

/* =====================
   COMPARISON SECTION
   ===================== */
.comparison-section {
  background-color: #ffffff;
  padding: 72px 0;
}

.comparison-tool {
  background-color: #f8f8f8;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.comparison-tool__header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0;
  background-color: #161616;
  padding: 20px 28px;
  align-items: center;
}

.comparison-tool__col-label {
  text-align: center;
}

.comparison-tool__col-label--empty {
  text-align: left;
}

.comparison-tool__col-label p {
  font-size: 12px;
  color: #8a8a8a;
  margin-top: 5px;
}

.col-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.col-badge--legacy {
  background-color: #3a1c00;
  color: #ff832b;
}

.col-badge--modern {
  background-color: #042e18;
  color: #42be65;
}

.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table thead th {
  display: none;
}

.comparison-table tbody tr {
  border-bottom: 1px solid #e8e8e8;
  transition: background-color 0.15s ease;
}

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

.comparison-table tbody tr:hover {
  background-color: #f0f6ff;
}

.comparison-table td {
  padding: 16px 28px;
  font-size: 14px;
  vertical-align: middle;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: #161616;
  width: 28%;
  border-right: 1px solid #e8e8e8;
}

.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3) {
  width: 36%;
  text-align: center;
}

.val-legacy {
  color: #8a4000;
  background-color: #fff8f2;
}

.val-modern {
  color: #1a6e3a;
  background-color: #f0faf4;
}

.comparison-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 14px 28px;
  font-size: 12.5px;
  color: #8a8a8a;
  background-color: #f0f0f0;
  border-top: 1px solid #e0e0e0;
}

.comparison-note svg {
  flex-shrink: 0;
  margin-top: 1px;
}

/* =====================
   RADAR SECTION (VEILLE)
   ===================== */
.radar-section {
  background-color: #0d0d0d;
  padding: 72px 0;
}

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

.radar-card {
  background-color: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 24px 20px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.radar-card:hover {
  transform: translateY(-3px);
}

.radar-card--critical {
  border-top: 3px solid #da1e28;
}

.radar-card--critical:hover {
  border-color: #da1e28;
}

.radar-card--high {
  border-top: 3px solid #ff832b;
}

.radar-card--high:hover {
  border-color: #ff832b;
}

.radar-card--medium {
  border-top: 3px solid #f1c21b;
}

.radar-card--medium:hover {
  border-color: #f1c21b;
}

.radar-card--watch {
  border-top: 3px solid #42be65;
}

.radar-card--watch:hover {
  border-color: #42be65;
}

.radar-card__level {
  margin-bottom: 16px;
}

.threat-level {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.threat-level--critical {
  background-color: rgba(218, 30, 40, 0.15);
  color: #ff8389;
}

.threat-level--high {
  background-color: rgba(255, 131, 43, 0.15);
  color: #ff832b;
}

.threat-level--medium {
  background-color: rgba(241, 194, 27, 0.15);
  color: #f1c21b;
}

.threat-level--watch {
  background-color: rgba(66, 190, 101, 0.15);
  color: #42be65;
}

.radar-card__icon {
  color: #525252;
  margin-bottom: 14px;
}

.radar-card__title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #e0e0e0;
  margin-bottom: 10px;
  line-height: 1.3;
}

.radar-card__desc {
  font-size: 13.5px;
  color: #7a7a7a;
  line-height: 1.6;
  margin-bottom: 16px;
}

.radar-card__tag {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.radar-card__tag span {
  padding: 3px 9px;
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 3px;
  font-size: 11px;
  color: #8a8a8a;
  font-weight: 500;
}

/* =====================
   NEWSLETTER SECTION
   ===================== */
.newsletter-section {
  background-color: #161616;
  padding: 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.newsletter-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: center;
}

/* Visual side */
.newsletter-section__visual {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto;
  flex-shrink: 0;
}

.nl-visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.nl-visual-ring--1 {
  inset: 0;
  border-color: rgba(15, 98, 254, 0.25);
}

.nl-visual-ring--2 {
  inset: 20px;
  border-color: rgba(15, 98, 254, 0.18);
}

.nl-visual-ring--3 {
  inset: 40px;
  border-color: rgba(15, 98, 254, 0.12);
}

.nl-visual-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(15, 98, 254, 0.08);
  border-radius: 50%;
  border: 1px solid rgba(15, 98, 254, 0.3);
}

/* Content side */
.newsletter-section__title {
  font-size: 30px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.newsletter-section__desc {
  font-size: 15px;
  color: #8a8a8a;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Form */
.newsletter-form__group {
  margin-bottom: 10px;
}

.nl-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.newsletter-form__row {
  display: flex;
  gap: 0;
  align-items: stretch;
  max-width: 520px;
}

.nl-input {
  flex: 1;
  padding: 13px 18px;
  background-color: #262626;
  border: 1.5px solid #333;
  border-right: none;
  border-radius: 4px 0 0 4px;
  font-size: 15px;
  color: #e0e0e0;
  width: 100%;
  min-width: 0;
  transition: border-color 0.2s ease;
}

.nl-input::placeholder {
  color: #525252;
}

.nl-input:focus {
  outline: none;
  border-color: #0f62fe;
}

.nl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background-color: #0f62fe;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid #0f62fe;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.nl-btn:hover,
.nl-btn:focus {
  background-color: #0353e9;
  border-color: #0353e9;
  outline: none;
}

.newsletter-form__privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #525252;
  line-height: 1.5;
}

.newsletter-form__privacy a {
  color: #6ea6ff;
  text-decoration: underline;
}

.newsletter-form__privacy a:hover {
  color: #a8c8ff;
}

.newsletter-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background-color: rgba(66, 190, 101, 0.1);
  border: 1px solid rgba(66, 190, 101, 0.3);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #42be65;
  margin-top: 12px;
}

/* =====================
   ABOUT STRIP
   ===================== */
.about-strip {
  background-color: #f8f8f8;
  padding: 52px 0;
  border-top: 1px solid #e8e8e8;
}

.about-strip__inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.about-strip__avatar {
  position: relative;
  flex-shrink: 0;
}

.about-strip__avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e0e0e0;
}

.about-strip__avatar-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 26px;
  height: 26px;
  background-color: #161616;
  border: 2px solid #f8f8f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-strip__content {
  flex: 1;
  min-width: 0;
}

.about-strip__name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #161616;
  margin-bottom: 8px;
}

.about-strip__text {
  font-size: 14.5px;
  color: #525252;
  line-height: 1.65;
  margin-bottom: 14px;
  max-width: 780px;
}

.about-strip__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #0f62fe;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.about-strip__link:hover,
.about-strip__link:focus {
  gap: 9px;
  text-decoration: none;
}

/* =====================
   RESPONSIVE - MOBILE FIRST
   ===================== */
@media (max-width: 1024px) {
  .radar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .articles-featured-pair {
    grid-template-columns: 1fr;
  }

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

  .newsletter-section__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .newsletter-section__visual {
    display: none;
  }

  .comparison-tool__header {
    padding: 16px 20px;
  }
}

@media (max-width: 768px) {
  /* Hero */
  .hero__content {
    padding: 80px 16px 70px;
  }

  .hero__title {
    font-size: 34px;
  }

  .hero__desc {
    font-size: 15px;
  }

  .hero__stats {
    gap: 18px;
    padding: 14px 20px;
  }

  .hero__stat strong {
    font-size: 22px;
  }

  /* Featured strip */
  .featured-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
  }

  .featured-strip__title {
    white-space: normal;
  }

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

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

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

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

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

  .comparison-tool__header {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .comparison-table td {
    padding: 12px 16px;
    font-size: 13px;
  }

  .comparison-table td:first-child {
    width: auto;
  }

  /* Radar */
  .radar-section {
    padding: 48px 0;
  }

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

  /* Newsletter */
  .newsletter-section__inner {
    padding: 48px 16px;
  }

  .newsletter-form__row {
    flex-direction: column;
    max-width: 100%;
  }

  .nl-input {
    border-right: 1.5px solid #333;
    border-radius: 4px 4px 0 0;
    border-bottom: none;
  }

  .nl-btn {
    border-radius: 0 0 4px 4px;
    justify-content: center;
    width: 100%;
  }

  /* About strip */
  .about-strip {
    padding: 36px 0;
  }

  .about-strip__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .about-strip__text {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 28px;
    letter-spacing: -0.02em;
  }

  .hero__eyebrow {
    font-size: 11px;
    padding: 6px 12px;
  }

  .hero__stats {
    flex-direction: column;
    gap: 12px;
  }

  .hero__stat-sep {
    width: 40px;
    height: 1px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__btn-primary,
  .hero__btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .cat-filter {
    gap: 6px;
  }

  .cat-filter__btn {
    font-size: 12px;
    padding: 6px 12px;
  }

  .article-card__title {
    font-size: 15px;
  }

  .newsletter-section__title {
    font-size: 24px;
  }
}