/*==== 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, 
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #171717;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
*::selection {
  background: #1d1d1d;
  color: #fff;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #111;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #325179;
  outline: none;
}
ul, ol {
  margin-left: 1.2em;
}

/*==== BRAND TYPOGRAPHY ====*/
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #101010;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 20px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 18px; }
h3 { font-size: 1.33rem; line-height: 1.3; margin-bottom: 12px; }
h4 { font-size: 1.12rem; margin-bottom: 8px; }
.subheadline { color: #4f4f4f; font-size: 1.2rem; font-family: 'Roboto', Arial, sans-serif; margin-bottom: 16px; }

p, li, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #212121;
  margin-bottom: 12px;
}
strong, b {
  font-weight: 600;
}

/*==== LAYOUT & STRUCTURE ====*/
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
header, footer {
  width: 100%;
}

/*==== HEADER STYLES ====*/
header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 18px 18px 18px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
header nav a {
  color: #252525;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 4px;
  transition: color 0.2s;
}
header nav a:hover, header nav a:focus {
  color: #325179;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 30px;
  background: #101010;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(30,30,30,0.055);
  cursor: pointer;
  margin-left: 20px;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.14s;
  outline: none;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: #325179;
  color: #fff;
  box-shadow: 0 4px 16px rgba(30,30,30,0.09);
  transform: translateY(-2px) scale(1.02);
}
header .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #101010;
  cursor: pointer;
  margin-left: 22px;
  line-height: 1;
  transition: color 0.2s;
}
header .mobile-menu-toggle:focus {
  outline: 2px solid #325179;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 6px 44px rgba(0,0,0,0.06);
  z-index: 1000;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.68,-0.55,.265,1.55);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px 20px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #101010;
  margin-bottom: 18px;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:focus {
  outline: 2px solid #325179;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  padding: 12px 0 12px 2px;
  color: #101010;
  border-bottom: 1px solid #e6e6e6;
  background: none;
  border-radius: 0;
  transition: background 0.18s, color 0.19s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f5f5f5;
  color: #325179;
}

/*==== MAIN STRUCTURE ====*/
main {
  width: 100%;
  padding-bottom: 36px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  width: 100%;
}

.hero {
  background: #fcfcfc;
  border-bottom: 1px solid #eaeaea;
  box-shadow: 0 2px 18px rgba(30,30,30,0.045);
  padding: 54px 0 38px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: #101010;
  font-size: 2.7rem;
  line-height: 1.13;
  font-size: 2.2rem;
  margin-bottom: 7px;
}
.hero p {
  font-size: 1.14rem;
  color: #484848;
  margin-bottom: 18px;
}

/*==== FLEXBOX PATTERNS ====*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fcfcfc;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(32,32,32,0.09);
  padding: 28px 24px;
}
.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: flex-start;
  gap: 12px;
  background: #fafafb;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(30,30,30,0.10);
  border-left: 4px solid #101010;
  padding: 28px 24px;
  margin-bottom: 22px;
  max-width: 560px;
}
.testimonial-card p {
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #101010;
  font-weight: 500;
  margin-bottom: 8px;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #484848;
  font-size: 0.98rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-meta span:first-child {
  letter-spacing: 0.1em;
  color: #D9B74A;
  font-weight: 700;
}

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

/*==== FEATURES & GRIDS ====*/
.features, .feature-list, .feature-grid {
  width: 100%;
}
.features .feature-grid, 
.features .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 20px;
}
.feature-grid li, .feature-list li, .feature-grid > div, .feature-list > div {
  background: #f6f6f8;
  border-radius: 16px;
  box-shadow: 0 1px 6px rgba(20,20,20,0.042);
  padding: 24px 18px;
  min-width: 210px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.17s, background 0.18s;
}
.feature-grid li:hover, .feature-list li:hover, .feature-grid > div:hover, .feature-list > div:hover {
  background: #eaeaf0;
  box-shadow: 0 3px 16px rgba(30,30,30,0.07);
}
.feature-grid img, .feature-list img {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  opacity: 0.92;
  filter: grayscale(1); /* Monochrome icons */
}
.features h3 {
  font-size: 1.2rem;
  color: #252525;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 4px;
}

