/* -----------------------------------------------
   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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  background: #E9EEF3;
  color: #1B3556;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
:focus-visible {
  outline: 2px solid #417433;
  outline-offset: 2px;
}

/* -----------------------------------------------
   BRAND FONTS & COLORS
----------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

:root {
  --color-primary: #1B3556;
  --color-secondary: #E9EEF3;
  --color-accent: #579D4C;
  --color-accent-dark: #417433;
  --color-light: #FFFFFF;
  --color-dark: #1B3556;
  --color-grey: #A2B1C6;
  --color-shadow: rgba(30,42,78,0.10);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* -----------------------------------------------
   CONTAINER & LAYOUT
----------------------------------------------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 230px;
}

/* -----------------------------------------------
   HEADERS & NAVIGATION
----------------------------------------------- */
header {
  background: var(--color-light);
  box-shadow: 0 2px 16px var(--color-shadow);
  padding: 0;
  position: relative;
  z-index: 11;
}
header .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  margin-right: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.main-nav a {
  color: var(--color-primary);
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--color-accent);
  color: var(--color-light);
}
.cta-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--color-accent);
  color: var(--color-light);
  padding: 12px 28px;
  border-radius: 28px;
  box-shadow: 0 4px 18px var(--color-shadow);
  letter-spacing: 0.02em;
  transition: background 0.18s, transform 0.12s, box-shadow 0.18s;
  border: none;
  cursor: pointer;
  outline: none;
  margin-left: 12px;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-accent-dark);
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 7px 26px var(--color-shadow);
}
/* Hamburger menu */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  color: var(--color-light);
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 21;
  margin-left: 18px;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-accent-dark);
}

/* -----------------------------------------------
   MOBILE NAVIGATION
----------------------------------------------- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-secondary);
  z-index: 9999;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-shadow: 0 2px 24px var(--color-shadow);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.8, 0.2, 0.23, 0.95);
  padding: 30px 24px 0 24px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  color: var(--color-accent);
  background: transparent;
  border: none;
  font-size: 2.2rem;
  align-self: flex-end;
  margin-bottom: 10px;
  padding: 0 8px;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  padding: 12px 0;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-light);
}

/* Show hamburger and mobile nav on small screens */
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 94vw;
    padding: 0 10px;
  }
  .cta-btn {
    padding: 12px 18px;
    font-size: 1rem;
  }
}

/* -----------------------------------------------
   HERO & ARTISTIC SPLASH
----------------------------------------------- */
.hero {
  background: var(--color-primary);
  color: var(--color-light);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 60px 0 56px 0;
}
.hero:after {
  content: '';
  position: absolute;
  right: -70px; top: 30px;
  width: 180px; height: 180px;
  background: var(--color-accent);
  opacity: 0.19;
  border-radius: 60% 41%/45% 65%;
  z-index: 2;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 3;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  color: white;
}
.hero p {
  font-size: 1.13rem;
  margin-bottom: 36px;
  font-weight: 500;
  color: white;
}
.hero .cta-btn {
  margin-top: 0;
  background: var(--color-accent);
  color: var(--color-light);
}

@media (min-width: 601px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.2rem;
  }
}
@media (min-width: 900px) {
  .hero h1 {
    font-size: 3rem;
  }
  .hero {
    padding: 80px 0 70px 0;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 38px 0 36px 0;
    min-height: 230px;
  }
  .hero h1 {
    font-size: 1.3rem;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 24px;
  }
}

/* -----------------------------------------------
   TYPOGRAPHY
----------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 890;
  margin-bottom: 10px;
  line-height: 1.2;
}
h1 {
  font-size: 2.2rem;
}
h2 {
  font-size: 1.7rem;
}
h3 {
  font-size: 1.22rem;
}
@media (min-width: 600px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.38rem; }
}
p, li {
  color: var(--color-dark);
  line-height: 1.6;
  font-size: 1rem;
}
strong, b {
  font-weight: 700;
  color: var(--color-accent-dark);
}

.section ul, .section ol {
  margin-left: 20px;
  padding-left: 10px;
  margin-bottom: 10px;
}
.section ul li, .section ol li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}
.section ul li:before {
  content: '⭑';
  color: var(--color-accent);
  font-size: 1.06rem;
  position: absolute;
  left: 0;
  top: 2px;
  font-family: inherit;
}

/* Artistic font for big claims */
.hero h1, .cta-banner h2, .section h1, .section h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
}

