/* ============================================
   HOME CSS - API Pièces Auto Orléans
   Design Hero Diagonal - Automobile passion
   ============================================ */

/* ===================== HERO DIAGONAL ===================== */
.hero-diagonal {
    background-color: #0f172a;
    position: relative;
    overflow: hidden;
    padding: 80px 0 120px;
}

.hero-diagonal__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-diagonal__shape {
    position: absolute;
    border-radius: 50%;
}

.hero-diagonal__shape--1 {
    width: 500px;
    height: 500px;
    background-color: rgba(217, 119, 6, 0.07);
    top: -180px;
    right: -100px;
}

.hero-diagonal__shape--2 {
    width: 300px;
    height: 300px;
    background-color: rgba(217, 119, 6, 0.04);
    bottom: 20px;
    left: -80px;
}

.hero-diagonal__shape--3 {
    width: 180px;
    height: 180px;
    background-color: rgba(217, 119, 6, 0.06);
    top: 40%;
    left: 38%;
}

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

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

.hero-diagonal__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(217, 119, 6, 0.15);
    border: 1px solid rgba(217, 119, 6, 0.35);
    color: #d97706;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 99px;
    margin-bottom: 24px;
}

.hero-diagonal__title {
    font-size: clamp(32px, 4.5vw, 58px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.12;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.hero-diagonal__accent {
    color: #d97706;
    position: relative;
}

.hero-diagonal__accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #d97706;
    border-radius: 2px;
}

.hero-diagonal__subtitle {
    font-size: 17px;
    line-height: 1.65;
    color: #94a3b8;
    margin: 0 0 32px;
    max-width: 500px;
}

.hero-diagonal__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    transition: transform 0.2s, background-color 0.2s, color 0.2s;
}

.hero-btn:hover {
    transform: translateY(-2px);
}

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

.hero-btn--primary {
    background-color: #d97706;
    color: #0f172a;
}

.hero-btn--primary:hover {
    background-color: #b45309;
    color: #ffffff;
}

.hero-btn--secondary {
    background-color: transparent;
    color: #e0e0e0;
    border: 2px solid rgba(224, 224, 224, 0.4);
}

.hero-btn--secondary:hover {
    border-color: #d97706;
    color: #d97706;
    background-color: rgba(217, 119, 6, 0.08);
}

.hero-diagonal__disclaimer {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}

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

.hero-diagonal__img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.hero-diagonal__img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.hero-diagonal__img-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background-color: #0f172a;
    border: 1px solid rgba(217, 119, 6, 0.4);
    color: #d97706;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
}

