/* ===== CSS RESET & NORMALIZE ===== */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1.6;
    background: #FAFAF8;
    color: #183142;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: #154063;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #43B0D7;
}
ul, ol {
    padding-left: 1.35em;
    margin-bottom: 1em;
}
b, strong {
    font-weight: 600;
}
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    background: none;
    border: none;
    outline: none;
    color: inherit;
}

/* ===== BRAND FONTS ===== */
h1, h2, h3, h4, .cta-btn {
    font-family: 'Montserrat', Arial, sans-serif;
}

/* ===== COLOR VARIABLES (with fallback) ===== */
:root {
    --color-primary: #154063;
    --color-secondary: #43B0D7;
    --color-accent: #F6E5B3;
    --color-light-bg: #FAFAF8;
    --color-surface: #FFFFFF;
    --color-text: #183142;
    --color-muted: #8593A5;
    --color-border: #E3E9EF;
}

/* ===== LAYOUT CONTAINERS ===== */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 0; /* Section gap controlled by section styles */
}
.content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    width: 100%;
    z-index: 99;
    box-shadow: 0 2px 8px 0 rgba(24,49,66,0.03);
}
header .container {
    min-height: 74px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}
header .container > a img {
    height: 48px;
    width: auto;
    margin-right: 16px;
}
nav.main-nav {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
}
nav.main-nav a {
    font-size: 16px;
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--color-primary);
    padding: 6px 0;
    transition: color 0.2s, border-bottom 0.2s;
    border-bottom: 2px solid transparent;
    font-weight: 500;
}
nav.main-nav a:hover, nav.main-nav a:focus {
    color: var(--color-secondary);
    border-bottom: 2px solid var(--color-secondary);
}
.cta-btn {
    background: var(--color-secondary);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 36px;
    padding: 10px 32px;
    box-shadow: 0 2px 14px 0 rgba(67,176,215,0.08);
    border: none;
    cursor: pointer;
    margin-left: 22px;
    transition: background 0.22s, box-shadow 0.18s, color 0.2s;
    outline: none;
    letter-spacing: 0.03em;
}
.cta-btn:hover, .cta-btn:focus {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 8px 22px 0 rgba(21,64,99,0.10);
}

/* Hamburger for mobile */
.mobile-menu-toggle {
    display: none;
    background: var(--color-secondary);
    color: #fff;
    font-size: 2rem;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    transition: background 0.18s;
    position: absolute;
    top: 16px;
    right: 20px;
    z-index: 110;
    border: none;
    cursor: pointer;
}
.mobile-menu-toggle:active {
    background: var(--color-primary);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
    position: fixed;
    inset: 0;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(250,250,248,0.96);
    backdrop-filter: blur(2px);
    z-index: 2000;
    transform: translateX(100vw);
    transition: transform 0.35s cubic-bezier(.76,0,.24,1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 0 0 0;
    box-shadow: -4px 0 24px 0 rgba(21,64,99,0.07);
}
.mobile-menu.active {
    transform: translateX(0);
}
.mobile-menu-close {
    background: var(--color-secondary);
    color: #fff;
    border: none;
    font-size: 2.2rem;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin: 24px 0 0 20px;
    cursor: pointer;
    z-index: 2010;
    transition: background 0.18s;
}
.mobile-menu-close:hover {
    background: var(--color-primary);
}
nav.mobile-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 30px 32px 0 32px;
    margin-top: 12px;
}
nav.mobile-nav a {
    font-size: 20px;
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--color-primary);
    font-weight: 500;
    padding: 14px 0;
    border-radius: 4px;
    transition: background 0.18s, color 0.2s;
}
nav.mobile-nav a:hover, nav.mobile-nav a:focus {
    background: var(--color-accent);
    color: var(--color-secondary);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(90deg, #f6f8fa 0%, #f9f7f4 100%);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 60px;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 310px;
}
.hero .container {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.hero .content-wrapper {
    align-items: center;
    text-align: center;
    max-width: 650px;
    gap: 24px;
}
.hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 8px;
}
.hero p {
    font-size: 1.18rem;
    color: var(--color-text);
    margin-bottom: 16px;
}

/* ===== SECTION SPACING PATTERN ===== */
section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: transparent;
}
section:last-child {
    margin-bottom: 0;
}

