/* CSS RESET & NORMALIZATION */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #232F34;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  background: none;
  border: none;
}
:focus {
  outline: 2px solid #232F34;
}

/* MONOCHROME SOPHISTICATED VARIABLES (NO CSS VARS USED FOR COMPATIBILITY) */

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #181A1B;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; line-height: 1.12; }
h2 { font-size: 2rem; margin-bottom: 20px; line-height: 1.2; }
h3 { font-size: 1.25rem; margin-bottom: 12px; line-height: 1.3; }
h4, h5, h6 { font-size: 1rem; }
p, ul, ol, li, a, table, th, td {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #232F34;
}
p {
  margin-bottom: 16px;
  line-height: 1.7;
}
blockquote {
  margin: 24px 0;
  padding-left: 24px;
  border-left: 4px solid #232F34;
  font-size: 1.15rem;
  font-style: italic;
  color: #232F34;
  background: #F8F9FA;
}
strong, b {
  font-weight: 700;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FLEXBOX GRIDS & SECTIONS - NO GRID/COLUMN! */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 8px;
}
.feature-grid > div {
  background: #fff;
  border: 1px solid #EBECEC;
  border-radius: 14px;
  padding: 28px 20px 24px 20px;
  flex: 1 1 260px;
  max-width: calc(25% - 18px);
  box-shadow: 0 2px 24px 0 rgba(0,0,0,0.045);
  transition: box-shadow 0.3s cubic-bezier(.6,.25,.24,1), border-color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 28px 0 rgba(0,0,0,0.12);
  border-color: #232F34;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-grid > div {
  flex: 1 1 320px;
  background: #fafafb;
  border: 1px solid #EBECEC;
  border-radius: 14px;
  padding: 24px 18px 18px 18px;
  box-shadow: 0 1px 8px 0 rgba(60,60,60,0.07);
  min-width: 240px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid #E4E6E7;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(34,34,34,0.06);
  padding: 24px 18px 18px 18px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  min-width: 260px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.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;
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #FAFAFA;
  border: 1px solid #222;
  box-shadow: 0 1px 8px 0 rgba(34,34,34,0.10);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  min-width: 260px;
  max-width: 380px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  color: #181A1B;
  transition: box-shadow 0.2s cubic-bezier(.6,.25,.24,1), border-color 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 3px 24px 0 rgba(30, 30, 30, 0.12);
  border-color: #4ECDC4;
}
.testimonial-info {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #232F34;
  font-size: 0.96rem;
}

.faq {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.faq > div {
  background: #F5F6F7;
  border-radius: 8px;
  padding: 24px;
  flex: 1 1 280px;
  min-width: 260px;
  box-shadow: 0 1px 8px 0 rgba(34,34,34,0.05);
}

/* TABLES */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 8px 0 rgba(32,32,32,0.04);
}
th, td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid #EBECEC;
}
th {
  background: #F0F1F1;
  font-weight: 700;
  color: #232F34;
}

/* BUTTONS & LINKS */
.cta-button {
  display: inline-block;
  padding: 12px 32px;
  background: #181A1B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  box-shadow: 0 2px 18px 0 rgba(24,26,27,0.09);
  transition: background 0.2s cubic-bezier(.6,.25,.24,1), color 0.2s, box-shadow 0.18s;
}
.cta-button:hover, .cta-button:focus {
  background: #232F34;
  color: #4ECDC4;
  box-shadow: 0 5px 24px 0 rgba(34,44,54,0.14);
}
.section a:not(.cta-button) {
  text-decoration: underline;
  color: #232F34;
  font-weight: 600;
  transition: color 0.2s cubic-bezier(.6,.25,.24,1);
}
.section a:not(.cta-button):hover {
  color: #4ECDC4;
}
.footer-nav a, .footer-contact a {
  color: #232F34;
  text-decoration: none;
  margin-right: 24px;
  transition: color 0.2s;
}
.footer-nav a:last-child {
  margin-right: 0;
}
.footer-nav a:hover {
  color: #4ECDC4;
}

/* HEADER/NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 1px 8px 0 rgba(34,34,34,0.07);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 12px;
}
.logo-link img {
  height: 46px;
  width: auto;
  margin-right: 10px;
}
.main-nav {
  display: flex;
  gap: 24px;
  margin-left: 24px;
  flex: 1 1 auto;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1px;
  color: #232F34;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #4ECDC4;
  border-bottom: 2px solid #4ECDC4;
}
header .cta-button {
  margin-left: 24px;
}
.mobile-menu-toggle {
  display: none;
  background: #181A1B;
  color: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border: none;
  margin-left: 20px;
  z-index: 103;
}
.mobile-menu-toggle:focus {
  background: #232F34;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24, 26, 27, 0.98);
  color: #fff;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.78,.22,.23,1.01);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 48px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #fff;
  font-size: 2rem;
  border: none;
  margin: 12px 24px;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 2020;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #4ECDC4;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 36px 28px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.35rem;
  padding: 10px 6px;
  border-radius: 9px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #4ECDC4;
  background: #232F34;
}

/* MAIN & SECTION SPACING */
main {
  margin-top: 0;
  margin-bottom: 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
section:last-child {
  margin-bottom: 0;
}

/* HERO SECTIONS */
section:first-of-type .container .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  padding-top: 24px;
}
@media (min-width: 900px) {
  section:first-of-type .container .content-wrapper {
    align-items: flex-start;
    padding-left: 36px;
    min-height: 290px;
  }
}

