/* ============================================================
   CATEGORY EVENEMENTIEL - Pixair83
   Photographie et video par drone - Evenementiel
   Couleurs: #0d1b4b (bleu nuit) | #b2dfdb (cyan pale) | #ffc107 (ambre)
   ============================================================ */

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

img, video, iframe, svg, canvas {
    max-width: 100%;
    height: auto;
}

/* ============================================================
   CAT HERO
   ============================================================ */

.cat-hero {
    background-color: #0d1b4b;
    color: #fff;
    padding: 72px 24px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    max-width: 100%;
}

.cat-hero__inner {
    flex: 1;
    max-width: 600px;
    min-width: 0;
}

.cat-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(178, 223, 219, 0.12);
    border: 1px solid rgba(178, 223, 219, 0.3);
    color: #b2dfdb;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 40px;
    margin-bottom: 28px;
}

.cat-hero__title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.cat-hero__accent {
    color: #b2dfdb;
}

.cat-hero__desc {
    font-size: 17px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 40px;
    max-width: 520px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.cat-hero__stats {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.cat-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 28px;
}

.cat-hero__stat:first-child {
    padding-left: 0;
}

.cat-hero__stat-num {
    font-size: 32px;
    font-weight: 800;
    color: #ffc107;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.cat-hero__stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
    text-align: center;
}

.cat-hero__stat-sep {
    width: 1px;
    height: 40px;
    background-color: rgba(178, 223, 219, 0.25);
    flex-shrink: 0;
}

/* Hero visual */
.cat-hero__visual {
    position: relative;
    flex-shrink: 0;
    width: 420px;
    max-width: 100%;
}

.cat-hero__visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    border: 2px solid rgba(178, 223, 219, 0.2);
}

.cat-hero__visual-badge {
    position: absolute;
    bottom: -16px;
    left: 20px;
    background-color: #ffc107;
    color: #0d1b4b;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ============================================================
   ARTICLES SECTION
   ============================================================ */

.cat-articles {
    background-color: #f7f9fc;
    padding: 72px 24px;
}

.cat-articles__container {
    max-width: 1200px;
    margin: 0 auto;
}

.cat-articles__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cat-articles__header-left {
    min-width: 0;
}

.cat-articles__title {
    font-size: 32px;
    font-weight: 800;
    color: #0d1b4b;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
    overflow-wrap: break-word;
}

.cat-articles__subtitle {
    font-size: 15px;
    color: #5a6880;
    margin: 0;
}

.cat-articles__count {
    flex-shrink: 0;
    background-color: #0d1b4b;
    color: #b2dfdb;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 30px;
    white-space: nowrap;
}

/* Grid articles */
.cat-articles__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

/* Art card */
.art-card {
    background-color: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e8ecf2;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
    display: flex;
    flex-direction: column;
}

.art-card:hover {
    border-color: #b2dfdb;
    box-shadow: 0 8px 32px rgba(13, 27, 75, 0.10);
}

.art-card__img-wrap {
    position: relative;
    overflow: hidden;
    background-color: #e8ecf2;
    height: 210px;
    flex-shrink: 0;
}

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

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

.art-card__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(13, 27, 75, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.art-card:hover .art-card__overlay {
    opacity: 1;
}

.art-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

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

.art-card__date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #7a8899;
    font-weight: 500;
}

.art-card__tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #0d1b4b;
    background-color: #b2dfdb;
    padding: 3px 10px;
    border-radius: 20px;
}

.art-card__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.38;
    color: #0d1b4b;
    margin: 0 0 12px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

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

.art-card__title a:hover {
    color: #3a5bd9;
    text-decoration: underline;
}

.art-card__title a:focus-visible {
    outline: 3px solid #ffc107;
    outline-offset: 3px;
    border-radius: 4px;
}