/* ===== CARDS AND FEATURES ===== */
.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 12px;
    justify-content: flex-start;
}
.feature-grid > div {
    background: var(--color-surface);
    border-radius: 14px;
    box-shadow: 0 2px 12px 0 rgba(21,64,99,0.06);
    border: 1px solid var(--color-border);
    padding: 24px 20px;
    min-width: 180px;
    flex: 1 1 240px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.18s;
    gap: 9px;
}
.feature-grid > div:hover {
    box-shadow: 0 6px 20px 0 rgba(67,176,215,0.12);
}
.feature-grid img {
    width: 36px;
    height: auto;
    margin-bottom: 10px;
}
.feature-grid h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--color-primary);
}
.feature-grid p {
    color: var(--color-muted);
    font-size: 15px;
}

/**** .card-container, .card, .card-content ******/
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    position: relative;
    background: var(--color-surface);
    border-radius: 12px;
    box-shadow: 0 2px 10px 0 rgba(21,64,99,0.05);
    margin-bottom: 20px;
    border: 1px solid var(--color-border);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow 0.18s;
}
.card:hover {
    box-shadow: 0 6px 28px 0 rgba(67,176,215,0.13);
}
.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.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;
}

/**** TESTIMONIAL CARDS ****/
.testimonial-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px 0 rgba(21,64,99,0.07);
    font-size: 18px;
    color: var(--color-primary);
}
.testimonial-card p {
    font-size: 17px;
    color: var(--color-text);
    margin-bottom: 6px;
}
.testimonial-card strong {
    font-size: 15px;
    color: var(--color-muted);
}

/**** FAQ LIST ****/
.faq-list {
    margin-bottom: 18px;
}
.faq-list dt {
    font-size: 17px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 18px;
}
.faq-list dd {
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 6px;
    margin-left: 14px;
}

/**** BRAND LIST ****/
.brands-list {
    font-size: 17px;
    color: var(--color-primary);
    letter-spacing: 0.01em;
    margin: 8px 0 20px 0;
}

/**** CONTACT DETAILS ****/
.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 12px;
    align-items: flex-start;
}
.contact-details > div {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-surface);
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 2px 10px 0 rgba(21,64,99,0.05);
    min-width: 220px;
    border: 1px solid var(--color-border);
    font-size: 16px;
    color: var(--color-primary);
}
.contact-details img {
    width: 26px;
    height: auto;
    filter: grayscale(15%) brightness(0.7);
}

.google-map {
    background: var(--color-accent);
    color: var(--color-primary);
    border-radius: 10px;
    padding: 16px 18px;
    font-size: 15px;
    margin-bottom: 10px;
}
.google-map h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-primary);
}

/**** TEXT SECTION ****/
.text-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.text-section h2, .text-section h3 {
    margin-top: 6px;
    color: var(--color-primary);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
}

/**** FOOTER ****/
footer {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 32px 0 20px 0;
}
footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}
.footer-nav {
    display: flex;
    flex-direction: row;
    gap: 26px;
    margin-bottom: 0;
}
.footer-nav a {
    font-size: 15px;
    color: var(--color-muted);
    transition: color 0.16s;
}
.footer-nav a:hover {
    color: var(--color-primary);
}
.footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 32px;
    margin-bottom: 0;
    font-size: 15px;
    color: var(--color-primary);
    align-items: center;
}
.footer-contact img {
    width: 18px;
    height: auto;
    margin-right: 5px;
    filter: grayscale(20%);
}
.footer-logo {
    margin-top: 8px;
}
.footer-logo img {
    height: 44px;
    width: auto;
}

/* ===== COOKIE CONSENT BANNER ===== */
#cookie-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: #fff;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -2px 22px 0 rgba(21,64,99,0.09);
    z-index: 8000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    gap: 20px;
    font-size: 16px;
    color: var(--color-text);
    transition: transform 0.22s cubic-bezier(.75,0,.25,1), opacity 0.18s;
}
#cookie-banner.hide {
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
}
.cookie-banner-msg {
    max-width: 560px;
    color: var(--color-primary);
}
.cookie-banner-btns {
    display: flex;
    flex-direction: row;
    gap: 14px;
}
.cookie-btn, .cookie-settings-btn {
    background: var(--color-secondary);
    color: #fff;
    border: none;
    border-radius: 24px;
    font-size: 15px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    padding: 8px 22px;
    cursor: pointer;
    transition: background 0.16s, color 0.16s, box-shadow 0.18s;
    outline: none;
    box-shadow: 0 1px 5px 0 rgba(67,176,215,0.09);
}
.cookie-btn:hover, .cookie-btn:focus {
    background: var(--color-primary);
    color: #fff;
}
.cookie-btn.reject {
    background: #e3e6ed;
    color: var(--color-muted);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
    background: #ffedd0;
    color: var(--color-secondary);
}
.cookie-settings-btn {
    background: var(--color-accent);
    color: var(--color-primary);
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
    background: #ffe7aa;
    color: var(--color-secondary);
}

