/* --- CSS RESET & NORMALIZATION --- */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #FCF8F3;
  color: #22405B;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: #225177; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #EBD678; text-decoration: underline; outline: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; border-radius: 12px; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: transparent;
}
main { min-height: 60vh; }

/* --- BRAND COLORS, FONTS --- */
:root {
  --primary: #225177;
  --secondary: #EBD678;
  --accent: #FFFFFF;
  --bg-light: #FCF8F3;
  --shadow-soft: 0 2px 12px rgba(120,90,0,0.10), 0 7px 24px rgba(34,81,119, 0.03);
  --shadow-strong: 0px 6px 24px rgba(34,81,119, 0.10);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 7px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-md);
  position: relative;
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus {
  box-shadow: var(--shadow-strong);
  transform: translateY(-6px) scale(1.025);
}

.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: 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  font-size: 1rem;
  color: #22405B;
  border-left: 6px solid var(--secondary);
  transition: box-shadow 0.2s, border-left 0.2s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-strong);
  border-left: 8px solid var(--primary);
}
.testimonial-card span {
  color: #725c12;
  font-weight: 600;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HEADER & NAV --- */
header {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 3px 16px rgba(34,81,119,0.03);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  color: var(--secondary);
  font-weight: 500;
  font-size: 16px;
  border-radius: var(--radius-sm);
  padding: 5px 9px;
  transition: background 0.14s, color 0.14s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  text-decoration: none;
}
.cta-btn {
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  box-shadow: 0 3px 16px rgba(235,214,120,0.06);
  letter-spacing: 0.01em;
  outline: none;
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.15s;
  cursor: pointer;
  margin-left: 24px;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #ffd42d;
  color: var(--primary);
  box-shadow: 0 7px 24px rgba(235,214,120,0.13);
}
header img {
  max-height: 44px;
  width: auto;
  border-radius: var(--radius-md);
}
.mobile-menu-toggle {
  display: none;
  background: #fff7e4;
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 2rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  cursor: pointer;
  border: none;
  transition: background 0.14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,81,119,0.96);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 16px;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.36s cubic-bezier(.6,.13,.3,1), opacity 0.22s;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  margin-left: 32px;
  margin-bottom: 12px;
  background: transparent;
  color: var(--secondary);
  font-size: 2.2rem;
  border: none;
  outline: none;
  align-self: flex-start;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 21px;
  padding: 12px 0;
  letter-spacing: 0.01em;
  font-family: var(--font-display);
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: var(--secondary);
  color: var(--primary);
  text-decoration: none;
}

/* --- HERO --- */
.hero {
  background: linear-gradient(95deg, #EBD678 0%, #fffbe8 100%);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  padding-top: 44px;
  padding-bottom: 34px;
  margin-bottom: 36px;
  box-shadow: 0 3px 14px rgba(217,192,96,0.06);
}
.hero h1, .hero h1 {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 18px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.hero .subheadline {
  font-size: 1.20rem;
  font-family: var(--font-body);
  color: #725c12;
  margin-bottom: 34px;
}

/* --- FEATURES --- */
.features {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  margin-bottom: 48px;
}
.features .content-wrapper > h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 22px;
  color: var(--primary);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.feature-grid li {
  background: #fffbea;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(235,214,120,0.11);
  flex: 1 1 250px;
  padding: 28px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  min-width: 250px;
  max-width: 390px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.feature-grid li:hover {
  box-shadow: 0 8px 36px rgba(34,81,119,0.18);
  transform: translateY(-8px) scale(1.03);
}
.feature-grid img {
  width: 48px; height: 48px; margin-bottom: 4px;
}
.feature-grid h3 {
  font-family: var(--font-display);
  font-size: 1.14rem;
  color: var(--primary);
  margin-bottom: 2px;
}
.feature-grid p {
  font-size: 1rem;
  color: #565050;
}

/* --- SERVICES LIST --- */
.services {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  margin-bottom: 48px;
}
.services h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 14px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 16px;
}
.service-list li {
  background: #fffbee;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 20px 20px 17px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.14s, background 0.14s;
}
.service-list li:hover {
  box-shadow: 0 7px 24px rgba(34,81,119,0.09);
  background: #fef7d2;
}
.service-list h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--primary);
  margin-bottom: 3px;
  font-weight: 700;
}
.service-list h3 span {
  font-size: 0.99rem;
  color: #876D0C;
  font-weight: 700;
  margin-left: 7px;
}
.service-list p {
  font-size: 0.99rem;
  color: #555342;
}

