/*--- 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, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0; padding: 0; border: 0;
  font-size: 100%; font: inherit; vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body { line-height: 1; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
table { border-collapse: collapse; border-spacing: 0; }
button { background: none; border: none; font: inherit; cursor: pointer; }
:root {
  --brand-blue: #14447A;
  --brand-orange: #DF953E;
  --brand-accent: #F3FAF9;
  --mono-black: #111;
  --mono-white: #fff;
  --mono-gray: #eaeaea;
  --mono-mid: #888;
  --mono-dark: #222;
  --card-bg: #fff;
  --card-border: #eee;
  --shadow: 0 2px 12px 0 rgba(36,36,36,0.06);
  --shadow-hover: 0 6px 18px 0 rgba(30,30,30,0.10);
  --radius: 12px;
  --radius-sm: 6px;
  --transition: 0.2s cubic-bezier(.4,0,.2,1);
}

/*--- TYPOGRAPHY & LAYOUT BASE ---*/
body {
  color: var(--mono-dark);
  background: var(--mono-white);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  color: var(--mono-black);
  letter-spacing: -0.01em;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 8px; }
p, blockquote, ul, ol { margin-bottom: 16px; }
blockquote {
  font-style: italic;
  color: var(--mono-mid);
  border-left: 4px solid var(--brand-blue);
  padding-left: 12px;
  margin-bottom: 20px;
}
strong { font-weight: 700; }

/*--- CONTAINER, SECTION, WRAPPERS ---*/
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: none;
}
.content-wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/*--- HEADER ---*/
header {
  background: var(--mono-white);
  box-shadow: 0 0 12px rgba(30,30,30,0.04);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 24px;
}
header img {
  height: 44px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-size: 1rem;
  color: var(--mono-black);
  opacity: 0.85;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: border-bottom var(--transition), color var(--transition);
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--brand-blue);
  border-bottom: 2px solid var(--brand-blue);
}
.main-nav .cta {
  background: var(--brand-blue);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 8px 22px;
  font-weight: 600;
  border: none;
  margin-left: 24px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px rgba(30,34,38,0.07);
  border-bottom: none;
  letter-spacing: 0.03em;
}
.main-nav .cta:hover, .main-nav .cta:focus {
  background: #222;
  color: var(--brand-orange);
  box-shadow: 0 4px 14px 0 rgba(20,40,90,0.18);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: var(--brand-blue);
  border: none;
  z-index: 102;
  margin-left: 18px;
  cursor: pointer;
}

/*--- MOBILE MENU ---*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.77,0,.18,1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--brand-blue);
  font-size: 2.2rem;
  margin: 24px 0 0 26px;
  align-self: flex-start;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin: 48px 0 0 0;
  width: 100vw;
  gap: 23px;
  padding-left: 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #222;
  padding: 10px 0 10px 0;
  border-bottom: 1px solid #e5e5e5;
  width: 84vw;
  max-width: 320px;
  transition: color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-orange);
  outline: none;
}

/*--- HERO & SECTION STYLES ---*/
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/*--- FLEXBOX GRIDS ---*/
.feature-grid, .faq-list, .process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid {
  flex-direction: row;
  justify-content: flex-start;
}
.feature {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 24px;
  min-width: 240px;
  max-width: 320px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.feature:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-hover);
}
.feature img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  position: relative;
  flex: 1 1 270px;
  min-width: 230px;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  border-color: var(--brand-orange);
  box-shadow: var(--shadow-hover);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: var(--radius);
  box-shadow: 0 3px 18px -4px rgba(56,56,56,0.10);
  padding: 20px 24px;
  margin-bottom: 24px;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.testimonial-card img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-accent);
  border: 1px solid #eee;
  margin-right: 14px;
}
.testimonial-card blockquote {
  color: #171717;
  font-style: italic;
  margin-bottom: 0;
  border: none;
  font-size: 1.08rem;
}
.testimonial-card p {
  margin-bottom: 0;
  color: #222;
  font-size: 0.98rem;
  margin-left: 18px;
  font-weight: 500;
}

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

.process-steps {
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 14px;
}
.step {
  background: var(--mono-white);
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  padding: 20px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 1px 8px 0 rgba(34,38,40,0.07);
  min-width: 220px;
  flex: 1 1 210px;
  font-size: 1.04rem;
}
.step img {
  width: 30px;
  height: 30px;
}

/*--- CTA BUTTONS ---*/
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-blue);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 11px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  box-shadow: 0 3px 14px -2px rgba(20,40,90,0.16);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  margin-top: 8px;
  border: none;
  outline: none;
}
.cta:hover, .cta:focus {
  background: var(--mono-black);
  color: var(--brand-orange);
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 6px 22px 0 rgba(36,41,80,0.24);
}