/* -----------------------------------------------
   FEATURES BLOCKS
----------------------------------------------- */
.features .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px 36px;
  justify-content: space-between;
}
.features .feature-item {
  background: var(--color-light);
  border-radius: 20px;
  box-shadow: 0 2px 18px var(--color-shadow);
  width: 100%;
  max-width: 326px;
  padding: 30px 22px 24px 22px;
  transition: box-shadow 0.15s, transform 0.13s;
  border-left: 6px solid var(--color-accent);
  position: relative;
  min-height: 250px;
}
.features .feature-item img {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 2px 7px rgba(64,140,61,0.13));
  margin-bottom: 8px;
}
.features .feature-item:hover {
  box-shadow: 0 6px 26px var(--color-shadow);
  transform: translateY(-3px) scale(1.025);
}
.features .feature-item h3 {
  font-size: 1.10rem;
  color: var(--color-accent-dark);
}
.features .feature-item p {
  font-size: 1rem;
  margin-top: 4px;
}

/* ------------------------------------------------
   SERVICE-CARDS in services.html
------------------------------------------------- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 20px;
  justify-content: space-between;
  margin-bottom: 34px;
}
.service-card {
  background: var(--color-light);
  border-radius: 18px;
  box-shadow: 0 2px 14px var(--color-shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 20px 20px 20px;
  min-width: 225px;
  max-width: 310px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, transform 0.14s;
  border-bottom: 4px solid var(--color-accent-dark);
  position: relative;
}
.service-card img {
  width: 42px;
  height: 42px;
}
.service-card h3 {
  color: var(--color-primary);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.service-card p {
  color: var(--color-dark);
  font-size: 0.97rem;
  margin-bottom: 10px;
}
.service-card .service-price {
  background: var(--color-accent);
  color: var(--color-light);
  font-size: 0.97rem;
  border-radius: 14px;
  padding: 7px 15px;
  font-weight: 700;
  align-self: flex-end;
  margin-top: auto;
  transition: background 0.15s;
}
.service-card:hover, .service-card:focus {
  box-shadow: 0 7px 24px var(--color-shadow);
  transform: translateY(-3px) scale(1.027);
}

.quick-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 10px;
}

@media (max-width: 1000px) {
  .features .content-wrapper, .service-list {
    flex-direction: column;
    align-items: stretch;
  }
  .features .feature-item, .service-card {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .features .feature-item,
  .service-card {
    min-width: 0;
    padding: 22px 12px 16px 12px;
  }
  .service-card .service-price {
    font-size: 0.94rem;
    padding: 6px 12px;
  }
  .quick-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* ------------------------------------------------
   TESTIMONIALS & QUOTE CARDS
------------------------------------------------- */
.testimonials .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.testimonial-card {
  min-width: 230px;
  max-width: 350px;
  background: var(--color-light);
  color: var(--color-dark);
  border-radius: 18px;
  box-shadow: 0 2px 13px var(--color-shadow);
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  border-left: 6px solid var(--color-accent);
  transition: box-shadow 0.15s, transform 0.10s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 19px var(--color-shadow);
  transform: translateY(-1.5px) scale(1.022);
}
.testimonial-card p {
  color: var(--color-dark);
  font-style: italic;
  font-weight: 500;
}
.testimonial-card span {
  display: block;
  font-size: 0.99rem;
  color: var(--color-accent-dark);
  margin-top: 8px;
  font-weight: 800;
}
@media (max-width: 900px) {
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 12px;
  }
}

/* ------------------------------------------------
   CTA BANNER
------------------------------------------------- */
.cta-banner {
  background: var(--color-accent);
  color: var(--color-light);
  border-radius: 24px;
  margin-bottom: 42px;
  margin-top: 32px;
  box-shadow: 0 3px 18px var(--color-shadow);
  overflow: hidden;
}
.cta-banner h2, .cta-banner p {
  color: var(--color-light);
}
.cta-banner .cta-btn {
  background: var(--color-light);
  color: var(--color-accent-dark);
  font-weight: 900;
  margin-top: 10px;
  transition: background 0.15s, color 0.14s, box-shadow 0.14s, transform 0.13s;
}
.cta-banner .cta-btn:hover, .cta-banner .cta-btn:focus {
  background: var(--color-primary);
  color: var(--color-light);
  transform: scale(1.04);
  box-shadow: 0 7px 18px var(--color-shadow);
}

