/* ===================================================
   VALENTINE PARIS - CSS HOME v5.1
   Mode / Lifestyle féminin - Design Diagonal Créatif
   =================================================== */

/* === HERO SECTION === */
.hero {
  position: relative;
  background-color: #fafafa;
  overflow: hidden;
  padding-top: 20px;
  min-height: 640px;
}

.hero__layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #f8e8fc;
  color: #c026d3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.hero__title-accent {
  color: #c026d3;
  font-style: italic;
}

.hero__subtitle {
  font-size: 17px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__btn-primary {
  display: inline-block;
  background-color: #c026d3;
  color: #fff;
  padding: 14px 28px;
  border-radius: 28px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}

.hero__btn-primary:hover {
  background-color: #a21caf;
  color: #fff;
  transform: translateY(-2px);
}

.hero__btn-secondary {
  display: inline-block;
  background-color: #fff;
  color: #1a1a1a;
  padding: 14px 28px;
  border-radius: 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid #e5d0f0;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.hero__btn-secondary:hover {
  border-color: #c026d3;
  color: #c026d3;
  transform: translateY(-2px);
}

.hero__meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #6b6b6b;
  font-weight: 500;
}

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero__img-wrapper {
  position: relative;
  border-radius: 24px 24px 64px 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(192, 38, 211, 0.15), 0 8px 24px rgba(0,0,0,0.08);
  max-width: 480px;
  width: 100%;
}

.hero__img-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 24px 24px 64px 24px;
}

.hero__img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background-color: rgba(26, 26, 26, 0.85);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}

.hero__img-badge-text {
  color: #fff;
}

.hero__deco-shape {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.hero__deco-shape--1 {
  width: 200px;
  height: 200px;
  background-color: #f8e8fc;
  top: -40px;
  right: -40px;
}

.hero__deco-shape--2 {
  width: 120px;
  height: 120px;
  background-color: #fce7f3;
  bottom: 20px;
  left: -20px;
}

/* Hero diagonal clip */
.hero__diagonal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: #fafafa;
  clip-path: polygon(0 0, 100% 60%, 100% 100%, 0 100%);
  z-index: 1;
}

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

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

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 20px;
  background-color: #fafafa;
  border: 1.5px solid #f0e6f3;
  border-radius: 16px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--cat-color, #c026d3);
  border-radius: 16px 16px 0 0;
}

.cat-card:hover {
  border-color: var(--cat-color, #c026d3);
  box-shadow: 0 8px 24px rgba(192, 38, 211, 0.1);
  transform: translateY(-4px);
}

.cat-card__icon {
  color: var(--cat-color, #c026d3);
  margin-bottom: 14px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.cat-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
  display: block;
}

.cat-card__desc {
  font-size: 12px;
  color: #8a8a8a;
  line-height: 1.5;
  flex-grow: 1;
}

.cat-card__arrow {
  display: flex;
  align-items: center;
  color: var(--cat-color, #c026d3);
  margin-top: 14px;
}

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

/* Article hero featured layout */
.articles-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

/* Article hero card (grand) */
.article-hero-card {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #f0e6f3;
  transition: box-shadow 0.2s, transform 0.2s;
}

.article-hero-card:hover {
  box-shadow: 0 12px 32px rgba(192, 38, 211, 0.1);
  transform: translateY(-3px);
}

.article-hero-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.article-hero-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

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

.article-hero-card__body {
  padding: 28px;
}

.article-hero-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.article-hero-card__title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.article-hero-card__title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s;
}

.article-hero-card__title a:hover {
  color: #c026d3;
}

.article-hero-card__excerpt {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* Article secondary card */
.article-secondary-card {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #f0e6f3;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.article-secondary-card:hover {
  box-shadow: 0 12px 32px rgba(192, 38, 211, 0.1);
  transform: translateY(-3px);
}

.article-secondary-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.article-secondary-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

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

.article-secondary-card__body {
  padding: 24px;
  flex-grow: 1;
}

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

.article-secondary-card__title {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  margin-bottom: 10px;
}

.article-secondary-card__title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s;
}

.article-secondary-card__title a:hover {
  color: #c026d3;
}

.article-secondary-card__excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
}

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

.article-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f0e6f3;
  transition: box-shadow 0.2s, transform 0.2s;
}

