/* =============================== */
/* SPLENDORE PARTENOPEO CSS RESET  */
/* =============================== */
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,
main, 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 {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #183154;
  background: #F7F6F2;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #23406C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #7FB282;
  outline: none;
}
ul, ol {
  margin-left: 28px;
  padding-left: 8px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
  box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #23406C;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
h1 {font-size: 2.5rem; margin-bottom: 20px;}
h2 {font-size: 2rem; margin-bottom: 18px;}
h3 {font-size: 1.35rem; margin-bottom: 12px;}
h4 {font-size: 1.1rem; margin-bottom: 8px;}
p, li {
  font-size: 1rem;
  color: #254475;
}
strong { font-weight: 700; }

/* =============================== */
/* COLOR VARIABLES (NO custom props) */
/* =============================== */
:root {
  /* Brand colors */
  /* primary: #23406C (Electric Navy Blue) */
  /* secondary: #7FB282 (Punchy Green) */
  /* accent: #F7F6F2 (Vivid Light) */
  --main-bg: #F7F6F2;
  --primary: #23406C;
  --secondary: #7FB282;
  --accent: #F7F6F2;
  --electric-pink: #FF007A;
  --electric-yellow: #FFD600;
  --electric-cyan: #23E5E5;
  --dark-text: #183154;
  --vivid-orange: #FF8A00;
  --shadow: 0 6px 28px 0 rgba(35,64,108,0.11);
  --shadow-card: 0 2px 16px 0 rgba(35,64,108,0.13);
}

/* =============================== */
/* LAYOUT CONTAINERS/SECTIONS      */
/* =============================== */
.container {
    width: 100%;
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 18px;
    padding-right: 18px;
}

.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: #F7F6F2;
    border-radius: 16px;
}
@media (max-width: 768px) {
    .section {
        margin-bottom: 40px;
        padding: 28px 6vw;
    }
}

/* =============================== */
/* FLEX CARDS, GRIDS, FEATURES     */
/* =============================== */
footer p{
    color: white;
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
}
.card {
    margin-bottom: 20px;
    background: #fff;
    position: relative;
    box-shadow: var(--shadow-card);
    border-radius: 14px;
    padding: 26px 24px;
    transition: box-shadow 0.2s, transform 0.17s;
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 410px;
}
.card:hover, .card:focus {
    box-shadow: 0 4px 28px 0 rgba(255,0,122,0.14), 0 6px 28px 0 rgba(35,64,108,0.13);
    transform: translateY(-4px) scale(1.025);
    z-index: 2;
}

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

.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
@media (max-width: 992px) {
    .content-grid {
        gap: 14px;
    }
}

.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .text-image-section {
        flex-direction: column;
        gap: 18px;
    }
}

