/* ========================
   RESET & BASE STYLES
======================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section,
summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
    font-family: 'Roboto', Arial, sans-serif;
    background: #F5F6FA;
    color: #2A2A2A;
    font-size: 16px;
    line-height: 1.7;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    display: block;
}
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color .2s; }
input, button, textarea, select {
    font: inherit;
    background: none;
    border: none;
    outline: none;
}

/* ========================
   PLAYFUL DYNAMIC BRAND COLORS
======================== */
:root {
    --primary: #245085;
    --secondary: #D9A14B;
    --accent: #F5F6FA;
    --white: #fff;
    --danger: #db4646;
    --info: #4BA2D9;
    --success: #54c59f;
    --text-dark: #1E2840;
    --text: #2A2A2A;
    --shadow: 0 4px 18px 0 rgba(36,80,133,.12);
    --radius: 18px;
}

/* ========================
   TYPOGRAPHY
======================== */
h1, .h1 {
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-size: 2.4rem;
    line-height: 1.15;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
    text-shadow: 0 2px 0 var(--accent);
}
h2, .h2 {
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-size: 1.75rem;
    line-height: 1.2;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 1px 0 rgba(36,80,133,.05);
}
h3, .h3 {
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 5px;
}
h4, h5, h6 {
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    color: var(--primary);
    font-weight: 600;
}
p, ul li {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 12px;
}
strong { font-weight: 700; }
small { font-size: .92em; }

.text-section ul {
    margin: 0 0 16px 0;
    padding: 0;
}
.text-section li {
    list-style: disc inside;
    margin-bottom: 8px;
    margin-left: 0;
}
.text-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ========================
   LAYOUTS & CONTAINERS
======================== */
.container {
    width: 100%;
    max-width: 1220px;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: var(--accent);
    border-radius: var(--radius);
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    margin-bottom: 20px;
    position: relative;
    transition: transform .13s, box-shadow .18s;
}
.card:hover {
    transform: translateY(-4px) scale(1.035) rotate(-1.5deg);
    box-shadow: 0 6px 36px 0 rgba(36,80,133,.22);
}
.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

/* ============ Feature Grid ============ */
.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
}
.feature-grid li {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 12px 0 rgba(36,80,133,.12);
    padding: 22px;
    width: 310px;
    min-width: 230px;
    max-width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    transition: transform .16s, box-shadow .18s, background .13s;
    position: relative;
    border-left: 5px solid var(--secondary);
}
.feature-grid li img {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    background: var(--accent);
    border-radius: 12px;
    box-shadow: 0 2px 8px 0 rgba(36,80,133,.07);
    padding: 6px;
    transition: transform .2s;
}
.feature-grid li:hover {
    background: #fffbe8;
    box-shadow: 0 4px 22px 0 rgba(218,161,75,.26);
    transform: translateY(-6px) scale(1.033);
}
.feature-grid li:hover img {
    transform: scale(1.18) rotate(-8deg);
}

/* =========== USP ICONS ============ */
.usp-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 18px 0 10px 0;
    flex-wrap: wrap;
}
.usp-icons img {
    background: var(--secondary);
    border-radius: 12px;
    width: 36px;
    height: 36px;
    margin-right: 7px;
    padding: 3px;
    box-shadow: 0 1px 8px 0 rgba(218,161,75,.13);
    vertical-align: middle;
}
.usp-icons span {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
    margin-right: 20px;
    background: #fff6e2;
    border-radius: 10px;
    padding: 0 10px;
    letter-spacing: 0.5px;
    display: inline-block;
}

/* ========================
   NAVIGATION
======================== */
header {
    background: var(--white);
    box-shadow: 0 4px 10px 0 rgba(36,80,133,.05);
    position: sticky;
    top: 0; left: 0; right: 0;
    z-index: 70;
}
header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    gap: 0;
    position: relative;
}
.main-nav {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    margin-left: 28px;
}
.main-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    color: var(--primary);
    padding: 8px 15px;
    border-radius: 8px;
    transition: background .16s, color .15s;
}
.main-nav a:hover, .main-nav a:focus {
    background: var(--secondary);
    color: var(--white);
}
.btn-primary {
    background: var(--secondary);
    color: var(--primary);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.13rem;
    padding: 11px 28px;
    border-radius: 36px;
    margin-left: 18px;
    box-shadow: 0 4px 18px 0 rgba(218,161,75,.13);
    transition: background .16s, color .15s, transform .18s;
    border: 2px solid var(--secondary);
    cursor: pointer;
    position: relative;
    display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px) scale(1.04);
}