.article-card:hover {
  box-shadow: 0 8px 24px rgba(192, 38, 211, 0.08);
  transform: translateY(-3px);
}

.article-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.article-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

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

.article-card__body {
  padding: 20px;
}

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

.article-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 10px;
}

.article-card__title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s;
}

.article-card__title a:hover {
  color: #c026d3;
}

.article-card__excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  margin-bottom: 14px;
}

.article-card__date {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #aaa;
  margin: 0;
}

/* === CALCULATOR SECTION === */
.calculator-section {
  background-color: #1a1a1a;
  position: relative;
  padding: 0 0 80px;
  overflow: hidden;
}

.calculator-section__diagonal-top {
  height: 70px;
  background-color: #fafafa;
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
  margin-bottom: -1px;
}

.calculator-section__diagonal-bottom {
  height: 70px;
  background-color: #fafafa;
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
  margin-top: -1px;
}

.calculator-section .container {
  padding-top: 40px;
  padding-bottom: 40px;
}

.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.calc-info__title {
  font-size: clamp(24px, 3vw, 36px);
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.calc-info__desc {
  font-size: 15px;
  color: #a3a3a3;
  line-height: 1.75;
  margin-bottom: 28px;
}

.calc-info__tips {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-tip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #e5e5e5;
  font-weight: 500;
}

/* Calculator box */
.calc-box {
  background-color: #2a2a2a;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #3a3a3a;
}

.calc-box__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.calc-field {
  margin-bottom: 20px;
}

.calc-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #d4d4d4;
  margin-bottom: 8px;
}

.calc-select {
  width: 100%;
  padding: 11px 14px;
  background-color: #1a1a1a;
  color: #fff;
  border: 1.5px solid #3a3a3a;
  border-radius: 8px;
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a3a3a3' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  transition: border-color 0.2s;
}

.calc-select:focus {
  border-color: #c026d3;
  outline: none;
}

.calc-hint {
  display: block;
  font-size: 11px;
  color: #6b6b6b;
  margin-top: 5px;
}

.calc-btn {
  width: 100%;
  padding: 14px;
  background-color: #c026d3;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  transition: background-color 0.2s, transform 0.15s;
  margin-top: 4px;
}

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

/* Calc result */
.calc-result {
  margin-top: 20px;
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 12px;
  border: 1px solid #3a3a3a;
}

.calc-result__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.calc-result__item {
  text-align: center;
  padding: 12px 8px;
  background-color: #2a2a2a;
  border-radius: 10px;
}

.calc-result__number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #c026d3;
  line-height: 1;
  margin-bottom: 4px;
}

.calc-result__label {
  display: block;
  font-size: 11px;
  color: #a3a3a3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.calc-result__advice {
  font-size: 14px;
  color: #d4d4d4;
  text-align: center;
  font-style: italic;
  margin: 0;
}

/* === TRENDS TABLE === */
.trends-section {
  padding: 72px 0;
  background-color: #fff;
}

.trends-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.trends-table thead {
  background-color: #1a1a1a;
}

.trends-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

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

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

.trends-table tbody tr:hover {
  background-color: #fdf4ff;
}

.trends-table tbody td {
  padding: 16px 18px;
  color: #1a1a1a;
  vertical-align: middle;
}

.trend-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
}

