/* --- CSS RESET & NORMALIZE (Minimalist Reset) --- */
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;
  vertical-align: baseline;
  font: inherit;
  font-size: 100%;
  box-sizing: border-box;
}
html {
  line-height: 1.5;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  background: #fff;
  color: #253552;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  border: none;
  background: none;
  color: inherit;
}
button {
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

/* --- BASE TYPOGRAPHY --- */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #253552;
  margin-bottom: 0.5em;
  letter-spacing: -0.01em;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #253552;
  margin-bottom: 0.7em;
  letter-spacing: -0.01em;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #253552;
  margin-bottom: 0.5em;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #253552;
}
p, .subtitle {
  color: #253552;
  font-size: 1.125rem;
  margin-bottom: 1em;
}
.subtitle {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #5f6b7a;
}
strong {
  font-weight: 600;
  color: #253552;
}

/* --- LAYOUT CONTAINER --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(41, 53, 82, 0.06);
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 26px 8px;
  }
}

/* --- FLEXBOX PATTERNS (MANDATORY) --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(41, 53, 82, 0.04);
  padding: 24px 20px;
  min-width: 260px;
  flex: 1 1 220px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 4px 20px rgba(41, 53, 82, 0.12);
  transform: translateY(-4px) scale(1.015);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(41, 53, 82, 0.09);
  margin-bottom: 20px;
  max-width: 550px;
  border-left: 4px solid #dcbf87;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 20px rgba(41, 53, 82, 0.17);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-meta {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #657294;
  opacity: 0.82;
}

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

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: #fff;
  padding: 0;
  box-shadow: 0 1px 8px rgba(41,53,82,0.06);
  z-index: 100;
  position: sticky;
  top: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 0;
}
header img {
  height: 45px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #253552;
  letter-spacing: 0.01em;
  padding: 6px 2px;
  border-radius: 4px;
  transition: color 0.16s, background 0.16s;
  line-height: 1.5;
}
.main-nav a:hover, .main-nav a:focus {
  background: #25355210;
  color: #dcbf87;
  outline: none;
}
.main-nav .cta-btn {
  background: #253552;
  color: #fff;
  border-radius: 20px;
  padding: 8px 22px;
  margin-left: 10px;
  font-size: 1.08rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(41,53,82,0.03);
  transition: background 0.15s, box-shadow 0.15s, color 0.15s;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: #dcbf87;
  color: #253552;
  box-shadow: 0 4px 16px rgba(220, 191, 135, 0.17);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2.1rem;
  color: #253552;
  border: none;
  z-index: 120;
  margin-left: 18px;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.15s, box-shadow 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #dcbf8715;
}
.mobile-menu {
  display: none;
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100dvh;
    background: #fff;
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.7,0,0.2,1);
    box-shadow: 0 0 40px rgba(41,53,82,0.14);
    pointer-events: none;
    opacity: 0;
  }
  .mobile-menu.open {
    transform: translateX(0);
    pointer-events: auto;
    opacity: 1;
  }
  .mobile-menu-close {
    align-self: flex-end;
    margin: 24px 20px 8px 0;
    padding: 10px 16px;
    background: none;
    font-size: 2.1rem;
    color: #253552;
    border-radius: 6px;
    transition: background 0.15s;
  }
  .mobile-menu-close:focus, .mobile-menu-close:hover {
    background: #dcbf8715;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 19px;
    padding: 12px 32px;
  }
  .mobile-nav a {
    color: #253552;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.22rem;
    font-weight: 600;
    padding: 10px 0;
    border-radius: 8px;
    width: 100%;
    display: block;
    transition: background 0.12s, color 0.14s;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    background: #25355213;
    color: #dcbf87;
  }
  .mobile-nav a.cta-btn {
    background: #253552;
    color: #fff;
    border-radius: 20px;
    padding: 9px 22px;
    font-weight: 700;
    margin-top: 8px;
  }
  .mobile-nav a.cta-btn:hover, .mobile-nav a.cta-btn:focus {
    background: #dcbf87;
    color: #253552;
  }
}

/* --- MAIN & SECTIONS --- */
main {
  width: 100%;
  background: #fff;
}
section {
  width: 100%;
  padding: 0;
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  background: transparent;
}
@media (max-width: 768px) {
  section {
    margin-bottom: 36px;
  }
}

