/* =====================
   CSS 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, button {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font: inherit;
  vertical-align: baseline;
}
html {
  line-height: 1.4;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  color: #191919;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #212121;
  background: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #21416B;
  outline-offset: 2px;
}
ul, ol {
  list-style: none;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 14px 10px;
}
th {
  background: #1b1b1b;
  color: #fafafa;
  font-weight: 600;
}
tr:nth-child(even) td {
  background: #f1f1f1;
}
tr:nth-child(odd) td {
  background: #fff;
}

/* ====================
   TYPOGRAPHY
   ==================== */
:root {
  --color-bg: #fff;
  --color-fg: #191919;
  --color-primary: #21416B;
  --color-secondary: #EDEDED;
  --color-accent: #F4B740;
  --color-gray: #737373;
  --color-dark: #000;
  --color-light: #fafafa;
  --radius: 13px;
  --shadow: 0 4px 24px rgba(30,30,30,0.09);
}
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: #111;
  line-height: 1.15;
  margin-bottom: 16px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.1rem;
  font-weight: 600;
  color: #1b1b1b;
  letter-spacing: -.5px;
  margin-bottom: 12px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #212121;
  margin-bottom: 8px;
}
p, li, span, strong {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #212121;
  letter-spacing: 0.01em;
}
p {
  margin-bottom: 12px;
}
strong {
  font-weight: 600;
}
ul li, ol li {
  margin-bottom: 7px;
}
.text-section ul {
  padding-left: 18px;
}
.text-section li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 8px;
}
.text-section li::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #737373;
}