.hero-diagonal__cut {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 70px;
    background-color: #f8f7f4;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

/* ===================== DASHBOARD STRIP ===================== */
.dashboard-strip {
    background-color: #f8f7f4;
    padding: 20px 0 40px;
}

.dashboard-strip__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 0;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.dashboard-strip__kpi {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    border-right: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.dashboard-strip__kpi:last-child {
    border-right: none;
}

.dashboard-strip__kpi:hover {
    background-color: rgba(217, 119, 6, 0.03);
}

.dashboard-strip__kpi-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: rgba(217, 119, 6, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-strip__kpi-data {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dashboard-strip__kpi-value {
    font-size: 22px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 4px;
    display: block;
}

.dashboard-strip__kpi-label {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===================== CATEGORIES SLIDER ===================== */
.categories-section {
    background-color: #f8f7f4;
    padding: 60px 0;
}

.categories-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.categories-section__header {
    text-align: center;
    margin-bottom: 40px;
}

.categories-section__title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.categories-section__desc {
    font-size: 16px;
    color: #475569;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.categories-slider {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: #d97706 #f0f0f0;
}

.categories-slider::-webkit-scrollbar {
    height: 4px;
}

.categories-slider::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.categories-slider::-webkit-scrollbar-thumb {
    background: #d97706;
    border-radius: 4px;
}

.cat-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    min-width: 0;
}

.cat-card:hover {
    border-color: #d97706;
    box-shadow: 0 6px 24px rgba(217, 119, 6, 0.12);
    transform: translateY(-2px);
}

.cat-card__icon {
    width: 56px;
    height: 56px;
    background-color: rgba(217, 119, 6, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d97706;
    margin-bottom: 4px;
}

.cat-card__name {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
}

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

.cat-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.cat-card__count {
    font-size: 12px;
    font-weight: 600;
    color: #d97706;
    background-color: rgba(217, 119, 6, 0.1);
    padding: 3px 10px;
    border-radius: 99px;
}

.cat-card__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #0f172a;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.2s;
}

.cat-card__link:hover,
.cat-card__link:focus-visible {
    background-color: #d97706;
    transform: translateX(2px);
    outline: none;
}

.cat-card__link:focus-visible {
    outline: 2px solid #d97706;
    outline-offset: 3px;
}

.categories-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.cat-nav-btn {
    width: 38px;
    height: 38px;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #0f172a;
    transition: border-color 0.2s, color 0.2s, background-color 0.2s;
    padding: 0;
}

.cat-nav-btn:hover,
.cat-nav-btn:focus-visible {
    border-color: #d97706;
    color: #d97706;
    outline: none;
}

.cat-nav-btn:focus-visible {
    outline: 2px solid #d97706;
    outline-offset: 2px;
}

.cat-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

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

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

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

.articles-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.articles-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.articles-section__title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.articles-section__desc {
    font-size: 16px;
    color: #475569;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Article vedette */
.article-featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    background-color: #0f172a;
    margin-bottom: 40px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.14);
}

.article-featured__img-wrap {
    position: relative;
    overflow: hidden;
}

.article-featured__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 340px;
    transition: transform 0.4s ease;
}

.article-featured:hover .article-featured__img-wrap img {
    transform: scale(1.03);
}

.article-featured__category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: #d97706;
    color: #0f172a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 99px;
}

.article-featured__content {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.article-featured__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.article-featured__meta time,
.article-featured__meta .article-meta-read {
    color: #94a3b8;
    font-size: 13px;
}

.article-featured__meta time svg,
.article-featured__meta .article-meta-read svg {
    color: #d97706;
}

.article-featured__title {
    font-size: clamp(20px, 2.2vw, 27px);
    font-weight: 800;
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.article-featured__title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}

.article-featured__title a:hover,
.article-featured__title a:focus-visible {
    color: #d97706;
    outline: none;
}

.article-featured__title a:focus-visible {
    outline: 2px solid #d97706;
    outline-offset: 3px;
    border-radius: 3px;
}

.article-featured__excerpt {
    font-size: 15px;
    line-height: 1.65;
    color: #94a3b8;
    margin: 0;
}

.article-featured__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #d97706;
    font-weight: 700;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 12px;
    margin-top: 4px;
}

/* Articles grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.article-card {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.article-card:hover {
    border-color: #d97706;
    box-shadow: 0 6px 28px rgba(217, 119, 6, 0.12);
    transform: translateY(-3px);
}

.article-card__img-wrap {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

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

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

.article-card__category {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #0f172a;
    color: #d97706;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 99px;
    border: 1px solid rgba(217, 119, 6, 0.4);
}

.article-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.article-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #9ca3af;
}

.article-card__read {
    font-weight: 600;
    color: #d97706;
    font-size: 11px;
    background-color: rgba(217, 119, 6, 0.08);
    padding: 2px 8px;
    border-radius: 99px;
}

.article-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.35;
}

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

.article-card__title a:hover,
.article-card__title a:focus-visible {
    color: #d97706;
    outline: none;
}

.article-card__title a:focus-visible {
    outline: 2px solid #d97706;
    outline-offset: 3px;
    border-radius: 3px;
}

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

.articles-section__more {
    display: flex;
    justify-content: center;
}

.btn-all-articles {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #0f172a;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid #0f172a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-all-articles:hover,
.btn-all-articles:focus-visible {
    background-color: #d97706;
    border-color: #d97706;
    color: #0f172a;
    transform: translateY(-2px);
}

.btn-all-articles:focus-visible {
    outline: 2px solid #d97706;
    outline-offset: 3px;
    border-radius: 12px;
}

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

.calculator-section__diagonal-top {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 70px;
    background-color: #ffffff;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.calculator-section__diagonal-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 70px;
    background-color: #f8f7f4;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.calculator-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.calculator-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.calculator-section__title {
    font-size: clamp(24px, 3.2vw, 38px);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

.calculator-section__desc {
    font-size: 15px;
    color: #94a3b8;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.calculator-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.calculator-form {
    background-color: #1e293b;
    border: 1px solid rgba(224, 224, 224, 0.1);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.calc-label {
    font-size: 13px;
    font-weight: 600;
    color: #e0e0e0;
    letter-spacing: 0.02em;
}

.calc-select {
    background-color: #0f172a;
    border: 1px solid rgba(224, 224, 224, 0.2);
    color: #e0e0e0;
    padding: 11px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s;
    appearance: none;
    -webkit-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='%23d97706' stroke-width='2.5'%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;
}

.calc-select:focus {
    outline: 2px solid #d97706;
    outline-offset: 2px;
    border-color: #d97706;
}

.calc-hint {
    font-size: 11px;
    color: #64748b;
}

.calc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background-color: #d97706;
    color: #0f172a;
    font-weight: 800;
    font-size: 15px;
    padding: 14px 24px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    transition: background-color 0.2s, transform 0.2s;
    margin-top: 4px;
}

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

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

.calculator-result {
    background-color: #1e293b;
    border: 1px solid rgba(217, 119, 6, 0.3);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.calc-result-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(224, 224, 224, 0.1);
}

.calc-result-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #94a3b8;
    gap: 12px;
}

.calc-price {
    font-size: 17px;
    font-weight: 800;
}

.calc-price--high {
    color: #f87171;
}

.calc-price--low {
    color: #4ade80;
}

.calc-result-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(217, 119, 6, 0.12);
    border: 1px solid rgba(217, 119, 6, 0.35);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    color: #e0e0e0;
    gap: 12px;
}

.calc-economy {
    font-size: 20px;
    font-weight: 900;
    color: #d97706;
}

.calc-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 11px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Tableau pieces */
.calc-table-section {
    background-color: #1e293b;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(224, 224, 224, 0.08);
}

.calc-table-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
}

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

