/* CRISP SCRUBBER - MINIMALIST CSS STYLESHEET */
/* ================== CSS RESET ================== */
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;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #fff;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #2B3A41;
  background: #fff;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.02em;
}

/* ================== TYPOGRAPHY ================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #2B3A41;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
.subtitle {
  color: #555;
  font-size: 1.125rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  margin-bottom: 24px;
}
p, li, blockquote {
  font-size: 1rem;
  color: #2B3A41;
}
strong {
  font-weight: 700;
}

/* ================== LAYOUT ================== */
.container {
  width: 100%;
  max-width: 1168px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.section:last-child {
  margin-bottom: 0;
}

/* HERO */
.hero {
  background: #fafbfc;
  border-radius: 16px;
  margin-bottom: 48px;
  padding: 60px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  text-align: left;
}

/* FEATURES LAYOUT */
.features .content-wrapper {
  gap: 28px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 #0001;
  padding: 24px 20px 18px 20px;
  flex: 1 1 220px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow .25s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 28px 0 #2B3A4120;
}
.feature-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
}
.price {
  font-size: 1.05rem;
  font-weight: 600;
  color: #F9B233;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.usp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}
.usp-badges span {
  background: #f7f7f7;
  color: #2B3A41;
  font-size: 0.96rem;
  border-radius: 20px;
  padding: 5px 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* TEXT SECTIONS */
.text-section {
  margin-bottom: 32px;
}
.text-section:last-child {
  margin-bottom: 0;
}

/* SERVICES (LIST) */
.services ul,
.features ul,
.legal ul,
.legal ol {
  margin-bottom: 26px;
  padding-left: 0;
}
.services ul li,
.features ul li,
.legal ul li,
.legal ol li {
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
  padding-left: 0;
}
.legal ol {
  list-style: decimal inside;
}
.legal ul {
  list-style: disc inside;
}

/* ================== CTA BUTTONS ================== */
.cta {
  font-family: 'Montserrat', Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F9B233;
  color: #2B3A41;
  border: none;
  border-radius: 7px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 1rem;
  min-width: 140px;
  margin-top: 4px;
  margin-right: 12px;
  cursor: pointer;
  box-shadow: 0 2px 8px #2b3a410d;
  transition: background 0.18s, color 0.2s, box-shadow 0.24s, transform 0.14s;
}
.cta.primary {
  background: #F9B233;
  color: #2B3A41;
}
.cta:hover,
.cta:focus {
  background: #2B3A41;
  color: #fff;
  box-shadow: 0 3px 16px #2B3A4140;
  outline: none;
  transform: translateY(-2px) scale(1.03);
}

/* ================== HEADER & NAV ================== */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ececec;
  box-shadow: 0 2px 18px 0 #00000709;
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
header img {
  height: 38px;
  width: auto;
  display: block;
  margin-right: 26px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2B3A41;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 9px 11px 9px 11px;
  border-radius: 5px;
  transition: background 0.18s, color 0.16s;
  position: relative;
}
.main-nav a.active, .main-nav a:focus, .main-nav a:hover {
  background: #f6f6f6;
  color: #F9B233;
  text-decoration: none;
}

/* Burger button */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #2B3A41;
  border: 1.5px solid #DADADA;
  border-radius: 7px;
  padding: 8px 16px;
  font-size: 1.7rem;
  cursor: pointer;
  align-items: center;
  transition: border 0.16s, background 0.16s, box-shadow 0.18s, color .15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  border-color: #F9B233;
  background: #fafbfc;
  color: #F9B233;
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 320px;
  max-width: 96vw;
  background: #fff;
  box-shadow: -16px 0 32px #2B3A4140;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.54,.19,.24,1.01);
  padding: 32px 28px 24px 34px;
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: #fff;
  color: #2B3A41;
  border: 1.5px solid #DADADA;
  border-radius: 7px;
  padding: 6px 16px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  align-self: flex-end;
  cursor: pointer;
  transition: border 0.17s, color .16s, background .11s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  border-color: #F9B233;
  color: #F9B233;
  background: #fafbfc;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 17px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 500;
  color: #2B3A41;
  border-radius: 5px;
  padding: 12px 6px 12px 5px;
  transition: background 0.16s, color 0.2s;
  width: 100%;
  display: block;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F9B23322;
  color: #F9B233;
}

/* ========== RESPONSIVE NAV ========== */
@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .cta.primary {
    display: none;
  }
}
@media (max-width: 560px) {
  header .container {
    padding-left: 8px;
    padding-right: 8px;
    min-height: 64px;
  }
}

/* ================== CONTENT & FLEX LAYOUTS ================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1.5px 8px #2B3A410c;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 22px 24px;
  gap: 14px;
  transition: box-shadow .23s, transform .17s;
}
.card:hover {
  box-shadow: 0 4px 28px #2B3A4130;
  transform: translateY(-2px) scale(1.01);
}
.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;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 24px #2B3A4122;
  padding: 20px;
  margin-bottom: 20px;
  margin-top: 0px;
  max-width: 680px;
  transition: box-shadow .22s, transform .16s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 38px #2B3A4140;
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card blockquote {
  font-size: 1.06rem;
  color: #2B3A41;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.65;
  letter-spacing: 0.02em;
}
.testimonial-author {
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #555;
  font-weight: 500;
  margin-left: 2px;
}

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

/* CTA Banner Section */
.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fafbfc;
  border-radius: 13px;
  box-shadow: 0 2px 18px #2B3A410C;
  padding: 44px 10px 48px 10px;
  margin-bottom: 40px;
}

