:root {
    --bg-1: #0f172a;
    --bg-2: #111827;
    --bg-3: #1e293b;
    --card: rgba(255, 255, 255, 0.10);
    --card-strong: rgba(255, 255, 255, 0.14);
    --card-border: rgba(255, 255, 255, 0.16);
    --text: #f8fafc;
    --muted: rgba(248, 250, 252, 0.74);
    --accent: #38bdf8;
    --accent-2: #a78bfa;
    --accent-3: #22c55e;
    --shadow: rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    scroll-behavior: smooth;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(167, 139, 250, 0.16), transparent 28%),
    linear-gradient(160deg, var(--bg-1), var(--bg-2) 55%, var(--bg-3));
}

body {
    min-height: 100vh;
}

a {
    color: inherit;
}

.page {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 40%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.03), transparent 60%);
    pointer-events: none;
}

.header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 28px 0 12px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand img {
    display: block;
    width: min(190px, 58vw);
    height: auto;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.25));
    opacity: 0.96;
}

.nav {
    display: flex;
    align-items: center;
    gap: 18px;
    color: rgba(248, 250, 252, 0.82);
    font-size: 0.95rem;
    font-weight: 650;
}

.nav a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav a:hover {
    color: #ffffff;
}

.nav-cta {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.main {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 42px 0 56px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: 28px;
    align-items: stretch;
}

.hero {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
}

.hero-graphic {
    width: 100%;
    overflow: hidden;
    padding: 0 clamp(16px, 3vw, 40px) 24px;
}

.hero-svg {
    width: 100%;
    height: auto;
    display: block;
}

.hero-card,
.panel,
.project-card,
.contact-card {
    border-radius: 28px;
    background: var(--card);
    border: 1px solid var(--card-border);
    box-shadow: 0 24px 80px var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-card {
    padding: clamp(28px, 4vw, 54px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--muted);
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.12);
}

.headline {
    margin: 0;
    max-width: 25ch;
    font-size: clamp(1.8rem, 3.6vw, 4rem);
    line-height: 0.95;
    letter-spacing: -0.065em;
}


.headline {
    margin: 0;
    max-width: 50ch;
    font-size: clamp(1.45rem, 5vw, 2.4rem);
    line-height: 0.95;
    letter-spacing: -0.065em;
}

.headline span {
    color: #7dd3fc;
}

.subline {
    margin: 22px 0 0;
    max-width: 66ch;
    color: var(--muted);
    font-size: clamp(1rem, 1.5vw, 1.14rem);
    line-height: 1.7;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button-primary {
    color: #06111f;
    background: linear-gradient(135deg, #7dd3fc, #c4b5fd);
    box-shadow: 0 16px 34px rgba(56, 189, 248, 0.24);
}

.button-secondary {
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.button:hover {
    transform: translateY(-2px);
}

.side-card {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.side-logo {
    display: flex;
    justify-content: center;
    padding: 24px 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.side-logo img {
    display: block;
    width: min(100%, 300px);
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tech-list li {
    padding: 9px 12px;
    border-radius: 999px;
    color: rgba(248, 250, 252, 0.88);
    background: rgba(15, 23, 42, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.92rem;
    font-weight: 700;
}

.section {
    margin-top: 28px;
}

.section-heading {
    margin: 50px 0 16px;
    font-size: clamp(1.6rem, 2.5vw, 2.45rem);
    letter-spacing: -0.04em;
}

.section-lead {
    margin: 0 0 24px;
    max-width: 76ch;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 20px;
    align-items: stretch;
}

.panel {
    padding: 28px;
}

.panel-featured {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(56, 189, 248, 0.18), rgba(167, 139, 250, 0.14)),
    var(--card-strong);
    border-color: rgba(125, 211, 252, 0.34);
    box-shadow: 0 28px 90px rgba(56, 189, 248, 0.16),
    0 24px 80px var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.panel-featured::before {
    content: "Fokus";
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #06111f;
    background: linear-gradient(135deg, #7dd3fc, #c4b5fd);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.panel-featured h2 {
    max-width: 82%;
    font-size: clamp(1.55rem, 2vw, 2rem);
}

.panel-secondary {
    opacity: 0.88;
}

.panel-secondary h2 {
    font-size: 1.18rem;
}

.panel-secondary .panel-icon {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
}

.panel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.25), rgba(167, 139, 250, 0.22));
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 1.35rem;
}

.panel h2,
.project-card h3,
.contact-card h2 {
    margin: 0;
    font-size: 1.35rem;
    letter-spacing: -0.025em;
}

.panel p,
.project-card p,
.contact-card p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.check-list {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    color: rgba(248, 250, 252, 0.84);
    line-height: 1.55;
}

.check-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.check-list li::before {
    content: "✓";
    flex: 0 0 auto;
    color: #86efac;
    font-weight: 900;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.project-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    min-height: 260px;
}

.project-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.17), rgba(167, 139, 250, 0.12), transparent 65%);
    opacity: 0.72;
    pointer-events: none;
}

.project-content {
    position: relative;
    z-index: 1;
}

.project-badge {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.project-logo {
    display: block;
    width: min(260px, 100%);
    max-height: 90px;
    object-fit: contain;
    margin: 18px 0 0;
    filter: brightness(0) invert(1) drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 36px;
}

.contact-header p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.contact-header a {
    color: #7dd3fc;
    text-decoration: none;
    font-weight: 800;
}

.contact-header a:hover {
    text-decoration: underline;
}

.contact-columns {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 32px;
    align-items: start;
}

.contact-info h3,
.contact-form-wrap h3 {
    margin: 0 0 18px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
}

.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text);
    line-height: 1.55;
}

.contact-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 20px;
    margin-top: 2px;
    color: #7dd3fc;
    font-size: 1rem;
}

.contact-list a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.contact-list a:hover {
    color: #7dd3fc;
}

/* Formular */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
}

