/* ============ Testlaget ============
   Palett från logotypen:
   #0B78AB primärblå · #508BB9 ljusblå · #2C3E4E mörk slate · #4E5665 grå slate */

:root {
    --blue: #0B78AB;
    --blue-dark: #075E88;
    --blue-deep: #06485F;
    --blue-light: #508BB9;
    --ink: #22303D;
    --slate: #4E5665;
    --muted: #6E7A8A;
    --bg: #ffffff;
    --bg-soft: #F3F7FA;
    --bg-tint: #E4EEF4;
    --line: #DCE5EC;
    --line-soft: #E8EEF3;
    --gold: #E9A319;
    --silver: #9AA7B4;
    --rea: #C2410C;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-hover: 0 10px 30px rgba(34, 48, 61, 0.10);
    --font-heading: 'Bricolage Grotesque', 'Avenir Next', sans-serif;
    --font-body: 'Figtree', -apple-system, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.12;
    color: var(--ink);
    letter-spacing: -0.015em;
}

a { color: var(--blue); }

a:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
    border-radius: 2px;
}

img { max-width: 100%; height: auto; }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ Header ============ */

.site-header {
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 50;
}

.site-header::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light) 55%, var(--blue));
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 72px;
}

.logo img { display: block; height: 55px; width: auto; }

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.site-nav a {
    color: var(--ink);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: transparent;
    text-underline-offset: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: 0.15s ease-out;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--blue);
    text-decoration-color: currentColor;
    outline: none;
}

.site-nav a.active {
    color: var(--blue);
    text-decoration-color: currentColor;
}

.nav-toggle { display: none; }
.nav-toggle-label { display: none; }

@media (max-width: 960px) {
    .nav-toggle-label {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        padding: 8px;
        cursor: pointer;
        z-index: 60;
    }

    .nav-toggle-label span {
        display: block;
        height: 2px;
        width: 100%;
        background: var(--ink);
        border-radius: 2px;
        transition: 0.15s ease-out;
    }

    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) { opacity: 0; }
    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .site-nav {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(320px, 85vw);
        background: var(--bg);
        border-right: 1px solid var(--line);
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 92px 28px 28px;
        transform: translateX(-100%);
        visibility: hidden;
        transition: transform 0.28s ease-out, visibility 0s linear 0.28s;
        z-index: 55;
    }

    .nav-toggle:checked ~ .site-nav {
        transform: translateX(0);
        visibility: visible;
        transition: transform 0.28s ease-out, visibility 0s;
    }

    .site-nav a {
        font-size: 18px;
        padding: 8px 0;
    }
}

/* ============ Hero ============ */

.hero {
    position: relative;
    background: var(--bg-soft);
    background-image: radial-gradient(ellipse at 12% -10%, rgba(11, 120, 171, 0.10), transparent 52%),
        radial-gradient(ellipse at 95% 110%, rgba(80, 139, 185, 0.14), transparent 48%);
    padding: 84px 0 72px;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.hero-mark {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(8deg);
    width: 380px;
    opacity: 0.07;
    pointer-events: none;
    user-select: none;
}

.kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
}

.hero h1 {
    font-size: clamp(38px, 5.5vw, 62px);
    font-weight: 800;
    max-width: 760px;
    letter-spacing: -0.02em;
}

.hero h1 em {
    font-style: normal;
    color: var(--blue);
    background: linear-gradient(transparent 66%, rgba(11, 120, 171, 0.16) 66%);
    padding: 0 2px;
}

.hero > .container > p,
.hero-text > p {
    margin-top: 20px;
    max-width: 620px;
    font-size: 18px;
    color: var(--slate);
}

.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
}

.trust-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    flex-shrink: 0;
}

.trust-check svg { width: 12px; height: 12px; }

/* ============ Sektioner ============ */

.section { padding: 64px 0; }

.section-soft { background: var(--bg-soft); }

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.section-head h2,
.section-title {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-head .kicker {
    display: block;
    margin-bottom: 6px;
}

.section-foot { margin-top: 26px; }

.more {
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.15s ease-out;
}

.more:hover { color: var(--blue-dark); text-decoration: underline; text-underline-offset: 4px; }

/* ============ Kategorikort ============ */

.kategori-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 18px;
}

.kategori-kort {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: 0.15s ease-out;
}

.kategori-kort:hover {
    border-color: var(--blue-light);
    box-shadow: var(--shadow-hover);
}

.kategori-ikon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--bg-tint);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.kategori-ikon svg { width: 28px; height: 28px; }

.kategori-kort h3 { font-size: 19px; }

.kategori-antal {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
}

.kategori-kort:hover .kategori-antal { text-decoration: underline; text-underline-offset: 4px; }

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

/* Kategori-landningssida */

.kategori-hero {
    background: var(--bg-soft);
    background-image: radial-gradient(ellipse at 90% -20%, rgba(80, 139, 185, 0.12), transparent 55%);
    border-bottom: 1px solid var(--line);
    padding: 18px 0 44px;
}

.kategori-hero-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

.kategori-hero .kategori-ikon {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    background: var(--bg);
    border: 1px solid var(--line);
    margin-bottom: 0;
}

