/* ===== HOME CSS - CROQ-RESTAURANTS.FR ===== */
/* Design diagonal créatif food blog */

/* ============================
   HERO SECTION
   ============================ */
.hero-section {
  position: relative;
  background-color: #2c2c54;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-diagonal-bg {
  position: absolute;
  right: -5%;
  top: 0;
  width: 55%;
  height: 100%;
  background-color: #1a1a3e;
  transform: skewX(-6deg);
  transform-origin: top right;
}

.hero-shape-1 {
  position: absolute;
  right: 8%;
  bottom: -40px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 99, 72, 0.12);
  border-radius: 50%;
}

.hero-shape-2 {
  position: absolute;
  left: 35%;
  top: -60px;
  width: 140px;
  height: 140px;
  background-color: rgba(255, 99, 72, 0.08);
  border-radius: 50%;
}

.hero-content-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(255, 99, 72, 0.18);
  color: #ff6348;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 99, 72, 0.3);
}

.hero-title {
  font-size: 46px;
  color: #ffffff;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  color: #ff6348;
  display: inline;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(236, 240, 241, 0.8);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-actions .btn-secondary {
  background-color: transparent;
  color: #ecf0f1;
  border-color: rgba(236, 240, 241, 0.4);
}

.hero-actions .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: #ffffff;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-stat-num {
  font-size: 28px;
  font-weight: 900;
  color: #ff6348;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(236, 240, 241, 0.65);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 3px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.15);
}

.hero-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.hero-image-frame img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hero-image-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background-color: #ff6348;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(255, 99, 72, 0.4);
  white-space: nowrap;
}

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

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

.cat-card {
  display: block;
  padding: 28px 24px;
  background-color: #f8f9fb;
  border-radius: 16px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #ff6348;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.cat-card:hover::before,
.cat-card:focus::before {
  transform: scaleX(1);
}

.cat-card:hover,
.cat-card:focus {
  border-color: rgba(255, 99, 72, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44, 44, 84, 0.1);
  text-decoration: none;
  outline: none;
}

.cat-card:focus-visible {
  outline: 2px solid #ff6348;
  outline-offset: 2px;
}

.cat-card--accent {
  background-color: #ff6348;
}

.cat-card--accent .cat-card-icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.cat-card--accent .cat-card-title {
  color: #ffffff;
}

.cat-card--accent .cat-card-desc {
  color: rgba(255, 255, 255, 0.85);
}

.cat-card--accent .cat-card-count {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.cat-card-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(255, 99, 72, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6348;
  margin-bottom: 16px;
}

.cat-card-title {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #2c2c54;
  margin-bottom: 8px;
}

.cat-card-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0 0 16px;
}

.cat-card-count {
  display: inline-block;
  background-color: rgba(44, 44, 84, 0.07);
  color: #2c2c54;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ============================
   FEATURED SECTION
   ============================ */
.featured-section {
  padding: 0 0 80px;
  background-color: #ffffff;
}

.featured-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 52px;
  align-items: center;
  background-color: #f8f9fb;
  border-radius: 24px;
  overflow: hidden;
}

.featured-image-wrap {
  position: relative;
  height: 100%;
  min-height: 340px;
}

.featured-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 340px;
  display: block;
}

.featured-cat-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #ff6348;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 20px;
}

.featured-content {
  padding: 40px 48px 40px 0;
}

.featured-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #ff6348;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.featured-title {
  font-size: 26px;
  font-weight: 800;
  color: #2c2c54;
  line-height: 1.3;
  margin-bottom: 16px;
}

.featured-title a {
  color: #2c2c54;
  text-decoration: none;
  transition: color 0.2s;
}

.featured-title a:hover {
  color: #ff6348;
  text-decoration: none;
}

.featured-excerpt {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 24px;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.meta-date,
.meta-read {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #9ca3af;
  font-weight: 500;
}

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

.tabs-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: center;
}

.tab-btn {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(44, 44, 84, 0.15);
  background-color: #ffffff;
  color: #2c2c54;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.tab-btn:hover,
.tab-btn:focus {
  border-color: #ff6348;
  color: #ff6348;
  outline: none;
}

.tab-btn--active {
  background-color: #ff6348;
  color: #ffffff;
  border-color: #ff6348;
}

.tab-btn--active:hover {
  background-color: #e8563e;
  color: #ffffff;
  border-color: #e8563e;
}

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

.article-card {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(44, 44, 84, 0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(44, 44, 84, 0.12);
}

.article-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

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

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

.article-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #2c2c54;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
}

.article-card-body {
  padding: 20px;
}

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

.article-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
}