/* ====================
   CONTAINER, SPACING, LAYOUT PATTERNS
   ==================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
}
.text-section {
  align-items: flex-start;
  max-width: 700px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(20,20,20,0.13);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.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: 20px;
  padding: 20px;
  background: #fafafa;
  box-shadow: 0 2px 16px rgba(80,80,80,0.065);
  border-radius: var(--radius);
  margin-bottom: 20px;
  border-left: 4px solid var(--color-primary);
  max-width: 680px;
}
.testimonial-card p {
  color: #191919;
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.99rem;
  color: #666;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0 6px 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 270px;
  min-width: 225px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(30,30,30,0.08);
  padding: 24px 18px;
  margin-bottom: 16px;
  transition: box-shadow 0.2s, transform 0.18s;
  border: 1px solid #ededed;
}
.feature-item img {
  height: 42px;
  width: 42px;
  object-fit: contain;
  filter: grayscale(1) contrast(0.93);
}
.feature-item h3 {
  font-size: 1.18rem;
  font-weight: 700;
}
.feature-item p {
  font-size: 1rem;
  color: #323232;
}
.feature-item:hover {
  box-shadow: 0 6px 28px rgba(32,32,32,0.12);
  transform: translateY(-4px) scale(1.02);
}

.usps ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 18px;
}
.usps li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 1rem;
  background: #ededed;
  padding: 7px 16px;
  border-radius: 12px;
  color: #21416B;
}
.usps li img {
  width: 24px;
  height: 24px;
  filter: grayscale(1) brightness(0.6);
}

.team-quotes {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 19px 0;
}
.team-quotes div {
  font-size: 1rem;
  color: #343434;
  background: #f5f5f5;
  padding: 12px 18px;
  border-radius: 10px;
  border-left: 4px solid #21416B;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-list strong {
  display: block;
  margin-bottom: 3px;
  color: #1b1b1b;
}
.faq-list p {
  color: #313131;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: rgba(247,247,247,0.97);
  color: #212121;
  box-shadow: 0 -1px 20px rgba(22,22,22,0.07);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px 20px 18px 20px;
  gap: 16px;
  font-size: 1rem;
  border-top: 1px solid #e2e2e2;
  animation: slideupfadein 400ms cubic-bezier(.4,.8,.32,1) 1;
}
@keyframes slideupfadein {
  from {
    transform: translateY(65px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 10px;
  padding: 11px 26px;
  font-size: 1rem;
  font-weight: 600;
  background: #ededed;
  color: #1b1b1b;
  border: 1px solid #ddd;
  transition: background 0.18s, color 0.16s, border 0.16s;
}
.cookie-banner .cookie-accept-all {
  background: var(--color-primary);
  color: #fafafa;
  border: none;
}
.cookie-banner .cookie-accept-all:hover,
.cookie-banner .cookie-accept-all:focus {
  background: #191919;
  color: var(--color-accent);
}
.cookie-banner .cookie-settings {
  background: #fff;
  border: 1px solid #bdbdbd;
  color: #191919;
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: #ededed;
  color: #21416B;
  border-color: #21416B;
}
.cookie-banner .cookie-reject-all {
  background: #fafafa;
  border: 1px solid #bdbdbd;
  color: #525252;
}
.cookie-banner .cookie-reject-all:hover,
.cookie-banner .cookie-reject-all:focus {
  background: #ededed;
  color: #191919;
}

.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(40,41,50,0.38);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein 380ms cubic-bezier(.20,.9,.26,1) 1;
}
@keyframes fadein {
  from {opacity: 0;}
  to {opacity: 1;}
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 40px rgba(22,22,22,0.085);
  padding: 36px 30px 30px 30px;
  max-width: 355px;
  min-width: 240px;
  width: 92vw;
  color: #131313;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  font-size: 1rem;
}
.cookie-modal .cookie-modal-content h3 {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #f6f6f6;
  border-radius: 8px;
  padding: 12px 18px;
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-primary);
}
.cookie-modal .cookie-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 8px;
  right: 14px;
  background: none;
  color: #797979;
  border-radius: 50%;
  font-size: 1.5rem;
  border: none;
  line-height: 1;
  width: 2.2em;
  height: 2.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.cookie-modal .cookie-modal-close:hover {
  background: #ededed;
  color: #131313;
}

/* ====================
   HEADER & MAIN NAVIGATION
   ==================== */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(30,30,30,0.045);
  position: sticky;
  top: 0;
  z-index: 1001;
  width: 100%;
}
header .container {
  padding-top: 0;
  padding-bottom: 0;
}
header .content-wrapper {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 4px 0 4px 0;
  color: #191919;
  font-weight: 500;
  position: relative;
  transition: color 0.18s;
}
header nav a:hover,
header nav a:focus {
  color: #21416B;
}
header a img {
  height: 45px;
  margin-right: 18px;
}
.cta-primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.09rem;
  background: #191919;
  color: #fff;
  border-radius: 17px;
  padding: 13px 28px;
  transition: background 0.19s, color 0.19s, box-shadow 0.17s;
  box-shadow: 0 2px 10px rgba(30,30,30,0.05);
  border: none;
  margin-left: 11px;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: #21416B;
  color: var(--color-accent);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #191919;
  margin-left: 14px;
  z-index: 1202;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #ebebeb;
  color: #21416B;
}

/* ====================
   MOBILE MENU OVERLAY
   ==================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(245,245,245,0.98);
  z-index: 2003;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  transform: translateX(-105vw);
  transition: transform 0.32s cubic-bezier(.45,.88,.25,1);
  box-shadow: 0 12px 36px rgba(18,18,18,0.12);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu .mobile-menu-close {
  background: none;
  color: #191919;
  border: none;
  font-size: 2.2rem;
  position: absolute;
  top: 25px;
  right: 27px;
  z-index: 2004;
  cursor: pointer;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.12s;
}
.mobile-menu .mobile-menu-close:hover,
.mobile-menu .mobile-menu-close:focus {
  background: #ededed;
  color: #21416B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 75px;
  width: 100%;
  padding: 0 44px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.45rem;
  color: #212121;
  font-weight: 600;
  margin-bottom: 19px;
  padding: 7px 0;
  width: 100%;
  transition: color 0.19s, background 0.19s;
  border-radius: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: #21416B;
}

/* ====================
   FOOTER
   ==================== */
