/* RESET & BASE ------------------------------------------------------ */
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 { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #F5F5F5;
  color: #153150;
  min-height: 100vh;
  letter-spacing: 0.015em;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: #153150; text-decoration: none; transition: color 0.25s; }
a:hover, a:focus { color: #FDB813; text-decoration: underline; outline: none; }
strong { font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; }

/* TYPOGRAPHY ---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  color: #153150;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.5rem; margin-bottom: 16px; }
h4 { font-size: 1.2rem; margin-bottom: 12px; }
p, ul, ol, dl { margin-bottom: 16px; }

/* CONTAINER & FLEX LAYOUTS -------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(21,49,80,0.07);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 14px 0 rgba(21,49,80,0.11);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  flex: 1 1 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 32px rgba(253,184,19,0.10), 0 3px 14px 0 rgba(21,49,80,0.19);
  transform: translateY(-2px) scale(1.03);
}
.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: center;
  gap: 20px;
  padding: 20px;
  background: #F5F5F5;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(21,49,80,0.07);
  margin-bottom: 20px;
  max-width: 500px;
  width: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px rgba(253,184,19,0.11), 0 2px 10px rgba(21,49,80,0.11);
  transform: translateY(-2px) scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
ul, ol {
  padding-left: 24px;
}
ul li, ol li {
  margin-bottom: 12px;
  font-weight: 500;
  color: #153150;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Roboto', Arial, sans-serif;
}
/* HERO --------------------------------------------------------------- */
.hero {
  background: linear-gradient(105deg, #FDB813 42%, #F5F5F5 100%);
  padding: 60px 0 40px 0;
  border-radius: 0 0 36px 36px;
  margin-bottom: 60px;
}
.hero .container {
  justify-content: center;
  align-items: center;
  display: flex;
  min-height: 180px;
}
.hero h1 {
  font-size: 2.8rem;
  color: #153150;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 0 rgba(253,184,19,0.05);
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: #153150;
}

/* BUTTONS ------------------------------------------------------------ */
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  background: #FDB813;
  color: #153150;
  border: none;
  padding: 16px 36px;
  border-radius: 32px;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(253,184,19,0.13);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s, box-shadow 0.18s, transform 0.14s;
  margin-right: 14px;
  margin-bottom: 8px;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #153150;
  color: #FDB813;
  box-shadow: 0 4px 20px rgba(253,184,19,0.18);
  transform: scale(1.05);
}
button, input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  border-radius: 30px;
  border: none;
  padding: 12px 24px;
  color: #fff;
  background: #153150;
  cursor: pointer;
  letter-spacing: 0.01em;
  font-size: 1rem;
  transition: background 0.15s, color 0.13s, box-shadow 0.15s;
}
button:hover, button:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  background: #FDB813;
  color: #153150;
  box-shadow: 0 4px 12px rgba(21,49,80,0.20);
}

/* NAVIGATION (DESKTOP & MOBILE) -------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 1px 14px rgba(21,49,80,0.04);
  padding: 0;
  width: 100%;
  z-index: 99;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.logo img, .logo-footer img {
  height: 42px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  font-weight: 700;
  color: #153150;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 8px 0;
  transition: color 0.18s, border-bottom 0.15s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FDB813;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #FDB813;
  padding: 8px 10px;
  margin-left: 18px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #153150;
  background: #FDB81322;
  border-radius: 100px;
}
/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #153150;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.78,.01,.21,1);
  padding: 0;
}
body.menu-open .mobile-menu {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  color: #FDB813;
  border: none;
  margin: 18px 20px 0 0;
  cursor: pointer;
  padding: 8px 14px; border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #153150;
  background: #FDB81355;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 28px;
  width: 100%;
}
.mobile-nav a {
  color: #FDB813;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.15s, border-bottom 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  border-bottom: 2px solid #FDB813;
  color: #fff;
}
/* Hide desktop nav on mobile, show burger */
@media (max-width: 992px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 992px) {
  .cta-btn { padding: 14px 24px; font-size: 1rem; }
}