.pieces-table thead th {
    background-color: rgba(15, 23, 42, 0.8);
    color: #e0e0e0;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 12px 14px;
}

.pieces-table thead th:first-child { border-radius: 8px 0 0 0; }
.pieces-table thead th:last-child { border-radius: 0 8px 0 0; }

.pieces-table tbody tr {
    border-bottom: 1px solid rgba(224, 224, 224, 0.07);
}

.pieces-table tbody tr:hover {
    background-color: rgba(217, 119, 6, 0.06);
}

.pieces-table tbody td {
    padding: 12px 14px;
    color: #94a3b8;
    font-size: 13px;
    vertical-align: middle;
}

.pieces-table tbody td:first-child {
    color: #e0e0e0;
    font-weight: 500;
}

.table-note {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 12px;
    color: #64748b;
    margin: 16px 0 0;
    line-height: 1.5;
}

/* ===================== APPROACH SECTION ===================== */
.approach-section {
    background-color: #f8f7f4;
    padding: 80px 0;
}

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

.approach-section__visual {
    position: relative;
}

.approach-section__visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    display: block;
}

.approach-section__visual-card {
    position: absolute;
    bottom: 24px;
    left: -24px;
    background-color: #0f172a;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    border-left: 4px solid #d97706;
}

.approach-section__visual-card div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.approach-section__visual-card strong {
    font-size: 14px;
    color: #ffffff;
}

.approach-section__visual-card span {
    font-size: 12px;
    color: #94a3b8;
}

.approach-section__title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.approach-section__text {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 16px;
}

.approach-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.approach-pillar {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.approach-pillar:hover {
    border-color: #d97706;
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.1);
}

