:root {
    --header-height: 72px;
    --ink: #15171a;
    --graphite: #4d4f52;
    --muted: #667085;
    --line: #d9e1ea;
    --paper: #ffffff;
    --mist: #f3f6f9;
    --fog: #e9eef4;
    --green: #0f766e;
    --blue: #1f4f8f;
    --orange: #f45d22;
    --red: #b91c1c;
    --gold: #d89a18;
    --radius: 8px;
    --shadow: 0 18px 48px rgba(25, 28, 33, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding-top: var(--header-height);
    color: var(--ink);
    background: var(--mist);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: 0;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

[id] {
    scroll-margin-top: calc(var(--header-height) + 18px);
}

button,
input,
select,
textarea {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: var(--header-height);
    width: 100%;
    padding: 12px max(24px, calc((100vw - 1180px) / 2));
    border-bottom: 1px solid rgba(217, 225, 234, 0.86);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    text-decoration: none;
}

.brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.brand span {
    display: grid;
    line-height: 1.05;
}

.brand strong {
    font-size: 19px;
    white-space: nowrap;
}

.brand small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: var(--radius);
    background: var(--green);
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(15, 118, 110, 0.22);
}

.header-call:hover {
    background: #0c665f;
}

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

.site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: var(--radius);
    color: #2f343a;
    font-weight: 700;
    text-decoration: none;
}

.site-nav a:hover {
    background: var(--fog);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 2px;
    background: var(--ink);
}

.hero-section {
    position: relative;
    isolation: isolate;
    min-height: 590px;
    overflow: hidden;
    color: #fff;
    background: #171a1f;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        90deg,
        rgba(12, 14, 18, 0.96) 0%,
        rgba(12, 14, 18, 0.92) 42%,
        rgba(12, 14, 18, 0.62) 64%,
        rgba(12, 14, 18, 0.3) 100%
    );
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 40px));
    min-height: 590px;
    margin: 0 auto;
    padding: 82px 0 50px;
}

.hero-copy {
    width: min(620px, 100%);
    padding-top: 8px;
}

.kicker {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.proof-copy h2,
.contact-copy h2 {
    margin: 0;
    line-height: 1.06;
    letter-spacing: 0;
}

.hero-copy h1 {
    max-width: 640px;
    font-size: 58px;
    text-shadow: 0 6px 28px rgba(0, 0, 0, 0.32);
}

.hero-lead {
    max-width: 600px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 19px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
}

.button-primary {
    background: var(--green);
    color: #fff;
}

.button-primary:hover {
    background: #0c665f;
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    width: min(620px, 100%);
    margin: 34px 0 0;
}

.hero-facts div {
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
}

.hero-facts dt {
    margin: 0 0 3px;
    font-size: 24px;
    font-weight: 900;
}

.hero-facts dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    font-weight: 700;
}

.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(560px, 48%);
    z-index: -2;
    overflow: hidden;
}

.hero-logo-mark {
    position: absolute;
    right: 6%;
    top: 34px;
    width: 210px;
    height: 210px;
    object-fit: contain;
    opacity: 0.18;
    filter: invert(1);
}

.hero-shot {
    position: absolute;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
    background: #222;
}

.hero-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shot-main {
    right: 0;
    top: 86px;
    width: 100%;
    height: 360px;
    opacity: 0.74;
}

.hero-phone-frame {
    position: absolute;
    left: 50%;
    top: 154px;
    z-index: 2;
    width: 210px;
    height: 420px;
    margin: 0;
    padding: 18px 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 32px;
    background: linear-gradient(145deg, #0e1014, #2a2e34);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
    transform: translateX(-50%);
}

.hero-phone-frame img {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    object-fit: cover;
    object-position: top center;
    background: #fff;
}

.phone-speaker {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 54px;
    height: 5px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.36);
    transform: translateX(-50%);
}

.hero-shot-wide {
    right: 8%;
    bottom: 36px;
    width: 410px;
    height: 210px;
    opacity: 0.86;
}

