/* ==============================================================
   CSS RESET & BASICS
   ============================================================== */
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;
}
html {
  line-height: 1.5;
  background: #fff;
  color: #161718;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  background: #fff;
  color: #161718;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
table { border-collapse: collapse; border-spacing: 0; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { max-width: 100%; border: 0; }
:focus { outline: 2px solid #185A83; outline-offset: 2px; }

/* ==============================================================
   MONOCHROME SOPHISTICATED — THEME COLORS, TYPOGRAPHY
   ============================================================== */
:root {
  --brand-blue: #185A83;
  --brand-blue-dark: #133b59;
  --brand-blue-light: #317FAE;
  --brand-accent: #FFD726;
  --brand-muted: #C8CDD2;
  --gray-900: #161718;
  --gray-800: #222428;
  --gray-700: #33353b;
  --gray-600: #55565b;
  --gray-400: #A5A7AD;
  --gray-200: #EBEBED;
  --gray-100: #F6F7F9;
  --white: #fff;
  --black: #000;
  --shadow-card: 0 4px 24px rgba(20, 23, 28, 0.09);
  --radius-s: 8px;
  --radius-m: 14px;
}

body, input, textarea, select, button {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #161718;
  margin-bottom: 0.7em;
  line-height: 1.13;
}
h1 { font-size: 2.7rem; margin-bottom: 24px; }
h2 { font-size: 2.1rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 16px; }
h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; }
p, ul li, ol li {
  color: #222428;
  font-size: 1.06rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
strong { font-weight: 600; }
em, i { font-style: italic; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
  h4 { font-size: 1rem; }
}

/* ==============================================================
   LAYOUT WRAPPERS & SECTIONS
   ============================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}
@media (max-width: 768px) {
  .section {
    padding: 30px 6px;
    margin-bottom: 36px;
  }
  .container { padding: 0 8px; }
}

/* ==============================================================
   HEADER & NAVIGATION
   ============================================================== */
header {
  background: var(--white);
  border-bottom: 2px solid var(--gray-200);
  padding: 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  position: sticky;
  top: 0;
  z-index: 80;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 16px;
}
nav {
  display: flex;
  gap: 26px;
  align-items: center;
  z-index: 9;
}
nav a:not(.button-primary) {
  color: var(--gray-900);
  font-size: 1rem;
  font-weight: 500;
  padding: 1px 2px;
  border-radius: 4px;
  position: relative;
  transition: color 0.16s;
}
nav a:not(.button-primary):hover,
nav a:not(.button-primary):focus {
  color: var(--brand-blue);
  background: var(--gray-100);
}
.button-primary {
  background: var(--brand-blue);
  color: var(--white);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 11px 29px;
  border: none;
  border-radius: var(--radius-m);
  box-shadow: 0 2px 16px rgba(24,90,131,0.06);
  cursor: pointer;
  outline: none;
  letter-spacing: 0.03em;
  position: relative;
  transition: background 0.15s, color 0.15s, box-shadow 0.18s, transform 0.16s;
  margin-left: 9px;
  display: inline-block;
}
.button-primary:hover, .button-primary:focus {
  background: var(--brand-blue-dark);
  color: var(--brand-accent);
  box-shadow: 0 4px 20px rgba(24,90,131,0.11);
  transform: translateY(-2px) scale(1.025);
}

/* Hide mobile menu button for desktop */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--brand-blue);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  padding: 9px 15px;
  border-radius: 12px;
  transition: background 0.16s, color 0.16s;
  z-index: 1005;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--gray-100);
  color: var(--brand-blue-dark);
}

@media (max-width: 992px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ==============================================================
   MOBILE MENU
   ============================================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18,20,22,0.88);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.65,.05,.36,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 20px 0 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  cursor: pointer;
  padding: 7px 12px;
  border-radius: 8px;
  transition: background 0.15s;
  z-index: 1300;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-blue);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 25px;
  padding-left: 38px;
  z-index: 1200;
}
.mobile-nav a {
  color: var(--white);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  padding: 9px 3px;
  border-radius: 7px;
  font-weight: 600;
  transition: color 0.18s, background 0.22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-blue);
  color: var(--brand-accent);
}

