:root {
    --bg: #ffffff;
    --bg-alt: #fff6ed;
    --text: #1f2328;
    --muted: #6b7280;
    --card: rgba(255, 255, 255, 0.85);
    --stroke: rgba(17, 24, 39, 0.10);

    --orange: #f57c00;
    --orange-2: #e65100;

    --radius: 18px;
    --radius-sm: 14px;
    --shadow: 0 18px 50px rgba(17, 24, 39, 0.10);
    --shadow-soft: 0 10px 30px rgba(17, 24, 39, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    opacity: 0.95;
}

.accent {
    color: var(--orange);
}

.section {
    padding: 72px 0;
    position: relative;
}

.section--alt {
    background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%);
}

.section__head {
    margin-bottom: 26px;
}

.section__head h2 {
    margin: 0 0 10px 0;
    font-size: clamp(24px, 2.6vw, 34px);
    letter-spacing: -0.02em;
}

.section__head p {
    margin: 0;
    color: var(--muted);
    max-width: 68ch;
}

/* Background blobs */
.bg-blob {
    position: fixed;
    inset: auto;
    width: 520px;
    height: 520px;
    filter: blur(60px);
    opacity: 0.22;
    z-index: -1;
    pointer-events: none;
    border-radius: 999px;
}

.bg-blob--1 {
    top: -140px;
    right: -160px;
    background: radial-gradient(circle at 30% 30%, var(--orange) 0%, transparent 60%);
}

.bg-blob--2 {
    bottom: -220px;
    left: -180px;
    background: radial-gradient(circle at 35% 45%, #ffb454 0%, transparent 60%);
}

/* Header / Nav */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 160px;
}

.brand__logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    max-width: 140px;
}

.brand__text span {
    color: var(--muted);
    font-size: 12.5px;
    margin-top: 2px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(31, 35, 40, 0.92);
    white-space: nowrap;
}

.nav__links a {
    font-weight: 600;
    font-size: 14px;
    padding: 10px 10px;
    border-radius: 999px;
}

.nav__links a:hover {
    background: rgba(245, 124, 0, 0.08);
}

.nav__cta {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

@media (max-width: 1150px) {
    .nav__links a {
        font-size: 13px;
        padding: 8px 8px;
    }

    .btn--lg {
        padding: 12px 14px;
    }
}

.burger {
    display: none;
    position: relative;
    width: 60px;
    height: 44px;
    padding: 0;
    border-radius: 12px;

    background: linear-gradient(180deg, #f58a1f 0%, #e56700 100%);

    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);

    overflow: visible;
    cursor: pointer;
}

.burger span {
    position: absolute;
    left: 50%;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transform: translateX(-50%);
    transition: transform 180ms ease, opacity 160ms ease, top 180ms ease;
}

.burger span:nth-child(1) {
    top: 15px;
}

.burger span:nth-child(2) {
    top: 21px;
}

.burger span:nth-child(3) {
    top: 27px;
}

.burger[aria-expanded="true"] span:nth-child(1) {
    top: 21px;
    transform: translateX(-50%) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
    top: 21px;
    transform: translateX(-50%) rotate(-45deg);
}

.nav-mobile {
    display: none;
    padding: 12px 0 18px 0;
    gap: 10px;
    flex-direction: column;
}

.nav-mobile a {
    padding: 10px 12px;
    border-radius: 14px;
    font-weight: 600;
}

.nav-mobile a:hover {
    background: rgba(245, 124, 0, 0.08);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 16px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid transparent;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    cursor: pointer;
    user-select: none;
}

.btn:active {
    transform: translateY(1px);
}

.btn--primary {
    background: linear-gradient(180deg, var(--orange) 0%, var(--orange-2) 100%);
    color: #fff;
    box-shadow: 0 12px 26px rgba(245, 124, 0, 0.25);
}

.btn--primary:hover {
    box-shadow: 0 16px 34px rgba(245, 124, 0, 0.28);
    transform: translateY(-1px);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(17, 24, 39, 0.10);
    color: rgba(31, 35, 40, 0.95);
}

.btn--ghost:hover {
    border-color: rgba(245, 124, 0, 0.30);
    transform: translateY(-1px);
}

.btn--lg {
    padding: 14px 18px;
    font-size: 15px;
}

.btn--sm {
    padding: 10px 14px;
    font-size: 13px;
}

/* Hero */
.hero {
    padding: 64px 0 26px 0;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: start;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    padding: 10px 12px;
    border: 1px solid rgba(245, 124, 0, 0.20);
    background: rgba(255, 246, 237, 0.65);
    color: rgba(31, 35, 40, 0.92);
    font-weight: 700;
    font-size: 13px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(245, 124, 0, 0.20);
}

.hero h1 {
    margin: 14px 0 10px 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.lead {
    margin: 0 0 18px 0;
    color: var(--muted);
    font-size: 16px;
    max-width: 62ch;
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.hero__badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.badge {
    border: 1px solid rgba(17, 24, 39, 0.10);
    background: rgba(255, 255, 255, 0.72);
    border-radius: 16px;
    padding: 12px 12px;
    box-shadow: var(--shadow-soft);
}

.badge strong {
    display: block;
    font-size: 13px;
}

.badge span {
    display: block;
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 2px;
}

.hero__media {
    position: relative;
}

.hero__card {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, 0.10);
    box-shadow: var(--shadow);
    background: #fff;
}

.hero__card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.hero__overlay {
    padding: 14px 14px 16px 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.98) 70%);
}

.hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.hero__social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.hero__social .mini-cta {
    margin-left: auto;
}

.hero__social a {
    color: rgba(31, 35, 40, 0.95);
    transition: color .2s ease;
}

.hero__social img {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain;
}

.hero__social a:hover {
    color: var(--orange);
}

.stat {
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 16px;
    padding: 10px 10px;
    background: rgba(255, 255, 255, 0.8);
}

.stat__k {
    display: block;
    font-size: 12px;
    color: var(--muted);
    font-weight: 700;
}

.stat__v {
    display: block;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.mini-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: rgba(31, 35, 40, 0.92);
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(245, 124, 0, 0.10);
    border: 1px solid rgba(245, 124, 0, 0.22);
}

.mini-cta:hover {
    background: rgba(245, 124, 0, 0.14);
}

.floating {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.floating__item {
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(17, 24, 39, 0.10);
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.08);
    font-weight: 800;
    font-size: 13px;
}

/* Categories tiles */
.categories {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.cat {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 180px;
    border: 1px solid rgba(17, 24, 39, 0.10);
    box-shadow: var(--shadow-soft);
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    transform: translateY(0);
    transition: transform .18s ease, box-shadow .18s ease;
}

.cat:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.14);
}

.cat__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.18) 0%, rgba(17, 24, 39, 0.64) 100%);
}

.cat__content {
    position: absolute;
    inset: auto 0 0 0;
    padding: 16px 16px;
    color: #fff;
}

.cat__content h3 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.cat__cta {
    display: inline-block;
    font-weight: 900;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(245, 124, 0, 0.95);
}

/* Quick bar */
.quick {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px;
    border-radius: 20px;
    border: 1px solid rgba(17, 24, 39, 0.10);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-soft);
}

.quick__box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quick__box span {
    color: var(--muted);
    font-weight: 600;
}

/* Cards grid */
.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, 0.10);
    background: rgba(255, 255, 255, 0.80);
    box-shadow: var(--shadow-soft);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card:hover {
    transform: translateY(-2px);
    border-color: rgba(245, 124, 0, 0.28);
    box-shadow: 0 20px 46px rgba(17, 24, 39, 0.14);
}

.card__img {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: #f3f4f6;
}

.card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform .35s ease;
}

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

.card__zoom {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(17, 24, 39, 0.38);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.tag {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 12px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.tag--hot {
    background: rgba(245, 124, 0, 0.95);
}

.tag--pro {
    background: rgba(17, 24, 39, 0.60);
}

.card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 14px 14px 16px 14px;
}

.card__body h3 {
    margin: 0 0 6px 0;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.card__body p {
    margin: 0 0 10px 0;
    color: var(--muted);
    font-weight: 500;
    text-align: justify;
}

.meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: rgba(31, 35, 40, 0.86);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 12px;
    margin-top: auto;
}

/* Why */
.section--why {
    background:
        radial-gradient(1200px 400px at 20% 10%, rgba(245, 124, 0, 0.12), transparent 60%),
        radial-gradient(900px 300px at 80% 30%, rgba(255, 180, 84, 0.10), transparent 60%),
        #fff;
}

.why {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 18px;
    align-items: start;
}

.why__left h2 {
    margin-top: 0;
}

.why__left p {
    color: var(--muted);
    max-width: 66ch;
}

.why__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 18px 0;
}

.why__item {
    display: flex;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(17, 24, 39, 0.10);
    background: rgba(255, 255, 255, 0.80);
    box-shadow: var(--shadow-soft);
}

.why__icon {
    font-size: 22px;
}

.why__item strong {
    display: block;
}

.why__item span {
    display: block;
    color: var(--muted);
    font-weight: 600;
    font-size: 13px;
    margin-top: 2px;
}

.cta-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.why__card {
    border-radius: 22px;
    border: 1px solid rgba(17, 24, 39, 0.10);
    background: rgba(255, 255, 255, 0.80);
    box-shadow: var(--shadow);
    padding: 16px;
}

.why__card h3 {
    margin-top: 0;
}

.faq details {
    padding: 10px 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.faq details:last-child {
    border-bottom: 0;
}

.faq summary {
    cursor: pointer;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.faq p {
    margin: 8px 0 0 0;
    color: var(--muted);
    font-weight: 600;
}

.note {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid rgba(245, 124, 0, 0.25);
    background: rgba(255, 246, 237, 0.65);
}

.note__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--orange);
}

/* Reviews */
.reviews {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 18px;
    border-radius: 22px;
    border: 1px solid rgba(17, 24, 39, 0.10);
    background: rgba(255, 255, 255, 0.80);
    box-shadow: var(--shadow-soft);
}

.reviews p {
    color: var(--muted);
    margin: 6px 0 0 0;
}

/* Contact */
.contact {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
    align-items: start;
}