.approach-pillar__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: rgba(217, 119, 6, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-pillar div:last-child {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.approach-pillar strong {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    display: block;
}

.approach-pillar p {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* ===================== NEWSLETTER SECTION ===================== */
.newsletter-section {
    background-color: #0f172a;
    padding: 80px 0;
    position: relative;
    text-align: center;
}

.newsletter-section__diagonal {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #f8f7f4;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

.newsletter-section__container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.newsletter-section__icon {
    width: 72px;
    height: 72px;
    background-color: rgba(217, 119, 6, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 2px solid rgba(217, 119, 6, 0.3);
}

.newsletter-section__title {
    font-size: clamp(24px, 3.2vw, 36px);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

.newsletter-section__desc {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.65;
    margin-bottom: 36px;
}

.newsletter-form {
    width: 100%;
}

.newsletter-form__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.newsletter-form__input-wrap {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto 12px;
}

.newsletter-form__input {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-right: none;
    color: #ffffff;
    padding: 14px 18px;
    border-radius: 10px 0 0 10px;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.newsletter-form__input::placeholder {
    color: #64748b;
}

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

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

.newsletter-form__btn:hover {
    background-color: #b45309;
    border-color: #b45309;
    color: #ffffff;
}

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

.newsletter-form__privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

.newsletter-form__message {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.newsletter-form__message.success {
    background-color: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.newsletter-form__message.error {
    background-color: rgba(248, 113, 113, 0.1);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.3);
}

/* ===================== DISCLAIMER SECTION ===================== */
.disclaimer-section {
    background-color: #f8f7f4;
    padding: 24px 0;
    border-top: 1px solid #e5e7eb;
}

.disclaimer-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.disclaimer-section__icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.disclaimer-section__text {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

.disclaimer-section__text strong {
    color: #d97706;
    font-weight: 700;
}

/* ===== RESPONSIVE (auto-repair) ===== */
@media (max-width: 1024px) {
    .hero-diagonal {
        padding: 60px 0 100px;
    }

    .hero-diagonal__container {
        gap: 40px;
    }

    .hero-diagonal__subtitle {
        font-size: 16px;
    }

    .dashboard-strip__container {
        flex-wrap: wrap;
    }

    .dashboard-strip__kpi {
        flex: 1 1 calc(50% - 1px);
        border-bottom: 1px solid #f0f0f0;
    }

    .dashboard-strip__kpi:nth-child(2) {
        border-right: none;
    }

    .dashboard-strip__kpi:nth-child(3) {
        border-bottom: none;
    }

    .dashboard-strip__kpi:nth-child(4) {
        border-right: none;
        border-bottom: none;
    }

    .cat-card {
        flex: 0 0 200px;
    }

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

    .article-featured__content {
        padding: 28px 24px;
    }

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

    .calculator-wrap {
        grid-template-columns: 1fr;
    }

    .approach-section__container {
        gap: 40px;
    }

    .approach-section__visual-card {
        left: 0;
    }

    .approach-pillars {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter-form__input-wrap {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-diagonal {
        padding: 48px 0 80px;
    }

    .hero-diagonal__shape--1 {
        width: 320px;
        height: 320px;
        top: -120px;
        right: -60px;
    }

    .hero-diagonal__shape--2 {
        width: 200px;
        height: 200px;
    }

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

    .hero-diagonal__container {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 16px;
    }

    .hero-diagonal__content {
        align-items: center;
        text-align: center;
    }

    .hero-diagonal__subtitle {
        font-size: 15px;
        max-width: 100%;
        text-align: center;
    }

    .hero-diagonal__actions {
        justify-content: center;
        gap: 12px;
    }

    .hero-diagonal__disclaimer {
        text-align: center;
    }

    .hero-diagonal__visual {
        order: -1;
    }

    .hero-diagonal__img-badge {
        bottom: 10px;
        right: 10px;
        padding: 6px 10px;
        font-size: 11px;
    }

    .hero-diagonal__cut {
        height: 50px;
    }

    .dashboard-strip {
        padding: 16px 0 28px;
    }

    .dashboard-strip__container {
        flex-direction: column;
        border-radius: 12px;
        margin: 0 16px;
        padding: 0;
    }

    .dashboard-strip__kpi {
        flex: 1 1 100%;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 16px 18px;
    }

    .dashboard-strip__kpi:last-child {
        border-bottom: none;
    }

    .dashboard-strip__kpi:nth-child(2) {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }

    .dashboard-strip__kpi:nth-child(3) {
        border-bottom: 1px solid #f0f0f0;
    }

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

    .categories-section__container {
        padding: 0 16px;
    }

    .categories-section__header {
        margin-bottom: 28px;
    }

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

    .cat-card__icon {
        width: 48px;
        height: 48px;
    }

    .categories-nav {
        margin-top: 18px;
    }

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

    .articles-section__container {
        padding: 0 16px;
    }

    .articles-section__header {
        margin-bottom: 32px;
    }

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

    .article-featured__img-wrap img {
        min-height: 220px;
        max-height: 260px;
    }

    .article-featured__content {
        padding: 24px 20px;
    }

    .article-featured__title {
        font-size: 20px;
    }

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

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

    .calculator-section__container {
        padding: 0 16px;
    }

    .calculator-section__header {
        margin-bottom: 32px;
    }

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

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

    .calculator-wrap {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 32px;
    }

    .calculator-form {
        padding: 20px;
        gap: 16px;
    }

    .calculator-result {
        padding: 20px;
        gap: 12px;
    }

    .calc-table-section {
        padding: 20px 16px;
        overflow-x: auto;
    }

    .pieces-table {
        min-width: 560px;
    }

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

    .approach-section__container {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 0 16px;
    }

    .approach-section__visual-card {
        left: 12px;
        bottom: 12px;
        padding: 10px 14px;
    }

    .approach-pillars {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 20px;
    }

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

    .newsletter-section__diagonal {
        height: 48px;
    }

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

    .newsletter-section__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }

    .newsletter-section__desc {
        font-size: 14px;
        margin-bottom: 28px;
    }

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

    .newsletter-form__input {
        border-right: 2px solid rgba(255, 255, 255, 0.15);
        border-radius: 10px;
    }

    .newsletter-form__input:focus {
        border-color: #d97706;
    }

    .newsletter-form__btn {
        border-radius: 10px;
        justify-content: center;
        padding: 14px 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .disclaimer-section__container {
        padding: 0 16px;
        gap: 10px;
    }

    .disclaimer-section__text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-diagonal {
        padding: 36px 0 64px;
    }

    .hero-diagonal__container {
        padding: 0 12px;
        gap: 24px;
    }

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

    .hero-diagonal__title {
        font-size: 28px;
    }

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

    .hero-btn {
        font-size: 14px;
        padding: 11px 18px;
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

    .hero-diagonal__actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .hero-diagonal__img-badge {
        font-size: 10px;
        padding: 5px 8px;
        gap: 5px;
    }

    .hero-diagonal__cut {
        height: 36px;
    }

    .dashboard-strip__container {
        margin: 0 12px;
    }

    .dashboard-strip__kpi {
        padding: 14px 14px;
        gap: 10px;
    }

    .dashboard-strip__kpi-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .dashboard-strip__kpi-value {
        font-size: 18px;
    }

    .dashboard-strip__kpi-label {
        font-size: 10px;
    }

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

    .categories-section__container {
        padding: 0 12px;
    }

    .categories-section__desc {
        font-size: 14px;
    }

    .cat-card {
        flex: 0 0 160px;
        padding: 14px 12px;
    }

    .cat-card__icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

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

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

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

    .articles-section__container {
        padding: 0 12px;
    }

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

    .articles-section__desc {
        font-size: 14px;
    }

    .article-featured__content {
        padding: 18px 16px;
        gap: 10px;
    }

    .article-featured__title {
        font-size: 18px;
    }

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

    .article-featured__meta {
        gap: 10px;
    }

    .article-card__img-wrap img {
        height: 170px;
    }

    .article-card__body {
        padding: 14px;
        gap: 8px;
    }

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

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

    .btn-all-articles {
        font-size: 14px;
        padding: 12px 20px;
    }

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

    .calculator-section__container {
        padding: 0 12px;
    }

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

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

    .calculator-form {
        padding: 16px;
        gap: 14px;
    }

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

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

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

    .calculator-result {
        padding: 16px;
        gap: 10px;
    }

    .calc-result-header {
        font-size: 14px;
        padding-bottom: 12px;
    }

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

    .calc-price {
        font-size: 15px;
    }

    .calc-result-total {
        padding: 12px 14px;
        font-size: 13px;
    }

    .calc-economy {
        font-size: 17px;
    }

    .calc-table-section {
        padding: 16px 12px;
    }

    .calc-table-title {
        font-size: 15px;
    }

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

    .approach-section__container {
        padding: 0 12px;
        gap: 28px;
    }

    .approach-section__visual-card {
        left: 8px;
        bottom: 8px;
        padding: 8px 12px;
        gap: 8px;
    }

    .approach-section__visual-card strong {
        font-size: 12px;
    }

    .approach-section__visual-card span {
        font-size: 11px;
    }

    .approach-section__title {
        font-size: 22px;
    }

    .approach-section__text {
        font-size: 14px;
    }

    .approach-pillar {
        padding: 12px;
        gap: 10px;
    }

    .approach-pillar__icon {
        width: 34px;
        height: 34px;
        border-radius: 8px;
    }

    .approach-pillar strong {
        font-size: 12px;
    }

    .approach-pillar p {
        font-size: 11px;
    }

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

    .newsletter-section__container {
        padding: 0 12px;
    }

    .newsletter-section__icon {
        width: 52px;
        height: 52px;
        margin-bottom: 14px;
    }

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

    .newsletter-section__desc {
        font-size: 13px;
        margin-bottom: 22px;
    }

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

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

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

    .disclaimer-section {
        padding: 18px 0;
    }

    .disclaimer-section__container {
        padding: 0 12px;
        gap: 8px;
    }

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