/* ----------------------------
   CSS RESET & BASELINE
----------------------------- */
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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1.5;
    background: #F9F7F3;
    color: #2A3D4F;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ol, ul {
    list-style: none;
}
a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
}
button {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #2A3D4F;
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.01em;
}
h1 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    line-height: 1.15;
}
h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
h3 {
    font-size: 1.45rem;
    margin-bottom: 16px;
}
h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}
p,
ul li, ol li {
    font-size: 1rem;
    color: #2A3D4F;
    margin-bottom: 12px;
    line-height: 1.7;
}
strong, b {
    font-weight: 600;
}

/* Layout Containers */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}
.content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.section {
    background: #fff;
    margin-bottom: 60px;
    padding: 40px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(42,61,79,0.04);
}
/* --- Flex Layout Patterns --- */
.card-container, .features, .feature-list, .project-cards, .case-highlights, .insight-teasers, .newsletter-signup {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card, .project-card {
    margin-bottom: 20px;
    position: relative;
    flex: 1 1 300px;
    background: #fff;
    box-shadow: 0 2px 14px rgba(42,61,79,0.04);
    border-radius: 12px;
    padding: 28px 22px;
    transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover, .project-card:hover {
    box-shadow: 0 6px 30px rgba(42,61,79,0.13);
    transform: translateY(-4px) scale(1.015);
}
.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;
    width: 100%;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    box-shadow: 0 2px 16px rgba(42,61,79,0.09);
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 20px;
    max-width: 520px;
    transition: box-shadow 0.2s;
}
.testimonial-card:hover {
    box-shadow: 0 8px 28px rgba(42,61,79,0.13);
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

/* --- Main Navigation --- */
header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(42,61,79,0.06);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}
.main-nav a {
    color: #2A3D4F;
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.18s, color 0.20s, box-shadow 0.18s;
    position: relative;
}
.main-nav a:not(.cta-btn):hover, .footer-menu a:hover, .mobile-nav a:hover {
    background: #F9F7F3;
    color: #2A3D4F;
    box-shadow: 0 1px 6px rgba(42,61,79,0.07);
}
.main-nav img {
    height: 36px;
    width: auto;
    margin-right: 16px;
}
.cta-btn {
    background: #2A3D4F;
    color: #fff !important;
    border-radius: 7px;
    padding: 10px 22px;
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(42,61,79,0.07);
    transition: background 0.24s, transform 0.14s, box-shadow 0.14s;
}
.cta-btn:hover,
.cta-btn:focus {
    background: #758184;
    color: #fff;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 26px rgba(42,61,79,0.15);
}

/* --- Burger/Mobile Menu --- */
.mobile-menu-toggle {
    display: none;
    background: #2A3D4F;
    color: #fff;
    font-size: 2rem;
    border-radius: 7px;
    padding: 6px 16px;
    margin-left: 14px;
    z-index: 103;
    transition: background 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
    background: #758184;
}
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(42,61,79,0.98);
    color: #fff;
    z-index: 1011;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 24px 24px 24px;
    transform: translateX(-100vw);
    transition: transform 0.32s cubic-bezier(.45,.2,.38,.98);
    min-height: 100vh;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    color: #fff;
    background: #2A3D4F;
    font-size: 2.1rem;
    border-radius: 7px;
    padding: 4px 16px;
    align-self: flex-end;
    margin-bottom: 18px;
    z-index: 1012;
    transition: background 0.13s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
    background: #758184;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 18px;
}
.mobile-nav a {
    color: #fff;
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-size: 1.12rem;
    padding: 12px 0;
    border-radius: 6px;
    transition: background 0.20s, color 0.20s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
    background: #F9F7F3;
    color: #2A3D4F;
}

/* --- HERO Section --- */
.hero {
    background: linear-gradient(133deg, #fff 58%, #F9F7F3 100%);
    padding: 64px 0 40px 0;
}
.hero .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero .content-wrapper {
    gap: 20px;
    max-width: 720px;
    margin: 0 auto;
}
.hero h1 {
    color: #2A3D4F;
}
.hero p {
    color: #758184;
    margin-bottom: 12px;
    font-size: 1.19rem;
    line-height: 1.6;
}

/* ----- Features ----- */
.features ul,
.services-overview ul,
.process-summary ol,
.about-short ul,
.core-values ul,
.service-tabs ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 20px 0 0 0;
}
.features ul li,
.services-overview ul li,
.process-summary ol li,
.about-short ul li,
.core-values ul li,
.service-tabs ul li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #2A3D4F;
    background: #F9F7F3;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: 'Roboto', Arial, sans-serif;
}
.features ul li img,
.core-values ul li img,
.process-summary ol li img {
    height: 30px;
    width: 30px;
    margin-right: 8px;
}