/* UTILITY CLASSES ---------------------------------------------------- */
.address, .footer-contact p {
  font-size: 1rem;
  color: #153150;
  display: flex;
  align-items: center;
  gap: 8px;
}
.note { font-size: 0.98rem; color: #666; margin-top: 12px; }
.em, em { color: #FDB813; font-style: normal; font-weight: 600; }
dt { font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; margin-top: 20px; }
dd { margin-left: 0; font-size: 1rem; margin-bottom: 16px; }

/* FOOTER ------------------------------------------------------------- */
footer {
  background: #153150;
  color: #fff;
  border-radius: 36px 36px 0 0;
  margin-top: 60px;
  padding-top: 40px;
  padding-bottom: 8px;
  box-shadow: 0 -2px 20px rgba(21,49,80,0.04);
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 2px solid #FDB81333;
}
.logo-footer img {
  height: 38px;
  margin-bottom: 8px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #FDB813;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
  margin-bottom: 0;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-contact p { margin-bottom: 8px; color: #fff; }
.footer-bottom {
  text-align: center;
  color: #fff;
  padding: 18px 0 0 0;
  font-size: 0.93rem;
  opacity: 0.81;
}

/* PRICING TABLES ----------------------------------------------------- */
table {
  width: 100%;
  margin-bottom: 20px;
  border-spacing: 0;
  border-collapse: collapse;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 3px 14px 0 rgba(21,49,80,0.09);
}
th, td {
  padding: 18px 14px;
  text-align: left;
  border-bottom: 1px solid #EEE;
  font-size: 1.02rem;
}
th {
  background: #153150;
  color: #FDB813;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  border-bottom: 2px solid #FDB813;
}
tr:last-child td { border-bottom: none; }

/* TESTIMONIALS ------------------------------------------------------- */
.testimonials {
  padding-top: 24px;
}
.testimonials h2 {
  color: #153150;
  font-size: 2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #153150;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.testimonial-card strong {
  font-weight: 900;
  color: #153150;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card img {
  height: 22px;
  width: 22px;
  margin-right: 2px;
  display: inline-block;
}

/* CONTACT & ADDRESS -------------------------------------------------- */
.contact {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 14px 0 rgba(21,49,80,0.09);
  padding: 40px 20px;
  margin-bottom: 60px;
}
.contact h2 {
  color: #153150;
}
.contact a {
  font-weight: 700;
  color: #153150;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.contact a:hover, .contact a:focus {
  color: #FDB813;
}
address {
  font-style: normal;
  margin-bottom: 0;
}

/* LEGAL PAGES (privacy, termini, cookies, gdpr) ---------------------- */
.legal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 14px 0 rgba(21,49,80,0.09);
  padding: 40px 20px;
  margin-bottom: 60px;
}
.legal h1 {
  color: #153150;
}
.legal h2 {
  color: #FDB813;
}

/* FAQ --------------------------------------------------------------- */
.faq dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  color: #153150;
  margin-top: 16px;
  font-weight: 800;
}
.faq dd {
  color: #153150;
}

/* TEAM --------------------------------------------------------------- */
.team ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
}
.team ul li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 14px 0 rgba(21,49,80,0.07);
  padding: 28px 18px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #153150;
  font-weight: 500;
}
.team ul li strong {
  color: #153150;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
}
.team ul li span {
  color: #666;
}

/* FILTER FORM -------------------------------------------------------- */
.filter-form {
  background: #fffbe6;
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 16px;
  font-weight: 700;
  color: #153150;
  box-shadow: 0 1px 7px rgba(21,49,80,0.05);
}

/* ICONS INSIDE LISTS/TEXT -------------------------------------------- */
.features ul li img, .features ul li svg {
  height: 20px; width: 20px;
  margin-right: 6px;
}

/* CTA SECTION -------------------------------------------------------- */
.cta {
  padding: 40px 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  box-shadow: 0 4px 18px 0 rgba(21,49,80,0.07);
}
.cta h2 {
  color: #153150;
  font-family: 'Montserrat', Arial, sans-serif;
  text-align: center;
}
.cta a.cta-btn {
  margin: 20px 0 0 0;
  font-size: 1.2rem;
}

/* THANKYOU PAGE ------------------------------------------------------ */
.thankyou {
  margin-bottom: 60px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 14px 0 rgba(21,49,80,0.09);
  padding: 60px 20px 50px 20px;
  text-align: center;
}

