/* ═══════════════════════════════════════════
   Collier GPS Sans Abonnement — Homepage
   Style : Editorial / Brand (Jacobsen-inspired)
   ═══════════════════════════════════════════ */

:root {
    --navy: #1b2a4a;
    --navy-light: #2d4a7a;
    --cream: #f7f4f0;
    --cream-dark: #ede8e1;
    --sand: #c9b99a;
    --sage: #6b7c5e;
    --sage-light: #8a9b7a;
    --rust: #9b5e3c;
    --text: #2c2c2c;
    --text-light: #6b6b6b;
    --text-lighter: #999999;
    --white: #ffffff;
    --border: #e5e0d8;
    --transition: 0.3s ease;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 500;
    line-height: 1.2;
}

a {
    color: var(--navy);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--navy-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

strong {
    font-weight: 600;
}

/* ═══ HERO — Full width image with overlay ═══ */
.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
}

.hero__image-wrap {
    position: absolute;
    inset: 0;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(27, 42, 74, 0.85) 0%,
            rgba(27, 42, 74, 0.6) 40%,
            rgba(27, 42, 74, 0.1) 70%,
            transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 0 0 80px 0;
}

.hero__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
}

.hero__label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 20px;
}

.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 400px;
    margin-bottom: 32px;
    font-weight: 400;
}

.hero__btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--white);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.hero__btn:hover {
    background: var(--cream);
    color: var(--navy);
}

/* ═══ INTRO — Centered text block ═══ */
.intro {
    padding: 80px 0;
    background: var(--white);
}

.intro__container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.intro__eyebrow {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-lighter);
    margin-bottom: 24px;
}

.intro__text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    line-height: 1.8;
    color: var(--text);
    font-weight: 400;
}

/* ═══ CATEGORIES — 3 column product grid ═══ */
.categories {
    padding: 0 0 80px;
    background: var(--white);
}

.categories__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.categories__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    text-align: left;
}

.category-card__image-wrap {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--cream);
}

.category-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-card__image {
    transform: scale(1.05);
}

.category-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.category-card__range {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--sage);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.category-card__desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 16px;
}

.category-card__btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--navy);
    padding: 10px 22px;
    transition: all var(--transition);
}

.category-card__btn:hover {
    background: var(--navy-light);
    color: var(--white);
}

/* ═══ COLLECTION — Dark section ═══ */
.collection {
    background: var(--navy);
    color: var(--white);
    overflow: hidden;
}

.collection__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

.collection__content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.collection__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 32px;
}

.collection__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.collection__list li a {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition);
    line-height: 1.3;
}

.collection__list li a:hover {
    color: var(--white);
}

.collection__image-wrap {
    overflow: hidden;
}

.collection__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.collection:hover .collection__image {
    transform: scale(1.03);
}

/* ═══ HOW IT WORKS — Photo grid ═══ */
.howto {
    padding: 100px 0;
    background: var(--white);
}

.howto__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.howto__title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 36px;
    color: var(--text);
}

.howto__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 48px;
}

.howto__image-large,
.howto__image-small {
    overflow: hidden;
    background: var(--cream);
}

.howto__image-large {
    grid-row: span 2;
}

.howto__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.howto__image-large:hover .howto__img,
.howto__image-small:hover .howto__img {
    transform: scale(1.04);
}

.howto__text {
    max-width: 680px;
}

.howto__text p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.75;
}

/* ═══ COMPARISON TABLE ═══ */
.compare {
    padding: 80px 0;
    background: var(--cream);
}

.compare__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.compare__title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 8px;
    color: var(--text);
}