.article-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #2c2c54;
  line-height: 1.4;
  margin-bottom: 10px;
}

.article-card-title a {
  color: #2c2c54;
  text-decoration: none;
  transition: color 0.2s;
}

.article-card-title a:hover {
  color: #ff6348;
  text-decoration: none;
}

.article-card-excerpt {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.articles-more {
  text-align: center;
}

/* ============================
   CALCULATOR SECTION
   ============================ */
.calculator-section {
  background-color: #2c2c54;
  position: relative;
  padding: 80px 0;
}

.calc-diagonal-top {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 60px;
  background-color: #2c2c54;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.calc-diagonal-bottom {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  height: 60px;
  background-color: #2c2c54;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.calc-tips {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-tip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  border-left: 3px solid #ff6348;
}

.calc-tip svg {
  color: #ff6348;
  flex-shrink: 0;
  margin-top: 1px;
}

.calc-tip span {
  font-size: 13px;
  color: rgba(236, 240, 241, 0.85);
  line-height: 1.5;
}

.calc-widget {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.calc-widget-header {
  background-color: #ff6348;
  color: #ffffff;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
}

.calc-fields {
  padding: 24px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.calc-field-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calc-label {
  font-size: 13px;
  font-weight: 600;
  color: #2c2c54;
}

.calc-hint {
  font-size: 11px;
  color: #9ca3af;
}

.calc-input {
  padding: 10px 14px;
  border: 1.5px solid rgba(44, 44, 84, 0.15);
  border-radius: 8px;
  font-size: 15px;
  color: #2c2c54;
  background-color: #f8f9fb;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  transition: border-color 0.2s;
  width: 100%;
}

.calc-input:focus {
  border-color: #ff6348;
  outline: none;
  background-color: #ffffff;
}

.calc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: calc(100% - 48px);
  margin: 20px 24px;
  padding: 14px;
  background-color: #ff6348;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.15s;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

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

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

.calc-result {
  border-top: 1px solid rgba(44, 44, 84, 0.08);
  padding: 20px 24px;
  background-color: #f8f9fb;
}

.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  color: #4b5563;
  border-bottom: 1px solid rgba(44, 44, 84, 0.06);
}

.calc-result-row:last-of-type {
  border-bottom: none;
}

.calc-result-row strong {
  font-weight: 700;
  color: #2c2c54;
}

.calc-result-total {
  font-size: 16px;
  font-weight: 700;
  color: #2c2c54;
  border-top: 2px solid rgba(44, 44, 84, 0.15);
  margin-top: 4px;
  padding-top: 12px;
}

.calc-result-total strong {
  font-size: 20px;
  color: #ff6348;
}

.calc-green {
  color: #16a34a;
}

.calc-advice {
  margin: 12px 0 0;
  font-size: 13px;
  color: #6b7280;
  font-style: italic;
  line-height: 1.5;
}

/* ============================
   COMPARE TABLE
   ============================ */
.compare-section {
  padding: 100px 0 80px;
  background-color: #ffffff;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.compare-table thead tr {
  background-color: #2c2c54;
}

.compare-table thead th {
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 18px;
  text-align: left;
}

.compare-table thead th:first-child {
  border-radius: 12px 0 0 0;
}

.compare-table thead th:last-child {
  border-radius: 0 12px 0 0;
}

.compare-table tbody tr {
  border-bottom: 1px solid rgba(44, 44, 84, 0.07);
  transition: background-color 0.15s;
}

.compare-table tbody tr:hover {
  background-color: rgba(255, 99, 72, 0.04);
}

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

.compare-table tbody td {
  padding: 16px 18px;
  color: #374151;
  vertical-align: middle;
}

.compare-brand {
  font-weight: 700;
  color: #2c2c54;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.compare-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.compare-dot--green { background-color: #16a34a; }
.compare-dot--blue { background-color: #2563eb; }
.compare-dot--orange { background-color: #f59e0b; }
.compare-dot--purple { background-color: #7c3aed; }

.star-row {
  display: flex;
  align-items: center;
  gap: 2px;
}

.badge-good {
  display: inline-block;
  background-color: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.badge-mid {
  display: inline-block;
  background-color: rgba(245, 158, 11, 0.1);
  color: #d97706;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.badge-bad {
  display: inline-block;
  background-color: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.compare-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #9ca3af;
  margin-top: 16px;
  font-style: italic;
  padding: 12px 16px;
  background-color: #f8f9fb;
  border-radius: 8px;
}

.compare-disclaimer svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #9ca3af;
}

/* ============================
   TIMELINE SECTION
   ============================ */
.timeline-section {
  padding: 80px 0;
  background-color: #ecf0f1;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: rgba(44, 44, 84, 0.15);
}

.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border: 2px solid rgba(255, 99, 72, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6348;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(255, 99, 72, 0.15);
}

.timeline-content {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px 28px;
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(44, 44, 84, 0.07);
  box-shadow: 0 2px 12px rgba(44, 44, 84, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.timeline-content:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(44, 44, 84, 0.1);
}

.timeline-tag {
  font-size: 11px;
  font-weight: 700;
  color: #ff6348;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 8px;
}

.timeline-heading {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #2c2c54;
  margin-bottom: 10px;
  line-height: 1.35;
}

.timeline-content p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}

/* ============================
   NEWSLETTER SECTION
   ============================ */
.newsletter-section {
  background-color: #ff6348;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-diagonal {
  position: absolute;
  top: 0;
  left: -5%;
  right: -5%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  transform: skewY(-2deg);
  pointer-events: none;
}

.newsletter-inner {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
  position: relative;
}

.newsletter-icon {
  width: 72px;
  height: 72px;
  background-color: rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin: 0 auto 20px;
}

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

.newsletter-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form-row {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  color: #2c2c54;
  background-color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  min-width: 0;
}

.newsletter-input:focus {
  outline: 2px solid #2c2c54;
  outline-offset: 2px;
}

.newsletter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background-color: #2c2c54;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background-color: #1a1a3e;
}

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

.newsletter-rgpd {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  text-align: left;
}

/* ============================
   ABOUT SECTION
   ============================ */
.about-section {
  padding: 100px 0 80px;
  background-color: #ffffff;
}

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

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(44, 44, 84, 0.15);
}

.about-image-decoration {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 160px;
  height: 160px;
  background-color: rgba(255, 99, 72, 0.12);
  border-radius: 20px;
  z-index: -1;
}

.about-content .section-badge {
  margin-bottom: 16px;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.about-text {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-values {
  margin: 24px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}

/* ===== RESPONSIVE (auto-repair) ===== */
@media (max-width: 1024px) {
  .hero-content-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 60px 24px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-stat-num {
    font-size: 22px;
  }

  .hero-stats-row {
    gap: 16px;
  }

  .hero-diagonal-bg {
    width: 52%;
  }

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

  .featured-layout {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .featured-content {
    padding: 32px 32px 32px 0;
  }

  .featured-title {
    font-size: 22px;
  }

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

  .calc-layout {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

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

  .compare-table {
    font-size: 13px;
  }

  .compare-table thead th,
  .compare-table tbody td {
    padding: 12px 14px;
  }

  .newsletter-title {
    font-size: 28px;
  }

  .timeline {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
  }

  .hero-content-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 20px 60px;
  }

  .hero-diagonal-bg {
    display: none;
  }

  .hero-shape-1 {
    width: 140px;
    height: 140px;
  }

  .hero-shape-2 {
    width: 100px;
    height: 100px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 15px;
    max-width: 100%;
  }

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

  .hero-stats-row {
    gap: 14px;
    flex-wrap: wrap;
  }

  .hero-stat-num {
    font-size: 20px;
  }

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

  .hero-stat-divider {
    height: 32px;
  }

  .hero-image-col {
    order: -1;
  }

  .hero-image-frame img {
    max-width: 100%;
  }

  .hero-image-badge {
    font-size: 12px;
    padding: 8px 14px;
    bottom: -12px;
    left: 16px;
  }

  .categories-section {
    padding: 56px 0 40px;
  }

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

  .cat-card {
    padding: 20px 16px;
  }

  .cat-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    margin-bottom: 12px;
  }

  .cat-card-title {
    font-size: 15px;
  }

  .cat-card-desc {
    font-size: 12px;
  }

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

  .featured-layout {
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 16px;
  }

  .featured-image-wrap {
    min-height: 240px;
    height: 240px;
  }

  .featured-image-wrap img {
    min-height: 240px;
    height: 240px;
  }

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

  .featured-title {
    font-size: 20px;
  }

  .featured-excerpt {
    font-size: 14px;
  }

  .featured-meta {
    gap: 14px;
  }

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

  .tabs-nav {
    gap: 6px;
    margin-bottom: 24px;
  }

  .tab-btn {
    padding: 6px 16px;
    font-size: 13px;
  }

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

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

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

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

  .calc-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .calc-tips {
    margin-top: 16px;
  }

  .calc-widget {
    border-radius: 16px;
  }

  .calc-fields {
    padding: 20px 20px 0;
    gap: 12px;
  }

  .calc-btn {
    width: calc(100% - 40px);
    margin: 16px 20px;
  }

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

  .calc-result-row {
    font-size: 13px;
  }

  .calc-result-total strong {
    font-size: 18px;
  }

  .compare-section {
    padding: 72px 0 56px;
  }

  .compare-table {
    font-size: 12px;
  }

  .compare-table thead th,
  .compare-table tbody td {
    padding: 10px 10px;
  }

  .compare-brand {
    gap: 7px;
    white-space: normal;
    font-size: 12px;
  }

  .badge-good,
  .badge-mid,
  .badge-bad {
    font-size: 10px;
    padding: 3px 7px;
  }

  .compare-disclaimer {
    font-size: 12px;
    padding: 10px 12px;
  }

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

  .timeline::before {
    left: 19px;
  }

  .timeline-dot {
    width: 40px;
    height: 40px;
  }

  .timeline-content {
    padding: 18px 20px;
  }

  .timeline-heading {
    font-size: 15px;
  }

  .timeline-item {
    gap: 16px;
    margin-bottom: 24px;
  }

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

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

  .newsletter-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .newsletter-form-row {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-btn {
    width: 100%;
    justify-content: center;
  }

  .newsletter-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }

  .about-section {
    padding: 72px 0 56px;
  }

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

  .about-image-decoration {
    display: none;
  }

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

  .about-values {
    margin: 20px 0 24px;
  }
}

@media (max-width: 480px) {
  .hero-content-wrap {
    padding: 36px 16px 48px;
    gap: 24px;
  }

  .hero-title {
    font-size: 24px;
    letter-spacing: -0.01em;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 4px 12px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
  }

  .hero-stats-row {
    gap: 10px;
  }

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

  .hero-stat-divider {
    height: 26px;
  }

  .hero-image-badge {
    font-size: 11px;
    padding: 7px 12px;
    left: 12px;
  }

  .categories-section {
    padding: 40px 0 28px;
  }

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

  .cat-card {
    padding: 18px 16px;
  }

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

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

  .featured-image-wrap {
    min-height: 200px;
    height: 200px;
  }

  .featured-image-wrap img {
    min-height: 200px;
    height: 200px;
  }

  .featured-content {
    padding: 18px 16px 22px;
  }

  .featured-title {
    font-size: 18px;
  }

  .featured-excerpt {
    font-size: 13px;
  }

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

  .tab-btn {
    padding: 6px 13px;
    font-size: 12px;
  }

  .articles-grid {
    gap: 16px;
    margin-bottom: 24px;
  }

  .article-card-img-wrap {
    height: 160px;
  }

  .article-card-img-wrap img {
    height: 160px;
  }

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

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

  .article-card-excerpt {
    font-size: 12px;
  }

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

  .calc-fields {
    padding: 16px 16px 0;
  }

  .calc-btn {
    width: calc(100% - 32px);
    margin: 14px 16px;
    font-size: 14px;
    padding: 12px;
  }

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

  .calc-widget-header {
    padding: 14px 16px;
    font-size: 14px;
  }

  .calc-result-total strong {
    font-size: 16px;
  }

  .compare-section {
    padding: 56px 0 40px;
  }

  .compare-table {
    font-size: 11px;
  }

  .compare-table thead th,
  .compare-table tbody td {
    padding: 8px 8px;
  }

  .compare-brand {
    font-size: 11px;
    gap: 5px;
  }

  .compare-dot {
    width: 8px;
    height: 8px;
  }

  .badge-good,
  .badge-mid,
  .badge-bad {
    font-size: 10px;
    padding: 2px 6px;
  }

  .compare-disclaimer {
    font-size: 11px;
  }

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

  .timeline::before {
    left: 15px;
  }

  .timeline-dot {
    width: 32px;
    height: 32px;
  }

  .timeline-item {
    gap: 12px;
    margin-bottom: 20px;
  }

  .timeline-content {
    padding: 14px 16px;
  }

  .timeline-heading {
    font-size: 14px;
  }

  .timeline-content p {
    font-size: 13px;
  }

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

  .newsletter-title {
    font-size: 20px;
  }

  .newsletter-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

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

  .newsletter-input {
    padding: 12px 14px;
    font-size: 14px;
  }

  .newsletter-btn {
    padding: 12px 16px;
    font-size: 13px;
  }

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

  .about-section {
    padding: 56px 0 40px;
  }

  .about-layout {
    gap: 24px;
  }

  .about-text {
    font-size: 13px;
  }

  .about-value {
    font-size: 13px;
  }

  .about-values {
    gap: 8px;
    margin: 16px 0 20px;
  }
}