.form-field input,
.form-field textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 10px 14px;
    color: var(--text);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(248, 250, 252, 0.35);
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: rgba(125, 211, 252, 0.55);
    background: rgba(255, 255, 255, 0.09);
}

/* Form Success Message */
.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.10);
    border: 1px solid rgba(134, 239, 172, 0.30);
    color: #86efac;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
    animation: form-success-fadein 0.4s ease;
}

.form-success.visible {
    display: flex;
}

.form-success::before {
    content: "✓";
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(134, 239, 172, 0.18);
    border: 1px solid rgba(134, 239, 172, 0.35);
    font-size: 0.9rem;
    font-weight: 900;
}

@keyframes form-success-fadein {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form .button {
    align-self: flex-start;
}

.contact-card a:not(.button) {
    color: #7dd3fc;
    text-decoration: none;
    font-weight: 800;
}
.contact-card a:not(.button) {
    color: #7dd3fc;
    text-decoration: none;
    font-weight: 800;
}

.contact-card a:not(.button):hover {
    text-decoration: underline;
}

.about-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 36px;
    align-items: start;
}

.about-photo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.about-photo-placeholder {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.20), rgba(167, 139, 250, 0.18));
    border: 2px solid rgba(125, 211, 252, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(125, 211, 252, 0.70);
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.12);
}

.about-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
}

.about-role {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-intro {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 1.02rem;
}

.about-sub {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

.about-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--text) !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.92rem;
    transition: background 0.2s, border-color 0.2s;
}

.about-social-link:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(125, 211, 252, 0.35);
    color: #7dd3fc !important;
    text-decoration: none !important;
}

.about-social-link i {
    font-size: 1.1rem;
}

.about-cta {
    margin-top: 4px;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 18px;
}

.gallery-thumb {
    all: unset;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    transition: transform 0.2s, border-color 0.2s;
    display: block;
}

.gallery-thumb:hover {
    transform: scale(1.05);
    border-color: rgba(125, 211, 252, 0.45);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(6, 8, 20, 0.92);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-inner {
    position: relative;
    max-width: min(90vw, 1100px);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.lightbox-inner img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.6);
    object-fit: contain;
    display: block;
}