.text-section {
  margin-bottom: 18px;
}
.text-section img {
  height: 1.3em;
  width: auto;
  margin-right: 6px;
  vertical-align: middle;
  opacity: 0.9;
  filter: grayscale(40%);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 10px;
  justify-content: flex-start;
}
.feature-grid li {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(41,53,82,0.09);
  padding: 26px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  min-width: 220px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-grid li:hover {
  box-shadow: 0 4px 24px rgba(220,191,135,0.08);
  transform: translateY(-3px) scale(1.013);
}
.feature-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 3px;
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid li {
    min-width: unset;
    width: 100%;
    padding: 16px 10px 15px 10px;
  }
}

ul, ol {
  margin-bottom: 18px;
  padding-left: 0.5em;
  font-size: 1.08rem;
  color: #273653;
}
ul li, ol li {
  margin-bottom: 0.6em;
  line-height: 1.76;
  padding-left: 0.2em;
}


/* --- BUTTONS --- */
.cta-btn {
  display: inline-block;
  background: #253552;
  color: #fff;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 10px 28px;
  transition: background 0.17s, color 0.17s, box-shadow 0.22s, border 0.13s;
  box-shadow: 0 2px 12px rgba(41,53,82,0.05);
  border: 2px solid transparent;
  margin-top: 12px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #dcbf87;
  color: #253552;
  border: 2px solid #dcbf87;
  box-shadow: 0 3px 24px rgba(220,191,135,0.09);
  outline: none;
}

/* --- TESTIMONIALS --- */
.testimonial-card p {
  color: #253552;
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.54;
}
.testimonial-card .testimonial-meta {
  font-size: 1rem;
  font-style: normal;
  color: #657294;
}