/* --- PROCESS STEPS (OL) --- */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}
.process-steps li {
  background: #fffbea;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 9px rgba(235,214,120,0.07);
  flex: 1 1 240px;
  padding: 20px 18px 15px 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
  min-width: 180px;
  max-width: 330px;
  position: relative;
  transition: box-shadow 0.16s, transform 0.16s;
}
.process-steps li:hover {
  box-shadow: 0 8px 32px rgba(225,195,105,0.13);
  transform: translateY(-4px) scale(1.02);
}
.process-steps img {
  width: 40px; height: 40px; margin-bottom: 4px;
}
.process-steps strong {
  font-family: var(--font-display);
  color: var(--primary);
  margin-bottom: 2px;
  font-weight: 700;
}
.process-steps p {
  color: #726934;
  font-size: 0.98rem;
}

/* --- TIP LIST --- */
.tip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 32px;
}
.tip-list li {
  background: #fffdec;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(235,214,120,0.10);
  flex: 1 1 230px;
  min-width: 190px;
  max-width: 340px;
  padding: 19px 16px 15px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  transition: box-shadow 0.18s, background 0.16s;
}
.tip-list li:hover {
  box-shadow: 0 7px 28px rgba(34,81,119,0.09);
  background: #fdf4ba;
}

/* --- ABOUT & TEXT SECTION --- */
.about, .footer {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  margin-bottom: 44px;
}
.about h2, .footer h1, .footer h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 800;
}
.text-section {
  padding: 10px 0px;
}
.text-section h3 {
  font-size: 1.13rem;
  font-family: var(--font-display);
  color: var(--primary);
  margin-top: 18px;
  margin-bottom: 5px;
}
.text-section ul {
  list-style-type: disc;
  margin-left: 26px;
  margin-bottom: 16px;
}
.text-section ul li {
  margin-bottom: 5px;
  font-size: 1rem;
}
.text-section p {
  margin-bottom: 10px;
  color: #47462f;
  font-size: 0.98rem;
}

/* --- CTA SECTION --- */
.cta {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 3px 14px rgba(34,81,119,0.10);
}
.cta .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  min-height: 156px;
  text-align: center;
}
.cta h2 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--secondary);
  margin-bottom: 4px;
}
.cta-text {
  color: #fffddd;
  font-size: 1.09rem;
  margin-bottom: 6px;
}
.cta .cta-btn {
  margin-left: 0;
  margin-top: 8px;
}

/* --- FOOTER --- */
footer {
  background: #225177;
  color: #fff;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  padding-top: 20px;
}
footer .container {
  gap: 18px;
}
.footer-nav {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 6px;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: var(--secondary);
  font-family: var(--font-display);
  font-size: 15px;
  margin-bottom: 2px;
  border-radius: var(--radius-sm);
  padding: 2px 7px;
  transition: background 0.14s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  text-decoration: none;
}
.footer-contact {
  color: #fbf0bc;
  font-size: 0.97rem;
  margin-bottom: 7px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.footer-contact a {
  color: #fffddd;
  text-decoration: underline;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 5px;
  align-items: center;
}
.footer-social img {
  width: 33px; height: 33px;
  background: var(--secondary);
  padding: 4px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 7px rgba(235,214,120,0.14);
  transition: background 0.16s, box-shadow 0.18s;
}
.footer-social img:hover {
  background: #ffd42d;
  box-shadow: 0 4px 13px rgba(235,214,120,0.18);
}
.footer-copy {
  color: #d7c26e;
  font-size: 0.92rem;
  margin: 12px 0 5px 0;
  text-align: center;
}

/* --- FORMS (if present in the future) --- */
input[type='text'],
input[type='email'],
textarea {
  width: 100%;
  padding: 12px 9px;
  border-radius: var(--radius-md);
  border: 1px solid #e0d29f;
  background: #fff;
  margin-bottom: 17px;
  box-shadow: 0 2px 10px rgba(220,200,90,0.05);
  font-size: 1rem;
  transition: border 0.2s;
}
input[type='text']:focus,
input[type='email']:focus,
textarea:focus {
  border: 1.5px solid var(--secondary);
}
button[type='submit'] {
  background: var(--secondary);
  color: var(--primary);
  border-radius: var(--radius-md);
  padding: 10px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
button[type='submit']:hover, button[type='submit']:focus {
  background: #ffd42d;
  color: var(--primary);
}

/* --- TYPOGRAPHY HIERARCHY --- */
h1 {
  font-family: var(--font-display);
  font-size: 2.7rem;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 21px;
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 12px;
  letter-spacing: -0.01em;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--primary);
  margin-bottom: 7px;
  margin-top: 10px;
  font-weight: 600;
}
h4 {
  font-size: 1.04rem;
  font-weight: 600;
  margin-bottom: 5px;
}
p, li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #444;
}

