/* ============================
   HOME CSS - PIXAIR83 V5.1
   ============================ */

/* ---- HERO ---- */
.hero {
    background-color: #0d1b4b;
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(8, 15, 46, 0.65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.35);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ffc107;
    margin-bottom: 24px;
}

.hero-eyebrow svg {
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 720px;
}

.hero-title span {
    color: #ffc107;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-scroll-hint {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(178, 223, 219, 0.6);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
}

.scroll-line {
    width: 40px;
    height: 1px;
    background-color: rgba(178, 223, 219, 0.4);
}

/* ---- TIMELINE SECTION ---- */
.timeline-section {
    background-color: #f4f7fb;
    padding: 96px 0;
}

.timeline-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    margin-bottom: 72px;
}

.timeline-header h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: #0d1b4b;
    margin-bottom: 12px;
}

.timeline-header p {
    color: #5a6a8a;
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

/* Ligne centrale timeline */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: rgba(13, 27, 75, 0.12);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    margin-bottom: 64px;
    position: relative;
    align-items: start;
}

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

.timeline-content-left {
    padding-right: 40px;
    text-align: right;
}

.timeline-content-right {
    padding-left: 40px;
}

.timeline-content-empty {
    /* Côté vide pour alternance */
}

/* Noeud central */
.timeline-node {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 4px;
    position: relative;
    z-index: 2;
}

.timeline-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #0d1b4b;
    border: 3px solid #ffc107;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffc107;
}

/* Timeline card */
.timeline-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(13, 27, 75, 0.09);
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
}

.timeline-card:hover {
    box-shadow: 0 10px 36px rgba(13, 27, 75, 0.15);
    transform: translateY(-3px);
}

.timeline-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

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

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

.timeline-card-cat {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0d6e6b;
    background-color: rgba(178, 223, 219, 0.3);
    padding: 2px 8px;
    border-radius: 10px;
}

.timeline-card-date {
    font-size: 0.75rem;
    color: #7a8aaa;
}

.timeline-card-read {
    font-size: 0.72rem;
    color: #7a8aaa;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.timeline-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0d1b4b;
    margin-bottom: 8px;
    line-height: 1.35;
}

.timeline-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.timeline-card h3 a:hover {
    color: #ffc107;
}

.timeline-card p {
    font-size: 0.86rem;
    color: #5a6a8a;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Items gauche/droite alternés */
.timeline-item.left .timeline-content-left {
    order: 1;
}
.timeline-item.left .timeline-node {
    order: 2;
}
.timeline-item.left .timeline-content-right {
    order: 3;
    visibility: hidden;
}

.timeline-item.right .timeline-content-left {
    order: 1;
    visibility: hidden;
}
.timeline-item.right .timeline-node {
    order: 2;
}
.timeline-item.right .timeline-content-right {
    order: 3;
}

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

.featured-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.featured-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffc107;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 32px;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.featured-main {
    background-color: #0a1438;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(178, 223, 219, 0.15);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.featured-main:hover {
    border-color: rgba(255, 193, 7, 0.4);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.featured-main-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.featured-main-body {
    padding: 28px;
}

.featured-main-cat {
    display: inline-block;
    background-color: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 10px;
    margin-bottom: 14px;
}

.featured-main h2 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.35;
}

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

.featured-main h2 a:hover {
    color: #ffc107;
}

.featured-main p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    margin-bottom: 20px;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.78rem;
    color: rgba(178, 223, 219, 0.7);
}

/* Liste second article featured */
.featured-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.featured-side-card {
    background-color: #0a1438;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    gap: 0;
    border: 1px solid rgba(178, 223, 219, 0.12);
    transition: border-color 0.25s;
    flex: 1;
}

.featured-side-card:hover {
    border-color: rgba(255, 193, 7, 0.35);
}

.featured-side-image {
    width: 130px;
    min-width: 130px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.featured-side-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-side-cat {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #b2dfdb;
    margin-bottom: 8px;
}

.featured-side-card h3 {
    font-size: 0.92rem;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.35;
}

.featured-side-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.featured-side-card h3 a:hover {
    color: #ffc107;
}

.featured-side-date {
    font-size: 0.74rem;
    color: rgba(178, 223, 219, 0.5);
}

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

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

.categories-header {
    text-align: center;
    margin-bottom: 48px;
}

.categories-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #0d1b4b;
    margin-bottom: 10px;
}

