/* ============================== */
/*         CSS RESET/BASE         */
/* ============================== */
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;
    scroll-behavior: smooth;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    line-height: 1.6;
    background: #F9FAF9;
    color: #194D33;
    font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    min-height: 100vh;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: #3DAEE9;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover,
a:focus {
    color: #194D33;
    text-decoration: underline;
}
ul, ol {
    list-style: none;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #194D33;
}
h1 {font-size: 2.75rem; margin-bottom: 24px;}
h2 {font-size: 2rem; margin-bottom: 20px;}
h3 {font-size: 1.25rem; margin-bottom: 14px;}
blockquote {
    font-style: italic;
    font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
    color: #194D33;
    background: #FDEB74;
    border-left: 6px solid #3DAEE9;
    padding: 18px 32px;
    margin: 24px 0;
    border-radius: 0 18px 18px 0;
}
strong {
    font-weight: 700;
    color: #194D33;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
}
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================== */
/*        STRUCTURE/HEADER        */
/* ============================== */
header {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(25,77,51,0.07);
    position: sticky;
    top: 0; left: 0;
    z-index: 900;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 18px;
}
.logo img {
    height: 44px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    gap: 28px;
    align-items: center;
}
.main-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #194D33;
    text-decoration: none;
    letter-spacing: 0.02em;
    position: relative;
    padding: 8px 0;
    transition: color 0.2s;
}
.main-nav a.active,
.main-nav a:hover,
.main-nav a:focus {
    color: #3DAEE9;
}
.main-nav a.active::after {
    content: '';
    display: block;
    width: 60%;
    height: 2px;
    background: #3DAEE9;
    position: absolute;
    left: 20%;
    bottom: -4px;
    border-radius: 2px;
}

.cta.primary,
.cta.primary:visited {
    display: inline-block;
    background: #3DAEE9;
    color: #194D33;
    border: 0;
    border-radius: 8px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    font-size: 1.08rem;
    padding: 10px 26px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 10px rgba(61, 174, 233, 0.12);
    margin-left: 16px;
    letter-spacing: 0.04em;
    cursor: pointer;
    outline: none;
}
.cta.primary:hover,
.cta.primary:focus {
    background: #194D33;
    color: #FDEB74;
}
.cta {
    display: inline-block;
    border: 2px solid #3DAEE9;
    background: #fff;
    color: #3DAEE9;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 20px;
    border-radius: 8px;
    padding: 8px 22px;
    box-shadow: 0 2px 8px rgba(61, 174, 233, 0.07);
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.18s;
}
.cta:hover,
.cta:focus {
    background: #3DAEE9;
    color: #194D33;
}

/* Hamburger Mobile menu styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #3DAEE9;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: none;
    transition: background 0.15s, color 0.15s;
    z-index: 1002;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
    background: #FDEB74;
    color: #194D33;
}

.mobile-menu {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    box-shadow: 0 6px 24px rgba(25,77,51,0.20);
    z-index: 1100;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(.72,0,.34,1.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px 24px 24px;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    align-self: flex-end;
    font-size: 2rem;
    color: #3DAEE9;
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 14px;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
    background: #FDEB74;
    color: #194D33;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 24px;
}
.mobile-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #194D33;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #E2EAEA;
    transition: color 0.2s, padding-left 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
    color: #3DAEE9;
    padding-left: 12px;
}

@media (max-width: 1020px) {
    .main-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
}

@media (min-width:1021px) {
    .mobile-menu { display: none !important; }
}

/* ============================== */
/*           HERO STYLES          */
/* ============================== */
.hero {
    background: linear-gradient(98deg,#FDEB74 0%,#fff 100%);
    border-radius: 0 0 60px 60px;
    box-shadow: 0 10px 32px -20px rgba(25,77,51,0.16);
    margin-bottom: 48px;
    padding: 64px 0 32px 0;
    position: relative;
}
.hero .container {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.hero .content-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 2.9rem;
    margin-bottom: 24px;
    color: #194D33;
}
.hero p {
    font-size: 1.23rem;
    color: #294D32;
    margin-bottom: 30px;
}

/* ============================== */
/*        SECTION SPACING         */
/* ============================== */
section {
    margin-bottom: 60px;
    padding: 40px 20px;
}
.section-cta {
    background: #3DAEE9;
    padding: 56px 0 56px 0;
    border-radius: 32px;
    box-shadow: 0 6px 18px -4px rgba(61,174,233,0.16);
}
.section-cta .text-section {
    text-align: center;
    color: #194D33;
    letter-spacing: 0.01em;
}
.section-cta h2, .section-cta p {
    color: #194D33;
}
.section-cta .cta.primary {
    margin-top: 24px;
    background: #FDEB74;
    color: #194D33;
    border: none;
}
.section-cta .cta.primary:hover,
.section-cta .cta.primary:focus {
    background: #194D33;
    color: #FDEB74;
}

.content-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
.text-section {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.text-section ul { margin: 20px 0 18px 18px; }
.text-section li {
    margin-bottom: 10px;
    padding-left: 10px;
    position: relative;
    font-size: 1.02rem;
}
.text-section li::before {
    content:'▸';
    color: #3DAEE9;
    font-size: 1em;
    position: absolute;
    left: -18px;
    top: 0;
}
.text-section a {
    color: #3DAEE9;
    font-weight: 600;
    border-bottom: 2px solid #3DAEE9;
    padding-bottom: 2px;
    transition: color 0.16s, border 0.16s;
}
.text-section a:hover {
    color: #194D33;
    border-bottom: 2px solid #194D33;
}

/* ==================== */
/*    STRUCTURED FLEX   */
/* ==================== */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 3px 16px rgba(25,77,51,0.09);
    padding: 28px 24px;
    margin-bottom: 20px;
    position: relative;
    min-width: 260px;
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 2px solid #E4EFE8;
    transition: box-shadow 0.18s, border 0.18s;
}
.card:hover {
    border: 2px solid #3DAEE9;
    box-shadow: 0 6px 32px rgba(61,174,233,0.17);
    z-index: 10;
}

.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
}