footer {
  background: #f6f6f6;
  color: #2b2b2b;
  padding: 36px 0 18px 0;
  border-top: 1px solid #ededed;
  margin-top: 40px;
}
footer .container {
  padding-top: 0;
  padding-bottom: 0;
}
footer .content-wrapper {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  flex-wrap: wrap;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  font-size: 1rem;
  color: #1c1c1c;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 1px;
}
footer nav a:hover, footer nav a:focus {
  color: #21416B;
}
.footer-contact {
  font-size: 1rem;
  color: #484848;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ====================
   GENERAL BUTTONS, LINKS & INTERACTION
   ==================== */
button, .button, .cta-primary {
  cursor: pointer;
  transition: background 0.19s, color 0.17s, border 0.18s, box-shadow 0.18s;
}
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ====================
   RESPONSIVE DESIGN
   ==================== */
@media (max-width: 1200px) {
  .container {
    max-width: 998px;
  }
}
@media (max-width: 998px) {
  .container {
    max-width: 100vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .features-grid {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .features-grid {
    gap: 13px;
  }
  .feature-item {
    min-width: 165px;
    padding: 18px 8px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 14px;
  }
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 2.0rem; }
  h2, .h2 { font-size: 1.4rem; }
  header .content-wrapper {
    gap: 12px;
    min-height: 62px;
  }
  header a img {
    height: 37px;
    margin-right: 10px;
  }
  header nav {
    display: none;
  }
  .cta-primary {
    font-size: 0.97rem;
    padding: 10px 22px;
    margin-left: 5px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .content-wrapper {
    gap: 18px;
  }
  .section {
    margin-bottom: 38px;
    padding: 26px 5px;
  }
  .feature-item {
    padding: 14px 6px;
    min-width: 86vw;
    width: 100%;
  }
  .features-grid {
    flex-direction: column;
    gap: 17px;
  }
  .testimonial-card {
    padding: 12px;
    font-size: 1rem;
  }
  .content-wrapper.text-section {
    max-width: 100vw;
  }
  .usps ul {
    flex-direction: column;
    gap: 9px;
  }
  .footer-contact {
    font-size: 0.98rem;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .cookie-modal .cookie-modal-content {
    max-width: 99vw;
    min-width: 0;
    padding: 18px 10px 14px 10px;
    font-size: 0.99rem;
  }
}
@media (max-width: 540px) {
  h1, .h1 { font-size: 1.4rem; }
  h2, .h2 { font-size: 1.1rem; }
  .cta-primary { font-size: 0.89rem; padding: 8px 14px; }
  .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .section {
    margin-bottom: 24px;
    padding: 14px 0px;
  }
  .testimonial-card {
    font-size: 0.94rem;
    padding: 8px 6px;
  }
  .team-quotes div {
    padding: 10px 6px;
    font-size: 0.95rem;
  }
  .cookie-banner {
    padding: 14px 4px 11px 4px;
    font-size: 0.96rem;
  }
}

/* TABLE STYLE for PRICING */
table {
  margin-top: 19px;
  margin-bottom: 34px;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(20,20,20,0.09);
  font-size: 1rem;
}
th, td {
  padding: 14px 16px;
  border-bottom: 1px solid #ededed;
}
th:last-child, td:last-child {
  text-align: right;
}
tr:last-child td {
  border-bottom: none;
}

/* Animations for subtle interactions */
.card, .feature-item, .testimonial-card {
  transition: box-shadow 0.19s, transform 0.19s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(20,20,20,0.12);
  transform: translateY(-2px) scale(1.01);
}
.cta-primary:active,
.mobile-nav a:active {
  transform: scale(0.96);
}

/* Utility: visually hidden (for accessibility) */
.visually-hidden {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

/* Utility: clear floats (if any) */
.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

/* Hide scrollbar in mobile menu overlay */
.mobile-menu::-webkit-scrollbar {
  display: none;
}
.mobile-menu {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Extra: hide mobile menu on desktop */
@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* =====================
   END
   ===================== */