.kategori-hero .kategori-ikon svg { width: 40px; height: 40px; }

.kategori-hero h1 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.kategori-hero .intro {
    margin-top: 8px;
    font-size: 17px;
    color: var(--slate);
    max-width: 640px;
}

@media (max-width: 700px) {
    .kategori-hero-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ============ Testkort ============ */

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

.card {
    position: relative;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    transition: 0.15s ease-out;
}

.card:hover {
    border-color: var(--blue-light);
    box-shadow: var(--shadow-hover);
}

.card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.card h3 a {
    color: inherit;
    text-decoration: none;
}

.card h3 a::after { content: ''; position: absolute; inset: 0; }

.card p {
    color: var(--slate);
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-cta {
    margin-top: auto;
    padding-top: 14px;
    font-weight: 700;
    font-size: 15px;
    color: var(--blue);
}

.card:hover .card-cta { text-decoration: underline; text-underline-offset: 4px; }

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

/* ============ Breadcrumb & artikelheader ============ */

.article-header { padding: 18px 0 8px; }

.breadcrumb {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 32px;
}

.breadcrumb-lista {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-lista li {
    display: flex;
    align-items: center;
}

.breadcrumb-lista li + li::before {
    content: '›';
    color: var(--blue-light);
    padding: 0 7px;
    font-size: 15px;
}

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    padding: 3px 7px;
    margin: -3px -7px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    transition: 0.15s ease-out;
}

.breadcrumb a:hover {
    color: var(--blue);
    background: var(--bg-tint);
}

.breadcrumb-lista li + li a { margin-left: 0; }

.breadcrumb-hem svg {
    width: 15px;
    height: 15px;
    display: block;
}

.breadcrumb [aria-current] {
    color: var(--ink);
    font-weight: 600;
}

.article-header h1 {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    max-width: 780px;
    letter-spacing: -0.02em;
}

.article-header .intro {
    margin-top: 16px;
    font-size: 18px;
    color: var(--slate);
    max-width: 700px;
}

.intro-split {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 56px;
    align-items: start;
}

.utvalda-box {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 26px;
}

.utvalda-box h2 {
    font-size: 17px;
    margin-bottom: 14px;
}

.utvalda-box ol {
    list-style: none;
    counter-reset: utvald;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.utvalda-box li {
    counter-increment: utvald;
    display: flex;
    align-items: center;
    gap: 12px;
}

.utvalda-box li::before {
    content: counter(utvald);
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--bg-tint);
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}


.utvalda-box a {
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
    transition: 0.15s ease-out;
}

.utvalda-box a:hover { color: var(--blue); text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 960px) {
    .intro-split { grid-template-columns: 1fr; gap: 28px; }
}

/* ============ Produktkort ============ */

.featured-products { padding: 44px 0 8px; }

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

.product-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: 0.15s ease-out;
}


.product-card--vinnare { border-color: var(--gold); }

.vinnare-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--ink);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 999px;
}

.vinnare-badge img {
    height: 14px;
    width: auto;
    filter: brightness(0) invert(1);
}

.product-sale {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--rea);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 6px;
    z-index: 2;
}

.product-image {
    width: 100%;
    height: 215px;
    object-fit: contain;
    padding: 20px;
    background: #fff;
}

.product-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-top: 1px solid var(--line-soft);
}

.product-brand {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-bottom: 4px;
}

.product-body h3 { font-size: 18px; margin-bottom: 8px; }

.product-reason {
    color: var(--slate);
    font-size: 14px;
    margin-bottom: 14px;
}

.produkt-punkter {
    display: flex;
    flex-wrap: wrap;
    row-gap: 15px;
    column-gap: 30px;
    margin: 20px;
    padding: 0;
    list-style: none;
    font-size: 15px;
}

.produkt-punkter li {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.produkt-punkter li::before { content: '•'; }

@media (max-width: 700px) {
    .produkt-punkter {
        flex-direction: column;
        gap: 8px;
        margin: 14px 0 16px;
    }
}

.product-offers {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 11px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    text-align: center;
    border: 0;
    cursor: pointer;
    font-family: var(--font-body);
    transition: 0.15s ease-out;
}

.btn-cta {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 12px rgba(11, 120, 171, 0.25);
}

.btn-cta:hover {
    background: var(--blue-dark);
    box-shadow: 0 6px 16px rgba(11, 120, 171, 0.30);
}

.btn:focus-visible {
    outline: 2px solid var(--blue-dark);
    outline-offset: 2px;
}

.product-offer-btn--alt {
    background: var(--bg-soft);
    color: var(--ink);
    border: 1px solid var(--line);
    box-shadow: none;
}

.product-offer-btn--alt:hover {
    border-color: var(--blue-light);
    color: var(--blue);
}

.product-offer-btn s { opacity: 0.6; font-weight: 400; }

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

/* ============ Produktrader ============ */

.alla-produkter { padding: 44px 0 16px; }

.product-rows {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 26px;
}

.product-row {
    display: grid;
    grid-template-columns: 56px 180px 1fr;
    gap: 22px;
    align-items: center;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    scroll-margin-top: 24px;
    transition: 0.15s ease-out;
}


.product-rank {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-tint);
    color: var(--blue-dark);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: start;
}