/*==== SERVICES LISTS ====*/
.service-list, .services-overview .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
  width: 100%;
  justify-content: flex-start;
}
.service-list li, .services-overview .service-grid > div {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 6px rgba(40,40,40,0.037);
  padding: 22px 18px 22px 18px;
  margin-bottom: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-left: 3px solid #101010;
  transition: box-shadow 0.19s, border-color 0.25s;
}
.service-list li:hover, .services-overview .service-grid > div:hover {
  box-shadow: 0 5px 17px rgba(20,20,20,0.09);
  border-left: 3px solid #325179;
}
.service-list h3, .services-overview .service-grid h3 {
  font-family: 'Montserrat', Arial, sans-serif;  
  font-size: 1.18rem;
  color: #101010;
  margin-bottom: 4px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.service-list h3 span, .services-overview .service-grid .price {
  display: inline-block;
  font-size: 0.98rem;
  color: #545454;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  margin-left: 8px;
}

/*==== TIPS AND GUIDES ====*/
.tips-list, .habits ul, .guides ul, .tools-overview ul, .team-member-bios ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
.tips-list li, .habits ul li, .guides ul li, .tools-overview ul li, .team-member-bios ul li {
  background: #f3f3f7;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 1rem;
  color: #232323;
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
}
.step-by-step h3,.step-by-step-guides h3,.how-to-guides h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  margin: 14px 0 7px 0;
  color: #161616;
  font-weight: 600;
}
.step-by-step ol, .step-by-step-guides ol, .how-to-guides ol {
  margin-left: 24px;
  margin-bottom: 10px;
}
.step-by-step ol li, .step-by-step-guides ol li, .how-to-guides ol li {
  padding-left: 2px;
  margin-bottom: 7px;
  color: #232323;
  font-size: 1rem;
}

/*==== TEAM ====*/
.team-overview {
  margin-bottom: 20px;
  width: 100%;
}
.team-member-bios ul {
  gap: 16px;
}
.team-member-bios li {
  background: #f2f2f4;
  border-radius: 12px;
  padding: 18px 16px;
  color: #161616;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.03rem;
  margin-bottom: 2px;
}
.team-member-bios strong {
  color: #325179;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}

/*==== CONTACT ====*/
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fafafc;
  border-radius: 14px;
  box-shadow: 0 1px 10px rgba(20,20,20,0.06);
  padding: 20px 18px 12px 18px;
  margin-top: 10px;
  width: 100%;
  max-width: 420px;
}
.contact-details a {
  color: #325179;
  word-break: break-all;
}

/*==== CTA SECTIONS ====*/
.cta {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 18px rgba(50,50,50,0.02);
  text-align: center;
}
.cta h2 {
  font-size: 2rem;
  color: #101010;
  margin-bottom: 8px;
}
.cta p {
  font-size: 1.06rem;
  color: #232323;
  margin-bottom: 20px;
}
.cta .cta-btn {
  margin: 0 auto;
  margin-top: 16px;
}

.confirmation {
  background: #f4f7fa;
  border-radius: 20px;
  box-shadow: 0 2px 18px rgba(30,30,30,0.045);
  text-align: center;
}
.confirmation .cta-btn {
  margin-top: 18px;
}

/*==== LEGAL PAGES ====*/
.legal {
  background: #fafbfd;
  border-radius: 18px;
  box-shadow: 0 1px 12px rgba(60,60,60,0.04);
  margin: 40px 0 0 0;
  padding: 36px 18px;
}
.legal h1 {
  font-size: 2rem;
  color: #101010;
  margin-bottom: 14px;
}
.legal h2 {
  font-size: 1.22rem;
  margin: 22px 0 7px 0;
}
.legal ul li {
  background: #f2f2f4;
  border-radius: 10px;
  margin-bottom: 7px;
  padding: 13px 14px;
  color: #212121;
}

/*==== FOOTER ====*/
footer {
  background: #181818;
  color: #fff;
  padding: 32px 0 12px 0;
  font-family: 'Roboto', Arial, sans-serif;
}
footer .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
}
footer nav {
  display: flex;
  gap: 24px;
}
footer nav a {
  color: #d1d1d1;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.02em;
  padding: 6px 4px;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  background: #325179;
}
.footer-branding {
  font-size: 0.96rem;
  letter-spacing: 0.05em;
  color: #b9b9b9;
}