@media (max-width: 650px) {
  .cta-banner {
    border-radius: 13px;
    margin-bottom: 30px;
    margin-top: 20px;
    padding: 15px;
  }
}

/* ------------------------------------------------
   FOOTER
------------------------------------------------- */
footer {
  background: var(--color-primary);
  color: var(--color-light);
  padding: 32px 0 14px 0;
  margin-top: 32px;
  font-size: 1rem;
  box-shadow: 0 -2px 14px var(--color-shadow);
}
footer .container {
  display: flex;
  flex-direction: row;
  gap: 38px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-menu a {
  color: var(--color-secondary);
  margin-bottom: 8px;
  font-size: 1rem;
  transition: color 0.13s;
}
.footer-menu a:hover {
  color: var(--color-accent);
}
.footer-contact {
  font-size: 1.03rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-right: 30px;
}
.footer-contact img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 4px;
  margin-bottom: 2px;
}
.footer-cta {
  align-self: flex-end;
}
.footer-cta .cta-btn {
  background: var(--color-accent);
  color: var(--color-light);
  border-radius: 18px;
  margin: 0;
  font-size: 1rem;
  padding: 12px 22px;
}
.footer-cta .cta-btn:hover {
  background: var(--color-light);
  color: var(--color-accent-dark);
}
@media (max-width: 850px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
  }
  .footer-cta {
    align-self: flex-start;
  }
}

/* -----------------------------------------------
   SECTIONS: ABOUT, WORKFLOW, BLOG, CONTACT, ETC
----------------------------------------------- */
.about-section, .values-section, .privacy-section, .gdpr-section, .terms-section, .cookie-section, .newsletter-section, .confirmation-section {
  background: var(--color-light);
  border-radius: 20px;
  box-shadow: 0 2px 14px var(--color-shadow);
  margin-bottom: 60px;
  padding: 40px 28px 34px 28px;
  position: relative;
}
@media (max-width: 500px) {
  .about-section, .values-section, .privacy-section, .gdpr-section, .terms-section, .cookie-section, .newsletter-section, .confirmation-section {
    border-radius: 10px;
    padding: 24px 9px 22px 9px;
  }
}

.values-section ul, .service-features ul, .newsletter-section ul {
  margin-top: 10px;
  margin-left: 10px;
  list-style: none;
}
.values-section ul li, .service-features ul li, .newsletter-section ul li {
  font-size: 1rem;
  margin-bottom: 7px;
  padding-left: 28px;
  position: relative;
}
.values-section ul li:before, .service-features ul li:before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 1.15rem;
  font-weight: 900;
}
.newsletter-section ul li:before {
  content: '✱';
  position: absolute;
  left: 0;
  color: var(--color-accent-dark);
}

.service-features ul li img {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 6px;
}

.workflow-intro, .workflow-faq, .workflow-steps {
  margin-bottom: 50px;
}
.workflow-steps ol {
  margin-left: 22px;
}
.workflow-steps ol li {
  margin-bottom: 18px;
  padding-left: 15px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}
.workflow-steps ol li img {
  width: 32px;
  height: 32px;
  margin-right: 6px;
}

.faq-item {
  background: var(--color-secondary);
  border-left: 4px solid var(--color-accent);
  border-radius: 13px;
  margin-bottom: 20px;
  padding: 17px 18px;
  box-shadow: 0 1px 8px var(--color-shadow);
  transition: box-shadow 0.11s;
}
.faq-item h3 {
  color: var(--color-accent-dark);
  font-size: 1.07rem;
  margin-bottom: 5px;
}
.faq-item:hover {
  box-shadow: 0 4px 12px var(--color-shadow);
}

