:root {
    /* Corporate theme: conservative, clean, trustworthy */
    --bg: #f4f6f9;
    --surface: #ffffff;
    --surface2: #f9fafb;
    --text: #0b1220;

    /* deep ink */
    --muted: #44546a;

    /* corporate slate */
    --muted2: #64748b;
    --line: #e5e7eb;
    --shadow: 0 18px 55px rgba(11,18,32,.10);
    --shadowSoft: 0 10px 30px rgba(11,18,32,.08);
    --radius: 16px;
    --radiusSm: 12px;
    --max: 1440px;

    /* Corporate accents */
    --navy: #0a1f44;
    --accent: #0b5fff;

    /* corporate blue */
    --accent2: #00a3d7;

    /* calm cyan */
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    color: var(--text);
    background: radial-gradient(1100px 640px at 20% -10%, rgba(11,95,255,.08), transparent 55%),
    radial-gradient(900px 560px at 92% 8%, rgba(0,163,215,.06), transparent 55%),
    linear-gradient(180deg, #ffffff, var(--bg) 36%, #f5f7fb 100%);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

::selection {
    background: rgba(11,95,255,.16);
}

.container {
    width: min(var(--max), calc(100% - 88px));
    margin: 0 auto;
}

.section {
    padding: 92px 0;
}

.section.compact {
    padding: 64px 0;
}

.section h2 {
    font-size: clamp(28px, 2.2vw, 40px);
    letter-spacing: -0.02em;
    margin: 0 0 14px;
}

.section p.lead {
    margin: 0 0 26px;
    color: var(--muted);
    max-width: 86ch;
    font-size: 16.5px;
}

/* Topbar */
.topbar {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255,255,255,.84);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

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

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

.brand img {
    width: 188px;
    height: auto;
}

.navlinks {
    display: flex;
    gap: 6px;
    align-items: center;
}

.navlinks a {
    color: rgba(11,18,32,.74);
    padding: 10px 12px;
    border-radius: 999px;
    font-weight: 550;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.navlinks a:hover {
    background: rgba(11,18,32,.04);
    color: rgba(11,18,32,.95);
}

.navlinks a.active {
    background: rgba(11,95,255,.08);
    border: 1px solid rgba(11,95,255,.14);
    color: rgba(11,18,32,.98);
}

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

.hamburger {
    display: none;
    border: 1px solid rgba(11,18,32,.16);
    background: rgba(255,255,255,.92);
    color: var(--text);
    border-radius: 12px;
    padding: 10px 12px;
    cursor: pointer;
}

.mobile-drawer {
    display: none;
    border-top: 1px solid var(--line);
    padding: 10px 0 14px;
}

.mobile-drawer a {
    display: block;
    padding: 10px 10px;
    border-radius: 12px;
    color: rgba(11,18,32,.74);
}

.mobile-drawer a:hover {
    color: rgba(11,18,32,.98);
    background: rgba(11,18,32,.04);
}

.mobile-drawer .row {
    display: flex;
    gap: 10px;
    padding: 10px 10px 0;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(11,18,32,.16);
    background: #fff;
    color: var(--text);
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
    will-change: transform;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(11,18,32,.10);
    border-color: rgba(11,18,32,.22);
}

.btn:active {
    transform: translateY(0px) scale(.99);
    box-shadow: none;
}

.btn.primary {
    background: linear-gradient(180deg, var(--accent), #0547c7);
    border-color: rgba(11,95,255,.42);
    color: #fff;
    font-weight: 650;
}

.btn.primary:hover {
    box-shadow: 0 16px 32px rgba(11,95,255,.18);
}

.btn.ghost {
    background: rgba(11,18,32,.02);
    border-color: rgba(11,18,32,.14);
}

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

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(11,95,255,.16);
    background: rgba(11,95,255,.06);
    color: rgba(11,18,32,.78);
    font-size: 13.5px;
    font-weight: 650;
}

/* Hero */
.hero {
    padding: 92px 0 34px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 34px;
    align-items: stretch;
}

h1 {
    font-size: clamp(38px, 4.0vw, 58px);
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin: 14px 0 12px;
    color: var(--navy);
}

.hero p {
    color: var(--muted);
    font-size: 17px;
    margin: 0 0 20px;
    max-width: 72ch;
}

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

.hero-meta {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    color: rgba(11,18,32,.72);
    font-size: 13.5px;
}

.hero-meta .pill {
    border: 1px solid rgba(11,18,32,.12);
    background: rgba(255,255,255,.72);
    border-radius: 999px;
    padding: 9px 12px;
}

/* Hero icons */
.hero-icons {
    margin-top: 14px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    color: rgba(11,18,32,.72);
}

.hero-icons .hitem {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.84);
    border: 1px solid rgba(11,18,32,.10);
    box-shadow: 0 10px 24px rgba(11,18,32,.06);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.hero-icons .hitem:hover {
    transform: translateY(-2px);
    background: #fff;
    border-color: rgba(11,95,255,.16);
    box-shadow: 0 16px 34px rgba(11,18,32,.10);
}

.hero-icons svg {
    width: 22px;
    height: 22px;
    stroke: rgba(11,95,255,.95);
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Slider */
.slider {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(11,18,32,.12);
    box-shadow: var(--shadow);
    min-height: 420px;
    background: #0b1220;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity .6s ease, transform .7s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.06) contrast(1.03);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,31,68,.78) 0%, rgba(10,31,68,.28) 55%, rgba(10,31,68,.10) 100%), linear-gradient(0deg, rgba(0,0,0,.40), transparent 42%);
}

.slide-caption {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    color: #fff;
}

.slide-caption strong {
    display: block;
    font-size: 16px;
    letter-spacing: -0.01em;
}

.slide-caption span {
    color: rgba(255,255,255,.76);
    font-size: 13px;
}

.slider-controls {
    position: absolute;
    inset: auto 14px 14px auto;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.iconbtn {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.20);
    background: rgba(0,0,0,.28);
    color: #fff;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease;
}

.iconbtn:hover {
    background: rgba(0,0,0,.38);
    transform: translateY(-1px);
}

.dots {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 2;
    display: flex;
    gap: 8px;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.35);
    border: 1px solid rgba(0,0,0,.25);
    cursor: pointer;
    transition: transform .18s ease, background .18s ease;
}

.dot:hover {
    transform: scale(1.1);
}

.dot.active {
    background: rgba(255,255,255,.92);
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: start;
}

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

/* Cards */
.card {
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(11,18,32,.10);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadowSoft);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    background-position: right center;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(11,18,32,.12);
    border-color: rgba(11,95,255,.18);
}

.card .tag {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(11,95,255,.18);
    background: rgba(11,95,255,.06);
    color: rgba(11,18,32,.82);
    font-size: 12px;
    font-weight: 650;
    margin-bottom: 10px;
}

.card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
}

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

.card .link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: 14px;
    color: rgba(11,95,255,.92);
    font-weight: 650;
}