.cta .cta.primary {
  margin-top: 18px;
}

/* Legal/Info Sections */
.legal .content-wrapper {
  gap: 18px;
}

/* Confirmation page */
.confirmation .content-wrapper {
  text-align: center;
  align-items: center;
  gap: 20px;
}

/* ================== FOOTER ================== */
footer {
  border-top: 1px solid #ececec;
  background: #fff;
  padding: 32px 0 18px 0;
  margin-top: 48px;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 0.99rem;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #888;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background .15s, color .18s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #2B3A41;
  background: #F9B23318;
}
footer .text-section {
  text-align: center;
  color: #aaa;
  font-size: 0.98rem;
  margin: 0;
}
footer .text-section span {
  letter-spacing: 0.08em;
}

/* ================== COOKIE CONSENT BANNER ================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -3px 34px #2B3A4146;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 22px 10px 22px 10px;
  z-index: 2000;
  font-size: 1rem;
  gap: 28px;
  transition: transform .34s cubic-bezier(.57,.11,.25,1.02);
}
.cookie-consent-banner.hide {
  transform: translateY(100%);
  pointer-events: none;
  opacity: 0;
}
.cookie-consent-message {
  color: #2B3A41;
  font-size: 1.02rem;
  margin-right: 18px;
  max-width: 420px;
}
.cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cookie-btn {
  background: #fff;
  color: #2B3A41;
  border: 1.6px solid #DADADA;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .98rem;
  font-weight: 600;
  padding: 8px 20px;
  cursor: pointer;
  box-shadow: 0 1.5px 6px #2B3A4111;
  transition: background 0.18s, color .2s, border .17s;
}
.cookie-btn.primary {
  background: #F9B233;
  color: #2B3A41;
  border: none;
}
.cookie-btn:focus,
.cookie-btn:hover {
  background: #FAF6EC;
  border-color: #F9B233;
  color: #F9B233;
}
.cookie-btn.primary:focus, .cookie-btn.primary:hover {
  background: #2B3A41;
  color: #fff;
  border: 1.6px solid #2B3A41;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2050;
  width: 100vw;
  height: 100vh;
  background: #2B3A4140;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .34s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 36px 30px 24px 30px;
  min-width: 310px;
  max-width: 97vw;
  min-height: 180px;
  box-shadow: 0 6px 42px #2B3A4148;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}
.cookie-modal-content h2,
.cookie-modal-content h3 {
  margin-bottom: 6px;
}
.cookie-modal-category {
  width: 100%;
  background: #f7f7f8;
  border-radius: 6px;
  padding: 12px 10px 7px 14px;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal-label {
  flex: 1;
  font-size: 1.01rem;
}
.cookie-switch {
  width: 38px;
  height: 22px;
  border-radius: 12px;
  background: #ececec;
  position: relative;
  transition: background 0.16s;
}
.cookie-switch input {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0; top: 0;
  margin: 0;
  z-index: 1;
}
.cookie-switch .slider {
  position: absolute;
  top: 2.5px;
  left: 3px;
  width: 16.5px;
  height: 16.5px;
  background: #DADADA;
  border-radius: 50%;
  transition: left 0.2s, background .18s;
}
.cookie-switch input:checked ~ .slider {
  left: 18px;
  background: #F9B233;
}
.cookie-switch input:checked ~ .slider-label {
  background: #F9B23322;
}
.cookie-modal-actions {
  margin-top: 7px;
  display: flex;
  gap: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 16px;
  font-size: 1.35rem;
  background: none;
  color: #aaa;
  border: none;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #2B3A41;
}

/* ================== MEDIA QUERIES ================== */
@media (max-width: 990px) {
  .container {
    padding: 0 11px;
  }
  .feature-grid > div {
    min-width: 180px;
    padding: 20px 10px 15px 13px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .section {
    margin-bottom: 36px;
    padding: 28px 8px;
  }
  .hero {
    padding: 36px 0;
    border-radius: 10px;
  }
  .feature-grid {
    gap: 14px;
  }
  .usp-badges {
    gap: 8px;
    margin-top: 8px;
  }
  .feature-grid > div {
    min-width: 150px;
    padding: 15px 8px 11px 8px;
  }
  .testimonial-card {
    padding: 14px 8px 14px 14px;
    max-width: 98vw;
  }
  .content-wrapper {
    gap: 14px;
  }
  .cta {
    padding: 32px 4px 34px 4px;
    margin-bottom: 17px;
  }
}
@media (max-width: 658px) {
  h1 {
    font-size: 1.55rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  .footer-nav {
    font-size: 0.95rem;
    gap: 8px;
  }
  .cookie-consent-message {
    max-width: 96vw;
    font-size: .98rem;
  }
}
@media (max-width: 530px) {
  .testimonial-card {
    padding: 10px 3px 10px 5px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 5px 14px 6px;
    font-size: .98rem;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 3.5vw;
  }
  .section {
    padding: 15px 2vw;
  }
}

/* ========== FLEX LAYOUT ADJUSTMENTS for MOBILE ========== */
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid, .card-container,
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }

  .text-image-section {
    align-items: stretch;
  }
}

/* ================== MISCELLANEOUS ================== */
::-webkit-scrollbar {
  width: 8px;
  background: #ececec;
}
::-webkit-scrollbar-thumb {
  background: #DADADA;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #bbb;
}

::selection {
  background: #F9B23333;
}

/* ================== PRINT ================== */
@media print {
  header, .main-nav, .mobile-menu, .footer-nav, .cta, .cookie-consent-banner, .cookie-modal {
    display: none!important;
  }
}