.mobile-menu-toggle {
    display: none;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    font-size: 2.2rem;
    width: 46px;
    height: 46px;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--secondary);
    margin-left: 18px;
    transition: background .14s, color .14s, border .18s, box-shadow .13s;
    z-index: 201;
    cursor: pointer;
}
.mobile-menu-toggle:active {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    box-shadow: 0 2px 14px 0 rgba(36,80,133,.09);
}

/* mobile menu off-canvas */
.mobile-menu {
    position: fixed;
    top: 0; right: -100vw;
    width: 100vw;
    height: 100vh;
    background: var(--primary);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 28px 28px 28px;
    transition: transform .4s cubic-bezier(.65,.05,.36,1.01), right .32s;
    box-shadow: 0 5px 32px 0 rgba(36,80,133,.16);
    overflow-y: auto;
    will-change: transform,right;
}
.mobile-menu.open {
    transform: translateX(-100vw);
    right: 0;
}
.mobile-menu-close {
    background: none;
    color: var(--secondary);
    font-size: 2.2rem;
    padding: 4px 10px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    position: absolute;
    right: 20px;
    top: 18px;
    cursor: pointer;
    transition: background .14s, color .15s, border .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
    background: var(--secondary);
    color: var(--primary);
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 32px;
    width: 100%;
    gap: 14px;
}
.mobile-nav a {
    color: var(--white);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.22rem;
    padding: 13px 6px 13px 5px;
    border-radius: 14px;
    width: 100%;
    transition: background .15s, color .14s;
    text-align: left;
    display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: var(--secondary);
    color: var(--primary);
}


/* ========================
   HERO SECTIONS & CTA
======================== */
.hero-section {
    padding: 54px 0 44px 0;
    background: linear-gradient(92deg, #F5F6FA 70%, #ffe6a3 100%);
    border-radius: 0 0 42px 42px;
    box-shadow: 0 2px 32px 0 rgba(218,161,75,.07);
    margin-bottom: 48px;
    position: relative;
    min-height: 210px; /* for playful whitespace */
}
.hero-section .container {
    justify-content: center;
    align-items: flex-start;
}
.hero-section .content-wrapper {
    max-width: 640px;
    gap: 17px;
}
.hero-section h1,
.hero-section p {
    text-align: left;
}
.hero-section .btn-primary {
    margin-top: 14px;
    font-size: 1.2rem;
}

/* playful animated blob */
.hero-section::after {
    content: '';
    position: absolute;
    right: 0; top: 12px;
    width: 180px; height: 140px;
    background: #d9a14b40;
    border-radius: 55% 45% 100% 60% / 65% 57% 66% 54%;
    z-index: 1;
    animation: blobRotate 18s infinite linear;
    opacity: 0.25;
}
@keyframes blobRotate {
    0% { transform: rotate(0deg) scale(1.01); }
    90% {transform: rotate(352deg) scale(.96); }
    100% {transform: rotate(360deg) scale(1.01);}
}

/* =========== Testimonials ========= */
.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 15px;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 28px 20px 28px;
    background: #ffe7c7;
    box-shadow: 0 2px 20px 0 rgba(218,161,75,0.08);
    border-radius: var(--radius);
    margin-bottom: 20px;
    min-width: 255px;
    max-width: 390px;
    color: var(--text-dark);
    position: relative;
    transition: transform .13s, box-shadow .18s;
}
.testimonial-card:hover {
    background: #fff5e0;
    box-shadow: 0 3px 24px 0 rgba(218,161,75,0.16);
    transform: rotate(-1.5deg) scale(1.04);
}
.testimonial-card blockquote {
    color: var(--text-dark);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.08rem;
    margin: 0 0 12px 0;
    font-style: italic;
    letter-spacing: .01em;
}
.testimonial-meta {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: .97rem;
    color: var(--primary);
    font-weight: bold;
    opacity: 0.9;
    margin-top: -4px;
}


/* ========== Table (Preistabelle) ========== */
.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 3px 22px 0 rgba(36,80,133,.07);
    margin-bottom: 18px;
    overflow: hidden;
    font-size: 1rem;
}
.price-table th, .price-table td {
    padding: 16px 14px;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}
.price-table th {
    background: var(--primary);
    color: var(--white);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.2px;
}
.price-table tbody tr:nth-child(even) {
    background: #fcfaf5;
}
.price-table tbody tr:hover {
    background: #ffecc2;
    transition: background .13s;
}