.trend-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.trend-badge--chic { background-color: #f8e8fc; color: #c026d3; }
.trend-badge--bold { background-color: #ede9fe; color: #7c3aed; }
.trend-badge--street { background-color: #fce7f3; color: #db2777; }
.trend-badge--parisian { background-color: #fef3c7; color: #d97706; }
.trend-badge--minimaliste { background-color: #e0f2fe; color: #0891b2; }

.trend-stars {
  color: #f59e0b;
  font-size: 15px;
  letter-spacing: 2px;
}

.trend-verdict {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.trend-verdict--yes { background-color: #dcfce7; color: #16a34a; }
.trend-verdict--no { background-color: #fee2e2; color: #dc2626; }
.trend-verdict--maybe { background-color: #fef3c7; color: #d97706; }

/* === STYLE PROFILE SECTION === */
.style-profile-section {
  position: relative;
  background-color: #1a1a1a;
  padding: 80px 0;
  overflow: hidden;
}

.style-profile-section__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #1a1a1a;
}

.style-title--light {
  color: #fff;
}

.style-profile__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.style-circle-item {
  text-align: center;
}

.style-circle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
}

.style-circle__svg {
  position: absolute;
  top: 0;
  left: 0;
}

.style-circle__percent {
  position: relative;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  z-index: 1;
}

.style-circle__label {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.style-circle__desc {
  font-size: 13px;
  color: #a3a3a3;
  line-height: 1.6;
}

/* === SLIDER SECTION === */
.slider-section {
  padding: 72px 0;
  background-color: #fafafa;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slider-slide {
  flex: 0 0 calc(20% - 16px);
  min-width: 0;
}

.inspi-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f0e6f3;
  transition: box-shadow 0.2s, transform 0.2s;
}

.inspi-card:hover {
  box-shadow: 0 8px 24px rgba(192, 38, 211, 0.1);
  transform: translateY(-3px);
}

.inspi-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 7 / 9;
}

.inspi-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.inspi-card:hover .inspi-card__img-wrap img {
  transform: scale(1.05);
}

.inspi-card__body {
  padding: 16px;
}

.inspi-card__season {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c026d3;
  margin-bottom: 6px;
}

.inspi-card__title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.inspi-card__vibe {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
  font-style: italic;
}

.inspi-card__tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.inspi-tag {
  display: inline-block;
  padding: 2px 8px;
  background-color: #f8e8fc;
  color: #c026d3;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
}

/* Slider controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: #fff;
  border: 1.5px solid #f0e6f3;
  border-radius: 50%;
  color: #1a1a1a;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.slider-btn:hover {
  background-color: #c026d3;
  border-color: #c026d3;
  color: #fff;
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #e5d0f0;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  padding: 0;
}

.slider-dot.is-active {
  background-color: #c026d3;
  transform: scale(1.3);
}

/* === NEWSLETTER === */
.newsletter-section {
  padding: 0;
  overflow: hidden;
}

.newsletter-section__inner {
  position: relative;
  background-color: #fdf4ff;
  border-top: 1px solid #f0e6f3;
  border-bottom: 1px solid #f0e6f3;
  padding: 72px 0;
}

.newsletter-deco {
  position: absolute;
  pointer-events: none;
}

.newsletter-deco--left {
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.newsletter-deco--right {
  right: -30px;
  top: 10%;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter-icon {
  width: 64px;
  height: 64px;
  background-color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(192, 38, 211, 0.12);
}

.newsletter-title {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.newsletter-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 28px;
}

.newsletter-form {}

.newsletter-form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 10px;
  text-align: left;
}

.newsletter-form__group {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.newsletter-form__input {
  flex: 1;
  padding: 13px 18px;
  border: 1.5px solid #e5d0f0;
  border-radius: 10px;
  font-size: 15px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #fff;
  color: #1a1a1a;
  transition: border-color 0.2s;
  min-width: 0;
}

.newsletter-form__input::placeholder {
  color: #bbb;
}

.newsletter-form__input:focus {
  border-color: #c026d3;
  outline: none;
}

.newsletter-form__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background-color: #c026d3;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  white-space: nowrap;
  transition: background-color 0.2s, transform 0.15s;
}

.newsletter-form__btn:hover {
  background-color: #a21caf;
  transform: translateY(-1px);
}

.newsletter-form__privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #aaa;
  margin-top: 8px;
}

.newsletter-form__success {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background-color: #dcfce7;
  color: #16a34a;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
}

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

  .hero__layout {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 48px 24px 100px;
  }

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

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

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

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

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

  .style-profile__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .slider-slide {
    flex: 0 0 calc(33.333% - 14px);
  }

  .trends-table thead th {
    padding: 12px 14px;
    font-size: 10px;
  }

  .trends-table tbody td {
    padding: 14px 14px;
    font-size: 13px;
  }

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

  .newsletter-deco--left,
  .newsletter-deco--right {
    display: none;
  }

  .calc-result__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .hero__img-wrapper {
    max-width: 100%;
  }
}

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

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 20px 80px;
  }

  .hero__visual {
    justify-content: center;
    order: -1;
  }

  .hero__img-wrapper {
    max-width: 100%;
    border-radius: 16px 16px 40px 16px;
  }

  .hero__img-wrapper img {
    border-radius: 16px 16px 40px 16px;
  }

  .hero__deco-shape--1 {
    width: 120px;
    height: 120px;
    top: -20px;
    right: -20px;
  }

  .hero__deco-shape--2 {
    width: 80px;
    height: 80px;
    bottom: 10px;
    left: -10px;
  }

  .hero__title {
    font-size: clamp(28px, 7vw, 40px);
    margin-bottom: 16px;
  }

  .hero__subtitle {
    font-size: 14px;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .hero__label {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 16px;
  }

  .hero__actions {
    gap: 10px;
    margin-bottom: 24px;
  }

  .hero__btn-primary,
  .hero__btn-secondary {
    padding: 12px 22px;
    font-size: 14px;
  }

  .hero__meta {
    gap: 16px;
  }

  .hero__meta-item {
    font-size: 12px;
  }

  .hero__diagonal {
    height: 50px;
  }

  .categories {
    padding: 48px 0;
  }

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

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

  .cat-card__icon {
    margin-bottom: 10px;
    width: 36px;
    height: 36px;
  }

  .cat-card__name {
    font-size: 14px;
  }

  .cat-card__desc {
    font-size: 11px;
  }

  .cat-card__arrow {
    margin-top: 10px;
  }

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

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

  .article-hero-card__body {
    padding: 20px;
  }

  .article-hero-card__title {
    font-size: clamp(16px, 4vw, 20px);
  }

  .article-hero-card__excerpt {
    font-size: 14px;
  }

  .article-secondary-card {
    flex-direction: column;
  }

  .article-secondary-card__body {
    padding: 18px;
  }

  .article-secondary-card__title {
    font-size: clamp(15px, 3.5vw, 18px);
  }

  .article-secondary-card__excerpt {
    font-size: 13px;
  }

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

  .article-card__body {
    padding: 16px;
  }

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

  .article-card__excerpt {
    font-size: 13px;
  }

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

  .calculator-section__diagonal-top {
    height: 48px;
  }

  .calculator-section__diagonal-bottom {
    height: 48px;
  }

  .calculator-section .container {
    padding-top: 24px;
    padding-bottom: 24px;
  }

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

  .calc-info__title {
    font-size: clamp(20px, 5vw, 28px);
  }

  .calc-info__desc {
    font-size: 14px;
  }

  .calc-box {
    padding: 24px;
  }

  .calc-box__title {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .calc-result__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .calc-result__number {
    font-size: 22px;
  }

  .calc-result__label {
    font-size: 10px;
  }

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

  .trends-table {
    font-size: 13px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }

  .trends-table thead th {
    padding: 12px 12px;
    font-size: 10px;
  }

  .trends-table tbody td {
    padding: 12px 12px;
  }

  .trend-name {
    font-size: 13px;
  }

  .style-profile-section {
    padding: 56px 0;
  }

  .style-profile__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .style-circle {
    width: 100px;
    height: 100px;
  }

  .style-circle__percent {
    font-size: 20px;
  }

  .style-circle__label {
    font-size: 14px;
  }

  .style-circle__desc {
    font-size: 12px;
  }

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

  .slider-slide {
    flex: 0 0 calc(50% - 10px);
  }

  .slider-controls {
    margin-top: 20px;
    gap: 12px;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
  }

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

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

  .newsletter-title {
    font-size: clamp(20px, 5vw, 28px);
  }

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

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

  .newsletter-form__btn {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
  }

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

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

  .newsletter-deco--left,
  .newsletter-deco--right {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__layout {
    padding: 28px 16px 64px;
    gap: 24px;
  }

  .hero__title {
    font-size: clamp(24px, 8vw, 32px);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }

  .hero__subtitle {
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .hero__label {
    font-size: 10px;
    padding: 4px 10px;
    margin-bottom: 12px;
  }

  .hero__actions {
    gap: 8px;
    margin-bottom: 20px;
  }

  .hero__btn-primary,
  .hero__btn-secondary {
    padding: 11px 18px;
    font-size: 13px;
    width: 100%;
    text-align: center;
  }

  .hero__meta {
    gap: 10px;
  }

  .hero__meta-item {
    font-size: 11px;
    gap: 5px;
  }

  .hero__diagonal {
    height: 36px;
  }

  .categories {
    padding: 36px 0;
  }

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

  .cat-card {
    padding: 14px 12px;
    border-radius: 12px;
  }

  .cat-card__icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
  }

  .cat-card__name {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .cat-card__desc {
    font-size: 10px;
    line-height: 1.4;
  }

  .cat-card__arrow {
    margin-top: 8px;
  }

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

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

  .article-hero-card__body {
    padding: 16px;
  }

  .article-hero-card__title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .article-hero-card__excerpt {
    font-size: 13px;
    line-height: 1.6;
  }

  .article-secondary-card__body {
    padding: 14px;
  }

  .article-secondary-card__title {
    font-size: 14px;
  }

  .article-secondary-card__excerpt {
    font-size: 12px;
  }

  .articles-grid {
    gap: 14px;
  }

  .article-card__body {
    padding: 14px;
  }

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

  .article-card__excerpt {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .article-card__date {
    font-size: 11px;
  }

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

  .calculator-section__diagonal-top {
    height: 36px;
  }

  .calculator-section__diagonal-bottom {
    height: 36px;
  }

  .calculator-section .container {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .calc-wrapper {
    gap: 24px;
  }

  .calc-info__title {
    font-size: clamp(18px, 6vw, 24px);
    margin-bottom: 12px;
  }

  .calc-info__desc {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .calc-tip {
    font-size: 13px;
    gap: 8px;
  }

  .calc-box {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .calc-box__title {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .calc-field {
    margin-bottom: 14px;
  }

  .calc-label {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .calc-select {
    padding: 10px 12px;
    font-size: 13px;
    padding-right: 32px;
  }

  .calc-btn {
    padding: 12px;
    font-size: 14px;
  }

  .calc-result {
    padding: 14px;
  }

  .calc-result__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 12px;
  }

  .calc-result__item {
    padding: 10px 4px;
  }

  .calc-result__number {
    font-size: 18px;
    margin-bottom: 2px;
  }

  .calc-result__label {
    font-size: 9px;
  }

  .calc-result__advice {
    font-size: 12px;
  }

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

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

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

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

  .trend-name {
    font-size: 12px;
    gap: 6px;
  }

  .trend-badge {
    padding: 2px 8px;
    font-size: 10px;
  }

  .trend-stars {
    font-size: 13px;
    letter-spacing: 1px;
  }

  .trend-verdict {
    padding: 3px 8px;
    font-size: 11px;
  }

  .style-profile-section {
    padding: 40px 0;
  }

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

  .style-circle {
    width: 90px;
    height: 90px;
    margin-bottom: 12px;
  }

  .style-circle__percent {
    font-size: 18px;
  }

  .style-circle__label {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .style-circle__desc {
    font-size: 11px;
    line-height: 1.5;
  }

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

  .slider-slide {
    flex: 0 0 calc(75% - 10px);
  }

  .slider-controls {
    margin-top: 16px;
    gap: 10px;
  }

  .slider-btn {
    width: 34px;
    height: 34px;
  }

  .slider-dot {
    width: 6px;
    height: 6px;
  }

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

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

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

  .newsletter-title {
    font-size: clamp(18px, 6vw, 24px);
    margin-bottom: 10px;
  }

  .newsletter-desc {
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .newsletter-form__input {
    font-size: 13px;
    padding: 11px 14px;
  }

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

  .newsletter-form__label {
    font-size: 12px;
    margin-bottom: 8px;
  }

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

  .newsletter-form__success {
    font-size: 13px;
    padding: 10px 14px;
  }

  .inspi-card__body {
    padding: 12px;
  }

  .inspi-card__season {
    font-size: 9px;
    margin-bottom: 4px;
  }

  .inspi-card__title {
    font-size: 13px;
    margin-bottom: 3px;
  }

  .inspi-card__vibe {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .inspi-tag {
    font-size: 9px;
    padding: 2px 6px;
  }
}