.categories-header p {
    color: #5a6a8a;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

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

.cat-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid rgba(13, 27, 75, 0.08);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    position: relative;
    overflow: hidden;
}

.cat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #ffc107;
}

.cat-card:hover {
    border-color: rgba(13, 27, 75, 0.15);
    box-shadow: 0 8px 28px rgba(13, 27, 75, 0.12);
    transform: translateY(-4px);
}

.cat-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(13, 27, 75, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #0d1b4b;
}

.cat-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0d1b4b;
    margin-bottom: 6px;
}

.cat-card p {
    font-size: 0.84rem;
    color: #5a6a8a;
    line-height: 1.55;
    margin-bottom: 14px;
}

.cat-count {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffc107;
    background-color: rgba(255, 193, 7, 0.12);
    padding: 3px 10px;
    border-radius: 10px;
    display: inline-block;
}

/* ---- SECTION COMPARATIF DRONES ---- */
.compare-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.compare-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.compare-header {
    text-align: center;
    margin-bottom: 48px;
}

.compare-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #0d1b4b;
    margin-bottom: 12px;
}

.compare-header p {
    color: #5a6a8a;
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
}

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

.compare-tab {
    padding: 9px 20px;
    border: 2px solid rgba(13, 27, 75, 0.15);
    border-radius: 30px;
    font-size: 0.86rem;
    font-weight: 600;
    color: #5a6a8a;
    background: none;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background-color 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.compare-tab.active,
.compare-tab:hover {
    border-color: #0d1b4b;
    color: #0d1b4b;
    background-color: rgba(13, 27, 75, 0.05);
}

.compare-tab.active {
    background-color: #0d1b4b;
    color: #ffffff;
    border-color: #0d1b4b;
}

.compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
    border: 1px solid rgba(13, 27, 75, 0.1);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    min-width: 640px;
}

.compare-table thead th {
    background-color: #0d1b4b;
    color: #ffffff;
    padding: 14px 18px;
    text-align: left;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

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

.compare-table tbody td {
    padding: 13px 18px;
    border-bottom: 1px solid rgba(13, 27, 75, 0.07);
    color: #1a2540;
    vertical-align: middle;
}

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

.compare-table tbody tr:nth-child(even) td {
    background-color: rgba(178, 223, 219, 0.07);
}

.compare-table tbody tr:hover td {
    background-color: rgba(255, 193, 7, 0.06);
}

.spec-label {
    font-weight: 600;
    color: #0d1b4b;
}

.spec-good {
    color: #1a7a6e;
    font-weight: 600;
}

.spec-ok {
    color: #8a6200;
}

.spec-check {
    color: #1a7a6e;
    display: inline-flex;
}

.spec-cross {
    color: #c0392b;
    display: inline-flex;
}

/* Panel tableau (affiché/masqué par JS) */
.compare-panel {
    display: none;
}
.compare-panel.active {
    display: block;
}

/* ---- SECTION NEWSLETTER ---- */
.newsletter-section {
    background-color: #0d1b4b;
    padding: 80px 0;
}

.newsletter-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.newsletter-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 193, 7, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #ffc107;
}

.newsletter-section h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    color: #ffffff;
    margin-bottom: 14px;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 32px;
}

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

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 13px 18px;
    border: 2px solid rgba(178, 223, 219, 0.25);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    transition: border-color 0.2s;
    box-sizing: border-box;
    width: 100%;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(178, 223, 219, 0.5);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #ffc107;
}

.newsletter-form button {
    padding: 13px 24px;
    background-color: #ffc107;
    color: #0d1b4b;
    border: none;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    flex-shrink: 0;
}

.newsletter-form button:hover {
    background-color: #e6ac00;
    transform: translateY(-1px);
}

.newsletter-legal {
    font-size: 0.75rem;
    color: rgba(178, 223, 219, 0.45);
}

/* ---- SECTION A PROPOS RAPIDE ---- */
.about-strip {
    background-color: #f4f7fb;
    padding: 64px 0;
    border-top: 1px solid rgba(13, 27, 75, 0.07);
}

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

.about-strip-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(13, 27, 75, 0.15);
}

.about-strip-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.about-strip-content .section-label {
    display: block;
    margin-bottom: 12px;
}

