/* RESET & NORMALIZE (MOBILE FIRST) */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #f8fafc;
  color: #204477;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
a {
  color: #204477;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F7B32B;
  outline: none;
}
ul,ol {
  list-style: none;
}
button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

/* TYPOGRAPHY: LUXURY PREMIUM SCALE */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400|Roboto:400,500,700&display=swap');

h1, .hero h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #204477;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #204477;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #26508A;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #204477;
}
p, li, span, label {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #204477;
  margin-bottom: 12px;
}
strong {
  font-weight: bold;
  color: #204477;
}

/* CONTAINER & SECTION LAYOUTS (FLEXBOX, MANDATORY SPACING) */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 24px 0 rgba(44,79,161,0.07), 0 0.5px 1.5px 0 rgba(39,54,61,0.11);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 950px) {
  .section {
    padding: 60px 40px;
  }
}

/* FLEXBOX CARDS & GRIDS (NO GRID!) */
.card-container, .feature-grid, .service-list, .stories-grid, .article-list, .tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card, .service-card, .feature-item, .story-box, .tip-box, article {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(44,79,161,0.08);
  padding: 28px 22px;
  position: relative;
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid #eee;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .service-card:hover, .feature-item:hover, .story-box:hover, .tip-box:hover, article:hover {
  box-shadow: 0 6px 22px 0 rgba(44,79,161,0.16);
  transform: translateY(-2px) scale(1.012);
}

.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; }
  .card-container, .feature-grid, .service-list, .stories-grid, .article-list, .tips-grid {
    flex-direction: column;
    gap: 20px;
  }
}


/* HERO SECTION */
.hero {
  background: #FFFFFF;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 2px 36px 0 rgba(44,79,161,0.14);
  padding: 56px 0 40px 0;
  margin-bottom: 48px;
  position: relative;
  overflow: visible;
}
.hero .container {
  justify-content: flex-start;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 16px;
}
.hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #204477;
  line-height: 1.2;
}
@media (min-width: 700px) {
  .hero h1 {
    font-size: 2.7rem;
  }
  .hero .content-wrapper {
    max-width: 650px;
  }
}

/* BUTTONS */
.button, button, .mobile-menu-toggle, .cookie-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  padding: 13px 34px;
  border: none;
  transition: background 0.17s, color 0.17s, box-shadow 0.18s, border 0.14s;
  background: #26508A;
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(44,79,161,0.10);
  cursor: pointer;
  outline: none;
  position: relative;
  z-index: 1;
}
.button.primary, .cookie-btn.accept {
  background: linear-gradient(90deg, #F7B32B 0%, #ffe7b2 100%);
  color: #204477;
  border: 1px solid #F7B32B;
  box-shadow: 0 2px 10px 0 rgba(247,179,43,0.07);
}
.button.primary:hover, .cookie-btn.accept:hover {
  background: linear-gradient(90deg,#eab504 0%, #F7B32B 100%);
  color: #fff;
}
.button.secondary, .cookie-btn.reject {
  background: #204477;
  color: #fff;
  border: 1px solid #204477;
}
.button.secondary:hover, .cookie-btn.reject:hover {
  background: #F7B32B;
  color: #204477;
  border-color: #F7B32B;
}
.button:focus, .cookie-btn:focus {
  box-shadow: 0 0 0 3px #F7B32B77;
}
.button:active {
  transform: scale(.98);
}

/* LINKS in BUTTON STYLE (for header/footer) */
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #26508A;
  padding: 8px 14px;
  border-radius: 16px;
  margin-right: 2px;
  transition: background 0.12s;
}
nav a:hover, .mobile-nav a:hover {
  color: #204477;
  background: #ffe6b8;
}

/* HEADER */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(44,79,161,0.08);
  padding: 0;
  position: relative;
  z-index: 15;
}
header .container {
  min-height: 70px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 35px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
}
header .mobile-menu-toggle {
  display: flex;
  background: #F7B32B;
  color: #204477;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  margin-left: 12px;
  box-shadow: 0 1px 6px 0 rgba(44,79,161,0.10);
  z-index: 21;
  border: 1.5px solid #ecc870;
  transition: background .2s, color .2s;
}
header .mobile-menu-toggle:hover {
  background: #204477;
  color: #fff;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  header .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0; right: 0; bottom: 0;
    background: rgba(38,80,138,0.97);
    z-index: 99999;
    padding: 0;
    transform: translateX(-100%);
    transition: transform 0.34s cubic-bezier(.66,.05,.31,1.01);
    will-change: transform;
  }
  .mobile-menu.open {
    transform: translateX(0);
  }
  .mobile-menu-close {
    background: #F7B32B;
    color: #204477;
    border-radius: 50%;
    font-size: 1.8rem;
    width: 40px; height: 40px;
    position: absolute;
    top: 24px; right: 24px;
    z-index: 10;
    transition: background 0.2s;
  }
  .mobile-menu-close:hover {
    background: #204477;
    color: #fff;
  }
  .mobile-nav {
    flex-direction: column;
    display: flex;
    margin: 70px 0 0 0;
    gap: 12px;
    align-items: flex-start;
    padding: 30px 24px;
  }
  .mobile-nav a {
    display: block;
    font-size: 1.23rem;
    color: #fff;
    background: none;
    padding: 12px 0;
    border-radius: 0;
    width: 100%;
    border-bottom: 1px solid #3d5e95;
    margin-right: 0;
    transition: background 0.14s, color 0.14s;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    color: #F7B32B;
    background: none;
  }
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-nav, .mobile-menu-toggle { display: none!important; }
}