.lightbox-counter {
    color: rgba(248,250,252,0.6);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--text);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.2s;
    z-index: 9001;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.20);
}

.lightbox-nav {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    color: var(--text);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.2s;
    flex-shrink: 0;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.18);
}

.lightbox-prev { margin-right: 16px; }
.lightbox-next { margin-left: 16px; }

@media (max-width: 620px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: start;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 18px 0 28px;
    color: var(--muted);
    font-size: 0.95rem;
}

.footer-left {
    padding-left: 2em;
    justify-self: start;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.footer-left strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 1rem;
}

.footer-center {
    justify-self: center;
    align-self: center;
    text-align: center;
    color: rgba(248, 250, 252, 0.84);
    font-weight: 600;
}


.footer-privacy-link {
    background: none;
    border: none;
    padding: 0;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
    font-family: inherit;
    text-align: right;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-privacy-link {
    background: none;
    border: none;
    padding: 0;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
    font-family: inherit;
}

.footer-privacy-link:hover {
    color: #dbeafe;
}

/* Privacy Modal */
.privacy-modal-content {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--text);
}

.privacy-modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    padding: 20px 24px 16px;
}

.privacy-modal-header .modal-title {
    color: var(--text);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.privacy-modal-body {
    padding: 24px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.privacy-modal-body h3 {
    color: var(--text);
    font-size: 0.97rem;
    font-weight: 700;
    margin: 22px 0 8px;
    letter-spacing: -0.01em;
}

.privacy-modal-body h3:first-of-type {
    margin-top: 4px;
}

.privacy-modal-body p {
    margin: 0 0 10px;
}

.privacy-modal-body ul {
    margin: 6px 0 10px 18px;
    padding: 0;
}

.privacy-modal-body ul li {
    margin-bottom: 4px;
}

.privacy-modal-body a {
    color: #7dd3fc;
    text-decoration: none;
    font-weight: 600;
}

.privacy-modal-body a:hover {
    text-decoration: underline;
}

.privacy-intro {
    background: rgba(56, 189, 248, 0.07);
    border: 1px solid rgba(56, 189, 248, 0.16);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 16px !important;
    color: var(--text) !important;
    font-size: 0.93rem;
}

.privacy-date {
    margin-top: 20px;
    font-size: 0.83rem;
    color: rgba(248, 250, 252, 0.38);
    font-style: italic;
}

.privacy-modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 14px 24px;
}

@media (max-width: 920px) {
    .header {
        flex-direction: column;
        justify-content: center;
    }

    .hero-visual {
        padding: 32px;
    }

    .hero-svg {
        max-width: 500px;
    }

    .nav {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero {
        grid-template-columns: 1fr;
    }
    
    .hero-graphic {
        padding-bottom: 24px;
    }

    .headline {
        max-width: 100%;
    }

    .services-grid,
    .projects-grid,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-columns {
        grid-template-columns: 1fr;
    }

    .about-card {
        grid-template-columns: 1fr;
    }

    .about-photo {
        flex-direction: row;
        text-align: left;
        gap: 18px;
    }

    .about-photo-placeholder {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
        flex-shrink: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-card .actions {
        margin-top: 0;
    }

    .panel-featured h2 {
        max-width: 100%;
    }

    .panel-featured::before {
        position: static;
        display: inline-flex;
        margin-bottom: 16px;
    }
}

@media (max-width: 620px) {
    .main {
        width: min(100% - 28px, 1180px);
        padding-top: 30px;
    }

    .header,
    .footer {
        width: min(100% - 28px, 1180px);
    }

    .hero-card,
    .panel,
    .project-card,
    .contact-card,
    .side-card {
        border-radius: 22px;
        padding: 22px;
    }

    .nav {
        gap: 12px;
        font-size: 0.9rem;
    }

    .actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-left,
    .footer-center {
        justify-self: center;
    }
}