.articles-list .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;
}
.blog-card {
  background: var(--color-light);
  border-radius: 18px;
  box-shadow: 0 2px 11px var(--color-shadow);
  min-width: 230px;
  max-width: 330px;
  padding: 27px 19px 19px 19px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.14s, transform 0.13s;
  border-bottom: 4px solid var(--color-accent);
}
.blog-card:hover {
  box-shadow: 0 7px 19px var(--color-shadow);
  transform: translateY(-2px) scale(1.024);
}
.blog-card a {
  color: var(--color-accent-dark);
  font-weight: 700;
  transition: color 0.14s;
}
.blog-card a:hover {
  color: var(--color-primary);
}
@media (max-width: 900px) {
  .articles-list .content-wrapper {
    flex-direction: column;
    gap: 10px;
  }
  .blog-card {
    max-width: 100%;
    padding: 18px 10px 13px 10px;
  }
}

/* Newsletter form */
.newsletter-signup {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 10px;
}
.newsletter-signup input[type="email"] {
  border: 1px solid var(--color-grey);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  transition: border 0.15s;
  min-width: 160px;
  background: #F6FAFD;
}
.newsletter-signup input[type="email"]:focus {
  border: 1.5px solid var(--color-accent-dark);
}
.newsletter-signup button[type="submit"] {
  background: var(--color-primary);
  color: var(--color-light);
  border: none;
  padding: 12px 20px;
  font-family: var(--font-display);
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.16s, transform 0.11s;
}
.newsletter-signup button[type="submit"]:hover {
  background: var(--color-accent);
  transform: scale(1.03);
}

.newsletter-section ul {
  margin-top: 14px;
}

/* Map block in contact */
.map-block {
  background: var(--color-secondary);
  padding: 22px;
  border-radius: 13px;
  box-shadow: 0 1px 7px var(--color-shadow);
  margin-top: 30px;
  text-align: center;
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  margin: 16px 0;
  color: #384866;
  font-size: 1.03rem;
}
.map-placeholder img {
  width: 38px;
  height: 38px;
  margin-bottom: 3px;
}

/* Contact Details Block */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  margin-bottom: 28px;
}
.contact-info-block, .contact-form-block {
  background: var(--color-secondary);
  border-radius: 14px;
  padding: 22px 18px;
  flex: 1 1 260px;
  box-shadow: 0 1px 8px var(--color-shadow);
}
.contact-info-block ul {
  margin-top: 10px;
}
.contact-info-block ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--color-primary);
  font-size: 1rem;
}
.contact-info-block ul img {
  width: 18px;
  height: 18px;
}
.contact-form-block h2 {
  color: var(--color-accent-dark);
  font-size: 1.09rem;
}
@media (max-width: 800px) {
  .contact-details {
    flex-direction: column;
    gap: 13px;
  }
}

/* Confirmation Page */
.confirmation-message {
  color: var(--color-accent);
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-style: italic;
  margin-bottom: 14px;
}

/* -----------------------------------------------
   RESPONSIVENESS & FLEXBOX STACKING
----------------------------------------------- */
@media (max-width: 768px) {
  .content-wrapper {
    gap: 18px;
  }
  .features .content-wrapper,
  .service-list,
  .testimonials .content-wrapper,
  .articles-list .content-wrapper,
  .card-container,
  .content-grid,
  .contact-details {
    flex-direction: column;
    gap: 13px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}
@media (max-width:400px) {
  .hero, .footer {
    padding-left: 1px; padding-right: 1px;
  }
}

/* -----------------------------------------------
   INTERACTIONS & MICRO-ANIMATIONS
----------------------------------------------- */
.section, .about-section, .features, .service-card, .testimonial-card, .cta-banner, .blog-card, .faq-item, .privacy-section,
.gdpr-section, .terms-section, .contact-section, .confirmation-section, .newsletter-section, .cookie-section {
  transition: box-shadow 0.18s, transform 0.12s;
}
.section:hover, .about-section:hover, .features:hover, .service-card:hover, .testimonial-card:hover, .cta-banner:hover,
.blog-card:hover, .faq-item:hover, .privacy-section:hover, .gdpr-section:hover, .terms-section:hover,
.contact-section:hover, .confirmation-section:hover, .newsletter-section:hover, .cookie-section:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 7px 26px var(--color-shadow);
}