/*==== COOKIE CONSENT BANNER ====*/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #1a1a1a;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 20px 22px 22px;
  z-index: 1400;
  box-shadow: 0 -3px 22px rgba(0,0,0,0.07);
  border-top: 1px solid #292929;
  font-size: 1rem;
  animation: slideUpBanner 0.45s cubic-bezier(.75,-0.01,.22,1.03);
}
@keyframes slideUpBanner {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 5px;
}
.cookie-banner .cookie-btn {
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background: #fff;
  color: #161616;
  border: none;
  border-radius: 22px;
  font-weight: 600;
  cursor: pointer;
  margin-left: 0;
  margin-right: 0;
  box-shadow: 0 1px 5px rgba(20,20,20,0.07);
  transition: background 0.2s, color 0.21s, border 0.2s;
  outline: none;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #325179;
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: #181818;
  color: #fff;
  border: 1px solid #565656;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #fff;
  color: #101010;
  border: 1px solid #101010;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1500;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,20,20,0.84);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.35s cubic-bezier(.75,-0.01,.22,1.03);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #101010;
  padding: 40px 28px 26px 28px;
  border-radius: 18px;
  box-shadow: 0 8px 44px rgba(30,30,30,0.21);
  min-width: 340px;
  min-height: 130px;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  animation: popInModal 0.38s cubic-bezier(.68,-0.55,.265,1.55);
}
@keyframes popInModal {
  from { transform: scale(0.83) translateY(30px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  margin-bottom: 8px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.06rem;
  margin-bottom: 8px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2f2f2f;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #325179;
  width: 18px;
  height: 18px;
}
.cookie-modal .cookie-category {
  margin-bottom: 14px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 16px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #252525;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal .cookie-modal-close:hover {
  color: #325179;
}
.cookie-modal .cookie-btn {
  min-width: 120px;
}

/*==== MICRO-INTERACTIONS ====*/
.card, .feature-grid li, .feature-list li, .service-list li, .services-overview .service-grid > div {
  transition: box-shadow 0.19s, border-color 0.19s, background 0.19s, transform 0.15s;
}
.card:hover, .feature-grid li:hover, .feature-list li:hover, .service-list li:hover, .services-overview .service-grid > div:hover {
  box-shadow: 0 5px 19px rgba(32,32,32,0.14);
  transform: translateY(-2px) scale(1.013);
  border-left: 3.5px solid #325179;
}
button:active, a:active {
  outline: none;
}

/*==== RESPONSIVE (MOBILE-FIRST) ====*/
@media (max-width: 1160px) {
  .container {
    max-width: 99vw;
  }
}
@media (max-width: 920px) {
  .feature-grid li, .feature-list li, .feature-grid > div, .feature-list > div, .service-list li, .services-overview .service-grid > div {
    min-width: 170px;
    flex: 1 1 200px;
  }
  header nav {
    gap: 18px;
  }
}
@media (max-width: 820px) {
  .container, .footer .container {
    flex-direction: column;
    gap: 22px !important;
  }
  header .container {
    flex-direction: row;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  main {
    padding-bottom: 0;
  }
  .content-grid, .card-container, .features .feature-grid, .features .feature-list, .service-list, .services-overview .service-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature-grid li, .feature-list li, .feature-grid > div, .feature-list > div, .service-list li, .services-overview .service-grid > div {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  header nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  header .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 1.62rem; }
  h1 { font-size: 1.62rem; }
  h2 { font-size: 1.22rem; }
  .container {
    padding: 0 6px;
  }
  section, .section {
    padding: 30px 3px 28px 3px;
    margin-bottom: 40px;
  }
  .testimonials .testimonial-card {
    padding: 18px 10px;
  }
  .card, .feature-grid li, .feature-list li, .service-list li, .services-overview .service-grid > div {
    padding: 14px 7px;
  }
  .cookie-modal {
    padding: 24px 8px 24px 12px;
    min-width: 0;
    font-size: 0.99rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    font-size: 0.97rem;
    padding: 16px 7px 16px 12px;
  }
}
/*==== FONTS IMPORT ====*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@400;500&display=swap');
