/* ===================================================
   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 {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

body {
  font-family: 'Roboto', Georgia, serif;
  color: #2a2a2a;
  background: #FAFAF7;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #4F8C82;
  text-decoration: none;
  transition: color 0.20s;
}
a:hover, a:focus {
  color: #3A3A4F;
  text-decoration: underline;
}
ul { list-style: none; }
button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
  padding: 0;
}

/* ===================================================
   Brand & Typography
   =================================================== */

:root {
  --primary: #3A3A4F;
  --secondary: #4F8C82;
  --accent: #F1B24A;
  --muted-bg: #F7F5F0;
  --card-bg: #FEFEFC;
  --gray-50: #F4F2ED;
  --gray-300: #E0DED8;
  --gray-600: #767676;
  --white: #fff;
  --shadow-1: 0 2px 8px rgba(86, 74, 47, 0.07);
  --shadow-2: 0 6px 25px rgba(58,58,79,0.10);
  --radius: 12px;
  --headline: 'Montserrat', 'Georgia', Times, serif;
  --body: 'Roboto', Georgia, serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--headline);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 { font-size: 2.2rem; margin-bottom: 24px; }
h2 { font-size: 1.7rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; font-weight: 600; }
h4, h5, h6 { font-size: 1rem; }

p, li, label, input, textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: #39394f;
}

strong, b {
  font-weight: 600;
}

.text-section { margin-bottom: 32px; }

/* Typography spacing */
.section h2 {
  margin-top: 0;
  margin-bottom: 24px;
}
.section ul, .section ol { margin-bottom: 24px; }
.section p:not(:last-child) { margin-bottom: 14px; }

/* ===================================================
   Layout Containers and Spacing
   =================================================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: 32px 28px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(76, 60, 26, 0.13);
  transform: translateY(-4px);
}
.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;
  margin-bottom: 36px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(76, 74, 47, 0.07);
  margin-bottom: 24px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:last-child {
  margin-bottom: 0;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(58,58,79,0.12);
  transform: scale(1.02);
  background: #fffbe7;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 12px;
}

/* Universal List Style for Features */
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.features ul li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--gray-50);
  border-radius: 10px;
  padding: 18px 24px 18px 16px;
  min-width: 220px;
  font-size: 1rem;
  color: var(--primary);
  box-shadow: 0 1px 5px rgba(76,60,26,0.07);
  margin-bottom: 0;
  transition: background 0.16s;
}
.features ul li:hover {
  background: #F6EEE1;
}
.features ul li img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-right: 6px;
}

.services ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.services ul li {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: 24px 18px 18px 18px;
  margin-bottom: 0;
  transition: box-shadow 0.18s, transform 0.18s;
}
.services ul li:hover {
  box-shadow: 0 7px 20px rgba(58,58,79,0.13);
  transform: translateY(-2px);
}
.services ul li h3 {
  font-size: 1.15rem;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 10px;
}
.services ul li h3 span {
  color: var(--accent);
  font-size: 1rem;
  margin-left: 8px;
  font-weight: 500;
}

/* ===================================================
   HEADER & NAVIGATION
   =================================================== */
header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-300);
  box-shadow: 0 2px 10px rgba(58,58,79,0.04);
  position: sticky; 
  top: 0; 
  z-index: 200;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 22px;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  color: var(--primary);
  font-family: var(--headline);
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 2px;
  line-height: 1.15;
  opacity: 0.94;
  transition: color 0.17s, opacity 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
  opacity: 1;
  text-decoration: none;
}
.cta-btn {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  font-family: var(--headline);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 24px;
  padding: 12px 28px;
  margin-left: 16px;
  box-shadow: 0 2px 10px rgba(79,140,130,0.07);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.20s, box-shadow 0.20s, color 0.2s, transform 0.15s;
  border: 2px solid var(--secondary);
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--white);
  color: var(--secondary);
  border-color: var(--accent);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px rgba(79,140,130,0.13);
  text-decoration: none;
}

/* ---- Mobile Menu ---- */
.mobile-menu-toggle {
  display: none;
  background: var(--white);
  color: var(--primary);
  font-size: 2rem;
  padding: 6px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--gray-300);
  transition: background 0.18s, box-shadow 0.16s;
  z-index: 301;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--gray-50);
  box-shadow: 0 0 0 2px var(--accent);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 310px;
  background: var(--muted-bg);
  box-shadow: -4px 4px 32px rgba(58,58,79,0.18);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.7,0,0.3,1);
  z-index: 4000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 24px 16px 30px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary);
  align-self: flex-end;
  margin-bottom: 16px;
  cursor: pointer;
  border-radius: 8px;
  padding: 6px 10px;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--gray-50);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.mobile-nav a {
  color: var(--primary);
  font-family: var(--headline);
  font-size: 1.13rem;
  font-weight: 500;
  padding: 12px 0 12px 8px;
  border-radius: 8px;
  transition: background 0.15s, color 0.14s;
  margin: 0 0 3px 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  background: #EBF6F3;
}