/* FOOTER */
footer {
  background: #204477;
  color: #fff;
  padding: 50px 0 28px 0;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 24px 0 rgba(44,79,161,0.04);
  width: 100%;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  gap: 32px 16px;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0 20px;
}
.footer-logo img {
  height: 44px;
  width: auto;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: #ffe6b8;
  font-size: 1rem;
  background: none;
  border-radius: 0;
  padding: 0;
  margin-right: 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
footer nav a:hover {
  color: #F7B32B;
  background: none;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
}
.footer-contact a {
  color: #ffe6b8;
}
.footer-contact strong {
  color: #ffe6b8;
}
.footer-contact a:hover {
  color: #F7B32B;
}
@media (max-width: 900px) {
  footer .container { flex-direction: column; gap: 20px; }
}

/* TESTIMONIALS */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.testimonial-card {
  background: #f9fafc;
  border-radius: 16px;
  box-shadow: 0 2px 11px 0 rgba(44,79,161,0.09);
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 240px;
  max-width: 392px;
  flex: 1 1 260px;
  align-items: flex-start;
  border-left: 4px solid #F7B32B;
  color: #1a2739;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #1a2739;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.testimonial-author {
  font-size: 0.95rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #26508A;
}
@media (max-width: 768px) {
  .testimonial-slider { flex-direction: column; gap: 20px; }
}

/* LISTS, BRAND-VALUES, FAQ, FEATURES */
.brand-values {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0;
}
.brand-values li {
  padding-left: 26px;
  background: url('../assets/icons/check-gold.svg') no-repeat 0 4px;
  background-size: 20px 20px;
  color: #1b3156;
  font-size: 1.08rem;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(44,79,161,0.065);
  padding: 22px 16px;
  border: 1px solid #f6f6f6;
  flex: 1 1 220px;
  min-width: 200px;
  position: relative;
  margin-bottom: 20px;
}
.feature-item img {
  width: 36px; height: 36px;
  margin-bottom: 4px;
}
/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-accordion h3 {
  font-size: 1.09rem;
  color: #204477;
  cursor: pointer;
  font-weight: 700;
  margin-bottom: 4px;
}
.faq-accordion p {
  font-size: 1rem;
  color: #26508A;
  margin-left: 10px;
}

/* ARTICLE/CATEGORY/TIPS */
.article-list {
  margin-bottom: 14px;
}
.article-list article {
  border-left: 4px solid #F7B32B;
}
.article-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 1rem;
}
.article-categories span {
  background: #fffbe8;
  color: #b1860e;
  border-radius: 12px;
  padding: 4px 16px;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.tips-grid, .stories-grid {
  gap: 20px;
}
.tip-box, .story-box {
  box-shadow: 0 1.5px 10px 0 rgba(44,79,161,0.06);
  border-radius: 12px;
  border-left: 4px solid #F7B32B;
  padding: 16px 14px;
  background: #fff;
  min-width: 200px;
  max-width: 400px;
  flex: 1 1 200px;
}

/* SPECIAL BOXES, PHRASES */
.client-phrases {
  margin: 14px 0;
}
.client-phrases ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.before-after-boxes {
  margin-top: 10px;
  padding: 12px 18px;
  background: #f5f7fa;
  border-radius: 8px;
  color: #204477;
  font-weight: 600;
}
.trusted-by {
  color: #204477;
  background: #f8f4e9;
  padding: 13px 18px;
  border-radius: 7px;
  font-size: 0.97rem;
  margin-top: 12px;
}
.mission {
  font-size: 1.07rem;
  color: #1b3156;
  margin-bottom: 8px;
}

/* SERVICE CARDS */
.service-list {
  gap: 24px;
}
.service-card {
  border-left: 4px solid #F7B32B;
  min-width: 220px;
  box-shadow: 0 1.5px 9px 0 rgba(44,79,161,0.05);
}
.service-price {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  color: #204477;
  font-weight: bold;
  margin-top: 12px;
}

/* INPUTS & FORMS */
input, textarea, select {
  font: inherit;
  border: 1.5px solid #d2e4f4;
  border-radius: 10px;
  padding: 10px 16px;
  background: #fafdff;
  margin-bottom: 14px;
  transition: border 0.14s;
  font-size: 1rem;
  color: #204477;
}
input:focus, textarea:focus, select:focus {
  border-color: #F7B32B;
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #204477;
  font-size: 1.01rem;
  margin-bottom: 4px;
  font-weight: 500;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #1a2739;
  color: #fff;
  z-index: 19999;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
  padding: 26px 16px 30px 16px;
  box-shadow: 0 -2px 20px 0 rgba(44,79,161,0.12);
  border-radius: 18px 18px 0 0;
  opacity: 1;
  transition: transform .32s cubic-bezier(.66,.05,.31,1.01), opacity 0.22s;
}
.cookie-banner.hidden { opacity: 0; pointer-events: none; transform: translateY(60px); }
.cookie-banner h4 {
  color: #ffe6b8;
  margin-bottom: 6px;
  font-size: 1.12rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 7px;
}
.cookie-btn {
  padding: 8px 22px;
  font-size: 1rem;
  border-radius: 21px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,35,58,0.38);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.18s;
}
.cookie-modal-bg.closed { opacity: 0; pointer-events: none; }
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 44px 0 rgba(44,79,161,0.17);
  padding: 34px 28px 24px 28px;
  min-width: 300px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  max-width: 96vw;
  position: relative;
}
.cookie-modal h3 {
  color: #204477;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.cookie-category input[type="checkbox"] {
  width: 17px; height: 17px;
  accent-color: #F7B32B;
}
.cookie-category label {
  color: #204477;
  cursor: pointer;
  font-weight: 500;
}
.cookie-category .always-on {
  color: #888;
  font-size: 0.97rem;
  margin-left: 6px;
}
.cookie-modal .cookie-btns {
  margin-top: 10px;
}
.cookie-modal-close {
  position: absolute;
  right: 13px; top: 13px;
  background: #F7B32B;
  color: #204477;
  font-size: 1.3rem;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.cookie-modal-close:hover {
  background: #204477;
  color: #fff;
}

/* RESPONSIVE TYPOGRAPHY AND SPACING */
@media (max-width: 700px) {
  .container, .section {
    padding-left: 10px;
    padding-right: 10px;
  }
  .card, .service-card, .feature-item, .testimonial-card, .story-box, .tip-box, article {
    padding: 18px 10px;
    min-width: 0;
    max-width: 100%;
  }
  h1 {font-size: 1.5rem;}
  h2 {font-size: 1.26rem;}
}
/* MICRO-INTERACTIONS & ANIMATIONS */
.button, .card, .service-card, .feature-item, .story-box, .tip-box, .testimonial-card, .cookie-btn, .mobile-menu, .mobile-menu-toggle {
  transition: box-shadow 0.12s, background 0.15s, color 0.16s, transform 0.15s;
}

/* LUXURY PREMIUM: GOLD ACCENTS & REFINED DETAILS */
.gold {
  color: #F7B32B;
}
.card::before, .feature-item::before, .service-card::before, .story-box::before, .tip-box::before {
  content: '';
  display: block;
  width: 34px; height: 3px;
  background: #F7B32B;
  border-radius: 2px;
  margin-bottom: 10px;
  opacity: 0.13;
}
.card:hover::before, .feature-item:hover::before, .service-card:hover::before, .story-box:hover::before, .tip-box:hover::before {
  opacity: 0.3;
}

/* VISUAL HIERARCHY, Z-INDEX LAYERS */
header, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-bg, .cookie-modal { z-index: 9999; }

/* NO GRID PROPERTIES USED AT ALL - FLEXBOX ONLY! */
/* CRITICAL SPACING/NO OVERLAP: extra bottom margin on all content wrappers */
.content-wrapper { margin-bottom: 20px; }

/* UTILITIES */
.hidden { display: none!important; }
.show { display: block!important; }
.text-center { text-align: center!important; }
.gold-bg { background: #F7B32B!important; color: #204477!important; }

/* PRINT-FRIENDLY (OPTIONAL) */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-bg  { display: none !important; }
}