.art-card__desc {
    font-size: 14px;
    color: #5a6880;
    line-height: 1.62;
    margin: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Empty state */
.cat-empty {
    text-align: center;
    padding: 80px 24px;
    background-color: #fff;
    border-radius: 16px;
    border: 2px dashed #d4dae5;
}

.cat-empty__icon {
    margin: 0 auto 24px;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f6f6;
    border-radius: 50%;
}

.cat-empty__title {
    font-size: 20px;
    font-weight: 700;
    color: #0d1b4b;
    margin: 0 0 12px;
}

.cat-empty__text {
    font-size: 15px;
    color: #7a8899;
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ============================================================
   TABLE SECTION
   ============================================================ */

.cat-table-section {
    background-color: #fff;
    padding: 72px 24px;
}

.cat-table-section__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.cat-table-section__head {
    margin-bottom: 40px;
    max-width: 700px;
}

.cat-table-section__title {
    font-size: 28px;
    font-weight: 800;
    color: #0d1b4b;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    overflow-wrap: break-word;
}

.cat-table-section__sub {
    font-size: 15px;
    color: #5a6880;
    line-height: 1.65;
    margin: 0;
    overflow-wrap: break-word;
}

.cat-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    border: 1px solid #e2e8f2;
    margin-bottom: 16px;
}

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

.cat-table thead {
    background-color: #0d1b4b;
    color: #fff;
}

.cat-table thead th {
    padding: 16px 18px;
    text-align: left;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #b2dfdb;
    white-space: nowrap;
}

.cat-table tbody tr {
    border-bottom: 1px solid #edf0f7;
    transition: background-color 0.18s ease;
}

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

.cat-table tbody tr:hover {
    background-color: #f4f9f9;
}

.cat-table tbody td {
    padding: 15px 18px;
    color: #3a4558;
    vertical-align: middle;
    overflow-wrap: break-word;
    word-break: break-word;
}

.cat-table__format {
    font-weight: 700;
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 6px;
    display: inline-block;
    white-space: nowrap;
}

.cat-table__format--mariage {
    background-color: #fce4ec;
    color: #880e4f;
}

.cat-table__format--concert {
    background-color: #e8f5e9;
    color: #1b5e20;
}

.cat-table__format--sport {
    background-color: #e3f2fd;
    color: #0d47a1;
}

.cat-table__format--corpo {
    background-color: #fff8e1;
    color: #9a6200;
}

.cat-table__format--inaug {
    background-color: #f3e5f5;
    color: #4a148c;
}

.cat-table__score {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.cat-table__score--high {
    background-color: #e0f7ee;
    color: #0d7a4e;
}

.cat-table__score--mid {
    background-color: #fff3cd;
    color: #9a6200;
}

.cat-table__score--low {
    background-color: #fde8e8;
    color: #b91c1c;
}

.cat-table__disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 13px;
    color: #7a8899;
    line-height: 1.55;
    margin: 0;
    overflow-wrap: break-word;
}

.cat-table__disclaimer svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================================
   CALCULATEUR AUTONOMIE
   ============================================================ */

.cat-calc-section {
    background-color: #0d1b4b;
    padding: 72px 24px;
}

.cat-calc-section__inner {
    max-width: 960px;
    margin: 0 auto;
}

.cat-calc-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cat-calc-header__icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background-color: rgba(255, 193, 7, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.cat-calc-header__title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
    overflow-wrap: break-word;
}

.cat-calc-header__sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.6;
    overflow-wrap: break-word;
}

.cat-calc-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.cat-calc-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.cat-calc-label {
    font-size: 13px;
    font-weight: 600;
    color: #b2dfdb;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cat-calc-input {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(178, 223, 219, 0.25);
    color: #fff;
    font-size: 16px;
    padding: 12px 16px;
    border-radius: 10px;
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    transition: border-color 0.2s ease;
    max-width: 100%;
}

.cat-calc-input:focus {
    outline: none;
    border-color: #ffc107;
}

.cat-calc-input option {
    background-color: #0d1b4b;
    color: #fff;
}

.cat-calc-hint {
    font-size: 12px;
    color: rgba(178, 223, 219, 0.6);
    line-height: 1.5;
}

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

.cat-calc-btn:hover {
    background-color: #e6ac00;
}

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

/* Calc result */
.cat-calc-result {
    background-color: rgba(178, 223, 219, 0.08);
    border: 1px solid rgba(178, 223, 219, 0.2);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cat-calc-result__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(178, 223, 219, 0.1);
}

.cat-calc-result__row:last-of-type {
    border-bottom: none;
}

.cat-calc-result__label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    min-width: 0;
    overflow-wrap: break-word;
}