/* --- Project Cards --- */
.project-cards {
    width: 100%;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.project-card {
    min-width: 270px;
    max-width: 360px;
    flex: 1 1 280px;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 14px;
    box-shadow: 0 2px 14px rgba(42,61,79,0.05);
    padding: 26px 20px 26px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow 0.2s, transform .18s;
}
.project-card h2 {
    font-size: 1.22rem;
    margin-bottom: 14px;
}
.project-card ul {
    gap: 6px;
}
.project-card .cta-btn {
    margin-top: 16px;
    align-self: flex-start;
}

/* --- CASE Highlights, Newsletter, Teasers --- */
.case-highlights p {
    background: #F9F7F3;
    border-left: 4px solid #2A3D4F;
    border-radius: 7px;
    padding: 16px 24px;
    margin-bottom: 16px;
    color: #2A3D4F;
}
.insight-teasers h3 {
    margin-bottom: 3px;
    color: #2A3D4F;
}
.insight-teasers p {
    color: #758184;
    margin-bottom: 15px;
}
.newsletter-signup p {
    color: #2A3D4F;
    font-size: 1.09rem;
    margin-right: 14px;
}

/* --- Timeline Visual (Process) --- */
.timeline-visual p {
    color: #758184;
    background: #F9F7F3;
    border-radius: 8px;
    padding: 13px 22px;
    margin-top: 14px;
}

/* --- FAQ List (Process) --- */
.faq-list h3 {
    color: #2A3D4F;
    font-size: 1.10rem;
    margin-bottom: 5px;
    margin-top: 13px;
}
.faq-list p {
    color: #758184;
    margin-bottom: 12px;
}

/* --- CTA Banners --- */
.cta-banner {
    background: #2A3D4F;
    border-radius: 20px;
    box-shadow: 0 2px 28px rgba(42,61,79,0.13);
    padding: 36px 22px;
    color: #fff;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}
.cta-banner h3, .cta-banner h2 {
    color: #fff;
}
.cta-banner p {
    color: #F9F7F3;
    font-size: 1.10rem;
}
.cta-banner img {
    vertical-align: middle;
    height: 22px;
    width: 22px;
    margin-right: 5px;
}
.cta-banner .cta-btn {
    margin-top: 16px;
    background: #fff;
    color: #2A3D4F !important;
    font-weight: 700;
    border: 2px solid #2A3D4F;
}
.cta-banner .cta-btn:hover {
    background: #F9F7F3;
    color: #2A3D4F;
    border-color: #758184;
}

/* --- Footer --- */
footer {
    background: #fff;
    color: #2A3D4F;
    border-top: 2px solid #F9F7F3;
    margin-top: 60px;
    padding: 0;
}
footer .container {
    padding: 44px 20px 18px 20px;
}
footer .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.footer-brand {
    flex: 1 1 200px;
    display: flex;
    align-items: center;
}
.footer-brand img {
    height: 36px;
    width: auto;
}
.footer-menu {
    flex: 2 1 280px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
}
.footer-menu a {
    color: #758184;
    font-weight: 500;
    transition: color 0.18s;
}
.footer-contact {
    flex: 2 1 260px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: 0.96rem;
}
.footer-contact img {
    height: 15px;
    width: auto;
    margin-right: 4px;
    vertical-align: text-bottom;
}

/* --------- Testimonials --------- */
.testimonials .testimonial-card {
    background: #fff;
    color: #2A3D4F;
    border-left: 6px solid #2A3D4F;
    box-shadow: 0 2px 24px rgba(42,61,79,0.05);
    padding: 28px 28px 16px 24px;
    margin-bottom: 24px;
    max-width: 540px;
    font-size: 1.04rem;
}
.testimonial-card p {
    color: #2A3D4F;
    font-size: 1.03rem;
    line-height: 1.7;
    margin-bottom: 9px;
}
.testimonial-card span {
    color: #758184;
    font-size: 0.99rem;
    font-style: italic;
    margin-bottom: 6px;
}
.star-rating {
    color: #FBBF24;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 0;
}

/* --------- Cookie Consent Banner/Modal --------- */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background: #fff;
    border-top: 2px solid #2A3D4F;
    box-shadow: 0 -2px 18px rgba(42,61,79,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 26px 23px 18px 23px;
    width: 100%;
    transition: transform 0.4s cubic-bezier(.41,.47,.27,1.11), opacity 0.3s;
    opacity: 1;
}
.cookie-banner.hide {
    transform: translateY(120%);
    opacity: 0;
}
.cookie-banner p {
    font-size: 0.991rem;
    color: #2A3D4F;
}
.cookie-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.cookie-btn {
    background: #2A3D4F;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 10px 22px;
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin: 0 0 0 0;
    transition: background 0.18s, color 0.16s;
}
.cookie-btn.reject {
    background: #fff;
    color: #2A3D4F;
    border: 1.5px solid #2A3D4F;
}
.cookie-btn.reject:hover {
    background: #F9F7F3;
}
.cookie-btn.settings {
    background: #758184;
}
.cookie-btn.settings:hover {
    background: #2A3D4F;
}
.cookie-btn:hover {
    background: #758184;
    color: #fff;
}

.cookie-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 48px rgba(42,61,79,0.17);
    z-index: 3000;
    width: 90vw;
    max-width: 440px;
    padding: 32px 26px 18px 26px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 1;
    transition: opacity 0.34s, transform 0.32s;
}
.cookie-modal.hide {
    opacity: 0;
    transform: translate(-50%, 56%) scale(0.95);
    pointer-events: none;
}
.cookie-modal h2 {
    color: #2A3D4F;
    margin-bottom: 8px;
}
.cookie-modal .cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 8px 0 0 0;
}
.cookie-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F9F7F3;
    color: #2A3D4F;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Roboto', Arial, sans-serif;
}
.cookie-category.essential label {
    font-weight: 500;
}
.cookie-category input[type="checkbox"] {
    accent-color: #2A3D4F;
    width: 20px; height: 20px;
    cursor: pointer;
}
.cookie-category input[disabled] {
    opacity: 0.7;
}
.cookie-modal .cookie-modal-actions {
    display: flex;
    gap: 13px;
    margin-top: 12px;
    justify-content: flex-end;
}
.cookie-modal .cookie-btn {
    min-width: 108px;
}
.cookie-modal .close-modal {
    position: absolute;
    top: 14px; right: 20px;
    background: #2A3D4F;
    color: #fff;
    border-radius: 6px;
    font-size: 1.25rem;
    border: none;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.13s;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus {
    background: #758184;
}

/* -------- Text/Image Section --------- */
.text-section,
.map-embed {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 14px rgba(42,61,79,0.04);
    padding: 20px 24px;
    margin-bottom: 20px;
}

.map-embed {
    background: #F9F7F3;
    text-align: center;
    color: #758184;
    font-style: italic;
}

/* --- Spacing Control --- */
main > section, .section {
    margin-bottom: 60px;
    padding: 40px 20px;
}

/* --- Utility Classes --- */
.hidden { display: none !important; }
.visually-hidden {
    border: 0 !important;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px;
}

/* ------------- Responsive Design ------------- */
@media (max-width: 1060px) {
    .container {
        padding-left: 8px;
        padding-right: 8px;
    }
    .content-wrapper, .card-container, .project-cards {
        gap: 18px;
    }
    .section, main > section {
        padding-left: 8px;
        padding-right: 8px;
    }
}
@media (max-width: 900px) {
    footer .content-wrapper {
        flex-direction: column;
        gap: 24px;
    }
    .footer-menu {
        gap: 10px; justify-content: flex-start;
    }
}
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .project-cards {
        flex-direction: column;
        gap: 20px;
    }
    .card-container, .features, .feature-list, .content-grid, .case-highlights {
        flex-direction: column;
        gap: 18px;
    }
    .card, .project-card {
        max-width: unset;
        min-width: 0;
        width: 100%;
    }
    .cta-banner {
        padding: 26px 8px;
    }
    .hero {
        padding: 42px 0 22px 0;
    }
    .testimonial-card {
        padding: 18px 13px 13px 15px;
        max-width: 100%;
    }
    .text-image-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}
@media (max-width: 520px) {
    h1 {
        font-size: 1.65rem;
    }
    h2 {
        font-size: 1.22rem;
    }
    h3 {
        font-size: 1.05rem;
    }
    .content-wrapper {
        gap: 13px;
    }
    .section, main > section {
        margin-bottom: 36px;
        padding: 22px 3px;
    }
    .cookie-modal {
        padding: 18px 4px 10px 4px;
    }
    .cookie-banner {
        padding: 18px 3px 10px 3px;
    }
}

/* ------ Animation Helper Classes ------ */
@media (prefers-reduced-motion: no-preference) {
    .mobile-menu,
    .cookie-banner, .cookie-modal {
        will-change: transform, opacity;
    }
    .cta-btn, .main-nav a, .card, .project-card, .testimonial-card {
        transition-duration: 0.22s;
        transition-timing-function: cubic-bezier(.25,.75,.35,1.12);
    }
}

/* Miscellaneous */
::-webkit-scrollbar {
    width: 8px; background: #F9F7F3;
}
::-webkit-scrollbar-thumb {
    background: #75818444;
    border-radius: 4px;
}

/* Accent colors/highlight text */
.accent {
    color: #758184;
    font-weight: 600;
}

/* End of file */
