/* --- 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F5F5F5;
  color: #24292f;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
*, *:before, *:after { box-sizing: inherit; }
a {
  color: #17415D;
  text-decoration: none;
}
a:hover {
  color: #E8A317;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* --- BRAND FONTS --- */
h1, h2, h3, h4, h5, .cta-primary, .cta-secondary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* --- CONTAINER & SECTIONS --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* --- SPACING CLASSES --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 18px -6px rgba(30,40,50,0.09);
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.card:hover {
  box-shadow: 0 10px 28px -8px rgba(23,65,93,0.18);
  z-index: 2;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 20px -5px rgba(23,65,93,0.10);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HEADER & MAIN NAV --- */
header {
  background: #fff;
  box-shadow: 0 0 12px 0 rgba(23,65,93,0.06);
  position: sticky;
  top: 0;
  z-index: 880;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding-left: 20px;
  padding-right: 20px;
}
header img {
  height: 48px;
  margin-right: 32px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: #17415D;
  position: relative;
  transition: color 0.18s;
  padding: 6px 10px;
  border-radius: 6px;
}
.main-nav a:hover, .main-nav a.active {
  color: #E8A317;
  background: rgba(232,163,23,0.12);
}
.cta-primary {
  background: #E8A317;
  color: #fff !important;
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  margin-left: 16px;
  box-shadow: 0 3px 12px -4px rgba(232,163,23,0.26);
  transition: background 0.22s, box-shadow 0.22s, color 0.12s;
  border: none;
  outline: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}
.cta-primary:hover, .cta-primary:focus {
  background: #17415D;
  color: #E8A317 !important;
  box-shadow: 0 10px 28px -8px rgba(23,65,93,0.16);
}
.cta-secondary {
  background: #17415D;
  color: #fff !important;
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  margin-top: 14px;
  box-shadow: 0 2px 6px -2px rgba(23,65,93,0.14);
  transition: background 0.2s, color 0.08s;
  display: inline-block;
  text-align: center;
  border: none;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #E8A317;
  color: #17415D !important;
}
/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(90deg, #E8A317 0%, #F5F5F5 100%);
  padding: 70px 0 50px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.hero h1 {
  font-size: 2.5rem;
  font-family: 'Montserrat', cursive, sans-serif;
  font-weight: 800;
  color: #17415D;
  line-height: 1.14;
  margin-bottom: 6px;
}
.hero p {
  font-size: 1.18rem;
  color: #333;
  max-width: 600px;
}

/* --- FEATURE GRID & ITEMS --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 36px;
}
.feature-grid > div {
  flex: 1 1 220px;
  min-width: 210px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 14px -5px rgba(23,65,93,0.06);
  padding: 24px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.18s, box-shadow 0.2s;
  border-left: 6px solid #E8A317;
}
.feature-grid > div:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 36px -6px rgba(232,163,23,0.16);
}
.feature-grid img {
  width: 36px;
  margin-bottom: 8px;
}
.feature-grid h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: #17415D;
  font-weight: 700;
}
.feature-grid p {
  font-size: 1rem;
  color: #3A3D44;
}

/* --- CONTENT WRAPPER / TEXT SECTIONS --- */
.content-wrapper {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  background: #fff;
  padding: 36px 26px;
  border-radius: 18px;
  box-shadow: 0 2px 12px -6px rgba(23,65,93,0.09);
  margin-bottom: 24px;
  word-break: break-word;
}
.text-section h2, .content-wrapper h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  color: #17415D;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.text-section p, .content-wrapper p {
  margin-bottom: 10px;
  color: #222;
  font-size: 1.08rem;
  line-height: 1.64;
}
.text-section ul,
.text-section ol {
  margin-left: 0;
  padding-left: 18px;
  margin-bottom: 10px;
  color: #15536c;
  font-size: 1.05rem;
}
.text-section li {
  margin-bottom:8px;
  position:relative;
  padding-left: 12px;
}
.text-section li:before {
  content: '•';
  color: #E8A317;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}
.text-section img {
  vertical-align: middle;
  margin-right: 5px;
}

/* --- TABLE --- */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 22px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 10px -4px rgba(23,65,93,0.10);
}
thead {
  background: #17415D;
  color: #fff;
}
thead th {
  font-size: 1.14rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 16px 8px;
}
tbody td {
  font-size: 1.07rem;
  padding: 13px 8px;
  color: #2e3740;
  border-top: 1px solid #e7ecef;
}
tbody tr:first-child td {
  border-top: none;
}

/* --- NOTICE BOX --- */
.notice {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #E8A317;
  color: #fff;
  border-radius: 9px;
  padding: 12px 22px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 3px 11px -5px rgba(232,163,23,0.16);
  margin-top: 16px;
}
.notice img {
  height: 22px;
}

/* --- FAQ ACCORDION --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 22px;
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px -5px rgba(23,65,93,0.10);
  padding: 18px 20px;
  position: relative;
  transition: box-shadow 0.18s;
  margin-bottom:10px;
}
.faq-item h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #E8A317;
  font-family: 'Montserrat', cursive, sans-serif;
  font-weight: 700;
  cursor: pointer;
}
.faq-item .faq-content {
  font-size: 1.055rem;
  color: #17415D;
}
.faq-item.active, .faq-item:focus-within {
  box-shadow: 0 9px 30px -6px rgba(232,163,23,0.12);
}

/* --- CTA SECTIONS --- */
.cta {
  background: #17415D;
  color: #fff;
  border-radius: 32px;
  padding: 48px 0;
  text-align: center;
  box-shadow: 0 12px 36px -12px rgba(23,65,93,0.09);
  margin: 50px 0 0 0;
}
.cta h2 {
  color: #fff;
  font-weight: 800;
  font-size: 2.1rem;
  margin-bottom: 14px;
  font-family: 'Montserrat', sans-serif;
}
.cta p {
  color: #ffecbe;
  max-width: 500px;
  margin: 0 auto 20px auto;
  font-size: 1.12rem;
}

/* --- TESTIMONIALS --- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  flex: 1 1 320px;
  min-width: 280px;
  background: #fff;
  border-left: 7px solid #E8A317;
  border-radius: 24px;
  box-shadow: 0 2px 20px -5px rgba(23,65,93,0.12);
  padding: 30px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  color: #23282B;
  margin-bottom: 0;
  position: relative;
  transition: box-shadow 0.17s;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #17415D;
  font-style: italic;
  margin-bottom: 5px;
}
.testimonial-card strong {
  color: #E8A317;
  font-weight: 800;
}
.testimonial-card > div:last-child img {
  height: 19px;
  margin-right: 2px;
}
.testimonial-card > div:last-child {
  display: flex;
  align-items: center;
}

/* --- FOOTER --- */
footer {
  background: #17415D;
  color: #fff;
  padding: 40px 0 30px 0;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -2px 14px -4px rgba(23,65,93,0.15);
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand img {
  height: 54px;
  filter: brightness(1.13) contrast(1.2);
}
.footer-info {
  font-size: 1rem;
  color: #ffecbe;
}
.footer-info a {
  color: #fff;
  text-decoration: underline dotted;
  font-weight: 400;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.86;
  font-size: 0.99rem;
  font-weight: 500;
  transition: color 0.14s, opacity 0.10s;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.footer-nav a:hover {
  color: #E8A317;
  opacity: 1;
}

/* --- FORMS --- */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 9px;
  padding: 10px 13px;
  border: 1px solid #d4dee7;
  background: #fff;
  margin-bottom: 18px;
  box-shadow: 0 1px 7px -4px rgba(23,65,93,0.08);
  outline: none;
  transition: border 0.15s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #E8A317;
  box-shadow: 0 2px 11px -5px #E8A31744;
}
label {
  display: block;
  font-weight: 600;
  color: #17415D;
  margin-bottom: 4px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
  }
  .testimonial-slider {
    gap: 16px;
  }
  footer .container {
    gap: 22px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  header .container {
    padding-left: 10px; padding-right: 10px;
    height: 62px;
  }
  .main-nav {
    display: none;
  }
  .card-container, .feature-grid, .content-grid, .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div {
    min-width: 0;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-card {
    min-width: 220px;
    padding: 20px 12px 16px 14px;
    border-radius: 16px;
  }
  .content-wrapper, .text-section {
    padding-left: 10px; padding-right: 10px;
  }
  .cta {
    padding-left: 10px; padding-right: 10px;
    border-radius: 16px;
  }
  .section {
    margin-bottom: 36px;
    padding: 28px 10px;
  }
  footer {
    border-radius: 18px 18px 0 0;
    padding: 32px 0 18px 0;
  }
  .footer-brand img {
    height: 40px;
  }
}
@media (max-width: 530px) {
  html {
    font-size: 14px;
  }
  .hero h1 {
    font-size: 1.55rem;
  }
  .cta, .section, .content-wrapper, .text-section {
    padding-left: 6px; padding-right: 6px;
  }
  .footer-info { font-size: 0.93rem;}
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E8A317;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 4px 15px -5px rgba(232,163,23,0.19);
  z-index: 990;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.16s, color 0.1s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #17415D;
  color: #E8A317;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(115deg, #E8A317 55%, #17415D 100%);
  z-index: 2320;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.68,-0.55,.27,1.55);
  box-shadow: 0 0 32px 10px rgba(0,0,0,0.13);
  overflow-y: auto;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 18px;
  background: #fff;
  color: #E8A317;
  width: 44px;
  height: 44px;
  font-size: 2.3rem;
  border-radius: 50%;
  box-shadow: 0 4px 11px -6px #E8A31755;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 3;
  transition: background 0.16s,color 0.11s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #17415D;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-top: 90px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 1.22rem;
  background: rgba(255,255,255,0.09);
  border-radius: 8px;
  padding: 12px 30px;
  width: 96%;
  text-align: left;
  transition: color 0.15s, background 0.14s, box-shadow 0.18s;
  margin-bottom:4px;
  box-shadow: 0 3px 8px -3px rgba(23,65,93,0.06);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E8A317;
  background: #fff6ed;
  box-shadow: 0 6px 25px -7px #E8A31722;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #17415D;
  color: #fff;
  z-index: 2800;
  box-shadow: 0 -2px 22px -7px #17415d55;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 26px;
  padding: 21px 28px 21px 28px;
  font-size: 1rem;
  animation: cookieAppear 0.73s cubic-bezier(.47,1.64,.41,.8);
}
@keyframes cookieAppear {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  margin: 0 0 4px 0;
  max-width: 420px;
  font-size: 1rem;
}
.cookie-banner button {
  margin-left: 7px;
}
.cookie-btn {
  background: #E8A317;
  color: #fff;
  border-radius: 24px;
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 24px;
  margin-right: 7px;
  border: none;
  transition: background 0.14s, color 0.08s, box-shadow 0.15s;
  box-shadow: 0 3px 10px -4px rgba(232,163,23,0.17);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff;
  color: #E8A317;
}
.cookie-btn.secondary {
  background: #F5F5F5;
  color: #17415D;
  border: 1px solid #E8A317;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #E8A317;
  color: #fff;
}
.cookie-settings-btn {
  background: #fff;
  color: #17415D;
  font-weight: 600;
  border: 1.5px solid #E8A317;
  border-radius: 24px;
  padding: 9px 22px;
  margin-left: 7px;
  transition: background 0.15s, color 0.11s;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #E8A317;
  color: #fff;
  border-color: #fff;
}
@media (max-width: 590px) {
  .cookie-banner {
    flex-direction: column;
    padding: 16px 12px;
    gap: 13px;
    font-size: 0.98rem;
  }
  .cookie-banner p {
    max-width: 90vw;
  }
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23,65,93,0.39);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalIn 0.34s cubic-bezier(.4,1.34,.49,.92);
}
@keyframes modalIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 8px 48px -12px #17415d77;
  max-width: 430px;
  width: 96vw;
  padding: 38px 30px 30px 30px;
  position: relative;
  animation: modalPop 0.43s cubic-bezier(.5,1.36,.36,.95);
}
@keyframes modalPop {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #17415D;
  font-family: 'Montserrat',cursive;
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.cookie-modal p {
  font-size: 1.06rem;
  margin-bottom: 10px;
}
.cookie-categories {
  margin: 16px 0 17px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f2f7fa;
  border-radius: 13px;
  padding: 11px 17px;
  font-size: 1.03rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #17415D;
  font-weight: 500;
}
.cookie-category input[type='checkbox'] {
  width: 32px;
  height: 20px;
  accent-color: #E8A317;
}
.cookie-category input[disabled] {
  accent-color: #ddd;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 36px;
  height:36px;
  background: #fff;
  border: none;
  border-radius: 50%;
  color: #17415D;
  font-size: 1.44rem;
  transition: background 0.11s, color 0.11s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #E8A317;
  color: #fff;
}
.cookie-modal .modal-actions {
  margin-top: 22px;
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
}
.cookie-modal .cookie-btn, .cookie-modal .cookie-btn.secondary {
  width: 100%;
  box-sizing: border-box;
}

/* --- TYPOGRAPHY HIERARCHY (ARTISTIC) --- */
h1 {
  font-size: 2.3rem;
  font-family: 'Montserrat',cursive,sans-serif;
  font-weight: 900;
  color: #17415D;
  text-shadow: 2px 2px 0 #E8A31722;
  margin-bottom: 10px;
}
h2 {
  font-size: 1.8rem;
  font-family: 'Montserrat',cursive,sans-serif;
  color: #E8A317;
  font-weight: 800;
  margin-bottom: 8px;
}
h3 {
  font-size: 1.19rem;
  font-family: 'Montserrat',cursive,sans-serif;
  color: #17415D;
  font-weight: 700;
}
p, li, td, th {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.04rem;
}
strong {
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 800;
  color: #E8A317;
}

/* --- ARTISTIC DECORATIVE ELEMENTS (CREATIVE) --- */
.card:before {
  content: '';
  display: block;
  position: absolute;
  top: -18px; left: -18px;
  width: 40px; height: 40px;
  background: #E8A31722;
  border-bottom-right-radius: 40px 40px;
  z-index: 0;
}
.card:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -16px; right: -16px;
  width: 32px; height: 32px;
  background: #17415D13;
  border-top-left-radius: 32px 32px;
  z-index: 0;
}
.card > * { 
  position: relative; z-index: 2; 
}
@media (max-width: 768px){
  .card:before, .card:after { display: none; }
}