.section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 84px 0;
}

.section-tight {
    padding: 0;
}

.intro-band {
    transform: translateY(-28px);
    margin-bottom: -28px;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
    box-shadow: var(--shadow);
}

.intro-grid article {
    min-width: 0;
    padding: 24px;
    background: var(--paper);
}

.mini-label,
.product-label,
.service-code {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: var(--fog);
    color: var(--graphite);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.intro-grid h2 {
    margin: 12px 0 8px;
    font-size: 22px;
    line-height: 1.18;
}

.intro-grid p {
    margin: 0;
    color: var(--muted);
}

.section-heading {
    width: min(790px, 100%);
    margin: 0 auto 34px;
    text-align: center;
}

.section-heading.align-left {
    margin-left: 0;
    text-align: left;
}

.section-heading h2,
.proof-copy h2,
.contact-copy h2 {
    font-size: 42px;
}

.section-heading p,
.proof-copy p,
.contact-copy p {
    color: var(--muted);
    font-size: 18px;
}

.product-grid {
    display: grid;
    gap: 22px;
}

.product-card {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 30px;
    align-items: center;
    min-width: 0;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 14px 34px rgba(25, 28, 33, 0.08);
}

.product-copy h3,
.service-card h3,
.workflow-step h3 {
    margin: 12px 0 10px;
    color: var(--ink);
    font-size: 27px;
    line-height: 1.16;
}

.product-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-title img {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.14);
}

.product-title span {
    min-width: 0;
}

.product-copy p,
.service-card p,
.workflow-step p {
    color: var(--muted);
}

.clean-list,
.tag-list {
    display: grid;
    gap: 8px;
    margin: 18px 0;
    padding: 0;
    list-style: none;
}

.clean-list li {
    position: relative;
    padding-left: 20px;
    color: #2e343a;
    font-weight: 700;
}

.clean-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--green);
}

.product-staffplan .clean-list li::before {
    background: var(--blue);
}

.product-eventlog .clean-list li::before {
    background: var(--green);
}

.product-clubroute .clean-list li::before {
    background: var(--orange);
}

.product-minarv .clean-list li::before {
    background: #12372a;
}

.product-blodtrykket .clean-list li::before {
    background: #f05267;
}

.product-egenkontrol .clean-list li::before {
    background: #3b985c;
}