/* -----------------------------------------------
   COOKIE CONSENT BANNER & MODAL
----------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--color-primary);
  color: var(--color-light);
  box-shadow: 0 -2px 16px var(--color-shadow);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 38px 17px 28px;
  z-index: 20000;
  font-size: 1.05rem;
  min-height: 56px;
  animation: cookie-banner-in 0.45s ease-out;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 10px 8px 10px;
    font-size: 0.98rem;
    gap: 8px;
  }
}
@keyframes cookie-banner-in {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btns button {
  border: none;
  outline: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin: 0 2px;
  padding: 7px 20px;
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, box-shadow 0.12s;
}
.cookie-accept {
  background: var(--color-accent);
  color: var(--color-light);
}
.cookie-accept:hover {
  background: var(--color-accent-dark);
}
.cookie-reject {
  background: var(--color-secondary);
  color: var(--color-accent-dark);
}
.cookie-reject:hover {
  background: #dbe5df;
  color: var(--color-primary);
}
.cookie-settings {
  background: var(--color-grey);
  color: var(--color-dark);
}
.cookie-settings:hover {
  background: var(--color-accent);
  color: var(--color-light);
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 21000;
  background: rgba(21,36,54,0.25);
  display: none;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fade 0.3s;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes cookie-modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cookie-modal {
  background: var(--color-light);
  color: var(--color-primary);
  border-radius: 20px;
  box-shadow: 0 7px 36px rgba(30,42,78,0.20);
  padding: 39px 32px 24px 32px;
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  animation: cookie-modal-in 0.39s cubic-bezier(0.7,0.15,0.32,1.02);
}
@keyframes cookie-modal-in {
  from { transform: scale(0.82); opacity: 0.25; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.22rem;
  margin-bottom: 12px;
  color: var(--color-accent-dark);
}
.cookie-modal .modal-close {
  position: absolute;
  top: 13px;
  right: 15px;
  font-size: 1.6rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-grey);
  transition: color 0.12s;
}
.cookie-modal .modal-close:hover {
  color: var(--color-accent-dark);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color-secondary);
  border-radius: 10px;
  padding: 9px 14px;
}
.cookie-category input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--color-accent-dark);
}
.cookie-category .category-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent-dark);
}
.cookie-category .category-desc {
  font-size: 0.99rem;
  color: var(--color-dark);
}
.cookie-category.essential {
  filter: grayscale(0.5);
  opacity: 0.58;
  pointer-events: none;
}
.cookie-modal-actions {
  margin-top: 22px;
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 8px 22px;
  cursor: pointer;
}
.cookie-modal-accept {
  background: var(--color-accent);
  color: var(--color-light);
}
.cookie-modal-accept:hover { background: var(--color-accent-dark); }
.cookie-modal-reject {
  background: var(--color-secondary);
  color: var(--color-dark);
}
.cookie-modal-reject:hover { background: #dbe5df; color: var(--color-accent-dark); }

@media (max-width: 600px) {
  .cookie-modal {
    padding: 21px 10px 18px 10px;
    min-width: 0;
  }
  .cookie-modal .modal-close {
    top: 7px;
    right: 9px;
  }
}

/* ------------------------------------------------
   UTILITY: SPACING, FLEX LAYOUT
------------------------------------------------- */
.mb-20 { margin-bottom: 20px; }
.mt-20 { margin-top: 20px; }
.mb-32 { margin-bottom: 32px; }
.mt-32 { margin-top: 32px; }
.flex { display: flex; }
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* -----------------------------------------------
   ARTISTIC ACCENTS (optional overlays)
----------------------------------------------- */
.section-artistic-accent {
  position: absolute;
  top: -38px;
  right: 18px;
  width: 90px;
  height: 90px;
  background: var(--color-accent);
  border-radius: 38% 62% 54% 24%/77% 30% 70% 26%;
  opacity: 0.17;
  z-index: 1;
  pointer-events: none;
}

/* -----------------------------------------------
   PRINT STYLES
----------------------------------------------- */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body, .container, .section, .about-section, .values-section, .privacy-section, .gdpr-section, .terms-section, .cookie-section, .newsletter-section, .confirmation-section {
    background: #FFF !important;
    box-shadow: none !important;
    color: #000 !important;
  }
}