.compare__subtitle {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.compare__table-wrap {
    overflow-x: auto;
    background: var(--white);
    border: 1px solid var(--border);
}

.compare__table {
    width: 100%;
    border-collapse: collapse;
}

.compare__table th,
.compare__table td {
    padding: 18px 24px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.compare__table thead th {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text);
    background: var(--cream);
    border-bottom: 2px solid var(--border);
}

.compare__table thead th small {
    display: block;
    font-weight: 400;
    font-size: 11px;
    color: var(--text-lighter);
    text-transform: none;
    letter-spacing: normal;
    margin-top: 2px;
}

.compare__table td:first-child {
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}

.compare__highlight {
    background: rgba(107, 124, 94, 0.06) !important;
}

.compare__table thead .compare__highlight {
    background: rgba(107, 124, 94, 0.12) !important;
    color: var(--sage);
}

.compare__table tbody tr:last-child td {
    border-bottom: none;
}

.compare__table tbody tr:hover td {
    background: rgba(107, 124, 94, 0.04);
}

/* ═══ EDITORIAL — Text + Images side by side ═══ */
.editorial {
    padding: 100px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.editorial__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.editorial--reverse .editorial__container {
    grid-template-columns: 1.2fr 1fr;
}

.editorial--reverse .editorial__text {
    order: 2;
}

.editorial--reverse .editorial__images {
    order: 1;
}

.editorial__title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 8px;
    color: var(--text);
}

.editorial__lead {
    font-size: 15px;
    color: var(--text-lighter);
    margin-bottom: 24px;
    font-style: italic;
}

.editorial__body p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 16px;
}

.editorial__btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-top: 8px;
    transition: color var(--transition);
}

.editorial__btn:hover {
    color: var(--rust);
}

.editorial__images {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
}

.editorial__img-wrap {
    overflow: hidden;
    background: var(--cream);
}

.editorial__img-wrap--large {
    grid-column: 1 / -1;
}

.editorial__img-wrap--small {
    grid-column: 1 / 2;
}

.editorial__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.editorial__img-wrap:hover .editorial__img {
    transform: scale(1.04);
}

/* ═══ SCENARIOS ═══ */
.scenarios {
    padding: 100px 0;
    background: var(--white);
}

.scenarios__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.scenarios__title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 40px;
    color: var(--text);
}

.scenarios__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.scenario-card {
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.scenario-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.scenario-card__img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.scenario-card:hover .scenario-card__img {
    transform: scale(1.04);
}

.scenario-card__body {
    padding: 28px 28px 32px;
}

.scenario-card__tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 10px;
}

.scenario-card__title {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text);
}

.scenario-card__body>p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
}

.scenario-card__verdict {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--sage);
    margin-top: 16px;
}

/* ═══ FAQ ═══ */
.faq {
    padding: 80px 0;
    background: var(--cream);
}

.faq__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq__title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 40px;
    color: var(--text);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item__question {
    padding: 24px 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__question::after {
    content: '+';
    font-size: 20px;
    color: var(--text-lighter);
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open]>.faq-item__question::after {
    content: '−';
}

.faq-item__answer {
    padding: 0 0 24px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
}

.faq-item__answer ul {
    margin: 12px 0 0;
    padding-left: 20px;
}

.faq-item__answer li {
    padding: 4px 0;
}

/* ═══ NOTICE ═══ */
.notice {
    padding: 48px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.notice__container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.notice__text {
    font-size: 13px;
    color: var(--text-lighter);
    line-height: 1.7;
    font-style: italic;
}

/* ═══ HEADER (from components.js) ═══ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.site-header--scrolled {
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.site-header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.site-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.site-header__logo-img {
    border-radius: 6px;
}

.site-header__logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.01em;
}

.site-nav {
    display: flex;
    gap: 4px;
}

.site-nav__link {
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--text-light);
    border-radius: 6px;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.site-nav__link:hover {
    background: var(--cream);
    color: var(--text);
}

.site-nav__link--active {
    color: var(--navy);
    font-weight: 600;
}

.site-header__hamburger {
    display: none;
}

/* ═══ FOOTER (from components.js) ═══ */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.55);
    padding: 64px 0 40px;
    font-size: 13px;
}

.site-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.site-footer__brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.site-footer__logo-img {
    border-radius: 6px;
}

.site-footer__brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
}

.site-footer__brand-text {
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.65;
    font-size: 13px;
    max-width: 300px;
}

.site-footer__col-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.site-footer__list {
    list-style: none;
    padding: 0;
}

.site-footer__list li {
    margin-bottom: 10px;
}