/* ==============================================================
   SECTIONS & FLEXBOX LAYOUTS
   ============================================================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-card);
  padding: 26px 20px 24px 20px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.20s, transform 0.18s;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 40px rgba(20,23,28,0.12);
  transform: translateY(-6px) scale(1.03);
}
.feature-item img {
  height: 36px;
  width: 36px;
  margin-bottom: 7px;
}

@media (max-width: 900px) {
  .feature-grid {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 24px;
  }
  .feature-item {
    min-width: 0;
    width: 100%;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  padding: 30px 26px 24px 26px;
  min-width: 240px;
  flex: 1 1 240px;
  transition: box-shadow 0.19s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 40px rgba(32,36,41,0.17);
  transform: translateY(-4px) scale(1.025);
}

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

/* --- FAQ LIST --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.faq-item {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-s);
  padding: 24px 22px 18px 22px;
  transition: box-shadow 0.18s, border-color 0.17s;
}
.faq-item h2 {
  font-size: 1.18rem;
  color: var(--brand-blue);
  margin-bottom: 10px;
}
.faq-item:hover, .faq-item:focus-within {
  border-color: var(--brand-blue);
  box-shadow: 0 6px 20px rgba(24,90,131,0.10);
}

/* --- TESTIMONIALS --- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: var(--gray-100);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius-m);
  font-size: 1.09rem;
  box-shadow: 0 2px 10px rgba(20,23,28,0.10);
  border: 1px solid var(--gray-200);
  margin-bottom: 20px;
  min-width: 240px;
  flex: 1 1 200px;
  transition: box-shadow 0.17s, border-color 0.13s, transform 0.11s;
  color: var(--gray-900);
}
.testimonial-card p {
  font-style: italic;
  color: var(--gray-800);
  margin-bottom: 9px;
}
.testimonial-card span {
  color: var(--gray-700);
  font-size: 0.97rem;
  letter-spacing: 0.01em;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-color: var(--brand-blue);
  box-shadow: 0 8px 26px rgba(24,90,131,0.090);
  transform: scale(1.018);
}
.rating-summary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.13rem;
  margin-top: 11px;
  color: var(--gray-700);
}
@media (max-width: 768px) {
  .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    min-width: unset;
    width: 100%;
  }
}

/* --- CASE STUDIES & CLIENT LOGOS --- */
.case-study-snippet {
  background: var(--gray-100);
  border-radius: var(--radius-s);
  border: 1px solid var(--gray-200);
  padding: 20px 18px 18px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(20,23,28,0.08);
}
.client-logos {
  display: flex;
  gap: 30px;
  margin: 23px 0 14px 0;
  align-items: center;
}
.client-logos img {
  height: 46px; filter: grayscale(1) contrast(1.2);
  transition: filter 0.18s, transform 0.14s;
}
.client-logos img:hover {
  filter: grayscale(0.2) brightness(1.04);
  transform: scale(1.04);
}
@media (max-width: 768px) {
  .client-logos {
    gap: 18px;
    flex-wrap: wrap;
  }
}