.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.testimonial-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 3px 16px rgba(25,77,51,0.10);
    margin-bottom: 20px;
    border-left: 6px solid #FDEB74;
    color: #194D33;
    min-width: 280px;
}
.testimonial-card blockquote {
    background: none;
    border: none;
    padding: 0;
    font-style: normal;
    color: #194D33;
}
.testimonial-card footer {
    font-weight: 700;
    font-size: 1rem;
    color: #3DAEE9;
    margin-left: 24px;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    margin-top: 16px;
}
.feature {
    background: #fff;
    border-radius: 16px;
    border: 2.5px solid #E2EAEA;
    box-shadow: 0 3px 14px rgba(61,174,233,0.07);
    flex: 1 1 215px;
    min-width: 190px;
    max-width: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 18px 30px 18px;
    transition: box-shadow 0.20s, border 0.18s;
}
.feature img {
    height: 48px;
    margin-bottom: 12px;
}
.feature h3 {
    margin-bottom: 8px;
    font-size: 1.18rem;
    text-align: center;
}
.feature p {
    text-align: center;
    font-size: 0.98rem;
    color: #42504A;
}
.feature:hover,
.feature:focus {
    border-color: #3DAEE9;
    box-shadow: 0 6px 24px rgba(61,174,233,0.10);
    z-index: 2;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
}
.value-card {
    background: #fff;
    border: 2px solid #FDEB74;
    border-radius: 14px 50px 14px 14px;
    box-shadow: 0 3px 16px rgba(253,235,116,0.13);
    flex: 1 1 280px;
    padding: 28px 26px;
    margin-bottom: 20px;
    transition: box-shadow 0.15s, border 0.15s;
    min-width: 240px;
    max-width: 330px;
}
.value-card h3 {
    color: #3DAEE9;
}
.value-card:hover {
    border-color: #3DAEE9;
    box-shadow: 0 8px 28px rgba(61,174,233,0.15);
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.project-highlights {
    background: #FDEB74;
    border-radius: 17px;
    padding: 24px 18px;
    margin: 30px 0;
    box-shadow: 0 2px 7px rgba(253,235,116,0.11);
    color: #194D33;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 18px 0 24px 0;
}
.service-card {
    background: #fff;
    border: 2px solid #3DAEE9;
    border-radius: 16px 64px 16px 16px;
    box-shadow: 0 4px 16px rgba(61,174,233,0.07);
    flex: 1 1 220px;
    min-width: 200px;
    max-width: 270px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 20px 32px 20px;
    transition: box-shadow 0.2s, border 0.2s;
    margin-bottom: 20px;
    position: relative;
}
.service-card img {
    height: 46px;
    margin-bottom: 8px;
}
.service-card h3 {
    font-size: 1.15rem;
}
.service-card p {
    font-size: 1rem;
    color: #42504A;
    margin-bottom: 8px;
}
.service-price {
    position: absolute;
    right: 18px;
    bottom: 16px;
    background: #FDEB74;
    color: #194D33;
    font-weight: 680;
    font-family: 'Montserrat', Arial, sans-serif;
    border-radius: 7px 17px 7px 7px;
    padding: 6px 16px;
    font-size: 0.99rem;
    box-shadow: 0 2px 8px rgba(253,235,116,0.07);
}
.service-card:hover {
    border-color: #194D33;
    box-shadow: 0 8px 32px rgba(25,77,51,0.16);
}

.service-preview-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 18px 0 24px 0;
}
.service-teaser {
    background: #fff;
    border: 2px solid #E2EAEA;
    border-radius: 14px;
    box-shadow: 0 3px 10px rgba(61,174,233,0.06);
    flex: 1 1 215px;
    min-width: 185px;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 18px 24px 18px;
    transition: box-shadow 0.2s, border 0.18s;
    margin-bottom: 20px;
}
.service-teaser img {
    height: 44px;
    margin-bottom: 8px;
}
.service-teaser h3 {
    font-size: 1.09rem;
}
.service-teaser p {
    font-size: 0.96rem;
    color: #42504A;
}
.service-teaser:hover,
.service-teaser:focus {
    border-color: #3DAEE9;
    box-shadow: 0 4px 18px rgba(61,174,233,0.09);
}