/* ========================
   FOOTER
======================== */
footer {
    background: var(--primary);
    color: var(--accent);
    font-size: .965rem;
    padding: 0;
    margin-top: 80px;
}
footer .container {
    flex-direction: column;
    gap: 0;
    padding: 0 20px 0 20px;
    max-width: 1260px;
}
.footer-top {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1.5px solid #26497a22;
    padding: 28px 0 18px 0;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    font-size: 1.28rem;
    color: var(--secondary);
    letter-spacing: 1px;
}
.footer-logo img {
    width: 38px;
    height: 38px;
    background: #fff7e4;
    border-radius: 9px;
    padding: 6px;
}
.footer-nav {
    display: flex;
    gap: 22px;
    align-items: center;
}
.footer-nav a {
    color: var(--secondary);
    font-size: 1rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    transition: color .16s;
}
.footer-nav a:hover, .footer-nav a:focus {
    color: var(--white);
}
.footer-bottom {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    padding: 20px 0 10px 0;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}
.contact-info {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #f7e3bc;
}
.contact-info a {
    color: #fffde8;
    border-bottom: 1.5px dotted var(--secondary);
    transition: color .15s;
}
.contact-info a:hover {
    color: var(--secondary);
}
.social-media {
    display: flex;
    gap: 18px;
    align-items: center;
}
.social-media a {
    background: #ffe2a180;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .14s,box-shadow .18s;
}
.social-media a:hover {
    background: var(--secondary);
    box-shadow: 0 4px 18px 0 #d9a14b45;
}
.social-media img {
    width: 22px; height: 22px;
    display: block;
}
.copyright {
    background: #19457d;
    color: #fffce3;
    text-align: center;
    padding: 13px 0 10px 0;
    font-size: .97rem;
    letter-spacing: .4px;
}

/* ========================
   COOKIES CONSENT BANNER
======================== */
.cookie-consent-banner {
    position: fixed;
    left: 0; bottom: 0; right: 0;
    background: #fffbe9;
    box-shadow: 0 -4px 26px 0 rgba(218,161,75,0.18);
    color: var(--primary);
    font-family: 'Montserrat', Arial, sans-serif;
    padding: 28px 20px 18px 20px;
    z-index: 9120;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 38px;
    justify-content: space-between;
    transition: transform .45s cubic-bezier(.61,.23,.35,1.1), opacity .28s;
    opacity: 1;
}
.cookie-consent-banner.hide {
    transform: translateY(120%);
    pointer-events: none;
    opacity: 0;
}
.cookie-consent-banner .cookie-text {
    font-size: 1.08rem;
    color: var(--primary);
    font-family: 'Roboto', Arial, sans-serif;
}
.cookie-consent-banner .cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    align-items: center;
}
.cookie-btn, .cookie-btn:visited {
    font-family: 'Montserrat',Arial,sans-serif;
    font-weight: 600;
    font-size: 1.03rem;
    border-radius: 22px;
    padding: 11px 20px;
    border: 2px solid var(--secondary);
    background: var(--secondary);
    color: var(--primary);
    margin: 0 0 0 0;
    transition: background .13s, color .13s, border .13s;
    cursor: pointer;
}
.cookie-btn:hover, .cookie-btn:focus {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.cookie-btn.secondary {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--secondary);
}
.cookie-btn:active {
    transform: scale(.97);
}