.testimonial-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 28px 20px 26px;
    background: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    position: relative;
    min-width: 0;
}
.testimonial-card p {
    color: #23406C;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.testimonial-card span {
    font-size: 1rem;
    color: #183154;
    margin-left: auto;
    font-weight: 500;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.testimonial-average {
    background: #FFFCF5;
    color: #23406C;
    border: 2px solid #FFD600;
    box-shadow: 0 2px 18px 0 rgba(255,206,58,.15);
    justify-content: flex-start;
    gap: 16px;
}
.testimonial-card img {
    display: inline-block;
    vertical-align: bottom;
    width: 24px;
    height: 24px;
}
@media (max-width: 600px) {
    .testimonial-card {
        flex-direction: column;
        gap: 10px;
        padding: 20px 12px;
        align-items: flex-start;
    }
    .testimonial-card span {
      margin-left: unset;
    }
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin: 6px 0 0 0;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    background: #fff;
    box-shadow: var(--shadow-card);
    border-radius: 12px;
    padding: 26px 18px 22px 18px;
    flex: 1 1 220px;
    min-width: 180px;
    max-width: 290px;
    transition: box-shadow 0.2s, transform 0.18s;
}
.feature-item:hover, .feature-item:focus {
    box-shadow: 0 4px 28px 0 #7FB28222, 0 6px 28px 0 #23406C22;
    transform: scale(1.025) translateY(-3px);
}
.feature-item h3 {
    font-size: 1.14rem;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: #FF007A;
    margin-bottom: 0px;
}
.feature-item img {
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 1px 3px #7fb28233);
}

/* =============================== */
/* HERO SECTIONS & BANNERS         */
/* =============================== */
.hero {
    background: linear-gradient(104deg, #FFD600 66%, #7FB282 105%);
    box-shadow: 0 4px 24px 0 #FFD60012;
    padding: 56px 0 48px 0;
    border-bottom-left-radius: 48px 32px;
    border-bottom-right-radius: 48px 32px;
    position: relative;
}
.hero .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 260px;
}
.hero h1 {
    color: #23406C;
    font-size: 2.35rem;
    font-weight: 900;
    background: none;
    margin-bottom: 12px;
    letter-spacing: -1.7px;
}
.hero p {
    font-size: 1.12rem;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    margin-bottom: 28px;
}

.cta-banner {
    min-height: 190px;
    background: linear-gradient(92deg, #7FB282 50%, #FFD600 120%);
    box-shadow: 0 4px 20px 0 #23E5E511;
    border-radius: 22px;
    margin-bottom: 50px;
}
.cta-banner .content-wrapper {
    align-items: center;
    text-align: center;
    gap: 18px;
}
.cta-banner h2 {
    color: #fff;
    font-size: 2.1rem;
    text-shadow: 0 2px 10px #23406C22;
}
.cta-banner p {
    color: #fff9ea;
}

/* =============================== */
/* BUTTONS & CTAS                  */
/* =============================== */
.cta-primary, .cta-secondary, .newsletter-signup button, .cookie-banner-btn {
    display: inline-block;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.08rem;
    padding: 15px 34px;
    border-radius: 36px;
    letter-spacing: 1.5px;
    margin-top: 10px;
    background: #23406C;
    color: #FFD600;
    border: none;
    box-shadow: 0 3px 14px 0 #23406C18;
    cursor: pointer;
    transition: background 0.27s, color 0.20s, transform 0.2s;
    outline: none;
    border: 2px solid transparent;
}
.cta-primary:hover, .cta-primary:focus, .newsletter-signup button:hover, .cookie-banner-btn.accept:hover {
    background: #FF007A;
    color: #fff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px 0 #ff007a29;
}
.cta-secondary {
    background: #FFD600;
    color: #23406C;
    border: 2px solid #FFD600;
    margin-top: 16px;
}
.cta-secondary:hover, .cta-secondary:focus {
    background: #23406C;
    color: #FFD600;
    border: 2px solid #23406C;
}
.newsletter-signup button {
    margin-top: 0;
    background: #7FB282;
    color: #fff;
    padding: 12px 26px;
    font-size: 1rem;
}
.newsletter-signup button:hover, .newsletter-signup button:focus {
    background: #FF007A;
    color: #fff;
}
.cookie-banner-btn.revoke {
    background: #23406C;
    color: #FFD600;
}
.cookie-banner-btn.settings {
    background: #23E5E5;
    color: #183154;
}
.cookie-banner-btn.reject {
    background: #fff;
    color: #23406C;
    border: 2px solid #23406C;
}
.cookie-banner-btn.reject:hover {
    background: #FFD600;
    color: #23406C;
    border-color: #FFD600;
}

/* =============================== */
/* NAVIGATION - HEADER DESKTOP     */
/* =============================== */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    background: #fff;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 38px 0 #23406C0D;
    position: relative;
    z-index: 90;
    min-height: 72px;
}
.logo {
    width: 80px;
    margin-right: 28px;
}
.main-nav {
    display: flex;
    gap: 24px;
    align-items: center;
}
.main-nav a {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1.01rem;
    font-weight: 800;
    color: #23406C;
    text-transform: uppercase;
    padding: 8px 8px;
    border-radius: 7px;
    transition: background 0.18s, color 0.15s;
    position: relative;
}
.main-nav a:hover, .main-nav a:focus {
    background: #FFD600;
    color: #23406C;
}
.main-nav .cta-primary {
    background: #FF007A;
    color: #fff;
    font-size: 1rem;
    margin-left: 18px;
    box-shadow: 0 2px 12px #ff007a14;
    border: 2px solid #FF007A;
}
.main-nav .cta-primary:hover {
    background: #FFD600;
    color: #23406C;
    border-color: #FFD600;
}

/* =============================== */
/* MOBILE MENU (BURGER/OVERLAY)    */
/* =============================== */
.mobile-menu-toggle {
    display: none;
    background: #FFD600;
    color: #23406C;
    font-size: 2rem;
    border-radius: 8px;
    padding: 3px 16px 5px 14px;
    margin-left: 18px;
    cursor: pointer;
    border: none;
    transition: background 0.18s, color 0.17s, box-shadow 0.2s;
    z-index: 120;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
    background: #FF007A;
    color: #fff;
    box-shadow: 0 4px 12px #FF007A33;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(35,64,108,0.94);
    z-index: 1100;
    transform: translateX(-100vw);
    transition: transform 0.34s cubic-bezier(.6,.05,.28,.91);
    opacity: 1;
    pointer-events: none;
}
.mobile-menu.open {
    transform: translateX(0);
    pointer-events: auto;
}
.mobile-menu-close {
    align-self: flex-end;
    background: none;
    color: #FFD600;
    font-size: 2.3rem;
    padding: 8px 18px 26px 0;
    border: none;
    cursor: pointer;
    z-index: 1202;
    transition: color 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
    color: #23E5E5;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 12vh;
    gap: 26px;
    padding: 0 34px;
}
.mobile-nav a {
    color: #fff;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1.17rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px 0 10px 0;
    width: 100%;
    letter-spacing: 1.2px;
    border-radius: 6px;
    background: none;
    transition: background 0.15s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #FF007A;
    color: #FFD600;
}

@media (max-width: 1100px) {
    .main-nav {
      gap: 13px;
    }
    .logo {
      width: 130px;
    }
}
@media (max-width: 940px) {
    .main-nav {
      gap: 6px;
    }
  }
@media (max-width: 900px) {
    .main-nav {
      gap: 2px;
    }
}
@media (max-width: 870px) {
    .main-nav {
      gap: 0px;
    }
}
@media (max-width: 820px) {
    .main-nav {
      display: none;
    }
    .mobile-menu-toggle {
      display: block;
    }
}

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

/* =============================== */
/* FOOTER                          */
/* =============================== */
footer {
    background: #23406C;
    padding: 46px 0 16px 0;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    color: #fff;
    font-size: 1.01rem;
    margin-top: 64px;
}
.footer-brand {
    flex: 1 1 240px;
    min-width: 160px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}
.footer-brand img {
    width: 142px;
    margin-bottom: 10px;
}
.footer-menu {
    flex: 1 1 110px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-menu a {
    color: #FFD600;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
    color: #FF007A;
}
.footer-contact {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #fff;
    font-size: 1rem;
}
.footer-contact p {
    display: flex;
    gap: 7px;
    align-items: center;
    color: #fff;
    font-size: 1rem;
}
.footer-contact img {
    width: 19px;
    height: 19px;
    vertical-align: middle;
}
.footer-social {
    flex: 1 1 92px;
    display: flex;
    gap: 14px;
    align-items: center;
}
.footer-social a img {
    width: 29px;
    height: 29px;
    filter: drop-shadow(0 1px 2px #FFD60055);
    transition: filter 0.15s;
}
.footer-social a:hover img {
    filter: drop-shadow(0 4px 10px #FF007A);
}
.newsletter-signup {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.newsletter-signup input[type=email] {
    padding: 12px 19px;
    border-radius: 18px;
    border: 2px solid #FFD600;
    font-size: 1.01rem;
    background: #fff;
    margin-bottom: 6px;
}
.newsletter-signup input[type=email]:focus {
    border-color: #7FB282;
    outline: 2px solid #FF007A22;
}
@media (max-width: 1000px) {
    footer .content-wrapper {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
}
@media (max-width: 600px) {
    footer {
      padding-top: 24px;
    }
    .footer-brand img {
      width: 104px;
    }
}

/* =============================== */
/* SERVICES CARDS                  */
/* =============================== */
.services-preview, .service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 16px 0 18px 0;
    width: 100%;
    justify-content: flex-start;
}
.service-card, .service-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    padding: 28px 20px 22px 22px;
    flex: 1 1 260px;
    margin-bottom: 20px;
    position: relative;
    min-width: 220px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow 0.16s, transform 0.12s;
}
.service-card:hover, .service-item:hover, .service-card:focus, .service-item:focus {
    box-shadow: 0 6px 28px 0 #FFD60033, 0 6px 28px 0 #FF007A22;
    transform: scale(1.022) translateY(-3px);
    z-index: 2;
}
.service-card h3, .service-item h2 {
    color: #FF007A;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1.29rem;
    font-weight: 800;
    margin-bottom: 6px;
}
.price {
    color: #FFD600;
    font-weight: 700;
    font-size: 1.03rem;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    letter-spacing: .4px;
    margin-top: 8px;
}
@media (max-width: 850px) {
    .services-preview, .service-list {
        flex-direction: column;
        gap: 18px;
    }
    .service-card, .service-item {
        min-width: 120px;
        max-width: 100%;
    }
}

/* =============================== */
/* PRICING TABLE                   */
/* =============================== */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    margin-top: 14px;
    margin-bottom: 20px;
    overflow: hidden;
}
.pricing-table th, .pricing-table td {
    padding: 18px 32px 12px 18px;
    font-size: 1rem;
    text-align: left;
}
.pricing-table th {
    background: #7FB282;
    color: #fff;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}
.pricing-table td {
    color: #254475;
}
.pricing-table tr:nth-child(even) td {
    background: #F7F6F2;
}
.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-note {
    color: #FF007A;
    font-size: .99rem;
    margin-top: 12px;
}

/* =============================== */
/* FAQ ACCORDION                   */
/* =============================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 6px;
}
.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    padding: 24px 22px 14px 22px;
    cursor: pointer;
    transition: box-shadow 0.17s;
    border-left: 7px solid #FFD600;
    position: relative;
}
.faq-item h2 {
    font-size: 1.13rem;
    color: #FF007A;
    margin-bottom: 6px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
}
.faq-item p {
    margin-bottom: 0;
}
.faq-item:focus-within, .faq-item:hover {
    box-shadow: 0 4px 28px 0 #23406C22;
}

.faq-short {
  list-style: disc inside;
  margin: 18px 0;
  padding-left: 22px;
}
.faq-short li {
  margin-bottom: 14px;
  font-size: 1.01rem;
}

/* =============================== */
/* CONTACT DETAILS                 */
/* =============================== */
.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    padding: 17px 0 7px 0;
    align-items: flex-start;
    justify-content: flex-start;
}
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 205px;
    font-size: 1.02rem;
}
.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}
.contact-info-list strong {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: #FF007A;
}
.map {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 13px;
    box-shadow: var(--shadow-card);
    padding: 15px 19px;
    min-width: 160px;
    font-size: 1.02rem;
    color: #23406C;
    font-weight: 500;
}
.map img {
    width: 28px;
    margin-right: 7px;
}
@media (max-width: 768px) {
  .contact-details {
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =============================== */
/* BRAND STORY & TEAM              */
/* =============================== */
.team, .brand-story {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    padding: 40px 28px;
    margin-bottom: 28px;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* =============================== */
/* TYPOGRAPHY HIERARCHY / SPACING  */
/* =============================== */
h1, h2, h3 { word-break: break-word; }

@media (max-width: 600px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.18rem; }
}

/* =============================== */
/* COOKIE CONSENT BANNER/BUTTONS   */
/* =============================== */
.cookie-banner {
    position: fixed;
    left: 0; bottom: 0;
    width: 100vw;
    background: #fff;
    box-shadow: 0 -4px 18px #23406C25, 0 -1px 0 #FFD60066;
    z-index: 15000;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    padding: 18px 30px 13px 22px;
    border-top-right-radius: 21px;
    border-top-left-radius: 21px;
    font-size: 1rem;
    transition: transform 0.42s cubic-bezier(.9,.21,.17,1.23), opacity 0.25s;
}
.cookie-banner.hide {
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
}
.cookie-banner-message {
    color: #23406C;
    font-weight: 600;
    font-size: 1.04rem;
    flex: 1 1 270px;
}
.cookie-banner-btn-group {
    display: flex;
    flex-direction: row;
    gap: 13px;
    align-items: center;
}
.cookie-banner-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #23406C;
    color: #FFD600;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 26px;
    cursor: pointer;
    border: none;
    margin-left: 4px;
    transition: background 0.16s, color 0.18s, box-shadow 0.16s;
    box-shadow: 0 2px 7px #23406C22;
    outline: none;
}
.cookie-banner-btn:focus, .cookie-banner-btn:hover {
    background: #FF007A;
    color: #fff;
}
.cookie-banner-btn.settings {
    background: #23E5E5;
    color: #23406C;
}
.cookie-banner-btn.settings:hover {
    background: #FFD600;
    color: #23406C;
}
.cookie-banner-btn.reject {
    background: #fff;
    color: #23406C;
    border: 2px solid #23406C;
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 12px 10vw 12px 5vw;
        font-size: .97rem;
    }
    .cookie-banner-btn-group {
        flex-wrap: wrap;
        gap: 9px;
    }
}

/* =========== COOKIE MODAL ========== */
.cookie-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(35,64,108,0.74);
    z-index: 15100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.24s;
}
.cookie-modal {
    background: #fff;
    border-radius: 19px;
    box-shadow: 0 7px 41px #23406C44, 0 1px 0 #FFD60022;
    padding: 34px 28px 26px 32px;
    max-width: 430px;
    min-width: 224px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.33s;
    position: relative;
    display: flex;
}
.cookie-modal-title {
    font-size: 1.28rem;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 900;
    color: #23406C;
}
.cookie-modal-categories {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    margin-top: 12px;
}
.cookie-modal-category {
   display: flex;
   align-items: center;
   gap: 12px;
   font-size: 1.08rem;
}
.cookie-modal-category input[type=checkbox] {
   width: 24px;
   height: 24px;
   accent-color: #7FB282;
   border-radius: 4px;
}
.cookie-modal-category label {
   font-weight: 700;
   color: #FF007A;
   font-size: 1.08rem;
   font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}