/* MEDIA QUERIES ------------------------------------------------------ */
@media (max-width: 768px) {
  .container { padding: 0 12px; }
  .main-nav, .footer-content { flex-direction: column; align-items: flex-start; }
  header .container { flex-direction: row; gap: 8px; padding: 10px 12px; }
  .hero   { padding: 36px 0 22px 0; border-radius: 0 0 24px 24px; margin-bottom: 32px; }
  h1      { font-size: 2rem; }
  h2      { font-size: 1.35rem; }
  .section, .legal, .contact, .cta   { padding: 22px 8px; border-radius: 16px; margin-bottom: 34px; }
  .feature-list, .card-container, .team ul, .content-grid { flex-direction: column !important; gap: 16px; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-content { gap: 18px; padding-bottom: 10px; }
  .card { min-width: 180px; padding: 18px 10px; border-radius: 12px; }
  .testimonial-card { max-width: 100%; border-radius: 14px; }
}

/* TRANSITIONS & MICRO-INTERACTIONS ----------------------------------- */
.section, .card, .testimonial-card, .cta, .legal, .contact {
  transition: box-shadow 0.18s, transform 0.16s, background 0.18s;
}
.cta, .hero {
  transition: background 0.25s, box-shadow 0.13s;
}

/* MODAL & OVERLAY (COOKIE & MOBILE MENU) ----------------------------- */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(21,49,80,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.2s;
}
@keyframes fadeInOverlay {
  from { opacity:0; } to { opacity: 1; }
}

/* COOKIE CONSENT BANNER ---------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: #153150;
  color: #fff;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 32px rgba(21,49,80,0.11);
  padding: 24px 16px;
  gap: 18px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: slideUp 0.45s;
}
@keyframes slideUp {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: translateY(0px); opacity: 1; }
}
.cookie-banner p {
  margin: 0; color: #fff; }
.cookie-banner .cookie-actions {
  display: flex; flex-direction: row; gap: 14px;
}
.cookie-banner button {
  padding: 12px 18px;
  border-radius: 24px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.13s, box-shadow 0.15s;
}
.cookie-banner .cookie-accept {
  background: #FDB813; color: #153150;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #fff; color: #FDB813; box-shadow: 0 2px 12px #FDB81344;
}
.cookie-banner .cookie-reject {
  background: #fff; color: #153150; border: 2px solid #FDB813;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #FDB813; color: #153150; }
.cookie-banner .cookie-settings {
  background: none; color: #FDB813; border: none; text-decoration: underline; }
.cookie-banner .cookie-settings:hover { color: #fff; text-decoration: underline; }

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column; align-items: flex-start; padding: 18px 10px 18px 10px; gap: 8px; font-size: 0.97rem;
  }
  .cookie-banner .cookie-actions {
    flex-direction: row;
    gap: 10px;
  }
}

/* COOKIE PREFERENCES MODAL ------------------------------------------- */
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 400px;
  width: 96vw;
  padding: 34px 24px 24px 24px;
  box-shadow: 0 8px 60px 0 rgba(21,49,80,0.24);
  z-index: 2500;
  position: relative;
  animation: fadeInCookieModal 0.22s;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes fadeInCookieModal {
  from { opacity:0; transform: scale(0.91); } to { opacity:1; transform: scale(1); }
}
.cookie-modal h2 {
  color: #153150;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 0;
  font-size: 1rem;
  border-bottom: 1px solid #EEE;
  width: 100%;
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category .toggle {
  margin-left: auto;
  accent-color: #FDB813;
  transform: scale(1.27);
}
.cookie-modal .cookie-modal-actions {
  display: flex; gap: 10px; justify-content: flex-end;
}
.cookie-modal .cookie-cancel {
  background: none; color: #153150; border: none; padding: 10px 16px; border-radius: 22px; text-decoration: underline;
}
.cookie-modal .cookie-cancel:hover { background: #FDB81333; }
.cookie-modal .cookie-save {
  background: #FDB813; color: #153150; border: none; padding: 12px 24px; border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif; font-weight: 700;
}
.cookie-modal .cookie-save:hover { background: #153150; color: #FDB813; }

/* ANIMATIONS --------------------------------------------------------- */
@keyframes slideInMobileMenu {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}

/* SEPARATORS, GEOMETRIC DECOR ---------------------------------------- */
hr {
  border: none;
  border-top: 2px solid #FDB81333;
  margin: 2rem 0;
}
/* Show menu overlay if body.menu-open -------------------------------- */
body.menu-open {
  overflow: hidden;
}
body.menu-open .mobile-menu {
  box-shadow: 0 0 0 100vw rgba(21,49,80,0.31);
}

/* BOLD GEOMETRIC SHAPES/DOTS (for branding, optional) */
.shape-circle {
  background: #FDB813;
  border-radius: 50%;
  position: absolute;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.shape-rect {
  background: #FDB81344;
  border-radius: 18px;
  width: 60px; height: 14px;
  position: absolute;
  bottom: -32px; right: 8px;
  z-index: 0;
  opacity: 0.22;
}

/* HIGH CONTRAST ELEMENTS (for modern_bold accentuation) ---------------*/
h2, th {
  color: #FDB813 !important;
}
.cta-btn, .cookie-banner .cookie-accept, .cookie-modal .cookie-save {
  box-shadow: 0 1px 7px 0 #FDB81355;
}

/* OVERRIDE/FINAL ADJUSTMENTS ----------------------------------------- */
::-webkit-scrollbar {
  width: 9px; background: #F5F5F5;
}
::-webkit-scrollbar-thumb {
  background: #FDB813;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #153150;
}

/* FOCUS STATES for KEYBOARD NAV ------------------------------------------------- */
a:focus, button:focus, input:focus, .cta-btn:focus {
  outline: 2px solid #FDB813;
  outline-offset: 2px;
}

/* END OF CSS */
