/* ============================== */
/*         CSS RESET               */
/* ============================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #FFF6EC;
}
body {
  color: #0C2237;
  background: #FFF6EC;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img {
  max-width: 100%;
  border-radius: 16px;
  display: block;
}
input, button, textarea, select {
  font: inherit;
  border-radius: 8px;
  outline: none;
  border: none;
}
a {
  color: #F2B200;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #cc8400;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 12px;
  list-style: disc inside;
}
section ul, section ol {
  margin-top: 16px;
}

/* ============================== */
/*        BRAND TYPOGRAPHY        */
/* ============================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -1px;
  color: #0C2237;
}
h1 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 700;
}
p, .subtitle {
  color: #2a3b4e;
  margin-bottom: 18px;
  font-size: 1.1rem;
}
.subtitle {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 26px;
  color: #7a593f;
}

/* ============================== */
/*            LAYOUT              */
/* ============================== */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
main {
  flex: 1 0 auto;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 24px -8px rgba(220,145,52,0.07), 0 1.5px 8px rgba(242,178,0,0.06);
}

/* Card container & grids */
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card, .content-wrapper {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px -6px rgba(242,178,0,0.10);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 22px;
  transition: box-shadow 0.26s;
}
.card:hover, .content-wrapper:hover {
  box-shadow: 0 4px 32px -8px rgba(255,180,60,0.17);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 18px;
}
ul.feature-list, .feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  background: #FFEFCF;
  box-shadow: 0 2px 12px -6px rgba(150,110,10,0.13);
  margin-bottom: 20px;
  flex: 1 0 320px;
  transition: box-shadow 0.25s, background 0.2s;
}
.testimonial-card p {
  font-size: 1.07rem;
  margin: 0 0 0 0;
  color: #552E16;
  font-style: italic;
}
.testimonial-card cite {
  font-style: normal;
  color: #AA6F17;
  font-size: 1rem;
  margin-left: 20px;
}

/* ============================== */
/*        SPACING / GAPS          */
/* ============================== */
.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;}
.feature-item {display: flex; flex-direction: column; align-items: flex-start; gap: 15px;}

/* ============================== */
/*          HEADER NAV            */
/* ============================== */
header {
  width: 100%;
  background: #FFF6EC;
  box-shadow: 0 2px 14px -8px rgba(232,170,45,0.05);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo img {
  height: 44px;
  width: auto;
  border-radius: 12px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 18px;
  color: #0C2237;
  border-radius: 16px;
  transition: background 0.13s, color 0.13s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F2B200;
  color: #fff;
}
.mobile-menu-toggle {
  background: #F2B200;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 2rem;
  padding: 6px 14px 7px 14px;
  display: none;
  cursor: pointer;
  outline: none;
  box-shadow: 0 2px 12px -6px rgba(240,170,30,0.11);
  transition: background 0.15s ease, color 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #CC8400;
}

/* ============================== */
/*          MOBILE MENU           */
/* ============================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,246,236,0.98);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.68,-0.3,.32,1.3);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: rgba(242,178,0,0.95);
  color: #fff;
  font-size: 2.5rem;
  border: none;
  border-radius: 14px;
  padding: 2px 20px 7px 20px;
  margin: 20px 18px 10px 0;
  cursor: pointer;
  box-shadow: 0 2px 8px -5px rgba(242,178,0,0.13);
  transition: background 0.2s;
  z-index: 120;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #BC9309;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 18px;
  margin-top: 20px;
}
.mobile-nav a {
  font-size: 1.33rem;
  color: #0C2237;
  padding: 15px 36px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 18px;
  width: 100%;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD158;
  color: #BC9309;
}


/* ============================== */
/*            BUTTONS             */
/* ============================== */
.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: .02em;
  font-size: 1.18rem;
  padding: 13px 38px;
  border-radius: 29px;
  box-shadow: 0 1.5px 10px -6px rgba(240,170,30,0.11);
  border: none;
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .18s, transform .13s;
}
.btn-primary {
  background: #F2B200;
  color: #fff;
  margin-right: 16px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #BC9309;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px -12px #ffd15899;
}
.btn-secondary {
  background: #fff6ec;
  color: #F2B200;
  border: 2px solid #F2B200;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #F2B200;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  border: 2px solid #F2B200;
  box-shadow: 0 8px 24px -12px #ffd15899;
}
.link-more {
  font-weight: 600;
  padding-left: 3px;
  color: #F2B200;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .15s;
  font-size: 1.06rem;
}
.link-more:hover, .link-more:focus {
  color: #BC9309;
}

