:root {
    --bg: #f3f4f6;
    --card: #ffffff;
    --muted: #6b7280;
    --text: #111827;
    --brand: #2563eb;
    --brand-2: #3b82f6;
    --ok: #10b981;
    --warn: #facc15;
    --danger: #ef4444;
    --ring: 0 0 0 3px rgba(37, 99, 235, .25);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}

html {
    scroll-behavior: smooth;
}


.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ================= HEADER ================= */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, #1e293b, #334155);
    color: #fff;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    color: #fff;
}

.brand i {
    color: var(--brand-2);
}

.nav {
    display: flex;
    gap: 18px;
}

.nav a {
    color: #e5e7eb;
    text-decoration: none;
    opacity: .85;
    font-size: 16px;
}

.nav a:hover {
    opacity: 1;
}

.btn {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
}

.btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn--ghost:hover {
    border-color: #fff;
}

.hidden {
    display: none;
}




/* ================= HAMBURGER ================= */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* active X icon */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

/* ================== MEDIA QUERY ================== */
/* ================== MEDIA QUERY ================== */
@media (max-width: 768px) {
    .header__inner {
        padding: 10px 0;
        gap: 8px;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    .brand {
        font-size: 18px;
        gap: 6px;
        justify-self: start;
    }

    .btn--ghost {
        font-size: 13px;
        padding: 6px 12px;
        justify-self: center;
    }

    /* ================= HAMBURGER ================= */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        padding: 6px;
        border-radius: 6px;
        justify-self: end;
        transition: transform 0.3s ease;
    }

    .hamburger span {
        width: 24px;
        height: 3px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.35s ease;
    }

    /* active X animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* ================= NAV ================= */
    .nav {
        display: none;
        flex-direction: column;
        gap: 10px;
        background: #1e293b;
        padding: 14px;
        position: absolute;
        top: 100%;
        right: 0;
        width: 220px;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav.show {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav a {
        font-size: 15px;
        padding: 6px 0;
        opacity: 0;
        transform: translateX(20px);
        animation: slideIn 0.35s ease forwards;
    }

    .nav.show a:nth-child(1) { animation-delay: 0.1s; }
    .nav.show a:nth-child(2) { animation-delay: 0.2s; }
    .nav.show a:nth-child(3) { animation-delay: 0.3s; }

    @keyframes slideIn {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}






/* ================= BUTTONS ================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s transform, .2s opacity;
}

.btn:active {
    transform: translateY(1px);
}

.btn--primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
}

.btn--ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
}

.btn--primary:focus-visible,
.btn--ghost:focus-visible {
    outline: none;
    box-shadow: var(--ring);
}

/* ================== MEDIA QUERY ================== */
@media (max-width: 768px) {
    .btn {
        gap: 6px;
        padding: 8px 12px;
        font-size: 14px;
        border-radius: 10px;
    }

    .btn i {
        font-size: 14px;
    }

    .btn--primary,
    .btn--ghost {
        font-weight: 500;
    }
}






/* ================= HERO ================= */
/* ================= HERO ================= */
.hero {
    padding: 72px 0 48px;
    background: linear-gradient(135deg, #f9fafb 0%, #eef2f7 100%);
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
}

.hero__copy h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 16px;
    color: #1f2937; /* Dark slate */
}

.hero__copy p {
    color: #4b5563; /* Muted gray */
    font-size: 18px;
    margin: 0 0 20px;
    max-width: 520px;
}

.hero__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 26px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
    transition: all 0.25s ease;
}

.hero__button i {
    font-size: 18px;
}

.hero__button:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.45);
}

.hero__button:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.hero__image {
    margin-top: 2rem;
    text-align: center;
}

.hero__image img {
    max-width: 100%;
    height: auto;
    border-radius: 1.25rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.hero__image img:hover {
    transform: scale(1.03);
}

/* ================= FORM WRAPPER ================= */
.form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    padding: 28px;
    animation: fadeInUp 0.4s ease;
}

/* Headings inside form */
.form-wrapper h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #111827;
}

.form-wrapper h3 {
    font-size: 18px;
    margin: 20px 0 12px;
    color: #1f2937;
}

/* ================= FORM INPUTS ================= */
input, select, textarea {
    background: #f9fafb;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #111827;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 15px;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
    outline: none;
}

/* ================= SUBMIT BUTTON ================= */
.btn.btn--primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
    transition: all 0.25s ease;
}

.btn.btn--primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(16, 185, 129, 0.45);
}

.btn.btn--primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

/* Animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}



/* ================== MEDIA QUERY ================== */
@media (max-width: 768px) {
    /* Hero */
    .hero {
        padding: 48px 0 32px;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .hero__copy h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .hero__copy p {
        font-size: 15px;
        margin-bottom: 16px;
        max-width: 100%;
    }

    .hero__button {
        font-size: 14px;
        padding: 10px 18px;
        gap: 6px;
        border-radius: 10px;
    }

    .hero__button i {
        font-size: 15px;
    }

    .hero__image {
        margin-top: 1.2rem;
    }

    .hero__image img {
        border-radius: 1rem;
    }

    /* Form */
    .form-wrapper {
        padding: 18px;
        border-radius: 16px;
    }

    .form-wrapper h2 {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .form-wrapper h3 {
        font-size: 16px;
        margin: 16px 0 10px;
    }

    /* Inputs */
    input,
    select,
    textarea {
        padding: 10px 12px;
        font-size: 14px;
        border-radius: 10px;
    }

    /* Submit button */
    .btn.btn--primary {
        font-size: 14px;
        padding: 10px 18px;
        gap: 6px;
        border-radius: 10px;
    }

    .btn.btn--primary i {
        font-size: 14px;
    }
}






/* ================= FORM / CARD ================= */
.card {
    background: var(--card);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

.card__header {
    padding: 16px 16px 0;
}

.card__header h2 {
    margin: 0;
}

.hero__form {
    padding: 16px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

label {
    font-weight: 600;
}

input, select, textarea {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .12);
    color: var(--text);
    border-radius: 10px;
    padding: 12px 12px;
    font-size: 14px;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: var(--ring);
}

.error {
    color: var(--danger);
    min-height: 16px;
    font-size: 12px;
}





/* ================= CHECKBOX / CONSENT ================= */
.consent {
    margin: 8px 0 6px;
}

.checkbox {
    display: flex;
    gap: 10px;
    align-items: center;
}

.checkbox input {
    width: 18px;
    height: 18px;
}




/* ================= RESULT ================= */
.result {
    margin-top: 12px;
    padding: 14px;
    border-radius: 12px;
    border: 1px dashed rgba(0, 0, 0, .16);
}

.result.success {
    background: rgba(16, 185, 129, .08);
    border-color: rgba(16, 185, 129, .35);
}

.result.warn {
    background: rgba(250, 204, 21, .08);
    border-color: rgba(250, 204, 21, .35);
}

.result.error {
    background: rgba(239, 68, 68, .08);
    border-color: rgba(239, 68, 68, .35);
}


/* ================== MEDIA QUERY ================== */
@media (max-width: 768px) {
    /* Card */
    .card {
        border-radius: 12px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    }

    .card__header {
        padding: 12px 12px 0;
    }

    .card__header h2 {
        font-size: 18px;
    }

    .hero__form {
        padding: 12px;
    }

    /* Grid */
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Fields */
    .field {
        gap: 4px;
    }

    label {
        font-size: 13px;
    }

    input,
    select,
    textarea {
        padding: 10px;
        font-size: 13px;
        border-radius: 8px;
    }

    /* Errors */
    .error {
        font-size: 11px;
        min-height: 14px;
    }

    /* Checkbox */
    .consent {
        margin: 6px 0 4px;
    }

    .checkbox {
        gap: 8px;
    }

    .checkbox input {
        width: 16px;
        height: 16px;
    }

    /* Result box */
    .result {
        margin-top: 10px;
        padding: 10px;
        border-radius: 10px;
        font-size: 13px;
    }
}





/* ================= SECTIONS ================= */
.section {
    padding: 56px 0;
    background: #ffffff;
}

.section:nth-of-type(even) {
    background: #f3f4f6;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.step {
    background: var(--card);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 16px;
    padding: 16px;
}

.step__icon {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f9fafb;
    border: 1px solid rgba(0, 0, 0, .12);
    margin-bottom: 8px;
}


/* ================== MEDIA QUERY ================== */
@media (max-width: 768px) {
    /* Sections */
    .section {
        padding: 36px 0;
    }

    /* Steps grid → single column */
    .steps {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Step cards */
    .step {
        padding: 12px;
        border-radius: 12px;
    }

    /* Step icons */
    .step__icon {
        width: 30px;
        height: 30px;
        margin-bottom: 6px;
        border-radius: 8px;
    }

    /* Step text shrink */
    .step h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .step p {
        font-size: 14px;
        line-height: 1.4;
    }
}





/* ================= TRUST STRIP ================= */
/* ================= TRUST STRIP ================= */
.trust {
    padding: 48px 0;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.trust__head {
    margin-bottom: 28px;
}

.trust__title {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    color: #1e3a8a;
    letter-spacing: 1px;
}

.trust__subtitle {
    margin: 6px 0 0;
    font-size: 16px;
    font-weight: 500;
    color: #475569;
}

.trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 24px 16px;
    font-weight: 500;
    color: #1f2937;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
}

.trust__item i {
    color: #0284c7;
    font-size: 40px; /* bigger icons */
    margin-bottom: 10px;
}

.trust__item span {
    font-size: 15px;
    font-weight: 600;
}

.trust__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.trust__image img {
    max-width: 480px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
    .trust__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .trust__grid {
        grid-template-columns: 1fr;
    }
}


/* ================== MEDIA QUERY ================== */
@media (max-width: 768px) {
    /* Trust strip section padding */
    .trust {
        padding: 32px 0;
    }

    /* Heading + subtitle */
    .trust__title {
        font-size: 20px;
        letter-spacing: 0.5px;
    }

    .trust__subtitle {
        font-size: 14px;
    }

    /* Grid layout → 2 per row (then 1 at 576px already) */
    .trust__grid {
        gap: 14px;
        margin-bottom: 24px;
    }

    /* Trust item cards */
    .trust__item {
        padding: 16px 12px;
        border-radius: 10px;
    }

    /* Icons smaller */
    .trust__item i {
        font-size: 28px;
        margin-bottom: 6px;
    }

    /* Text inside card smaller */
    .trust__item span {
        font-size: 13px;
    }

    /* Image shrink + shadow soften */
    .trust__image img {
        max-width: 340px;
        border-radius: 12px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    }
}





/* ================= FAQ ================= */
/* ================= FAQ ================= */
.faq-section {
    padding: 64px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.faq__title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 6px;
    color: #0f172a;
}

.faq__subtitle {
    text-align: center;
    color: #475569;
    margin-bottom: 32px;
    font-size: 16px;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.faq summary {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 20px;
    color: #0f172a;
    position: relative;
}

.faq summary::after {
    content: "\f067"; /* plus icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #0284c7;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq[open] summary::after {
    content: "\f068"; /* minus icon */
    transform: rotate(180deg);
}

.faq p {
    padding: 0 20px 16px;
    margin: 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    animation: fadeIn 0.3s ease-in-out;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ================== MEDIA QUERY ================== */
@media (max-width: 768px) {
    /* Section spacing */
    .faq-section {
        padding: 40px 0;
    }

    /* Title + subtitle */
    .faq__title {
        font-size: 22px;
        margin-bottom: 4px;
    }

    .faq__subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    /* List container */
    .faq__list {
        padding: 0 12px;
    }

    /* FAQ card */
    .faq {
        border-radius: 10px;
        margin-bottom: 10px;
    }

    /* Summary (question row) */
    .faq summary {
        font-size: 14px;
        padding: 12px 14px;
    }

    .faq summary::after {
        font-size: 14px;
    }

    /* Answer text */
    .faq p {
        font-size: 13px;
        padding: 0 14px 12px;
        line-height: 1.5;
    }
}









/* ================= TOAST ================= */
.toast {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translate(-50%, -20px);
    background: #1e293b;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 12px 14px;
    opacity: 0;
    transition: opacity 0.25s, transform 0.25s;
    pointer-events: none;
    z-index: 9999;
    max-width: 90%;
    text-align: center;
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* ================== MEDIA QUERY ================== */
@media (max-width: 768px) {
    .toast {
        top: 12px;
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 10px;
        max-width: 95%;
    }
}




/* ================= FOOTER ================= */
.footer {
    background: linear-gradient(to right, #1f2937, #111827);
    color: #d1d5db;
    padding: 2rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer__company h3 {
    margin: 0 0 0.5rem 0;
    color: var(--brand-2);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links h4 {
    margin: 0 0 0.5rem 0;
    color: var(--brand-2);
}

.footer__links a {
    color: #d1d5db;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer__links a::after {
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    background: var(--brand-2);
    transition: width 0.3s ease;
    position: absolute;
    bottom: -2px;
    left: 0;
}

.footer__links a:hover {
    color: #ffffff;
}

.footer__links a:hover::after {
    width: 100%;
}

.footer__social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__social h4 {
    margin: 0;
    color: var(--brand-2);
    font-size: 0.875rem;
    text-align: left;
}

.footer__social .social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer__social a {
    color: #d1d5db;
    font-size: 1.25rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer__social a:hover {
    color: var(--brand-2);
    transform: translateY(-2px);
}

.footer__bottom {
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1rem;
    text-align: center;
}

.muted {
    color: #9ca3af;
}

.xs {
    font-size: 0.75rem;
}

/* ================== FOOTER RESPONSIVE ================== */
/* ================== FOOTER RESPONSIVE ================== */ 
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 1rem;
        font-size: 0.813rem;
    }

    .footer__inner {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
        text-align: center;
    }

    .footer__company h3 {
        font-size: 1rem;
    }

    /* ✅ Quick Links: force row layout */
    .footer__links {
        display: flex;
        flex-direction: row;   /* 👈 force row */
        flex-wrap: wrap;       /* wrap to new line if full */
        justify-content: center;
        gap: 0.75rem 1rem;     /* row-gap, column-gap */
        padding: 0;
        margin: 0;
    }

    .footer__links h4 {
        flex: 0 0 100%;        /* keep title on its own line */
        margin: 0 0 0.5rem 0;
        text-align: center;
    }

    .footer__links a {
        flex: 0 1 auto;
        padding: 0.25rem 0.5rem;
        white-space: nowrap;
        margin: 0;
    }

    .footer__social {
        align-items: center;
    }

    .footer__social .social-icons {
        gap: 0.75rem;
        justify-content: center;
    }

    .footer__bottom {
        margin-top: 1rem;
        padding-top: 0.75rem;
        font-size: 0.75rem;
    }
}