.cat-calc-result__val {
    font-size: 16px;
    font-weight: 800;
    color: #ffc107;
    white-space: nowrap;
    flex-shrink: 0;
}

.cat-calc-result__note {
    font-size: 12px;
    color: rgba(178, 223, 219, 0.5);
    margin: 16px 0 0;
    line-height: 1.5;
    overflow-wrap: break-word;
}

/* ============================================================
   ROI SECTION
   ============================================================ */

.cat-roi-section {
    background-color: #f7f9fc;
    padding: 72px 24px;
}

.cat-roi-section__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.cat-roi-header {
    max-width: 700px;
    margin-bottom: 48px;
}

.cat-roi-header__title {
    font-size: 28px;
    font-weight: 800;
    color: #0d1b4b;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    overflow-wrap: break-word;
}

.cat-roi-header__sub {
    font-size: 15px;
    color: #5a6880;
    line-height: 1.65;
    margin: 0;
    overflow-wrap: break-word;
}

.cat-roi-body {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
}

.cat-roi-form {
    background-color: #fff;
    border-radius: 14px;
    border: 1px solid #e2e8f2;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.cat-roi-label {
    font-size: 13px;
    font-weight: 600;
    color: #0d1b4b;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cat-roi-input {
    background-color: #f7f9fc;
    border: 1px solid #d0d9e8;
    color: #0d1b4b;
    font-size: 16px;
    padding: 12px 16px;
    border-radius: 10px;
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    transition: border-color 0.2s ease;
    max-width: 100%;
}

.cat-roi-input:focus {
    outline: none;
    border-color: #0d1b4b;
}

.cat-roi-hint {
    font-size: 12px;
    color: #7a8899;
    line-height: 1.5;
}

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

.cat-roi-btn:hover {
    background-color: #1a2f6e;
}

.cat-roi-btn:focus-visible {
    outline: 3px solid #ffc107;
    outline-offset: 3px;
}

/* ROI result */
.cat-roi-result {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cat-roi-result__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.cat-roi-card {
    background-color: #fff;
    border-radius: 14px;
    border: 1px solid #e2e8f2;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color 0.2s ease;
}

.cat-roi-card:hover {
    border-color: #b2dfdb;
}

.cat-roi-card--accent {
    background-color: #0d1b4b;
    border-color: #0d1b4b;
}

.cat-roi-card__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #7a8899;
}

.cat-roi-card--accent .cat-roi-card__label {
    color: #b2dfdb;
}

.cat-roi-card__val {
    font-size: 34px;
    font-weight: 900;
    color: #0d1b4b;
    letter-spacing: -0.03em;
    line-height: 1;
}

.cat-roi-card--accent .cat-roi-card__val {
    color: #ffc107;
}

.cat-roi-card__note {
    font-size: 12px;
    color: #7a8899;
    line-height: 1.5;
    overflow-wrap: break-word;
}

.cat-roi-card--accent .cat-roi-card__note {
    color: rgba(178, 223, 219, 0.7);
}

.cat-roi-result__disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 13px;
    color: #7a8899;
    line-height: 1.55;
    margin: 0;
    overflow-wrap: break-word;
}

.cat-roi-result__disclaimer svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================================
   TECHNIQUE SECTION
   ============================================================ */

.cat-tech-section {
    background-color: #fff;
    padding: 72px 24px;
}

.cat-tech-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.cat-tech-section__title {
    font-size: 28px;
    font-weight: 800;
    color: #0d1b4b;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    overflow-wrap: break-word;
}

.cat-tech-section__sub {
    font-size: 15px;
    color: #5a6880;
    margin: 0 0 48px;
    max-width: 640px;
    line-height: 1.65;
    overflow-wrap: break-word;
}

.cat-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.cat-tech-card {
    background-color: #f7f9fc;
    border: 1px solid #e2e8f2;
    border-radius: 16px;
    padding: 32px 24px;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.cat-tech-card:hover {
    border-color: #b2dfdb;
    box-shadow: 0 6px 24px rgba(13, 27, 75, 0.08);
}

.cat-tech-card__icon {
    width: 64px;
    height: 64px;
    background-color: #b2dfdb;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cat-tech-card__title {
    font-size: 20px;
    font-weight: 800;
    color: #0d1b4b;
    margin: 0;
    overflow-wrap: break-word;
}

.cat-tech-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.cat-tech-card__list li {
    font-size: 14px;
    color: #3a4558;
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
    overflow-wrap: break-word;
    word-break: break-word;
}

.cat-tech-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ffc107;
}

