/* ---------------- 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,
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: #F6F6F6;
    color: #23416D;
    min-height: 100vh;
    font-size: 16px;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a {
    color: #23416D;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}
ul, ol {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
button {
    font-family: inherit;
    font-size: inherit;
    background: none;
    border: none;
    cursor: pointer;
}
:focus {
    outline: 2px solid #8DC63F;
    outline-offset: 2px;
}
@media (max-width: 480px) {
    body {
      font-size: 15px;
    }
}

/* --------------- VARIABLES (FALLBACKS FOR SAFARI) --------------- */
:root {
  --color-primary: #23416D;
  --color-secondary: #8DC63F;
  --color-accent: #F6F6F6;
  --color-white: #fff;
  --color-black: #211f2a;
  --color-info: #27c1f5;
  --color-warn: #f9e128;
  --color-error: #ff555a;
  --radius-card: 18px;
  --radius-btn: 14px;
  --shadow-card: 0 4px 24px rgba(35,65,109,0.10);
}

/* --------------- BRANDY, PLAYFUL & DYNAMIC FONTS --------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');
h1, h2, h3, h4, h5, .logo {
    font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
    font-weight: 900;
    letter-spacing: 0.025em;
}
h1 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 18px;
}
h2 {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 14px;
    font-weight: 900;
}
h3 {
    font-size: 1.34rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 700;
}
strong {
  font-weight: 700;
}
p, ul li, ol li, dl dt, dl dd {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    color: #2B3650;
    margin-bottom: 8px;
}
blockquote {
    font-style: italic;
    font-size: 1.10rem;
    color: #183052;
    margin-bottom: 8px;
}
/* --------------- LAYOUT UTILITIES --------------- */
.container {
    width: 90%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 10px;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    border-radius: var(--radius-card);
    background: var(--color-accent);
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    background: var(--color-white);
    padding: 24px 18px 24px 24px;
    transition: transform 0.16s cubic-bezier(.64,.09,.08,1), box-shadow 0.18s;
    min-width: 220px;
}
.card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(35,65,109,0.15);
}
.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;
}
.testimonial-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(35,65,109,0.10);
    background: #fff;
    min-height: 120px;
    position: relative;
    transition: box-shadow 0.18s;
}
.testimonial-card:hover {
    box-shadow: 0 8px 36px rgba(35,65,109,0.13);
}
.feature-item, .feature-grid > li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    background: #fff;
    border-radius: 16px;
    padding: 20px 18px 18px 22px;
    box-shadow: 0 1px 8px rgba(35,65,109,0.09);
    margin-bottom: 20px;
    min-width: 210px;
    transition: box-shadow 0.20s, transform 0.20s;
    border: 2px solid #e9f7e2;
}
.feature-item:hover, .feature-grid > li:hover {
    box-shadow: 0 6px 30px rgba(141,198,63,0.14);
    border: 2px solid #8DC63F;
    transform: scale(1.04) rotate(-1.5deg);
}

/* ----------------- PLAYFUL DYNAMIC HIGHLIGHTS ----------------- */
.cta-primary {
    background: var(--color-secondary);
    color: var(--color-primary);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    border-radius: var(--radius-btn);
    padding: 14px 34px;
    font-size: 1.18rem;
    box-shadow: 0 2px 10px rgba(75,187,40,0.11);
    letter-spacing: 0.03em;
    border: none;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
    transition: background 0.16s, color 0.16s, transform 0.15s, box-shadow 0.18s;
    text-shadow:1px 1px 0 rgba(255,255,255,0.04);
}
.cta-primary:hover, .cta-primary:focus {
    background: #b7df7b;
    color: #19304b;
    transform: scale(1.06) rotate(1deg);
    box-shadow: 0 6px 20px rgba(141,198,63,0.16);
}
.cta-secondary {
    background: #fff;
    color: var(--color-secondary);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    border-radius: var(--radius-btn);
    padding: 13px 32px;
    font-size: 1.08rem;
    border: 2px solid var(--color-secondary);
    margin-top: 8px;
    box-shadow: 0 1px 4px rgba(141,198,63,0.11);
    transition: background 0.18s, color 0.18s, transform 0.13s;
}
.cta-secondary:hover, .cta-secondary:focus {
    background: var(--color-secondary);
    color: #fff;
    border-color: var(--color-secondary);
    transform: scale(1.05) rotate(-1deg);
}
a.cta-primary, a.cta-secondary {
  text-align: center;
}