/* ============================== */
/*         FEATURE/ICON LIST      */
/* ============================== */
.filter-options {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 18px 0 18px 0;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #BC9309;
  font-weight: 700;
}
.filter-options b {
  color: #F2B200;
  margin: 0 5px;
}
li img {
  vertical-align: middle;
  margin-right: 10px;
  height: 23px;
}
.service-price {
  color: #F2B200;
  font-family: 'Montserrat', Arial,sans-serif;
  font-weight: 800;
  margin: 0 0 0 12px;
  font-size: 1.1rem;
}

/* ============================== */
/*          FOOTER                */
/* ============================== */
footer {
  background: #0C2237;
  color: #fffbe8;
  padding: 50px 0 30px 0;
  width: 100%;
  margin-top: 40px;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 1px 12px -8px rgba(45,27,6,0.09);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  height: 48px;
  border-radius: 16px;
}
.footer-nav {
  display: flex;
  gap: 25px;
  align-items: center;
}
.footer-nav a {
  color: #fffbe8;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F2B200;
}
.footer-contact p {
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: #fadf96;
}
.copyright {
  font-size: .93rem;
  color: #F2B200;
  margin-top: 20px;
}

/* ============================== */
/*             FORMS              */
/* ============================== */
input, textarea, select {
  border: 1px solid #eec374;
  border-radius: 12px;
  font-size: 1rem;
  padding: 8px 14px;
  background: #fffbe8;
  margin-bottom: 20px;
  transition: border-color .14s;
}
input:focus, textarea:focus, select:focus {
  border-color: #F2B200;
  box-shadow: 0 2px 8px -2px #ffc05022;
}

/* ============================== */
/*        MICRO-INTERACTIONS      */
/* ============================== */
.card, .content-wrapper, .testimonial-card {
  transition: box-shadow 0.17s, background .19s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 4px 32px -10px #ffd15855;
  background: #FFF6EC;
}
.testimonial-card:hover p {
  color: #BC9309;
}
main a.btn-primary:active, main a.btn-secondary:active {
  transform: scale(0.97);
}