/* --- COOKIES CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  z-index: 3000;
  background: #fffbee;
  color: #22405B;
  box-shadow: 0 -5px 24px rgba(235,214,120,0.11);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 22px 18px 22px 18px;
  gap: 28px;
  font-size: 1rem;
  transition: transform 0.23s, box-shadow 0.14s;
  animation: slideInUp 0.85s cubic-bezier(.61,-0.12,.3,1.09) 0s 1;
}
.cookie-banner.hide {
  display: none;
}
.cookie-banner p { margin-right: 10px; }
.cookie-banner .cookie-btn {
  background: var(--secondary);
  color: var(--primary);
  border-radius: var(--radius-md);
  border: none;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 22px;
  margin-right: 7px;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(235,214,120,0.10);
  transition: background 0.13s, color 0.13s;
}
.cookie-banner .cookie-btn.accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .cookie-btn.reject {
  background: #ffe9c9;
  color: #b97c00;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: var(--primary);
  border: 1.7px solid var(--secondary);
}
.cookie-banner .cookie-btn:hover {
  background: #ffd42d;
  color: #225177;
}

@keyframes slideInUp {
  0% { transform: translateY(80px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,81,119,0.16);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.27s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 3px 24px rgba(34,81,119,0.13);
  padding: 28px 34px 22px 34px;
  min-width: 312px;
  max-width: 90vw;
  z-index: 3600;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: slideInModal 0.6s cubic-bezier(.68,-0.12,.32,1.24) 0s 1;
}
@keyframes slideInModal {
  0% { transform: scale(0.7) translateY(70px); opacity: 0.24; }
  90% { transform: scale(1.04) translateY(-8px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-family: var(--font-display);
  font-size: 1.33rem;
  color: var(--primary);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category label {
  font-weight: 600;
  color: var(--primary);
}
.cookie-modal .cookie-toggle {
  appearance: none;
  -webkit-appearance: none;
  width: 42px;
  height: 24px;
  background: #eee;
  border-radius: 13px;
  display: inline-block;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-modal .cookie-toggle:checked {
  background: var(--secondary);
}
.cookie-modal .cookie-toggle:before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 7px rgba(34,81,119,0.10);
  position: absolute;
  left: 3px;
  top: 3px;
  transition: left 0.16s, background 0.12s;
}
.cookie-modal .cookie-toggle:checked:before {
  left: 21px;
  background: var(--primary);
}
.cookie-modal .cookie-desc {
  color: #6b6700;
  font-size: 0.97rem;
  margin-left: 10px;
}
.cookie-modal .btn-group {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  padding: 10px 21px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: var(--radius-md);
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.13s;
}
.cookie-modal .cookie-btn.secondary {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--secondary);
}
.cookie-modal .cookie-btn:hover {
  background: #ffd42d;
  color: var(--primary);
}

/* --- RESPONSIVENESS --- */
@media (max-width: 990px) {
  .main-nav { gap: 18px; }
  .cta-btn { padding: 10px 19px; font-size: 17px; }
  .footer-nav { gap: 8px; flex-direction: column; }
  .feature-grid, .tip-list, .process-steps {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 6px;
  }
  header .container {
    flex-direction: row;
    gap: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
  .main-nav {
    display: none !important;
  }
  .cta-btn {
    margin-left: 0;
    margin-top: 0;
    padding: 10px 12px;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .feature-grid, .process-steps, .tip-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 17px;
  }
  .section {
    margin-bottom: 32px;
    padding: 22px 5px;
  }
  .hero {
    padding-top: 25px;
    padding-bottom: 20px;
    margin-bottom: 24px;
  }
  .about, .services, .footer {
    margin-bottom: 25px;
    padding: 18px 4px;
  }
  .cta .content-wrapper {
    min-height: 102px;
    padding: 10px 3px 8px 3px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }
  .footer-social {
    margin-bottom: 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .testimonial-card {
    padding: 12px;
    font-size: 0.97rem;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
    padding: 17px 8px;
    font-size: 0.99rem;
  }
  .cookie-modal {
    padding: 17px 7vw 14px 7vw;
    min-width: 0;
  }
}
@media (max-width: 460px) {
  .footer-copy { font-size: 0.87rem; }
  .footer-contact { font-size: 0.86rem; flex-direction: column; gap: 3px; }
  .cookie-modal { padding-left: 2vw; padding-right: 2vw; }
}

/* --- MICRO-ANIMATIONS & INTERACTIONS --- */
.cta-btn, .feature-grid li, .service-list li, .card {
  transition: box-shadow 0.19s, transform 0.17s, background 0.16s;
}
.cta-btn:active {
  transform: scale(0.96);
}
.feature-grid li:active, .service-list li:active, .card:active {
  transform: scale(0.985);
  box-shadow: 0 2px 18px rgba(225,195,105,0.07);
}

/* --- UTILITIES --- */
.bold { font-weight: 700; }
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }
.bg-primary { background: var(--primary) !important; }
.bg-secondary { background: var(--secondary) !important; }
.bg-accent { background: var(--accent) !important; }
.rounded-md { border-radius: var(--radius-md) !important; }
.rounded-lg { border-radius: var(--radius-lg) !important; }
.shadow-soft { box-shadow: var(--shadow-soft) !important; }

/* ---- END OF STYLE.CSS ---- */