.cat-tech-card__tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #0d1b4b;
    background-color: rgba(178, 223, 219, 0.5);
    border: 1px solid #b2dfdb;
    padding: 5px 14px;
    border-radius: 20px;
    display: inline-block;
    align-self: flex-start;
}

/* ============================================================
   DISCLAIMER SECTION
   ============================================================ */

.cat-disclaimer-section {
    background-color: #f7f9fc;
    padding: 40px 24px;
}

.cat-disclaimer-section__inner {
    max-width: 900px;
    margin: 0 auto;
}

.cat-disclaimer-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: #fffbeb;
    border: 1px solid #fde68a;
    border-left: 4px solid #ffc107;
    border-radius: 10px;
    padding: 20px 24px;
}

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

.cat-disclaimer-box__content {
    min-width: 0;
}

.cat-disclaimer-box__title {
    font-size: 14px;
    font-weight: 700;
    color: #92400e;
    margin: 0 0 6px;
    overflow-wrap: break-word;
}

.cat-disclaimer-box__text {
    font-size: 13px;
    color: #78350f;
    line-height: 1.65;
    margin: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* ============================================================
   RESPONSIVE - 1024px
   ============================================================ */

@media (max-width: 1024px) {

    .cat-hero {
        padding: 56px 24px 48px;
        gap: 36px;
    }

    .cat-hero__title {
        font-size: 38px;
    }

    .cat-hero__visual {
        width: 340px;
    }

    .cat-hero__stat {
        padding: 0 20px;
    }

    .cat-hero__stat-num {
        font-size: 28px;
    }

    .cat-articles {
        padding: 56px 20px;
    }

    .cat-articles__title {
        font-size: 26px;
    }

    .cat-articles__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 22px;
    }

    .cat-table-section {
        padding: 56px 20px;
    }

    .cat-table-section__title {
        font-size: 24px;
    }

    .cat-calc-section {
        padding: 56px 20px;
    }

    .cat-calc-header__title {
        font-size: 22px;
    }

    .cat-calc-body {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .cat-roi-section {
        padding: 56px 20px;
    }

    .cat-roi-header__title {
        font-size: 24px;
    }

    .cat-roi-body {
        grid-template-columns: 320px 1fr;
        gap: 28px;
    }

    .cat-roi-form {
        padding: 24px;
    }

    .cat-roi-card__val {
        font-size: 28px;
    }

    .cat-tech-section {
        padding: 56px 20px;
    }

    .cat-tech-section__title {
        font-size: 24px;
    }

    .cat-tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    .cat-tech-card {
        padding: 24px 20px;
    }

    .cat-disclaimer-section {
        padding: 36px 20px;
    }
}

/* ============================================================
   RESPONSIVE - 768px
   ============================================================ */

@media (max-width: 768px) {

    /* Hero */
    .cat-hero {
        flex-direction: column;
        padding: 48px 20px 56px;
        gap: 40px;
    }

    .cat-hero__inner {
        max-width: 100%;
        text-align: center;
    }

    .cat-hero__badge {
        justify-content: center;
    }

    .cat-hero__title {
        font-size: 32px;
    }

    .cat-hero__desc {
        font-size: 16px;
        max-width: 100%;
    }

    .cat-hero__stats {
        justify-content: center;
    }

    .cat-hero__stat {
        padding: 0 16px;
    }

    .cat-hero__stat-num {
        font-size: 26px;
    }

    .cat-hero__visual {
        width: 100%;
        max-width: 460px;
        margin: 0 auto;
    }

    /* Articles */
    .cat-articles {
        padding: 48px 16px;
    }

    .cat-articles__header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 32px;
    }

    .cat-articles__title {
        font-size: 24px;
    }

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

    /* Table */
    .cat-table-section {
        padding: 48px 16px;
    }

    .cat-table-section__title {
        font-size: 22px;
    }

    /* Calc */
    .cat-calc-section {
        padding: 48px 16px;
    }

    .cat-calc-header {
        gap: 16px;
    }

    .cat-calc-header__title {
        font-size: 20px;
    }

    .cat-calc-body {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cat-calc-btn {
        width: 100%;
    }

    /* ROI */
    .cat-roi-section {
        padding: 48px 16px;
    }

    .cat-roi-header__title {
        font-size: 22px;
    }

    .cat-roi-body {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cat-roi-form {
        padding: 24px 20px;
    }

    .cat-roi-btn {
        width: 100%;
    }

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

    .cat-roi-card__val {
        font-size: 28px;
    }

    /* Tech */
    .cat-tech-section {
        padding: 48px 16px;
    }

    .cat-tech-section__title {
        font-size: 22px;
    }

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

    /* Disclaimer */
    .cat-disclaimer-section {
        padding: 32px 16px;
    }

    .cat-disclaimer-box {
        flex-direction: column;
        gap: 12px;
    }
}

/* ===== RESPONSIVE (auto-repair) ===== */
@media (max-width: 1024px) {

    .cat-hero {
        padding: 56px 24px 48px;
        gap: 36px;
    }

    .cat-hero__title {
        font-size: 38px;
    }

    .cat-hero__visual {
        width: 340px;
    }

    .cat-hero__stat {
        padding: 0 20px;
    }

    .cat-hero__stat-num {
        font-size: 28px;
    }

    .cat-articles {
        padding: 56px 20px;
    }

    .cat-articles__title {
        font-size: 26px;
    }

    .cat-articles__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 22px;
    }

    .cat-table-section {
        padding: 56px 20px;
    }

    .cat-table-section__title {
        font-size: 24px;
    }

    .cat-calc-section {
        padding: 56px 20px;
    }

    .cat-calc-header__title {
        font-size: 22px;
    }

    .cat-calc-body {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .cat-roi-section {
        padding: 56px 20px;
    }

    .cat-roi-header__title {
        font-size: 24px;
    }

    .cat-roi-body {
        grid-template-columns: 320px 1fr;
        gap: 28px;
    }

    .cat-roi-form {
        padding: 24px;
    }

    .cat-roi-card__val {
        font-size: 28px;
    }

    .cat-tech-section {
        padding: 56px 20px;
    }

    .cat-tech-section__title {
        font-size: 24px;
    }

    .cat-tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    .cat-tech-card {
        padding: 24px 20px;
    }

    .cat-disclaimer-section {
        padding: 36px 20px;
    }
}

@media (max-width: 768px) {

    .cat-hero {
        flex-direction: column;
        padding: 48px 20px 56px;
        gap: 40px;
    }

    .cat-hero__inner {
        max-width: 100%;
        text-align: center;
    }

    .cat-hero__badge {
        justify-content: center;
    }

    .cat-hero__title {
        font-size: 32px;
    }

    .cat-hero__desc {
        font-size: 16px;
        max-width: 100%;
    }

    .cat-hero__stats {
        justify-content: center;
    }

    .cat-hero__stat {
        padding: 0 16px;
    }

    .cat-hero__stat-num {
        font-size: 26px;
    }

    .cat-hero__visual {
        width: 100%;
        max-width: 460px;
        margin: 0 auto;
    }

    .cat-articles {
        padding: 48px 16px;
    }

    .cat-articles__header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 32px;
    }

    .cat-articles__title {
        font-size: 24px;
    }

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

    .cat-table-section {
        padding: 48px 16px;
    }

    .cat-table-section__title {
        font-size: 22px;
    }

    .cat-calc-section {
        padding: 48px 16px;
    }

    .cat-calc-header {
        gap: 16px;
    }

    .cat-calc-header__title {
        font-size: 20px;
    }

    .cat-calc-body {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cat-calc-btn {
        width: 100%;
    }

    .cat-roi-section {
        padding: 48px 16px;
    }

    .cat-roi-header__title {
        font-size: 22px;
    }

    .cat-roi-body {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cat-roi-form {
        padding: 24px 20px;
    }

    .cat-roi-btn {
        width: 100%;
    }

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

    .cat-roi-card__val {
        font-size: 28px;
    }

    .cat-tech-section {
        padding: 48px 16px;
    }

    .cat-tech-section__title {
        font-size: 22px;
    }

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

    .cat-disclaimer-section {
        padding: 32px 16px;
    }

    .cat-disclaimer-box {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {

    .cat-hero {
        padding: 36px 16px 44px;
        gap: 32px;
    }

    .cat-hero__badge {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 20px;
    }

    .cat-hero__title {
        font-size: 26px;
        letter-spacing: -0.01em;
    }

    .cat-hero__desc {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .cat-hero__stat {
        padding: 0 12px;
    }

    .cat-hero__stat-num {
        font-size: 22px;
    }

    .cat-hero__stat-label {
        font-size: 11px;
    }

    .cat-hero__stat-sep {
        height: 32px;
    }

    .cat-hero__visual-badge {
        font-size: 10px;
        padding: 6px 12px;
        bottom: -12px;
        left: 12px;
    }

    .cat-articles {
        padding: 36px 14px;
    }

    .cat-articles__title {
        font-size: 20px;
    }

    .cat-articles__subtitle {
        font-size: 13px;
    }

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

    .art-card__img-wrap {
        height: 180px;
    }

    .art-card__body {
        padding: 18px 16px;
    }

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

    .art-card__desc {
        font-size: 13px;
    }

    .cat-empty {
        padding: 56px 16px;
    }

    .cat-empty__title {
        font-size: 18px;
    }

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

    .cat-table-section {
        padding: 36px 14px;
    }

    .cat-table-section__title {
        font-size: 19px;
    }

    .cat-table-section__sub {
        font-size: 13px;
    }

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

    .cat-table thead th {
        padding: 12px 12px;
        font-size: 11px;
    }

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

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

    .cat-calc-section {
        padding: 36px 14px;
    }

    .cat-calc-header {
        gap: 12px;
        margin-bottom: 32px;
    }

    .cat-calc-header__icon {
        width: 52px;
        height: 52px;
        border-radius: 12px;
    }

    .cat-calc-header__title {
        font-size: 18px;
    }

    .cat-calc-header__sub {
        font-size: 13px;
    }

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

    .cat-calc-input {
        font-size: 15px;
        padding: 11px 14px;
    }

    .cat-calc-hint {
        font-size: 11px;
    }

    .cat-calc-btn {
        font-size: 14px;
        padding: 13px 20px;
    }

    .cat-calc-result {
        padding: 20px 18px;
    }

    .cat-calc-result__row {
        padding: 10px 0;
    }

    .cat-calc-result__label {
        font-size: 12px;
    }

    .cat-calc-result__val {
        font-size: 14px;
    }

    .cat-calc-result__note {
        font-size: 11px;
    }

    .cat-roi-section {
        padding: 36px 14px;
    }

    .cat-roi-header__title {
        font-size: 19px;
    }

    .cat-roi-header__sub {
        font-size: 13px;
    }

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

    .cat-roi-label {
        font-size: 12px;
    }

    .cat-roi-input {
        font-size: 15px;
        padding: 11px 14px;
    }

    .cat-roi-hint {
        font-size: 11px;
    }

    .cat-roi-btn {
        font-size: 14px;
        padding: 13px 20px;
    }

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

    .cat-roi-card__label {
        font-size: 11px;
    }

    .cat-roi-card__val {
        font-size: 24px;
    }

    .cat-roi-card__note {
        font-size: 11px;
    }

    .cat-roi-result__disclaimer {
        font-size: 12px;
    }

    .cat-tech-section {
        padding: 36px 14px;
    }

    .cat-tech-section__title {
        font-size: 19px;
    }

    .cat-tech-section__sub {
        font-size: 13px;
        margin-bottom: 32px;
    }

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

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

    .cat-tech-card__title {
        font-size: 17px;
    }

    .cat-tech-card__list li {
        font-size: 13px;
    }

    .cat-tech-card__tag {
        font-size: 10px;
        padding: 4px 12px;
    }

    .cat-disclaimer-section {
        padding: 24px 14px;
    }

    .cat-disclaimer-box {
        padding: 16px 18px;
        gap: 10px;
    }

    .cat-disclaimer-box__title {
        font-size: 13px;
    }

    .cat-disclaimer-box__text {
        font-size: 12px;
    }
}