/* Cookie Modal */
#cookie-modal {
    display: none;
    position: fixed;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(24,49,66,0.18);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    transition: opacity 0.19s;
}
#cookie-modal.active {
    display: flex;
    animation: fadeInModal 0.33s;
}
@keyframes fadeInModal {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal-content {
    background: var(--color-surface);
    border-radius: 14px;
    max-width: 420px;
    width: 94vw;
    box-shadow: 0 6px 32px 0 rgba(21,64,99,0.10);
    padding: 32px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    font-size: 16px;
}
.cookie-modal-content h3 {
    font-size: 20px;
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--color-primary);
    margin-bottom: 4px;
}
.cookie-modal-content .modal-close {
    position: absolute;
    right: 14px; top: 14px;
    background: var(--color-secondary);
    color: #fff;
    border: none;
    font-size: 1.8rem;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s;
}
.cookie-modal-content .modal-close:hover {
    background: var(--color-primary);
}
.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 12px;
}
.cookie-category {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 16px;
}
.cookie-category label {
    font-weight: 500;
    color: var(--color-primary);
}
.cookie-category input[type="checkbox"]:disabled {
    opacity: 0.6;
    pointer-events: none;
}
.cookie-modal-actions {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-end;
}

/* ===== TYPOGRAPHY ===== */
h1 {
    font-size: 2.3rem;
    color: var(--color-primary);
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
h2 {
    font-size: 1.55rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 12px;
}
h3 {
    font-size: 1.18rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 6px;
}
h4, h5, h6 {
    color: var(--color-text);
    font-weight: 600;
}
p {
    margin-bottom: 12px;
    font-size: 16px;
}
li {
    margin-bottom: 7px;
    font-size: 16px;
    color: var(--color-text);
}
ul {
    list-style: disc inside;
}
ol {
    list-style: decimal inside;
}
section ul li, section ol li {
    padding-left: 0;
}

/* ===== GENERAL SPACING ===== */
section, .card, .testimonial-card {
    margin-bottom: 60px;
}
.content-wrapper > * + * {
    margin-top: 0;
}

/* ===== INTERACTIONS & MICRO-ANIMATIONS ===== */
.cta-btn, .cookie-btn, .cookie-settings-btn, .mobile-menu-toggle, .mobile-menu-close, .cookie-modal-content .modal-close {
    transition: background 0.19s, color 0.18s, box-shadow 0.19s, border 0.19s;
}
input[type="checkbox"]:focus {
    box-shadow: 0 0 2px 2px var(--color-secondary);
    outline: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1020px) {
    .feature-grid > div, .contact-details > div {
        min-width: 175px;
    }
}
@media (max-width: 900px) {
    header .container {
        flex-direction: row;
        gap: 10px;
    }
    nav.main-nav {
        gap: 12px;
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }
    .hero, section {
        padding: 32px 8px;
    }
    .feature-grid, .contact-details, .content-grid {
        flex-direction: column;
        gap: 20px;
    }
    .text-image-section {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    nav.main-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .cta-btn {
        margin-left: 0;
    }
    header .container {
        padding: 0 10px;
    }
    .footer-nav {
        gap: 13px;
        font-size: 14px;
        flex-wrap: wrap;
    }
    .footer-contact {
        gap: 10px 0;
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 600px) {
    h1 {
        font-size: 1.65rem;
    }
    h2 {
        font-size: 1.13rem;
    }
    .card, .testimonial-card, .contact-details > div {
        padding: 16px 10px;
    }
    .cookie-modal-content {
        padding: 23px 7px 18px 7px;
    }
    #cookie-banner {
        flex-direction: column;
        gap: 11px;
        padding: 13px 7px;
        font-size: 15px;
    }
    .cookie-banner-btns {
        gap: 7px;
    }
    .brands-list {
        font-size: 15px;
    }
    .footer-logo img {
        height: 36px;
    }
    .hero {
        min-height: 190px;
    }
}

/* ===== SCANDINAVIAN CLEAN ADDITIONS ===== */
section {
    background: transparent;
    border-radius: 0;
}
.card, .feature-grid > div, .testimonial-card, .contact-details > div, .google-map, .cookie-modal-content {
    /* wood or stone feel, slightly off white, subtle shadow */
    background: var(--color-surface);
    box-shadow: 0 2px 12px 0 rgba(67,176,215,0.05);
    border-radius: 13px;
    border: 1px solid var(--color-border);
}

.testimonial-card {
    border-left: 6px solid var(--color-secondary);
}

/**** DISABLE GRID & COLUMN PROPERTIES ****/
/* (none used anywhere) */