/* Cookie preferences modal */
.cookie-modal-overlay {
    position: fixed;
    z-index: 9130;
    inset: 0;
    background: rgba(36,80,133,0.21);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity .25s;
}
.cookie-modal {
    background: #fffbe8;
    color: var(--primary);
    border-radius: 22px;
    padding: 34px 32px 28px 32px;
    box-shadow: 0 2px 54px 0 rgba(218,161,75,0.15);
    min-width: 320px;
    max-width: 90vw;
    width: 425px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: modalIn .23s cubic-bezier(.74,-0.07,.47,1.22);
}
@keyframes modalIn {
    0% { transform: scale(.87); opacity: 0;}
    100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
    color: var(--primary);
    font-size: 1.31rem;
    letter-spacing:1.2px;
    margin-bottom:0;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
}
.cookie-modal .category {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal .category input[type=checkbox],
.cookie-modal .category input[type=radio] {
    accent-color: var(--secondary);
    width: 21px; height: 21px;
}
.cookie-modal .category.essential label {
    font-weight: bold;
    color: var(--primary);
}
.cookie-modal .category.essential input[type=checkbox]{
    pointer-events: none;
}
.cookie-modal-actions {
    display: flex;
    gap: 18px;
    margin-top: 16px;
}
.cookie-modal-close {
    position: absolute;
    font-size: 1.6rem;
    background: none;
    color: var(--danger);
    right: 15px;
    top: 15px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 2px 10px;
    transition: background .11s, color .13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
    background: var(--danger);
    color: var(--accent);
}


/* ========================
   ACCESSIBILITY FOCUSES
======================== */
a:focus, .btn-primary:focus, .cookie-btn:focus, .mobile-nav a:focus, .main-nav a:focus {
    outline: 2.5px dashed var(--secondary);
    outline-offset: 2px;
}


/* ========================
   MICRO-ANIMATIONS & INTERACTIONS
======================== */
.btn-primary, .cookie-btn, .footer-nav a, .main-nav a, .mobile-nav a {
    transition: color .16s, background .16s, border .16s, transform .19s;
}

section, .section {
    animation: slideInUp .6s cubic-bezier(.21,1.03,.68,1.07) 40ms both;
}
@keyframes slideInUp {
    0%{transform:translateY(50px);opacity:0;}
    100%{transform:translateY(0);opacity:1;}
}

/* Decorative animated dots for extra playfulness */
.section::before {
    content: '';
    position: absolute;
    left: 8vw;
    top: -18px;
    width: 36px; height: 36px;
    background: #ffe6a3;
    opacity: .5;
    border-radius: 50%;
    box-shadow: 0 2px 16px 0 #e4b95937;
    z-index: 0;
    animation: playfulBounce 3.5s infinite ease-in-out alternate;
    pointer-events: none;
}
@keyframes playfulBounce {
    0% { transform: translateY(-5px) scale(1); opacity:0.3; }
    60% {transform: translateY(10px) scale(1.05); opacity:.43;}
    100% { transform: translateY(-3px) scale(1.14); opacity:.55;}
}


/* ========================
   DATENSCHUTZ-TIPP & INFO
======================== */
.datenschutz-tipp {
    color: var(--info);
    font-size: .99rem;
    padding-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-style: italic;
    margin-bottom: 0;
}
.datenschutz-tipp a {
    color: var(--primary);
    border-bottom: 1.5px dashed var(--secondary);
    transition: color .13s;
}
.datenschutz-tipp a:hover { color: var(--secondary); }


/* ========================
   RESPONSIVE (MOBILE-FIRST)
======================== */
@media (max-width: 1050px) {
    .feature-grid li {width: 44vw;min-width:180px;}
    .footer-top {flex-direction: column; gap: 14px; align-items: flex-start;}
}
@media (max-width: 900px) {
    .feature-grid {gap: 18px;}
    .footer-bottom {flex-direction: column;gap: 18px;}
    .container {padding: 0 12px;}
}
@media (max-width: 800px) {
    .hero-section .content-wrapper {max-width: 480px;}
    .feature-grid li {width: 96vw; min-width: 0;}
}
@media (max-width: 768px) {
    h1, .h1 {font-size: 1.6rem;}
    h2, .h2 {font-size: 1.28rem;}
    .hero-section {padding:28px 0 23px 0; border-radius:0 0 26px 26px;}
    .hero-section .btn-primary {font-size: 1.07rem;}
    .section, section {padding:24px 7px;}
    .testimonial-card {max-width: 98vw;}
    .footer-top {flex-direction: column;align-items: flex-start;}
    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        padding: 18px 0 5px 0;
    }
    .feature-grid {gap: 13px;}
    .feature-grid li {padding: 14px;}
    .text-image-section, .content-grid {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}
@media (max-width: 650px) {
    .feature-grid{flex-direction:column;gap:11px;}
    .usp-icons{gap:10px;}
}
@media (max-width: 600px) {
    .container {padding: 0 2vw;}
    .section, section {padding: 15px 2px;}
    .hero-section {border-radius:0 0 10px 10px;}
}
@media (max-width: 540px) {
    body {font-size: .97rem;}
    h1,.h1 {font-size: 1.16rem;}
    h2, .h2 {font-size: 1rem;}
    .main-nav, .btn-primary {display: none;}
    .mobile-menu-toggle {
        display: flex;
    }
    .testimonials {flex-direction:column;gap:13px;}
    .feature-grid {flex-direction:column;}
    .footer-top, .footer-bottom {flex-direction: column;gap: 9px;align-items: flex-start;}
    .copyright {padding:8px 0 8px 0;font-size:.8rem;}
    .price-table th,.price-table td {font-size: .87rem;padding:8px;}
    .cookie-consent-banner {flex-direction:column;gap:15px;padding:21px 7px 13px 7px;align-items: flex-start;}
    .cookie-modal {padding:15px 6px;}
}

/* Hide nav for mobile, show burger */
@media (max-width: 900px) {
    .main-nav, .btn-primary {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: flex !important;
    }
}
@media (min-width: 901px) {
    .mobile-menu,
    .mobile-menu-toggle {
        display: none !important;
    }
}