/* --- PRICING TABLE --- */
.pricing-table {
  overflow-x: auto;
  margin-bottom: 24px;
}
.pricing-table table {
  width: 100%;
  min-width: 400px;
  background: var(--white);
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-card);
  border-collapse: collapse;  
}
.pricing-table th, .pricing-table td {
  padding: 17px 12px;
  font-size: 1.02rem;
  color: var(--gray-800);
}
.pricing-table th {
  background: var(--gray-100);
  color: var(--gray-900);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.pricing-table tbody tr {
  border-top: 1px solid var(--gray-200);
  background: var(--white);
  transition: background 0.18s;
}
.pricing-table tbody tr:hover {
  background: var(--gray-100);
}
@media (max-width: 525px) {
  .pricing-table table {
    min-width: 340px;
    font-size: 0.89rem;
  }
  .pricing-table th, .pricing-table td {
    padding: 10px 5px;
  }
}

/* ==============================================================
   FOOTER
   ============================================================== */
footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 52px 0 20px 0;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 46px;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid var(--gray-600);
  padding-bottom: 28px;
}
.footer-row > div {
  flex: 1 1 240px;
  min-width: 200px;
}
.footer-row img {
  height: 40px;
  margin-bottom: 11px;
  filter: grayscale(1) brightness(1.1);
}
.footer-row h4 {
  color: var(--brand-accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
footer ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
footer ul li {
  display: flex;
  align-items: flex-start;
  color: var(--gray-200);
  margin-bottom: 10px;
  font-size: 1rem;
  gap: 7px;
}
footer ul li img {
  height: 20px; width: 20px; filter: grayscale(.25) brightness(1.1);
  margin: 0 8px 0 0;
}
footer a {
  color: var(--gray-100);
  font-weight: 500;
  transition: color 0.15s;
}
footer a:hover, footer a:focus {
  color: var(--brand-accent);
}
.footer-bottom {
  margin-top: 21px;
  text-align: center;
  color: var(--gray-400);
  font-size: 0.98rem;
}
@media (max-width: 900px) {
  .footer-row {
    gap: 24px;
  }
}
@media (max-width: 670px) {
  .footer-row {
    flex-direction: column;
    gap: 28px;
  }
}

/* ==============================================================
   BUTTONS & INTERACTIVES (unified)
   ============================================================== */
button, .button-primary, .button-sec {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: var(--radius-m);
  font-size: 1rem; font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.17s, transform 0.17s;
}
.button-sec {
  background: var(--gray-900);
  color: var(--white);
  padding: 9px 32px;
  border-radius: 30px;
  margin-left: 7px;
}
.button-sec:hover, .button-sec:focus {
  background: var(--gray-600);
  color: var(--brand-accent);
}
.button-alt {
  background: transparent;
  color: var(--gray-900);
  border: 1.5px solid var(--gray-900);
  padding: 9px 19px;
  border-radius: 10px;
  margin-left: 7px;
  transition: background 0.15s, color 0.17s, border-color 0.13s;
}
.button-alt:hover, .button-alt:focus {
  background: var(--white);
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}

/* ==============================================================
   COOKIE CONSENT BANNER & MODAL
   ============================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--gray-900);
  color: var(--white);
  padding: 26px 22px 26px 26px;
  z-index: 2002;
  box-shadow: 0 -2px 24px rgba(22,23,24,0.13);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 1rem;
  animation: cookie-slidein 0.7s cubic-bezier(.4,.24,.19,.98);
}
@keyframes cookie-slidein {
  from { transform: translateY(120%); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  padding: 9px 24px;
  font-size: 1rem;
}
.cookie-banner .accept {
  background: var(--brand-blue);
  color: var(--white);
  font-weight: bold;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--brand-blue-dark);
  color: var(--brand-accent);
}
.cookie-banner .reject {
  background: var(--gray-700);
  color: var(--white);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--gray-800);
  color: var(--brand-accent);
}
.cookie-banner .settings {
  background: transparent;
  color: var(--brand-accent);
  border: 1.2px solid var(--gray-400);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--white);
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}
@media (max-width: 540px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    padding: 18px 8px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-actions{
    gap: 8px;
  }
}
/* --- Cookie Modal --- */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 2140;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(32,34,38,.92);
  transition: opacity 0.28s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal.closed {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: var(--white);
  color: var(--gray-900);
  min-width: 300px;
  max-width: 95vw;
  border-radius: var(--radius-m);
  box-shadow: 0 5px 44px rgba(16,22,28,0.25);
  padding: 34px 31px 27px 31px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1rem;
  position: relative;
  animation: cookie-modal-in 0.33s cubic-bezier(.44,.01,.3,.99);
}
@keyframes cookie-modal-in {
  from { transform: translateY(40px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-content h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.23rem;
  margin-bottom: 10px;
  color: var(--brand-blue);
}
.cookie-modal-content .cookie-category {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  align-items: center;
  margin-bottom: 7px;
}
.cookie-modal-content .cookie-toggle {
  accent-color: var(--brand-blue);
  margin-left: 6px;
}
.cookie-modal-content .modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 9px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  color: var(--brand-blue);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 10px;
  padding: 2px 10px;
}
.cookie-modal-close:hover,.cookie-modal-close:focus {
  background: var(--gray-200);
}
@media (max-width: 470px) {
  .cookie-modal-content {
    padding: 15px 7px 18px 11px;
    font-size: 0.97rem;
  }
}

/* ==============================================================
   WHITE SPACE & SPACING
   ============================================================== */
main {
  margin-top: 16px;
  margin-bottom: 34px;
}
section, .section {
  border-radius: var(--radius-m);
}
ul, ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
ul li, ol li {
  margin-bottom: 8px;
}

/* ==============================================================
   TYPOGRAPHIC & SMALL ELEMENTS
   ============================================================== */
ul strong, ol strong {
  color: var(--brand-blue);
}
.text-section em {
  color: var(--brand-blue);
  font-style: italic;
  font-weight: 500;
}
hr {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 40px 0 28px 0;
}
blockquote {
  border-left: 4px solid var(--brand-blue);
  padding-left: 16px;
  color: var(--gray-800);
  font-style: italic;
  margin: 14px 0 16px 0;
}

/* ==============================================================
   RESPONSIVE UTILITIES
   ============================================================== */
@media (max-width: 992px) {
  main {
    margin-top: 10px;
    margin-bottom: 26px;
  }
}
@media (max-width: 690px) {
  main {
    margin-top: 2px;
    margin-bottom: 12px;
  }
}

/* ==============================================================
   ACCESSIBILITY & HOVER EFFECTS
   ============================================================== */
a, button {
  transition: color 0.19s, background 0.18s, box-shadow 0.19s;
}
button:active, a:active {
  transform: scale(0.97);
}

/* ==============================================================
   SPECIALS: THANK-YOU PAGE & SMALL UTILS
   ============================================================== */
.thank-you-next-steps {
  background: var(--gray-100);
  border-radius: var(--radius-s);
  border: 1px solid var(--gray-200);
  padding: 18px 18px 15px 18px;
  margin-bottom: 19px;
}

/* ==============================================================
   END OF STYLE.CSS for ABAISSTOPP — MONOCHROME_SOPHISTICATED
   ============================================================== */