.about-strip-content h2 {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    color: #0d1b4b;
    margin-bottom: 16px;
    line-height: 1.3;
}

.about-strip-content p {
    color: #5a6a8a;
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(13, 27, 75, 0.06);
    color: #0d1b4b;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(13, 27, 75, 0.1);
}

.about-tag svg {
    color: #ffc107;
}

/* ---- SECTION STATS ---- */
.stats-section {
    background-color: #0d1b4b;
    padding: 64px 0;
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    padding: 24px 16px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(178, 223, 219, 0.1);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffc107;
    display: block;
    margin-bottom: 6px;
    line-height: 1;
}

.stat-label {
    font-size: 0.84rem;
    color: rgba(178, 223, 219, 0.75);
    line-height: 1.4;
}

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

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

.articles-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 16px;
    flex-wrap: wrap;
}

.articles-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    color: #0d1b4b;
    margin: 0;
}

.articles-header a {
    color: #0d1b4b;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 2px;
    transition: color 0.2s;
}

.articles-header a:hover {
    color: #ffc107;
}

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

.article-card {
    background-color: #f8fafd;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(13, 27, 75, 0.07);
    transition: box-shadow 0.25s, transform 0.25s;
}

.article-card:hover {
    box-shadow: 0 10px 32px rgba(13, 27, 75, 0.12);
    transform: translateY(-4px);
}

.article-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

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

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

.article-cat-badge {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0d6e6b;
    background-color: rgba(178, 223, 219, 0.3);
    padding: 2px 8px;
    border-radius: 8px;
}

.article-date {
    font-size: 0.74rem;
    color: #7a8aaa;
}

.article-read {
    font-size: 0.72rem;
    color: #7a8aaa;
    margin-left: auto;
}

.article-card h3 {
    font-size: 0.97rem;
    font-weight: 700;
    color: #0d1b4b;
    margin-bottom: 8px;
    line-height: 1.38;
}

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

.article-card h3 a:hover {
    color: #ffc107;
}

.article-card p {
    font-size: 0.84rem;
    color: #5a6a8a;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---- DISCLAIMER STRIP ---- */
.disclaimer-strip {
    background-color: #fffbeb;
    border-top: 2px solid #ffc107;
    padding: 20px 0;
}

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

.disclaimer-strip-icon {
    flex-shrink: 0;
    color: #8a6200;
}

.disclaimer-strip p {
    font-size: 0.82rem;
    color: #6b4c00;
    line-height: 1.5;
    margin: 0;
}

/* ---- RESPONSIVE HOME ---- */
@media (max-width: 1024px) {
    .timeline::before {
        left: 28px;
        transform: none;
    }

    .timeline-item {
        grid-template-columns: 56px 1fr;
        gap: 0;
    }

    .timeline-item.left .timeline-content-left,
    .timeline-item.right .timeline-content-left {
        order: 1;
        display: none;
    }

    .timeline-item.left .timeline-node,
    .timeline-item.right .timeline-node {
        order: 1;
    }

    .timeline-item.left .timeline-content-right,
    .timeline-item.right .timeline-content-right {
        order: 2;
        padding-left: 24px;
        visibility: visible;
        text-align: left;
    }

    .timeline-item.left .timeline-content-left {
        visibility: hidden;
    }

    .timeline-content-left {
        padding-right: 0;
        text-align: left;
    }

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

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

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

    .featured-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .featured-side-card {
        flex: 1 1 calc(50% - 10px);
        min-width: 240px;
    }

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

    .about-strip-image {
        order: -1;
    }

    .about-strip-image img {
        height: 260px;
    }

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

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

    .hero-content {
        padding: 60px 16px;
    }

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

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

    .timeline {
        padding: 0 16px;
    }

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

    .timeline-item {
        grid-template-columns: 44px 1fr;
        margin-bottom: 40px;
    }

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

    .timeline-card-image {
        height: 160px;
    }

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

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

    .featured-sidebar {
        flex-direction: column;
    }

    .featured-side-image {
        width: 100px;
        min-width: 100px;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input[type="email"],
    .newsletter-form button {
        width: 100%;
    }

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

    .disclaimer-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .articles-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .featured-side-card {
        flex-direction: column;
    }

    .featured-side-image {
        width: 100%;
        height: 140px;
    }

    .about-strip {
        padding: 40px 0;
    }
}