.product-row-media {
    position: relative;
    align-self: center;
}

.product-row-media img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.product-row-media .product-sale { top: 0; right: 0; }

.product-row-body h3 { font-size: 20px; margin-bottom: 6px; }

.product-offers--row {
    flex-direction: row;
    flex-wrap: wrap;
}

@media (max-width: 700px) {
    .product-row { grid-template-columns: 44px 1fr; }
    .product-row-media { grid-column: 2; }
    .product-row-body { grid-column: 1 / -1; }
    .product-row-media img { height: 130px; }
    .product-offers--row { flex-direction: column; }
    .product-offers--row .btn { width: 100%; }
}

/* ============ Prose ============ */

.prose {
    max-width: 760px;
    padding: 36px 0 56px;
}

.prose--flush { padding-top: 0; }

.prose h2 {
    font-size: 27px;
    margin: 40px 0 14px;
    letter-spacing: -0.015em;
}

.prose h3 {
    font-size: 21px;
    margin: 30px 0 10px;
}

.prose h4 {
    font-size: 18px;
    margin: 24px 0 8px;
}

.prose p { margin: 0 0 17px; }

.prose ul, .prose ol { margin: 0 0 17px; padding-left: 26px; }

.prose li { margin-bottom: 7px; }

.prose li::marker { color: var(--blue); font-weight: 700; }

.prose a {
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
    transition: 0.15s ease-out;
}

.prose a:hover { color: var(--blue-dark); }

.prose figure { margin: 26px 0; }

.prose figcaption {
    font-size: 14px;
    color: var(--muted);
    margin-top: 6px;
}

.prose > :first-child { margin-top: 0; }

/* ============ Infokort, FAQ, CTA ============ */

.infokort-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 26px 0;
}

.infokort {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
}

.infokort h3 { font-size: 16px; margin: 0 0 6px; }

.infokort p { font-size: 14px; color: var(--slate); margin: 0; }

.faq { margin: 36px 0; }

.faq h2 { font-size: 27px; margin-bottom: 16px; }

.faq details {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
    transition: 0.15s ease-out;
}

.faq summary {
    padding: 15px 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 44px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 21px;
    font-weight: 400;
    color: var(--blue);
    transition: 0.15s ease-out;
}

.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq details p {
    margin: 0;
    padding: 0 18px 15px;
    color: var(--slate);
}

.block-cta {
    background: var(--bg-tint);
    border-radius: var(--radius);
    padding: 28px 30px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.block-cta p { margin: 0; font-weight: 700; }

.video-embed { position: relative; aspect-ratio: 16 / 9; }

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: var(--radius);
}

/* ============ Related ============ */

.related {
    background: var(--bg-soft);
    padding: 52px 0 68px;
}

.related .section-title { margin-bottom: 26px; }

/* ============ Kontaktformulär ============ */

.kontakt-form {
    max-width: 560px;
    padding: 28px 0 64px;
}

.form-field { margin-bottom: 18px; }

.form-field label {
    display: block;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font: inherit;
    color: var(--ink);
    background: var(--bg);
    transition: 0.15s ease-out;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(11, 120, 171, 0.15);
}

.form-success {
    background: var(--bg-tint);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    font-weight: 600;
}

.form-errors {
    background: #FBEAE5;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    margin-bottom: 18px;
    color: var(--rea);
    font-size: 15px;
}

.form-errors p { margin: 0; }

/* ============ Footer ============ */

.site-footer {
    position: relative;
    background: var(--ink);
    color: #C6CFD8;
    padding: 56px 0 40px;
    font-size: 15px;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light) 55%, var(--blue));
}

.footer-mark {
    position: absolute;
    right: -60px;
    bottom: -80px;
    width: 340px;
    opacity: 0.05;
    filter: brightness(0) invert(1);
    pointer-events: none;
}

.footer-brand { margin-bottom: 36px; }

.footer-brand .logo img {
    height: 28px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-tagline {
    margin-top: 12px;
    max-width: 420px;
    color: #9AA7B4;
}

.footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid h4 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 13px;
}

.footer-grid h4 a {
    color: #fff;
    text-decoration: none;
    transition: 0.15s ease-out;
}

.footer-grid h4 a:hover { text-decoration: underline; text-underline-offset: 4px; }

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a {
    color: #C6CFD8;
    text-decoration: none;
    transition: 0.15s ease-out;
}

.footer-nav a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }

.footer-meta {
    position: relative;
    display: flex;
    gap: 22px;
    padding-top: 26px;
    flex-wrap: wrap;
}

.footer-meta a {
    color: #9AA7B4;
    text-decoration: none;
    transition: 0.15s ease-out;
}

.footer-meta a:hover { color: #fff; }

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

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

/* ============ Mobil ============ */

@media (max-width: 960px) {
    .hero { padding: 52px 0 48px; }
    .hero-mark { display: none; }
    .section { padding: 44px 0; }
    .section-head { align-items: flex-start; flex-direction: column; gap: 8px; }
}