/* Image box */
.imagebox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(11,18,32,.10);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadowSoft);
}

.imagebox .media {
    min-height: 340px;
}

.imagebox .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imagebox .content {
    padding: 26px;
}

.imagebox .content h3 {
    margin: 0 0 10px;
    font-size: 24px;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.imagebox .content p {
    margin: 0 0 14px;
    color: var(--muted);
}

/* Notice */
.notice {
    border: 1px solid rgba(11,95,255,.18);
    background: linear-gradient(180deg, rgba(11,95,255,.07), rgba(255,255,255,.74));
    padding: 16px 18px;
    border-radius: var(--radius);
    color: rgba(11,18,32,.86);
    box-shadow: var(--shadowSoft);
}

/* Lists */
.list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.list li {
    position: relative;
    padding-left: 42px;
    margin: 10px 0;
    color: var(--muted);
}

.list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    background-size: 200% 200%;
    mask: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2l-3.5-3.5L4 14.2 9 19l11-11-1.5-1.5z"/></svg>') center / 15px 15px no-repeat;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2l-3.5-3.5L4 14.2 9 19l11-11-1.5-1.5z"/></svg>') center / 15px 15px no-repeat;
    transition: transform .18s ease, filter .18s ease, background-position .22s ease;
}

.list li:hover::before {
    transform: translateY(-1px) scale(1.05);
    filter: drop-shadow(0 10px 14px rgba(11,95,255,.18));
    background-position: 100% 50%;
}

/* Page hero */
.page-hero {
    padding: 64px 0 10px;
}

.page-hero .wrap {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 22px;
    align-items: stretch;
}

.page-hero .panel {
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(11,18,32,.10);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadowSoft);
}

.page-hero .panel p {
    color: var(--muted);
    margin: 10px 0 0;
    max-width: 80ch;
}

.page-hero .photo {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(11,18,32,.10);
    box-shadow: var(--shadow);
    min-height: 280px;
    background: #0b1220;
}

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

/* Forms */
.form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

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

.field label {
    display: block;
    margin: 0 0 6px;
    font-size: 13px;
    color: rgba(11,18,32,.75);
    font-weight: 650;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(11,18,32,.14);
    background: rgba(255,255,255,.98);
    color: var(--text);
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.field textarea {
    min-height: 120px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(11,95,255,.55);
    box-shadow: 0 0 0 4px rgba(11,95,255,.10);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
    border-color: rgba(11,18,32,.22);
}

/* Footer */
.footer {
    border-top: 1px solid rgba(11,18,32,.10);
    padding: 66px 0;
    color: rgba(255,255,255,.76);
    background: radial-gradient(900px 600px at 20% -10%, rgba(11,95,255,.18), transparent 55%), linear-gradient(180deg, #071833, #061227);
}

.footergrid {
    display: grid;
    grid-template-columns: 1.2fr .8fr 1fr;
    gap: 18px;
}

.footer a {
    color: rgba(255,255,255,.82);
}

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

.social {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 12px;
}

.social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.social a:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.10);
    border-color: rgba(11,95,255,.26);
}

.smallprint {
    margin-top: 18px;
    font-size: 13px;
    color: rgba(255,255,255,.60);
}