/* Overlay for mobile menu */
body.menu-open {
  overflow: hidden;
}
.mobile-menu::before {
  content: '';
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: rgba(34,30,24,0.23);
  opacity: 1;
  pointer-events: none;
}

/* Hide main nav and cta on mobile: */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Hide mobile menu on desktop */
@media (min-width: 961px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Sticky header logo margin on mobile */
@media (max-width: 960px) {
  .logo img {
    height: 36px;
  }
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  background: linear-gradient(120deg, #f6f4ee 0%, #f6f9f8 100%);
  border-bottom: 1px solid #e7e1d2;
  padding-top: 42px;
  padding-bottom: 48px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 670px;
  padding: 0 12px;
}
.hero h1 {
  font-size: 2.1rem;
  margin-bottom: 18px;
  color: var(--primary);
}
.hero p {
  margin-bottom: 24px;
  font-size: 1.13rem;
  color: #44435c;
}
.hero .cta-btn {
  margin-top: 0;
}

/* ===================================================
   FOOTER
   =================================================== */
footer {
  background: #F6F4EE;
  border-top: 1px solid var(--gray-300);
  padding: 44px 0 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.footer-logo img {
  height: 36px;
  display: block;
}
.footer-menu, .legal-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-menu a, .legal-menu a {
  color: var(--primary);
  font-family: var(--body);
  font-size: 1rem;
  opacity: 0.88;
}
.footer-menu a:hover, .footer-menu a:focus, .legal-menu a:hover, .legal-menu a:focus {
  color: var(--accent);
  opacity: 1;
  text-decoration: underline;
}
.footer-contact {
  color: var(--gray-600);
  font-size: 0.96rem;
  font-family: var(--body);
  max-width: 270px;
}

@media (max-width: 900px){
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-menu, .legal-menu {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
}
@media (max-width: 600px){
  footer .content-wrapper {
    gap: 18px;
    padding-bottom: 12px;
  }
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials .content-wrapper {
  gap: 32px;
}
.testimonials h2 {
  color: var(--secondary);
  font-family: var(--headline);
  font-size: 1.38rem;
}
.testimonial-card {
  background: var(--white);
  color: var(--primary);
  font-family: var(--body);
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1rem;
  margin: 0;
  font-style: italic;
}
.testimonial-card span {
  color: var(--secondary);
  font-family: var(--headline);
  font-size: 0.98rem;
  font-weight: 600;
  margin-left: 18px;
}

/* Make sure testimonial text is readable on light backgrounds */
.testimonial-card, .testimonial-card p, .testimonial-card span {
  color: #282828 !important;
}

/* ===================================================
   PRIVACY, RODO, COOKIES, TERMS & GENERIC CONTENT
   =================================================== */
.privacy-policy, .rodo, .cookies-policy, .terms-of-use {
  background: var(--muted-bg);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(58,58,79,0.07);
  margin-bottom: 60px;
  padding: 38px 0 32px 0;
}
.privacy-policy h1, .cookies-policy h1, .rodo h1, .terms-of-use h1 {
  font-size: 1.55rem;
  margin-bottom: 20px;
}
.text-section ul, .text-section ol {
  margin: 12px 0 12px 24px;
  padding: 0;
}
.text-section li {
  margin-bottom: 8px;
  font-size: 1rem;
}
.text-section h3 {
  font-size: 1.01rem;
  font-weight: 700;
  color: var(--secondary);
  margin-top: 18px;
}
.text-section p {
  margin-bottom: 12px;
}

/* ===================================================
   Cards
   =================================================== */
.card {
  box-shadow: var(--shadow-1);
  border: 1.5px solid var(--gray-300);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ===================================================
   RESPONSIVE: MOBILE FIRST
   =================================================== */
@media (max-width: 1250px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 800px) {
  h1   { font-size: 1.68rem; }
  h2   { font-size: 1.22rem; }
  h3   { font-size: 1rem; }
  .section, .hero {
    padding: 26px 4vw;
    margin-bottom: 38px;
  }
  .card {
    padding: 18px 12px;
  }
  .services ul li {
    padding: 18px 11px 13px 11px;
  }
  .features ul li {
    min-width: 160px;
    padding: 14px 10px;
  }
}
@media (max-width: 768px) {
  .content-grid { flex-direction: column; gap: 20px; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .footer-logo { margin-bottom: 12px; }
  .footer-menu, .legal-menu { gap: 6px; }
  .footer-contact { font-size: 0.89rem; }
  .hero, .section {
    padding: 24px 2vw;
    margin-bottom: 32px;
  }
}
@media (max-width: 600px) {
  .section, .hero {
    padding: 14px 0vw;
    margin-bottom: 22px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  body {
    font-size: 0.98rem;
  }
}

/* ===================================================
   BUTTONS & MICROINTERACTIONS
   =================================================== */
button, .cta-btn, .cookies-btn, .cookie-modal-btn {
  transition: background 0.18s, color 0.14s, box-shadow 0.19s, border 0.18s, transform 0.15s;
}

/* ===================================================
   COOKIES CONSENT BANNER & MODAL
   =================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--white);
  box-shadow: 0 -2px 16px rgba(58,58,79,0.10);
  border-top: 1.5px solid var(--accent);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  padding: 24px 18px 18px 22px;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.34s, transform 0.32s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner .cookies-text {
  flex: 1;
  max-width: 490px;
  color: var(--primary);
  font-family: var(--body);
  font-size: 1rem;
}
.cookie-banner .cookies-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookies-btn {
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 1rem;
  font-family: var(--headline);
  font-weight: 600;
  border: 2px solid var(--secondary);
  background: var(--white);
  color: var(--secondary);
  cursor: pointer;
}
.cookies-btn.accept {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.cookies-btn.accept:hover, .cookies-btn.accept:focus {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.cookies-btn.reject {
  background: var(--white);
  color: var(--secondary);
  border-color: var(--secondary);
}
.cookies-btn.reject:hover, .cookies-btn.reject:focus {
  background: #F6EEE1;
  color: var(--primary);
}
.cookies-btn.settings {
  border-color: var(--accent);
  background: var(--white);
  color: var(--primary);
}
.cookies-btn.settings:hover, .cookies-btn.settings:focus {
  background: #FAF2DA;
  color: var(--secondary);
  border-color: var(--secondary);
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    padding: 16px 10px 8px 10px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookies-actions {
    flex-direction: column;
    gap: 8px;
  }
}

/* COOKIES MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(58,58,79,0.21);
  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: all;
}
.cookie-modal {
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 18px;
  box-shadow: 0 8px 44px rgba(58,58,79,0.18);
  max-width: 420px;
  width: 92vw;
  padding: 36px 22px 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  opacity: 0;
  transform: translateY(-24px) scale(0.98);
  transition: opacity 0.25s, transform 0.27s;
}
.cookie-modal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.cookie-modal-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cookie-modal-header h2 {
  font-family: var(--headline);
  font-size: 1.28rem;
  color: var(--primary);
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--gray-600);
  cursor: pointer;
  transition: color 0.16s;
  border-radius: 7px;
  padding: 6px 6px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--accent);
  background: var(--gray-50);
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gray-50);
  padding: 12px 15px;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 1rem;
}
.cookie-category label {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--primary);
}

.cookie-toggle {
  width: 42px;
  height: 24px;
  background: var(--gray-300);
  border-radius: 13px;
  position: relative;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-toggle:checked {
  background: var(--secondary);
}
.cookie-toggle::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(58,58,79,0.17);
  transition: background 0.17s;
  position: absolute;
}
.cookie-toggle::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(58,58,79,0.17);
  transition: background 0.17s;
}
.cookie-toggle::-ms-thumb {
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(58,58,79,0.17);
  transition: background 0.17s;
}
.cookie-toggle:checked::-webkit-slider-thumb {
  background: var(--secondary);
}
.cookie-toggle:checked::-moz-range-thumb {
  background: var(--secondary);
}
.cookie-toggle:checked::-ms-thumb {
  background: var(--secondary);
}
/* Fallback if not range input: */
.cookie-toggle[type=checkbox] {
  appearance: none;
  width: 42px;
  height: 22px;
  background: var(--gray-300);
  border-radius: 13px;
  position: relative;
  transition: background 0.16s;
  outline: none;
  cursor: pointer;
}
.cookie-toggle[type=checkbox]:checked {
  background: var(--secondary);
}
.cookie-toggle[type=checkbox]::before {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  transition: all 0.18s cubic-bezier(.4,0,.2,1);
}
.cookie-toggle[type=checkbox]:checked::before {
  background: var(--secondary);
  transform: translateX(20px);
}
.cookie-modal-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 15px;
}
.cookie-modal-btn {
  border-radius: 7px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid var(--secondary);
  background: var(--white);
  color: var(--secondary);
  cursor: pointer;
}
.cookie-modal-btn.accept {
  background: var(--secondary);
  color: var(--white);
}
.cookie-modal-btn.accept:hover, .cookie-modal-btn.accept:focus {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.cookie-modal-btn.reject {
  background: var(--white);
  color: var(--secondary);
  border-color: var(--secondary);
}
.cookie-modal-btn.reject:hover, .cookie-modal-btn.reject:focus {
  background: var(--gray-50);
  color: var(--primary);
}
@media (max-width: 430px) {
  .cookie-modal {
    padding: 18px 7px 16px 7px;
  }
  .cookie-modal-header h2 {
    font-size: 1.03rem;
  }
}

/* ===================================================
   MISC & UTILITY CLASSES
   =================================================== */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mr-8 { margin-right: 8px; }
.gap-12 { gap: 12px !important; }
.gap-24 { gap: 24px !important; }

/* Custom scrollbars for classic elegance */
body {
  scrollbar-width: thin;
  scrollbar-color: var(--secondary) var(--gray-50);
}
body::-webkit-scrollbar {
  width: 10px;
  background: var(--gray-50);
}
body::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 6px;
}

/* Subtle fade-in animation for sections */
.section, .hero, .card, .testimonial-card, .services ul li, .features ul li {
  animation: fadeInUp 0.67s cubic-bezier(.61,.25,.46,.98);
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ======================= END ======================= */