/* List and FAQ */
.technology-list {
    margin-bottom: 18px;
}
.technology-list li {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 17px;
    font-size: 1.07rem;
    color: #194D33;
    line-height: 1.36;
    padding-left: 0;
}
.technology-list img {
    height: 26px;
}
.faq-list {
    margin: 0 0 16px 0;
}
.faq-list li {
    margin-bottom: 18px;
    border-bottom: 1.8px solid #E2EAEA;
    padding-bottom: 12px;
}
.faq-list strong {
    font-size: 1.05rem;
}
.faq-list p {
    margin-top: 6px;
    color: #42504A;
}

.usp-list,
.benefit-list {
    margin: 26px 0 8px 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
}
.usp-list li, .benefit-list li {
    font-size: 1rem;
    color: #194D33;
    padding-left: 22px;
    position: relative;
}
.usp-list li::before,
.benefit-list li::before {
    content: "■";
    color: #194D33;
    font-size: 0.83em;
    position: absolute;
    left: 0;
    top: 3px;
}

.article-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.article-list article {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 7px rgba(61,174,233,0.06);
    padding: 18px 22px;
    border: 2px solid #E2EAEA;
    transition: box-shadow 0.15s, border 0.15s;
}
.article-list article:hover {
    border-color: #3DAEE9;
    box-shadow: 0 7px 28px rgba(61,174,233,0.08);
}

.category-filters {
    display: flex;
    gap: 14px;
    align-items: center;
    margin: 30px 0 16px 0;
}
.category-filters button {
    background: #fff;
    border: 2px solid #3DAEE9;
    color: #3DAEE9;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 0.99rem;
    border-radius: 6px;
    padding: 6px 16px;
    cursor: pointer;
    transition: background 0.14s, color 0.14s;
}
.category-filters button:hover,
.category-filters button.active {
    background: #3DAEE9;
    color: #fff;
}
.featured-post {
    background: #FDEB74;
    border-radius: 13px;
    padding: 18px 20px;
    color: #194D33;
    margin-top: 16px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.03rem;
    box-shadow: 0 2px 7px rgba(253,235,116,0.11);
}

.client-logo-row {
    display: flex;
    gap: 42px;
    align-items: center;
    justify-content: flex-start;
    margin: 18px 0 0 0;
}
.client-logo-row img {
    height: 36px;
}