/* ============================== */
/*         COOKIE BANNER          */
/* ============================== */
.cookie-banner {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 15px;
  background: #fffbe8;
  color: #0C2237;
  border: 2.5px solid #F2B200;
  border-radius: 20px;
  box-shadow: 0 3px 30px -11px #ffd15880;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 22px 22px 22px;
  gap: 18px;
  animation: cookieIn 0.44s cubic-bezier(.7,0,.23,1.52);
}
@keyframes cookieIn {
  from { opacity:0; transform: translateY(48px); }
  to { opacity: 1; transform: none; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  margin: 0 6px 0 0;
  padding: 8px 24px;
  border-radius: 16px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  background: #FFD158;
  color: #0C2237;
  box-shadow: 0 2px 10px -6px #fadf9677;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-banner button.accept {
  background: #F2B200;
  color: #fff;
}
.cookie-banner button.accept:hover,
.cookie-banner button.accept:focus {
  background: #BC9309;
}
.cookie-banner button.settings {
  background: #fff6ec;
  border: 1.5px solid #F2B200;
  color: #F2B200;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #F2B200;
  color: #fff;
}
.cookie-banner button.reject {
  background: #e0e0e0;
  color: #AA6F17;
  border: 1.5px solid #fadf96;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #ffd158;
  color: #0C2237;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(22,13,2,0.32);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.35s cubic-bezier(.39,1.48,.47,.91);
}
@keyframes fadeIn {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background: #fffbe8;
  border-radius: 25px;
  padding: 34px 28px;
  min-width: 320px;
  max-width: 99vw;
  box-shadow: 0 8px 44px -16px #ffd15890;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal h3 {
  margin-bottom: 10px;
}
.cookie-modal-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff6ec;
  border-radius: 14px;
  padding: 11px 17px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #0C2237;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-close-modal {
  position: absolute;
  top: 11px;
  right: 13px;
  background: #F2B200;
  color: #fff;
  border: none;
  font-size: 1.6rem;
  border-radius: 50%;
  cursor: pointer;
  width: 36px;
  height: 36px;
  transition: background .13s;
}
.cookie-close-modal:hover, .cookie-close-modal:focus {
  background: #BC9309;
}
.cookie-category input[type='checkbox'] {
  appearance: none;
  width: 30px;
  height: 18px;
  border-radius: 14px;
  background: #FFEFCF;
  border: 1.5px solid #fadf96;
  position: relative;
  outline: none;
  margin: 0 0 0 8px;
  transition: background 0.15s;
  cursor: pointer;
}
.cookie-category input[type='checkbox']:checked {
  background: #F2B200;
  border: 1.5px solid #F2B200;
}
.cookie-category input[type='checkbox']::after {
  content: '';
  display: block;
  position: absolute;
  top: 2.5px;
  left: 4px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 6px -3px #fadf96;
  transform: translateX(0);
  transition: transform .18s;
}
.cookie-category input[type='checkbox']:checked::after {
  transform: translateX(10px);
  background: #fffbe8;
}
.cookie-category .always-on {
  font-size: .93em;
  color: #fff;
  background: #F2B200;
  border-radius: 10px;
  padding: 3px 12px;
  margin-left: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ============================== */
/*           RESPONSIVE           */
/* ============================== */
@media (max-width: 1200px) {
  .container { max-width: 1000px; }
}
@media (max-width: 1024px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.45rem; }
  section { padding: 28px 12px; }
  .container { max-width: 94vw; }
  .footer-logo img { height: 40px; }
}
@media (max-width: 850px) {
  .container { max-width: 98vw; }
  section { padding: 24px 6px; }
}
@media (max-width: 768px) {
  header .main-nav { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
  .container, footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
  .content-grid, .card-container, .footer-nav {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
  .testimonial-card, .card, .content-wrapper, table, .footer-contact {
    width: 100%;
    min-width: 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
  }
  section { padding: 21px 4vw; }
  footer {
    border-radius: 22px 22px 0 0;
    padding: 34px 0 27px 0;
  }
  .footer-logo img {
    height: 34px;
  }
  .cookie-banner {
    left: 3px;
    right: 3px;
    padding: 16px 10px;
  }
  .cookie-modal {
    min-width: 0;
    padding: 21px 8px 19px 12px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.32rem; }
  h2 { font-size: 1.05rem; }
  .btn-primary, .btn-secondary {
    font-size: .97rem;
    padding: 10px 14px;
  }
}

/* ============================== */
/*      ACCESSIBILITY FOCUS       */
/* ============================== */
:focus-visible, input:focus-visible, button:focus-visible, a:focus-visible {
  outline: 2.5px dashed #F2B200;
  outline-offset: 2px;
}

/* ============================== */
/*         SPECIAL UTILS          */
/* ============================== */
.privacy-note {
  font-size: .97em;
  color: #82623d;
  margin-top: 6px;
  font-style: italic;
}
::-webkit-scrollbar { width: 10px; background: #ffe6a130; }
::-webkit-scrollbar-thumb { background: #ffe6a1; border-radius: 6px; }