/* --- FOOTER --- */
footer {
  width: 100%;
  background: #fcfcfc;
  margin-top: 60px;
  border-top: 1px solid #ececec;
  padding: 0;
  font-size: 1rem;
}
footer .container {
  min-height: 80px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 16px 18px 16px;
}
footer img {
  height: 30px;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 7px;
}
.footer-nav a {
  color: #253552;
  opacity: 0.72;
  font-size: 0.98rem;
  padding: 3px 2px;
  border-radius: 5px;
  transition: color 0.15s, background 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #dcbf87;
  background: #2535520d;
}
.footer-contact {
  color: #657294;
  opacity: 0.7;
  font-size: 0.96rem;
  text-align: center;
}
@media (max-width: 500px) {
  .footer-contact {
    font-size: 0.90rem;
    line-height: 1.7;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 -4px 24px rgba(41,53,82,0.15);
  border-top: 1px solid #ececec;
  padding: 18px 32px 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  min-height: 74px;
  opacity: 1;
  transition: opacity 0.4s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner .cookie-message {
  font-size: 1rem;
  color: #253552;
  margin-right: 18px;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-consent-banner button {
  background: #253552;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 7px 22px;
  transition: background 0.17s, color 0.17s;
}
.cookie-consent-banner button.cookie-reject {
  background: #fff;
  color: #253552;
  border: 2px solid #253552;
}
.cookie-consent-banner button.cookie-settings {
  background: #dcbf87;
  color: #253552;
  border: none;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  filter: brightness(0.94);
  outline: none;
}

/* --- COOKIE CONSENT MODAL --- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10001;
  background: rgba(38,45,65,0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.33s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 42px 30px 30px 30px;
  min-width: 320px;
  max-width: 90vw;
  box-shadow: 0 8px 48px rgba(41,53,82,0.17);
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 20px; right: 22px;
  font-size: 1.82rem;
  color: #253552;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.13s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  background: #25355212;
}
.cookie-modal-content h2 {
  font-size: 1.35rem;
  color: #253552;
  font-weight: 700;
  margin-bottom: 4px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 10px 0 17px 0;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.cookie-category label {
  flex: 1;
  font-family: 'Roboto', Arial, sans-serif;
  color: #253552;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #253552;
}
.cookie-category input[type="checkbox"]:disabled {
  accent-color: #d6d6d6;
}
.cookie-essential-label {
  opacity: 0.7;
  font-style: italic;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 11px;
}
.cookie-modal-actions button {
  background: #253552;
  color: #fff;
  border-radius: 18px;
  padding: 7px 20px;
  border: none;
  font-size: 1.08rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-actions button.cookie-cancel {
  background: #fff;
  color: #253552;
  border: 1px solid #dcbf87;
}
.cookie-modal-actions button.cookie-cancel:hover, .cookie-modal-actions button.cookie-cancel:focus {
  background: #f6f4ef;
}
.cookie-modal-actions button:focus, .cookie-modal-actions button:hover {
  filter: brightness(0.93);
  outline: none;
}

/* --- UTILITY --- */
.hide {
  display: none !important;
}

/* --- MICRO-INTERACTIONS & TRANSITIONS --- */
a, .cta-btn, .main-nav a, .mobile-nav a, .footer-nav a, .card, .feature-grid li, .testimonial-card, .cookie-consent-banner button, .cookie-modal-actions button {
  transition-property: background, color, box-shadow, border, transform, outline, filter;
  transition-duration: 0.15s, 0.15s, 0.14s, 0.13s, 0.13s, 0.12s, 0.16s;
  transition-timing-function: ease;
}

/* --- RESPONSIVE TYPO & SPACING --- */
@media (max-width: 1200px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.42rem; }
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 1.47rem; }
  h2, .h2 { font-size: 1.15rem; }
  .container { padding: 0 7px; }
}

/* --- SELECTION & ACCESSIBILITY --- */
::selection {
  background: #dcbf87;
  color: #253552;
}

/* --- FOCUSED STATES --- */
:focus-visible {
  outline: 2px dashed #dcbf87;
  outline-offset: 2px;
}

/* --- ICON IMAGES (for minimal icons) --- */
img[alt$='Icon'], .feature-grid img {
  filter: grayscale(30%) brightness(0.9);
  opacity: 0.92;
  border-radius: 6px;
}
img[alt$='Icon']:hover, .feature-grid img:hover {
  filter: none;
  opacity: 1;
}

/* --- FORMS & CONTACT --- */
input, textarea, select {
  border: 1px solid #e1e4eb;
  border-radius: 5px;
  padding: 8px 12px;
  margin-bottom: 15px;
  background: #fafbfc;
  color: #253552;
  font-size: 1.05rem;
  transition: border 0.13s, box-shadow 0.13s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #dcbf87;
  box-shadow: 0 2px 8px rgba(220,191,135,0.08);
}

/* --- CARD LAYOUTS (BEYOND .card) --- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* --- DARK TEXT IN TESTIMONIALS --- */
.testimonial-card, .testimonial-card p, .testimonial-card .testimonial-meta {
  background: #fff !important;
  color: #253552;
}

/* --- VISUAL HIERARCHY --- */
@media (min-width: 769px) {
  .container {
    padding-left: 28px;
    padding-right: 28px;
  }
  .section {
    padding-left: 52px;
    padding-right: 52px;
  }
}

/* --- SCROLLBAR MINIMAL --- */
body, html {
  scrollbar-width: thin;
  scrollbar-color: #cec0a0 #e9e9e9;
}
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-thumb {
  background: #e7e1d5;
  border-radius: 10px;
}
body::-webkit-scrollbar-track {
  background: #fafafa;
}

/* --- NO GRID, NO COLUMNS, FLEX ONLY --- */
/* Verified: No forbidden properties used! */