.badge {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
}

/* Cookie + modal + FAB */
.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
    display: none;
}

.cookie-inner {
    width: min(var(--max), 100%);
    margin: 0 auto;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(11,18,32,.14);
    border-radius: var(--radius);
    padding: 14px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 14px;
    align-items: flex-start;
    justify-content: space-between;
}

.cookie-inner p {
    margin: 0;
    color: rgba(11,18,32,.70);
    font-size: 13.5px;
    max-width: 80ch;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-actions .btn {
    padding: 10px 14px;
}

.cookie-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(11,18,32,.14);
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 45px rgba(11,18,32,.14);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 9998;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.cookie-fab:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.95);
    box-shadow: 0 22px 55px rgba(11,18,32,.18);
}

.cookie-fab svg {
    width: 22px;
    height: 22px;
    stroke: rgba(11,95,255,.95);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cookie-fab.is-hidden {
    display: none;
}

.cookie-modal[hidden] {
    display: none;
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 22px;
}

.cookie-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11,18,32,.45);
    backdrop-filter: blur(2px);
}

.cookie-modal__panel {
    position: relative;
    width: min(720px, 100%);
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(11,18,32,.12);
    box-shadow: 0 30px 90px rgba(11,18,32,.22);
    overflow: hidden;
}

.cookie-modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 18px 10px;
    border-bottom: 1px solid rgba(11,18,32,.10);
}

.cookie-modal__body {
    padding: 14px 18px 18px;
}

.cookie-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 12px;
    border-radius: 14px;
    border: 1px solid rgba(11,18,32,.10);
    background: rgba(11,18,32,.02);
    margin-top: 10px;
}

.cookie-row .muted {
    color: rgba(11,18,32,.70);
    font-size: 13.5px;
    margin-top: 2px;
}

.cookie-modal__foot {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: 14px;
}

.cookie-modal__foot .btn {
    padding: 10px 14px;
}

.small-note {
    margin-top: 12px;
    font-size: 13px;
    color: rgba(11,18,32,.62);
}

.toggle {
    position: relative;
    width: 48px;
    height: 28px;
    flex-shrink: 0;
}

.toggle input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
}

.toggle label {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 1px solid rgba(11,18,32,.16);
    background: rgba(11,18,32,.06);
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.toggle label::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 10px 18px rgba(11,18,32,.14);
    transition: transform .18s ease;
}

.toggle input:checked + label {
    background: rgba(11,95,255,.14);
    border-color: rgba(11,95,255,.30);
    box-shadow: 0 0 0 4px rgba(11,95,255,.10);
}

.toggle input:checked + label::after {
    transform: translateX(20px);
}

.toggle input:disabled + label {
    opacity: .65;
    cursor: not-allowed;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .65s ease, transform .65s ease;
    will-change: opacity, transform;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
    * {
        transition: none !important;
        animation: none !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Service icons */
.card h3::before {
    content: "";
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    background-size: 200% 200%;
    mask: var(--mask, none) center / 18px 18px no-repeat;
    -webkit-mask: var(--mask, none) center / 18px 18px no-repeat;
    transition: transform .22s ease, filter .22s ease, background-position .22s ease;
    flex-shrink: 0;
}

.card:hover h3::before {
    transform: translateY(-1px) rotate(-4deg) scale(1.06);
    filter: drop-shadow(0 10px 18px rgba(11,95,255,.20));
    background-position: 100% 50%;
}

.card.icon-env h3::before {
    --mask: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 4h14v5H5V4Zm0 6h14v5H5v-5Zm0 6h14v4H5v-4Zm3-9h2v2H8V7Zm0 6h2v2H8v-2Zm0 6h2v2H8v-2Z"/></svg>');
}

.card.icon-coord h3::before {
    --mask: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4Zm-7 9v-1a5 5 0 0 1 5-5h4a5 5 0 0 1 5 5v1H5Zm14-10a3 3 0 1 0-3-3 3 3 0 0 0 3 3Zm-2 4h1a4 4 0 0 1 4 4v2h-2v-2a2 2 0 0 0-2-2h-1v-2Z"/></svg>');
    background: linear-gradient(135deg, var(--accent), #2563eb);
}

.card.icon-oversight h3::before {
    --mask: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 19V5h2v12h14v2H4Zm4-4 3-3 3 2 5-6 1.6 1.2-6.3 7.6-3.1-2-2.2 2.2L8 15Z"/></svg>');
    background: linear-gradient(135deg, var(--accent2), #22c55e);
}

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

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

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

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

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

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

    .page-hero .wrap {
        grid-template-columns: 1fr;
    }

    .container {
        width: calc(100% - 44px);
    }
}

@media (max-width: 840px){
    .navlinks,
    .navcta {
        display: none;
    }

    .hamburger {
        display: inline-flex;
    }

    .mobile-drawer {
        display: block;
    }

    .mobile-drawer[hidden] {
        display: none;
    }
}

@media (max-width: 640px){
    .cookie-fab {
        right: 14px;
        bottom: 82px;
    }
}