.site-footer__link {
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--transition);
    font-size: 13px;
}

.site-footer__link:hover {
    color: var(--white);
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-footer__copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.site-footer__back-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
    padding: 8px 16px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.site-footer__back-top:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.site-footer a {
    color: rgba(255, 255, 255, 0.5);
}

.site-footer a:hover {
    color: var(--white);
}

/* ═══ MOBILE NAV ═══ */
.site-nav-mobile__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.site-nav-mobile__overlay--visible {
    opacity: 1;
    pointer-events: auto;
}

.site-nav-mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 201;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
    overflow-y: auto;
}

.site-nav-mobile--open {
    transform: translateX(0);
}

.site-nav-mobile__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.site-nav-mobile__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--text-light);
}

.site-nav-mobile__links {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.site-nav-mobile__link {
    display: block;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--text);
    border-radius: 6px;
    transition: background var(--transition);
    text-decoration: none;
}

.site-nav-mobile__link:hover {
    background: var(--cream);
}

.site-nav-mobile__link--active {
    color: var(--navy);
    font-weight: 600;
}

/* ═══ COOKIE BANNER ═══ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.05);
    padding: 20px 40px;
}

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner__text {
    font-size: 13px;
    color: var(--text);
}

.cookie-banner__text strong {
    display: block;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.cookie-banner__text p {
    margin: 0;
    color: var(--text-light);
    font-size: 12px;
}

.cookie-banner__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 10px 20px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cookie-banner__btn--accept {
    background: var(--navy);
    color: var(--white);
}

.cookie-banner__btn--accept:hover {
    background: var(--navy-light);
}

.cookie-banner__btn--refuse {
    background: var(--cream);
    color: var(--text-light);
    border: 1px solid var(--border);
}

.cookie-banner__btn--refuse:hover {
    background: var(--cream-dark);
    color: var(--text);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
    .hero {
        height: 70vh;
    }

    .hero__overlay {
        padding-bottom: 48px;
    }

    .hero__content {
        padding: 0 32px;
    }

    .categories__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .category-card__image-wrap {
        aspect-ratio: 4/3;
    }

    .collection__container {
        grid-template-columns: 1fr;
    }

    .collection__content {
        padding: 48px 32px;
    }

    .collection__image-wrap {
        height: 320px;
    }

    .howto__grid {
        grid-template-columns: 1fr 1fr;
    }

    .howto__image-large {
        grid-row: span 1;
        grid-column: span 2;
    }

    .editorial__container {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }

    .editorial--reverse .editorial__text {
        order: 0;
    }

    .editorial--reverse .editorial__images {
        order: 0;
    }

    .scenarios__grid {
        grid-template-columns: 1fr;
    }

    .site-nav {
        display: none;
    }

    .site-header__hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }

    .site-header__hamburger span {
        width: 22px;
        height: 2px;
        background: var(--text);
        border-radius: 1px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .site-footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner__actions {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero {
        height: 60vh;
        min-height: 400px;
    }

    .hero__content {
        padding: 0 20px;
    }

    .hero__overlay {
        background: linear-gradient(to top,
                rgba(27, 42, 74, 0.9) 0%,
                rgba(27, 42, 74, 0.5) 50%,
                transparent 100%);
    }

    .intro__container {
        padding: 0 20px;
    }

    .categories__container {
        padding: 0 20px;
    }

    .howto__container {
        padding: 0 20px;
    }

    .howto__grid {
        grid-template-columns: 1fr;
    }

    .howto__image-large {
        grid-column: span 1;
    }

    .compare__container {
        padding: 0 20px;
    }

    .editorial {
        padding: 64px 0;
    }

    .editorial__container {
        padding: 0 20px;
    }

    .editorial__images {
        grid-template-columns: 1fr;
    }

    .scenarios__container {
        padding: 0 20px;
    }

    .faq__container {
        padding: 0 20px;
    }

    .notice__container {
        padding: 0 20px;
    }

    .site-header__container {
        padding: 0 20px;
    }

    .site-footer__container {
        padding: 0 20px;
    }
}