.text-link {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    color: var(--ink);
    font-weight: 900;
    text-decoration-color: rgba(21, 23, 26, 0.26);
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.text-link:hover {
    text-decoration-color: currentColor;
}

.product-media {
    position: relative;
    min-height: 360px;
}

.product-image-main {
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: var(--radius);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    background: #fff;
    width: 82%;
    height: 300px;
    object-fit: cover;
}

.product-phone-frame {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 172px;
    height: 342px;
    margin: 0;
    padding: 18px 9px 10px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 30px;
    background: linear-gradient(145deg, #0d1015, #2f343c);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.28);
}

.product-phone-frame .product-image-side {
    position: static;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 21px;
    box-shadow: none;
    background: #fff;
    object-fit: cover;
    object-position: top center;
}

.product-phone-speaker {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 46px;
    height: 5px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.36);
    transform: translateX(-50%);
}

.product-eventlog .product-phone-frame .product-image-side {
    object-fit: cover;
}

.product-staffplan .product-media {
    min-height: 380px;
}

.product-staffplan .product-image-main {
    width: 100%;
    height: 330px;
    padding: 18px;
    border-color: transparent;
    background: linear-gradient(145deg, #edf3fa, #dce8f5);
    object-fit: contain;
}

.product-staffplan .product-phone-frame {
    right: 18px;
    bottom: -6px;
}

.product-minarv .product-image-main {
    width: 100%;
    height: 330px;
    object-position: center;
}

.product-minarv .product-phone-frame {
    background: linear-gradient(145deg, #081b18, #12372a);
}

.product-minarv .product-phone-frame .product-image-side {
    object-position: top center;
}

.product-blodtrykket .product-image-main {
    width: 100%;
    height: 300px;
    padding: 18px;
    border-color: transparent;
    background: #f5f2ea;
    object-fit: contain;
}

.product-blodtrykket .product-phone-frame {
    background: linear-gradient(145deg, #073833, #174f49);
}

.product-egenkontrol .product-image-main {
    width: 100%;
    height: 330px;
    border-color: transparent;
    background: #edf7f1;
    object-fit: cover;
    object-position: center;
}

.product-egenkontrol .product-phone-frame {
    background: linear-gradient(145deg, #052f2b, #0f5b4b);
}

.product-egenkontrol .product-phone-frame .product-image-side {
    padding: 22px;
    background: #f6faf7;
    object-fit: contain;
}

.section-contrast {
    width: 100%;
    padding-left: max(20px, calc((100vw - 1180px) / 2));
    padding-right: max(20px, calc((100vw - 1180px) / 2));
    background: #fbfcfd;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    width: min(1180px, 100%);
}

.service-card,
.workflow-step {
    min-width: 0;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
}

.service-code {
    background: #172033;
    color: #fff;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
}

.tag-list li,
.proof-list span,
.contact-links a,
.contact-links .contact-item {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: #38404a;
    font-size: 13px;
    font-weight: 800;
}

.proof-section {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 46px;
    align-items: center;
}

.proof-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.proof-list span {
    min-height: 42px;
    padding: 0 14px;
    background: var(--paper);
    font-size: 15px;
}

.workflow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
}

.workflow-step {
    border: 0;
    border-radius: 0;
}

.workflow-step span {
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
    gap: 34px;
    align-items: start;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.contact-links a,
.contact-links .contact-item {
    color: var(--ink);
    text-decoration: none;
}

.contact-links .contact-item.is-clickable,
.footer-line .is-clickable {
    cursor: pointer;
}

.contact-links .contact-item.is-clickable:hover,
.footer-line .is-clickable:hover {
    color: var(--green);
}

.contact-links .contact-item.is-clickable:focus-visible,
.footer-line .is-clickable:focus-visible {
    outline: 3px solid rgba(15, 118, 110, 0.2);
    outline-offset: 4px;
}

.obfuscated-text {
    display: block;
    max-width: 100%;
}

.contact-links a:hover {
    border-color: var(--green);
}

.contact-form {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
}

.hp-field {
    position: absolute;
    left: -9999px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

label {
    display: grid;
    gap: 7px;
    color: #303741;
    font-size: 14px;
    font-weight: 900;
}

input,
select,
textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #cfd8e3;
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    font-size: 16px;
}

input,
select {
    height: 46px;
    padding: 0 12px;
}

textarea {
    min-height: 138px;
    padding: 12px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(15, 118, 110, 0.18);
    border-color: var(--green);
}

.form-full {
    grid-column: 1 / -1;
}

.contact-form .button {
    margin-top: 18px;
    width: 100%;
}

.form-help {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.form-notice {
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: var(--radius);
    font-weight: 800;
}

.form-notice.is-success {
    background: #e8f7ef;
    color: #146c43;
}

.form-notice.is-error {
    background: #fff1f0;
    color: var(--red);
}

.site-footer {
    padding: 28px max(20px, calc((100vw - 1180px) / 2));
    border-top: 1px solid var(--line);
    background: #fff;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.footer-line {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.site-footer img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.footer-line > span {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
}

.footer-line > span:first-of-type {
    color: var(--ink);
    font-weight: 900;
}

.footer-separator {
    color: #aab3bf;
}

@media (max-width: 980px) {
    .hero-visual {
        width: min(520px, 52%);
    }

    .hero-section,
    .hero-inner {
        min-height: 560px;
    }

    .hero-inner {
        padding-top: 66px;
    }

    .hero-copy h1 {
        font-size: 46px;
    }

    .hero-lead {
        font-size: 18px;
    }

    .hero-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(520px, 100%);
    }

    .hero-shot-main {
        right: -8%;
        width: 100%;
        opacity: 0.46;
    }

    .hero-phone-frame {
        top: 168px;
        left: 52%;
        width: 170px;
        height: 340px;
        opacity: 0.78;
    }

    .hero-shot-wide {
        right: -4%;
        width: 360px;
        opacity: 0.52;
    }

    .intro-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .product-card,
    .proof-section,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .product-media {
        min-height: 300px;
        order: -1;
    }

    .workflow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    :root {
        --header-height: 64px;
    }

    .site-header {
        gap: 8px;
        min-height: 64px;
        padding: 10px 16px;
    }

    .brand {
        min-width: 0;
        gap: 8px;
    }

    .brand img {
        width: 40px;
        height: 40px;
    }

    .brand strong {
        font-size: 18px;
    }

    .brand small {
        display: none;
    }

    .header-actions {
        gap: 8px;
    }

    .header-call {
        min-height: 40px;
        padding: 0 12px;
        font-size: 14px;
    }

    .nav-toggle {
        display: block;
        width: 40px;
        height: 40px;
    }

    .site-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 8px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        justify-content: center;
    }

    .hero-section,
    .hero-inner {
        min-height: 540px;
    }

    .hero-section::after {
        background: linear-gradient(
            180deg,
            rgba(12, 14, 18, 0.96) 0%,
            rgba(12, 14, 18, 0.92) 58%,
            rgba(12, 14, 18, 0.84) 100%
        );
    }

    .hero-inner {
        width: min(100% - 28px, 1180px);
        padding: 52px 0 30px;
    }

    .hero-visual {
        width: 100%;
    }

    .hero-copy h1 {
        font-size: 36px;
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 22px;
    }

    .hero-facts div {
        padding: 10px;
    }

    .hero-facts dt {
        font-size: 20px;
    }

    .hero-shot-main {
        top: 230px;
        right: -50%;
        width: 120%;
        height: 280px;
        opacity: 0.18;
    }

    .hero-phone-frame {
        top: 216px;
        right: 12px;
        left: auto;
        width: 118px;
        height: 238px;
        padding: 14px 7px 8px;
        opacity: 0.22;
        transform: none;
    }

    .hero-phone-frame img {
        border-radius: 18px;
    }

    .phone-speaker {
        top: 6px;
        width: 36px;
        height: 4px;
    }

    .hero-shot-wide {
        display: none;
    }

    .hero-logo-mark {
        width: 150px;
        height: 150px;
        right: -20px;
        top: 18px;
    }

    .section {
        width: min(100% - 28px, 1180px);
        padding: 58px 0;
    }

    .intro-band {
        transform: none;
        margin-bottom: 0;
        padding-top: 18px;
    }

    .section-heading {
        margin-bottom: 24px;
        text-align: left;
    }

    .section-heading h2,
    .proof-copy h2,
    .contact-copy h2 {
        font-size: 31px;
    }

    .section-heading p,
    .proof-copy p,
    .contact-copy p {
        font-size: 16px;
    }

    .product-card {
        padding: 18px;
    }

    .product-copy h3,
    .service-card h3,
    .workflow-step h3 {
        font-size: 23px;
    }

    .product-title {
        gap: 10px;
    }

    .product-title img {
        width: 30px;
        height: 30px;
    }

    .product-media {
        min-height: 285px;
    }

    .product-image-main {
        width: 100%;
        height: 230px;
    }

    .product-phone-frame {
        right: 10px;
        bottom: -6px;
        width: 116px;
        height: 232px;
        padding: 14px 7px 8px;
        border-radius: 22px;
    }

    .product-phone-frame .product-image-side {
        display: block;
        border-radius: 16px;
    }

    .product-phone-speaker {
        top: 6px;
        width: 32px;
        height: 4px;
    }

    .product-minarv .product-image-main,
    .product-blodtrykket .product-image-main,
    .product-egenkontrol .product-image-main {
        height: 230px;
    }

    .service-card,
    .workflow-step,
    .contact-form {
        padding: 18px;
    }

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

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

}