/* animated playful underline hover for main nav */
nav > a {
    position: relative;
    padding: 0 8px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.04rem;
    margin: 0 5px 0 0;
    display: inline-block;
    letter-spacing: 0.01em;
    border-radius: 5px;
    transition: background 0.15s, color 0.10s;
}
nav > a:not(.cta-primary):after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: var(--color-secondary);
    border-radius: 1.5px;
    transition: width 0.25s cubic-bezier(.45,1.7,.7,1), background 0.18s;
}
nav > a:hover:after, nav > a:focus:after {
    width: 100%;
}
nav > a:hover, nav > a:focus {
    color: var(--color-secondary);
    background: rgba(141,198,63,0.10);
}

/* ------------------- HEADER & LOGO ------------------- */
header {
    width: 100%;
    background: var(--color-white);
    box-shadow: 0 1px 8px rgba(35,65,109,0.07);
    padding: 0 0;
    min-height: 74px;
    position: relative;
    z-index: 30;
    display: flex;
    align-items: center;
}
.logo img {
    height: 46px;
    width: auto;
    margin: 10px 10px 10px 8px;
    vertical-align: middle;
}
header nav {
    display: flex;
    align-items: center;
    gap: 10px;
}
header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0 8px 0;
}
@media (max-width: 900px) {
    header nav {
        gap: 6px;
    }
}
@media (max-width: 768px) {
    header nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
}
/* ----------- HAMBURGER MENU ----------- */
.mobile-menu-toggle {
    display: none;
    font-size: 2.15rem;
    color: var(--color-primary);
    background: var(--color-secondary);
    padding: 7px 15px;
    border-radius: 50%;
    margin-right: 14px;
    border: 2px solid var(--color-primary);
    transition: background 0.14s, transform 0.20s, color 0.14s;
    z-index: 90;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
    background: #fff;
    color: var(--color-secondary);
    transform: scale(1.10);
}
/* ---------- MOBILE MENU OVERLAY ---------- */
.mobile-menu {
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    transform: translateX(110%);
    transition: transform 0.42s cubic-bezier(.7,.1,.2,1.3);
    box-shadow: -3px 0 24px rgba(34,65,109,0.12);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    font-size: 2.1rem;
    color: var(--color-primary);
    background: var(--color-secondary);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    border: none;
    margin: 16px 0 20px 22px;
    box-shadow: 0 2px 8px rgba(141,198,63,0.15);
    transition: background 0.17s, color 0.14s;
}
.mobile-menu-close:hover {
    background: #f6f6f6;
    color: var(--color-secondary);
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 6px;
    padding: 0 34px;
}
.mobile-nav a {
    display: block;
    width: 100%;
    padding: 16px 0 8px 0;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.11rem;
    color: var(--color-primary);
    background: none;
    border-radius: 7px;
    transition: background 0.18s, color 0.14s;
    margin-bottom: 3px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: var(--color-secondary);
    color: #fff;
}
.mobile-nav a.cta-primary {
    margin-top: 18px;
}
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
}
@media (min-width: 769px) {
    .mobile-menu,
    .mobile-menu-toggle {
        display: none !important;
    }
}