.cookie-modal-close {
    position: absolute;
    top: 13px; right: 16px;
    background: none;
    color: #FF007A;
    font-size: 2.3rem;
    border: none;
    cursor: pointer;
    transition: color 0.16s;
    z-index: 15400;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
    color: #FFD600;
}

@media (max-width: 480px) {
    .cookie-modal {
        padding: 20px 10px 18px 13px;
        max-width: 97vw;
    }
}

/* =============================== */
/* MISCELLANEOUS/ACCESSIBILITY     */
/* =============================== */
::-webkit-input-placeholder { color: #a2a8bb; }
::-moz-placeholder { color: #a2a8bb; }
:-ms-input-placeholder { color: #a2a8bb; }
::placeholder { color: #a2a8bb; }
a:focus, button:focus, input:focus { outline: 2px solid #23E5E5; outline-offset: 2px; }
[tabindex="0"]:focus {
  box-shadow: 0 0 0 3px #FFD60066;
}

/* =============================== */
/* VIBRANT DYNAMIC MICRO EFFECTS   */
/* =============================== */
.card, .feature-item, .service-card, .service-item, .faq-item, .testimonial-card {
  transition: box-shadow 0.19s, transform 0.13s;
}
.card:hover, .feature-item:hover, .service-card:hover, .service-item:hover, .faq-item:hover, .testimonial-card:hover {
  box-shadow: 0 6px 28px 0 #FF007A24, 0 6px 28px 0 #23E5E511;
  transform: translateY(-3px) scale(1.025);
  z-index: 1;
}

.cta-primary, .cta-secondary, .cookie-banner-btn, .newsletter-signup button {
  box-shadow: 0 2px 12px 0 #ff007a17;
  transition: box-shadow 0.16s, background 0.14s, color 0.14s;
}

.btn-spin {
  display: inline-block;
  transition: transform 0.21s;
}
.btn-spin:hover {
  transform: rotate(-4deg) scale(1.11);
}

/* =============================== */
/* RESPONSIVE FIXES                */
/* =============================== */
@media (max-width: 600px) {
    .container { padding-left: 6vw; padding-right: 6vw; }
    .card, .service-card, .service-item, .feature-item { padding: 17px 8vw 17px 7vw; }
    .pricing-table th, .pricing-table td { padding-left: 8px; padding-right: 8px; }
    .cta-banner { border-radius: 9px; }
    .hero { border-radius: 0 0 19px 19px; padding: 31px 0; }
    .team, .brand-story { padding: 25px 5vw; }
}

@media (max-width: 400px) {
  .card, .feature-item, .service-card, .service-item, .faq-item, .testimonial-card, .map { padding: 12px 6px 11px 6px !important; font-size: 0.97rem;}
}

/* Hide visually-only (for JS interactions) */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: 0;
}