.form {
    border-radius: 22px;
    border: 1px solid rgba(17, 24, 39, 0.10);
    background: rgba(255, 255, 255, 0.80);
    box-shadow: var(--shadow);
    padding: 16px;
}

.form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 12px;
}

input, select, textarea {
    font: inherit;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    background: rgba(255, 255, 255, 0.92);
    outline: none;
}

input:focus, select:focus, textarea:focus {
    border-color: rgba(245, 124, 0, 0.55);
    box-shadow: 0 0 0 5px rgba(245, 124, 0, 0.12);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.check {
    flex-direction: row !important;
    align-items: center;
    gap: 10px !important;
    font-weight: 700 !important;
    color: rgba(31, 35, 40, 0.9);
}

.check input {
    width: 18px;
    height: 18px;
}

.form__hint {
    margin: 12px 0 0 0;
    color: var(--muted);
    font-weight: 600;
    font-size: 13px;
}

.form__hint a {
    color: rgba(31, 35, 40, 0.92);
    text-decoration: underline;
    text-decoration-color: rgba(245, 124, 0, 0.40);
    text-underline-offset: 3px;
}

.contact__aside {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.aside-card {
    border-radius: 22px;
    border: 1px solid rgba(17, 24, 39, 0.10);
    background: rgba(255, 255, 255, 0.80);
    box-shadow: var(--shadow-soft);
    padding: 16px;
}

.aside-card--accent {
    border-color: rgba(245, 124, 0, 0.22);
    background: rgba(255, 246, 237, 0.70);
}

.steps {
    margin: 10px 0 0 18px;
    color: rgba(31, 35, 40, 0.92);
    font-weight: 700;
}

.steps li {
    margin: 8px 0;
}

.aside-card p {
    color: var(--muted);
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 28px 0;
    border-top: 1px solid rgba(17, 24, 39, 0.06);
    background: rgba(255, 255, 255, 0.65);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    grid-template-rows: auto auto;
    gap: 14px;
    align-items: start;
}

.footer__links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    color: rgba(31, 35, 40, 0.92);
    font-weight: 800;
    grid-row: 1;
    grid-column: 2 / 4;
    justify-self: end;
    justify-content: flex-end;
}

.footer__social {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    align-items: center;
    grid-row: 2;
    grid-column: 1;
}

.footer__social img {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain;
}

.footer__copy {
    color: var(--muted);
    font-weight: 700;
    text-align: right;
    grid-row: 2;
    grid-column: 3;
    justify-self: end;
    margin-top: 8px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.72);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 100;
}

.lightbox.is-open {
    display: flex;
}

.lightbox__img {
    max-width: min(980px, 96vw);
    max-height: 86vh;
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.lightbox__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
    .hero__grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .footer__grid {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

@media (max-width: 920px) {
    .nav__links {
        display: none;
    }

    .burger {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
    }

    .nav-mobile {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0 0 0 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-8px);
        transition: max-height 320ms cubic-bezier(.2, .9, .2, 1), opacity 260ms ease, transform 260ms ease;
    }

    .nav-mobile.is-open {
        padding: 12px 0 18px 0;
        max-height: 480px;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-mobile a,
    .nav-mobile .btn {
        transform: translateY(-8px);
        opacity: 0;
        transition: transform 300ms cubic-bezier(.2, .9, .2, 1), opacity 260ms ease;
    }

    .nav-mobile.is-open a,
    .nav-mobile.is-open .btn {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-mobile.is-open a:nth-child(1) {
        transition-delay: 60ms;
    }

    .nav-mobile.is-open a:nth-child(2) {
        transition-delay: 100ms;
    }

    .nav-mobile.is-open a:nth-child(3) {
        transition-delay: 140ms;
    }

    .nav-mobile.is-open a:nth-child(4) {
        transition-delay: 180ms;
    }

    .nav-mobile.is-open a:nth-child(5) {
        transition-delay: 220ms;
    }

    .nav-mobile.is-open a:nth-child(6) {
        transition-delay: 260ms;
    }

    .nav__cta .btn {
        display: none;
    }

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

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

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

    .reviews {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__card img {
        height: 340px;
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .burger, .burger span, .nav-mobile, .nav-mobile a, .nav-mobile .btn {
        transition: none !important;
    }

    .nav-mobile {
        transform: none !important;
        opacity: 1 !important;
        max-height: none !important;
    }

    .nav-mobile.is-open a,
    .nav-mobile.is-open .btn {
        transform: none !important;
        opacity: 1 !important;
    }
}

.footer__credit {
    grid-row: 3;
    grid-column: 1 / -1;
    margin-top: 10px;
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0.8;
}

.footer__credit a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: inherit;
    transition: opacity .2s ease, transform .2s ease;
}

.footer__credit a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.footer__credit img {
    height: 16px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 980px) {
    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .footer__links,
    .footer__social,
    .footer__copy,
    .footer__credit {
        grid-column: 1 !important;
        grid-row: auto !important;
        justify-self: center;
        text-align: center;
    }

    .footer__links {
        justify-content: center;
    }

    .footer__social {
        justify-content: center;
    }
}