/* --- SHADOWS & EFFECTS --- */
.card, .content-wrapper, .text-section, .testimonial-card, .feature-grid > div, .notice {
  box-shadow: 0 2px 16px -8px rgba(23,65,93,0.09);
}
.card:hover, .feature-grid > div:hover {
  box-shadow: 0 10px 26px -10px #E8A31722;
}

/* --- MICRO-INTERACTIONS (BUTTONS, CARDS) --- */
button, .cta-primary, .cta-secondary, .cookie-btn, .cookie-settings-btn {
  transition: background 0.15s, color 0.12s, box-shadow 0.19s, transform 0.16s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.015);
}

/* --- VISUAL HIERARCHY --- */
.section + .section {
  margin-top: 10px;
}

/* --- SPECIAL ELEMENTS --- */
.map-embed {
  background: linear-gradient(90deg, #E8A31722 0%, #F5F5F5 70%);
  border-radius: 12px;
  padding: 18px 13px;
  margin-top: 13px;
  font-style: italic;
  color: #17415D;
}

/* --- Z-INDEX LAYERING --- */
header { z-index: 880; }
.mobile-menu, .mobile-menu.open { z-index: 2320; }
.cookie-banner { z-index: 2800; }
.cookie-modal-overlay { z-index: 4000; }

/* --- END --- */