.contact-details {
    margin-bottom: 20px;
}
.contact-details li {
    font-size: 1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.infographic-stats {
    margin-top: 18px;
    padding: 20px 0 8px 0;
    color: #194D33;
    font-weight: 600;
}

/* ========================= */
/*       FOOTER STYLES       */
/* ========================= */
footer {
    background: #194D33;
    color: #fff;
    padding: 34px 0 18px 0;
    letter-spacing: 0.01em;
}
footer .container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 34px;
    justify-content: space-between;
}
footer img {
    height: 42px;
    margin-bottom: 12px;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-nav a {
    color: #FDEB74;
    font-size: 0.98rem;
    padding: 4px 0;
    transition: color 0.18s;
}
.footer-nav a:hover,
.footer-nav a:focus {
    color: #3DAEE9;
}
.footer-contact {
    font-size: 0.97rem;
    color: #fff;
    line-height: 1.7;
}
.footer-contact strong {
    color: #FDEB74;
    font-size: 1.08rem;
}

/* ============================= */
/*      COOKIE CONSENT BANNER    */
/* ============================= */
#cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #194D33;
    color: #fff;
    z-index: 9999;
    box-shadow: 0 -4px 24px rgba(25,77,51,0.11);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
    justify-content: space-between;
    padding: 22px 5vw 22px 5vw;
    font-size: 1rem;
    transition: transform 0.30s;
}
#cookie-banner.hide {
    transform: translateY(120%);
}
#cookie-banner-message {
    flex: 1 1 240px;
    margin-right: 14px;
}
#cookie-banner-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}
.cookie-btn {
    border-radius: 6px;
    border: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 0.97rem;
    font-weight: 700;
    padding: 8px 20px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, box-shadow 0.14s;
    box-shadow: 0 2px 8px rgba(61,174,233,0.09);
}
.cookie-btn.accept {
    background: #FDEB74;
    color: #194D33;
}
.cookie-btn.accept:hover { background: #fff4b8; color: #194D33;}
.cookie-btn.reject {
    background: #fff;
    color: #194D33;
    border: 2px solid #FDEB74;
}
.cookie-btn.reject:hover { background: #3DAEE9; color: #fff; border-color:#3DAEE9;}
.cookie-btn.settings {
    background: #3DAEE9;
    color: #fff;
}
.cookie-btn.settings:hover { background: #FDEB74; color:#194D33; }

/* Consent modal popup */
#cookie-modal {
    display:none;
    position: fixed;
    left: 50%;
    top: 54%;
    transform: translate(-50%, -50%) scale(1.0);
    width: 95vw;
    max-width: 420px;
    background: #fff;
    color: #194D33;
    border-radius: 22px;
    box-shadow: 0 6px 48px 0 rgba(25,77,51,0.22);
    z-index: 12345;
    padding: 32px 28px 24px 28px;
    transition: opacity 0.25s, transform 0.27s;
    animation: cookie-pop 0.4s cubic-bezier(.73,0,.3,1.34);
}
#cookie-modal.open {
    display:block;
}
@keyframes cookie-pop {
  0% { transform: translate(-50%,-44%) scale(0.92); opacity:0.1; }
  100% { transform: translate(-50%,-50%) scale(1); opacity:1; }
}
#cookie-modal h2 {
    color: #194D33;
    font-size: 1.22rem;
    margin-bottom: 10px;
}
.cookie-options {
    margin: 14px 0 22px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cookie-category {
    display: flex;
    align-items: center;
    gap: 14px;
    padding:4px 0;
}
.cookie-category-toggle {
    margin-left: auto;
}
.essential-cookie {
    color: #194D33;
    font-weight: 700;
    font-size: 0.96rem;
}
.cookie-modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    justify-content: flex-end;
}
.close-modal-btn {
    background: transparent;
    color: #3DAEE9;
    border: none;
    font-size: 1.4rem;
    position: absolute;
    top: 16px;
    right: 22px;
    cursor: pointer;
    transition: color 0.13s;
}
.close-modal-btn:hover { color: #194D33;}

/* ========================= */
/*        RESPONSIVE         */
/* ========================= */
@media (max-width: 900px) {
    .feature-grid, .values-grid, .service-grid, .service-preview-grid, .client-logo-row, .card-container, .content-grid {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }
    .section-cta {
        border-radius: 20px;
        padding: 36px 0;
    }
    .project-highlights {
        padding: 18px 10px;
    }
    .card, .feature, .value-card, .service-card, .service-teaser {
        min-width: 90vw;
        max-width: 97vw;
    }
    footer .container {
        flex-direction: column;
        gap: 26px;
        align-items: flex-start;
    }
    .footer-nav {
        flex-direction: row;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    h1 { font-size: 2.1rem;}
    h2 { font-size: 1.35rem;}
    .hero { padding: 36px 0 18px 0; }
    .hero .content-wrapper { padding: 0 0 0 0;}
    .section { padding: 28px 8px; margin-bottom: 35px; }
    .content-wrapper, .text-section { padding: 0 2vw;}
    .testimonial-card, .card, .feature, .service-card, .value-card, .service-teaser {
        padding-left: 12px;
        padding-right: 12px;
        min-width: 95vw;
        max-width: 99vw;
    }
    .section-cta, section.section-cta {
        padding-left: 0;
        padding-right: 0;
    }
    .text-image-section {
        flex-direction: column;
        gap: 28px;
    }
    .faq-list li, .usp-list li, .benefit-list li { font-size: 0.98rem;}
    #cookie-banner {flex-direction: column; gap:10px; padding: 18px 12px; font-size: 0.98rem;}
    .mobile-nav a { font-size: 1.13rem; }
    .footer-contact { font-size: 0.95rem; }
}
@media (max-width: 430px) {
    .hero h1, h1 { font-size: 1.42rem; }
    .container { padding: 0 5px;}
    .section { padding: 12px 3px;}
}

/* ============================== */
/*          MICRO-ANIMATIONS      */
/* ============================== */
.cta, .cta.primary, .category-filters button, .service-card, .feature, .service-teaser, .value-card, .card, .article-list article {
    transition: box-shadow 0.18s, border 0.16s, background 0.16s, color 0.17s, transform 0.13s;
}
.cta:active, .cta.primary:active {
    transform: scale(0.97);
}
.feature:active, .service-card:active, .value-card:active {
    transform: translateY(2px) scale(.99);
}