/* FOOTER */
footer {
  background: #fff;
  padding: 36px 0 18px 0;
  border-top: 1px solid #EBECEC;
}
.footer-nav {
  display: flex;
  gap: 22px;
  margin-bottom: 13px;
  flex-wrap: wrap;
}
.footer-contact {
  font-size: 0.98rem;
  color: #777;
  letter-spacing: 0.13px;
  line-height: 1.6;
}

/* ICONS IN LISTS */
ul li img {
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
  display: inline-block;
}
ul li {
  padding-left: 0;
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 1rem;
}
ul li:last-child {
  padding-bottom: 0;
}

/* SPACING FOR ALL FLEX CONTAINERS */
.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;
}

/* MICRO-INTERACTIONS */
.cta-button, .main-nav a, .mobile-menu-toggle, .mobile-menu-close, .mobile-nav a {
  transition: background 0.2s cubic-bezier(.6,.25,.24,1), color 0.16s, box-shadow 0.16s, border-color 0.18s;
}
section, .feature-grid > div, .team-grid > div, .testimonial-card, .faq > div, .card {
  transition: box-shadow 0.22s, border-color 0.18s;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .feature-grid > div {
    max-width: calc(50% - 14px);
    flex: 1 1 280px;
  }
  .team-grid > div {
    max-width: calc(50% - 15px);
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  header .container {
    height: auto;
    padding-top: 10px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .main-nav, header .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid, .team-grid, .card-container, .content-grid, .testimonials, .faq {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .team-grid > div, .testimonial-card, .faq > div, .card {
    max-width: 100%;
    min-width: 0;
    margin-bottom: 0;
  }
  .section {
    margin-bottom: 36px;
    padding: 26px 8px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-nav {
    gap: 14px;
  }
  .footer-contact {
    font-size: 0.91rem;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
  .cta-button { font-size: 0.99rem; padding: 10px 14px; }
  .footer-contact { font-size: 0.88rem; }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #232F34;
  color: #fff;
  box-shadow: 0 -2px 24px 0 rgba(30,30,30,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 18px 20px 18px 20px;
  z-index: 3000;
  transition: transform 0.32s cubic-bezier(.65,.23,.18,1);
  font-size: 1.04rem;
}
.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 14px;
  margin-left: 24px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: 700;
  margin-right: 8px;
  margin-left: 0;
  transition: background 0.16s, color 0.16s;
}
.cookie-btn-accept {
  background: #4ECDC4;
  color: #232F34;
}
.cookie-btn-accept:hover { background: #39a29a; }
.cookie-btn-reject {
  background: #fff;
  color: #232F34;
  border: 1px solid #232F34;
}
.cookie-btn-reject:hover {
  background: #232F34;
  color: #fff;
  border: 1px solid #4ECDC4;
}
.cookie-btn-settings {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.cookie-btn-settings:hover {
  background: #181A1B;
  color: #4ECDC4;
  border-color: #4ECDC4;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px;
    gap: 10px;
  }
  .cookie-banner .cookie-btn-group {
    margin-left: 0;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(24, 26, 27, 0.90);
  z-index: 4000;
  justify-content: center;
  align-items: center;
  transition: opacity 0.26s cubic-bezier(.65,.23,.18,1);
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #232F34;
  border-radius: 16px;
  padding: 34px 28px 26px 28px;
  min-width: 325px;
  max-width: 92vw;
  box-shadow: 0 12px 44px 0 rgba(20,20,20,0.11);
  border: 1px solid #ebebeb;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookieModalIn 0.3s ease;
}
@keyframes cookieModalIn {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem; font-weight: 700;
  margin-bottom: 8px;
}
.cookie-modal-section {
  margin-bottom: 12px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  padding: 8px 0;
}
.cookie-modal-category input[type=checkbox] {
  width: 22px; height: 22px;
  accent-color: #4ECDC4;
}
.cookie-modal-category input[disabled] {
  accent-color: #232F34;
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 20px;
  background: none;
  border: none;
  color: #232F34;
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover {
  color: #4ECDC4;
}
.cookie-modal .cookie-btn-group {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* CUSTOM SCROLLBAR FOR MONOCHROME LOOK */
::-webkit-scrollbar {
  width: 10px;
  background: #f2f2f2;
}
::-webkit-scrollbar-thumb {
  background: #232F34;
  border-radius: 8px;
}
html {
  scrollbar-color: #232F34 #f2f2f2;
  scrollbar-width: thin;
}

/* BRAND PERSONALITY ADDITIONS */
body {
  background: #fff;
  color: #232F34;
}
hr {
  border: none;
  border-top: 1px solid #ececec;
  margin: 32px 0;
}

/* VISUAL HIERARCHY: HEADINGS COLORS & WEIGHTS */
h1, h2 {
  color: #232F34;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ACCESSIBLE FOCUS STATES */
.cta-button:focus, .main-nav a:focus, .footer-nav a:focus, .mobile-nav a:focus, .cookie-btn:focus {
  outline: 2px solid #4ECDC4;
  outline-offset: 2px;
}

/* Z-INDEX SAFETY FOR MOBILE MENU & OVERLAYS */
header { z-index: 101; position: relative; }
.mobile-menu { z-index: 2000; }
.cookie-banner { z-index: 3000; }
.cookie-modal-overlay { z-index: 4000; }

/* HIDE PRINTED DECOR */
@media print {
  .mobile-menu, .cookie-banner, .cookie-modal-overlay, header .mobile-menu-toggle, .footer-nav { display: none !important; }
  * { background: none !important; color: #000 !important; }
}

/* END OF STYLE SHEET */