/*--- TABLES ---*/
table {
  width: 100%;
  border: 1px solid #d1d4d8;
  border-radius: var(--radius);
  background: var(--card-bg);
  margin-bottom: 22px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(36,42,57,0.05);
}
thead { background: #111; color: #fff; }
table th, table td {
  text-align: left;
  padding: 14px 13px;
  font-size: 1rem;
  border-bottom: 1px solid #e6e6e6;
}
thead th { border-bottom: 2px solid #111; }
tbody tr:last-child td { border-bottom: none; }

/*--- FOOTER ---*/
footer {
  background: #161616;
  color: #e4e4e4;
  padding: 40px 0 20px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 0.99rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  height: 38px;
  width: auto;
  margin-right: 8px;
}
.footer-nav {
  display: flex;
  gap: 24px;
}
.footer-nav a {
  color: #e4e4e4;
  opacity: 0.77;
  transition: color var(--transition), opacity var(--transition);
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-orange);
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.97rem;
}
.footer-contact img {
  width: 19px;
  height: 19px;
  margin-right: 6px;
  vertical-align: middle;
  opacity: 0.87;
}
footer a {
  color: var(--brand-orange);
  text-decoration: underline;
}

/*--- FAQ + Misc ---*/
.faq-list {
  flex-direction: column;
  gap: 26px;
}
.faq-list h3 {
  margin-bottom: 8px;
}

.contact-prompt {
  background: #fafafa;
  border-left: 4px solid var(--brand-blue);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: 1.01rem;
  margin-top: 16px;
}

/*--- RESPONSIVENESS ---*/
@media (max-width: 992px) {
  .container {
    max-width: 95vw;
    padding: 0 12px;
  }
  .feature-grid, .process-steps, .content-grid, .card-container {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  section {
    padding: 32px 0;
    margin-bottom: 36px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid, .process-steps, .content-grid, .card-container, .footer-nav {
    flex-direction: column;
    gap: 19px;
  }
  .feature, .card, .step {
    min-width: 90vw;
    max-width: 100vw;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 23px;
    align-items: stretch;
  }
  footer .container {
    flex-direction: column;
    gap: 27px;
    align-items: flex-start;
  }
}
@media (max-width: 540px) {
  html { font-size: 15px; }
  section { padding: 20px 0; margin-bottom: 24px; }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.1rem; }
}

/*--- MICRO-INTERACTIONS / TRANSITIONS ---*/
a, .cta, .feature, .card, .testimonial-card {
  transition: box-shadow var(--transition), color var(--transition), border-color var(--transition), background var(--transition), outline var(--transition), transform var(--transition);
}
a:focus, .cta:focus {
  outline: 2px solid var(--brand-orange);
  outline-offset: 2px;
}
.card:active, .feature:active, .testimonial-card:active {
  transform: scale(0.985);
}

/*--- COOKIE CONSENT BANNER ---*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(251,251,252,0.97);
  color: var(--mono-black);
  box-shadow: 0 -3px 18px 0 rgba(44,44,44,0.13);
  padding: 24px 16px 18px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  z-index: 3000;
  font-size: 1rem;
  animation: cookie-fade-in 0.7s cubic-bezier(.4,0,.2,1);
}
@keyframes cookie-fade-in {
  from { opacity: 0; transform: translateY(80px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner-content {
  max-width: 700px;
  flex: 1 1 auto;
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}
.cookie-btn {
  border-radius: var(--radius-sm);
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 24px;
  box-shadow: 0 1px 6px rgba(36,40,60,0.06);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.cookie-btn.accept {
  background: var(--brand-blue);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #222;
  color: var(--brand-orange);
}
.cookie-btn.reject {
  background: #ececec;
  color: var(--mono-black);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #c8c8c8;
  color: var(--brand-blue);
}
.cookie-btn.settings {
  background: transparent;
  color: var(--mono-dark);
  border: 1px solid #d4d4d4;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--brand-accent);
  color: var(--brand-blue);
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    font-size: 0.98rem;
    padding-left: 7vw;
    padding-right: 7vw;
  }
  .cookie-banner-actions {
    width: 100%;
  }
}

/*--- COOKIE MODAL ---*/
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 4000;
  background: rgba(20,24,28,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-fade-in 0.4s cubic-bezier(.4,0,.2,1);
}
.cookie-modal-content {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 48px 0 rgba(20,40,90,0.19);
  max-width: 430px;
  width: 92vw;
  padding: 36px 30px 26px 30px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 1.3rem;
  background: none;
  color: var(--brand-blue);
  cursor: pointer;
  border: none;
  z-index: 4100;
}
.cookie-categories {
  margin: 18px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card-bg);
  border: 1px solid #ececec;
  border-radius: var(--radius-sm);
  padding: 11px 14px;
}
.cookie-category label {
  flex: 1 1 auto;
  font-weight: 500;
  color: var(--mono-black);
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--brand-blue);
  width: 18px; height: 18px;
}
.cookie-category.essential label {
  color: #8f8f8f;
  font-style: italic;
}
.cookie-category.essential input { display: none; }

.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 23px;
}

@media (max-width: 500px) {
  .cookie-modal-content {
    padding: 24px 10px 18px 11px;
    font-size: 1rem;
  }
  .cookie-modal-close { top: 7px; right: 10px; }
}

/*--- UTILITY CLASSES for spacing & hide ---*/
.hide { display: none !important; }
.mt-2 { margin-top: 2px; }
.mt-8 { margin-top: 8px; } 
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
gap-24 { gap: 24px !important; }

/*--- SELECTORS FOR SPECIFIC PAGES ---*/
ul, ol {
  margin-bottom: 18px;
  padding-left: 24px;
  color: var(--mono-dark);
}
ul li, ol li {
  margin-bottom: 7px;
  font-size: 1rem;
  line-height: 1.65;
}
ul li::marker, ol li::marker {
  color: var(--brand-blue);
}

/*--- CORRECT MONOCHROME SOPHISTICATION TOUCHES ---*/
h1, h2, h3, h4, h5, h6 {
  color: #111;
  text-shadow: 0 1px 0 #fff, 0 2px 8px rgba(5,5,5,0.01);
}
main {
  background: #fafbfc;
  min-height: 60vh;
}

section {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 16px 0 rgba(20,20,20,0.045);
  margin-bottom: 48px;
  transition: box-shadow var(--transition);
}
section:hover {
  box-shadow: 0 6px 32px 0 rgba(36,45,80,0.09);
}

/*--- VISUAL HIERARCHY, SPACING, WHITE-SPACE ---*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
}
.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; }

/*--- END OF CSS ---*/