/*  ----------------- HERO SECTION / PLAYFUL ANIMATION ----------------- */
.hero {
    background: linear-gradient(98deg, #b7df7b 0%, #F6F6F6 95%);
    padding: 60px 0 48px 0;
    margin-bottom: 56px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero .content-wrapper {
    align-items: flex-start;
    gap: 18px;
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: 2.44rem;
    background: linear-gradient(92deg, #23416D 70%, #8DC63F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: floatColor 4s ease-in-out infinite alternate;
}
@keyframes floatColor {
  0% { filter: hue-rotate(0deg); transform: translateY(0); }
  50% { filter: hue-rotate(10deg); transform: translateY(-9px); }
  100% { filter: hue-rotate(-10deg); transform: translateY(0); }
}
.hero p {
  color: #1f2f45;
  font-size: 1.15rem;
}

/* ------------- FEATURE/GRID -------------------- */
.features {
  background: #fafefa;
  margin-bottom: 60px;
  border-radius: var(--radius-card);
  padding: 36px 0;
}
.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
}
.feature-grid > li {
    width: calc(50% - 16px);
    min-width: 220px;
}
.feature-grid img {
    height: 48px;
    margin-bottom: 8px;
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
  }
  .feature-grid > li {
    width: 100%;
  }
}

/* ---------- PREVIEW SECTIONS ------------- */
.about-preview, .services-preview, .testimonials-preview, .contact-cta {
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: 0 2px 16px rgba(35,65,109,0.08);
    margin-bottom: 36px;
    padding: 40px 18px 29px 18px;
}
.about-preview .cta-secondary,
.services-preview .cta-secondary {
    margin-top: 18px;
}
.services-preview ul {
    margin: 14px 0 8px 18px;
}

/* ------------- TESTIMONIALS ----------------- */
.testimonials-preview, .testimonials {
    background: #f4fdf2;
    border: 2px dashed #8DC63F;
    border-radius: var(--radius-card);
}
.testimonial-card {
    background: #fff;
    color: #1a263c;
    border-left: 5px solid #8DC63F;
    box-shadow: 0 3px 18px rgba(141,198,63,0.07);
    margin-bottom: 18px;
    min-width: 240px;
    font-size: 1rem;
    width: 100%;
    position: relative;
}
.testimonial-card blockquote {
    color: #1a263c;
    margin-bottom: 4px;
}
.testimonial-card span {
    display: block;
    font-size: 0.98rem;
    color: #23416D;
}
@media (max-width: 600px) {
    .testimonial-card {
      font-size: 0.97rem;
    }
}

/* ----------- PROJECTS/REFERENCES ---------- */
.projects {
    margin-bottom: 48px;
    padding: 24px 0;
}
.project-case {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(35,65,109,0.07);
    padding: 26px 22px;
    margin-bottom: 30px;
    min-width: 220px;
    transition: box-shadow .17s, border-left-color .19s;
    border-left: 7px solid #8DC63F;
    border-bottom: 2px solid #F6F6F6;
    position: relative;
}
.project-case:hover {
    box-shadow: 0 7px 34px rgba(141,198,63,0.15);
    border-left: 7px solid #23416D;
}

/* ------------ BLOG --------- */
.blog-list {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin: 18px 0 0 0;
}
.blog-list > li {
    background: #fff;
    border-radius: 16px;
    padding: 22px 16px 19px 20px;
    box-shadow: 0 2px 6px rgba(35,65,109,0.07);
    min-width: 210px;
    position: relative;
    width: calc(33.333% - 16px);
    margin-bottom: 18px;
    transition: box-shadow 0.19s, transform 0.17s;
}
.blog-list > li:hover {
    box-shadow: 0 10px 34px rgba(39,193,245,0.10);
    transform: scale(1.03) rotate(1.3deg);
}
.blog-list h3 {
    margin-top: 0;
    margin-bottom: 6px;
    color: #27c1f5;
}
@media (max-width:900px) {
    .blog-list > li { width: calc(50% - 10px); }
}
@media (max-width:600px) {
    .blog-list { flex-direction: column; gap: 18px; }
    .blog-list > li { width: 100%; }
}
.blog-list a {
    color: var(--color-secondary);
    text-decoration: underline;
    font-weight: 600;
    margin-top: 5px;
    display: inline-block;
    pointer-events: none; /* since tabindex='-1' in supplied HTML */
}

/* ------------- FAQ & LISTS ------------------- */
dt {
    font-weight: bold;
    color: var(--color-primary);
    margin-top: 14px;
}
dd {
    margin-bottom: 8px;
    color: #344057;
}
.section ul, .section ol, ul, ol {
    margin: 7px 0 7px 18px;
    padding-left: 11px;
}
.section ul li::before {
    content: '⦿';
    color: var(--color-secondary);
    margin-right: 9px;
    font-size: 1.1em;
    vertical-align: -1px;
    font-weight: bold;
}
.section ul li,
li:not(.feature-item):not(.blog-list):not(.service-list) {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* ------------- CONTACT INFO ------------- */
.contact-info ul li,
.contact-info ul li img {
    display: inline-block;
    vertical-align: middle;
}
.contact-info ul li img {
    margin-right: 9px;
    height: 22px;
}
.contact-info ul {
  margin-bottom: 14px;
}

/* ------------- LOCATION MAP ------------- */
.location-map {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 30px 15px 30px 15px;
    margin-bottom: 28px;
    box-shadow: 0 1px 10px rgba(35,65,109,0.06);
}

/* ------------- FOOTER ------------- */
footer {
    background: var(--color-primary);
    color: #fff;
    padding: 0 0 0 0;
    width: 100%;
    margin-top: 55px;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 22px 8px;
    font-size: 0.98rem;
    background: var(--color-primary);
    border-radius: 0 0 18px 18px;
}
.footer-nav a {
    color: var(--color-secondary);
    margin: 0 5px;
    font-weight: 600;
    padding: 4px 7px;
    border-radius: 6px;
    background: rgba(141,198,63, 0.07);
    transition: background 0.11s, color 0.17s;
}
.footer-nav a:hover {
    background: #8DC63F;
    color: #23416D;
}
.footer-nav span {
    color: #e4f6ee;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-nav img {
    vertical-align: middle;
    height: 16px;
    margin-right: 6px;
}

/* -------------- THANK YOU PAGE -------------- */
.thankyou-section {
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: 0 2px 16px rgba(35,65,109,0.09);
    padding: 56px 20px 38px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    margin: 40px 0;
}
.thankyou-section h1 {
    color: var(--color-secondary);
    font-size: 2.1rem;
    margin-bottom: 16px;
    animation: scaleUpPop 1s cubic-bezier(.84,-0.06,.85,1.42) 0.12s both;
}
@keyframes scaleUpPop {
  0% { transform: scale(0.95); opacity: 0.2; }
  85% { transform: scale(1.07); opacity: 1; }
  100% { transform: scale(1); }
}

/* ------------------- RESPONSIVE ------------------- */
@media (max-width: 900px) {
  .container { max-width: 98vw;}
  header, .footer-nav { flex-direction: column; }
}
@media (max-width: 768px) {
    .content-grid, .card-container, .feature-grid {
        flex-direction: column;
        gap: 16px;
    }
    .section {
        padding: 22px 7px;
        margin-bottom: 36px;
    }
    .about-preview, .services-preview, .testimonials-preview, .contact-cta, .location-map {
        padding-left: 10px;
        padding-right: 10px;
    }
    .text-image-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    .card {
        min-width: 0;
    }
}

@media (max-width: 580px) {
    .hero .container, .container {
        width: 99%;
        padding: 0 0px;
    }
    h1 { font-size: 2.05rem; }
    h2 { font-size: 1.48rem; }
    h3 { font-size: 1.02rem; }
    .footer-nav {
        flex-direction: column;
        gap: 10px;
        padding: 20px 5px;
        font-size: 0.97rem;
    }
    .thankyou-section { padding: 34px 6px 25px 6px; min-height: 210px; }
}

/* ----- COOKIE CONSENT BANNER ------ */
.cookie-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 9999;
    background: #fffde4;
    border-top: 3px solid #8DC63F;
    box-shadow: 0 -2px 24px rgba(60, 80, 60, 0.12);
    padding: 18px 12px 14px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 1rem;
    animation: slideUpConsent 0.54s cubic-bezier(.7,.6,.6,1.2);
}
@keyframes slideUpConsent {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
    color: #434343;
    margin: 0;
    flex: 1 1 65%;
    font-size: 0.99rem;
}
.cookie-banner .cookie-btn-group {
    display: flex;
    flex-direction: row;
    gap: 13px;
}
.cookie-banner button {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    border-radius: 10px;
    padding: 9px 22px;
    font-weight: 700;
    margin: 0 2px;
    border: none;
    transition: background 0.17s, color 0.13s, box-shadow 0.14s, transform 0.15s;
}
.cookie-banner .accept {
    background: #8DC63F;
    color: #23416D;
    box-shadow: 0 2px 10px rgba(141,198,63,0.14);
}
.cookie-banner .accept:hover {
    background: #b7df7b;
    color: #23416D;
}
.cookie-banner .reject {
    background: #fff;
    color: #23416D;
    border: 2px solid #8DC63F;
}
.cookie-banner .reject:hover {
    background: #ffe5e6;
    color: #b31a2b;
}
.cookie-banner .settings {
    background: #fff;
    color: #27c1f5;
    border: 2px solid #27c1f5;
}
.cookie-banner .settings:hover {
    background: #e6f7fe;
    color: #23416D;
}
@media (max-width:680px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        font-size: 0.98rem;
        gap: 8px;
    }
    .cookie-banner .cookie-btn-group {
        flex-wrap: wrap;
        gap: 8px;
    }
}

/* ------ COOKIE PREFERENCES MODAL ------ */
.cookie-modal-overlay {
    position: fixed;
    z-index: 10000;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(46,70,56,0.23);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeBackdrop 0.3s;
}
@keyframes fadeBackdrop {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
    background: #fffde4;
    border-radius: 18px;
    box-shadow: 0 6px 34px rgba(141,198,63,0.23);
    max-width: 420px;
    min-width: 260px;
    padding: 32px 26px 26px 26px;
    animation: modalPop 0.36s cubic-bezier(.77,-0.04,.39,1.32);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@keyframes modalPop {
  0% {transform: scale(.89) translateY(70px);opacity:.1;}
  100%{transform: scale(1) translateY(0);opacity:1;}
}
.cookie-modal h2 {
    color: #23416D;
    font-size: 1.36rem;
    margin-bottom: 14px;
}
.cookie-category {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 10px;
}
.cookie-category input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #8DC63F;
}
.cookie-category label {
    font-weight: 700;
    color: #23416D;
    font-size: 1.04rem;
}
.cookie-modal .essential {
    color: #b69f12;
    font-weight: 700;
    font-size: 1.01rem;
    text-decoration: underline dotted #b69f12 1.5px;
}
.cookie-modal .btn-row {
    display: flex;
    flex-direction: row;
    gap: 11px;
    margin-top: 12px;
    justify-content: flex-end;
}
.cookie-modal button {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    border-radius: 10px;
    padding: 8px 17px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: background 0.13s, color 0.14s;
}
.cookie-modal .save {
    background: #8DC63F;
    color: #23416D;
}
.cookie-modal .save:hover {
    background: #b7df7b;
    color: #23416D;
}
.cookie-modal .cancel {
    background: #fff;
    color: #8DC63F;
    border: 2px solid #8DC63F;
}
.cookie-modal .cancel:hover {
    background: #ffe5e6;
    color: #b31a2b;
}

/* --- GENERAL ANIMATED ELEMENTS (ONCE PER PAGE LOAD) --- */
@keyframes popFadeUp {
    0% { opacity: 0; transform: scale(0.98) translateY(28px); }
    65%{ opacity: .7;}
    100% { opacity: 1; transform: scale(1) translateY(0); }
}
.hero .content-wrapper > * { animation: popFadeUp 1s both; }
.hero .content-wrapper > *:nth-child(1) { animation-delay: .03s; }
.hero .content-wrapper > *:nth-child(2) { animation-delay: .13s; }
.hero .content-wrapper > *:nth-child(3) { animation-delay: .19s; }

/* ----------- MICROINTERACTIONS ----------- */
button:active, a:active {
    transform: scale(0.96);
}
.cta-primary:active, .cta-secondary:active {
    filter: brightness(0.92);
}
.card:active, .feature-grid > li:active {
    filter: brightness(0.97) grayscale(.14);
}
.testimonial-card:active {
    filter: brightness(0.972);
}

/* ------------- Z-INDEX ORDER --------------- */
header { z-index: 20; }
.mobile-menu { z-index: 90; }
.cookie-banner,
.cookie-modal-overlay { z-index: 10001; }

/* --------------- END ------------------- */
