/* =======================================================
   CSS RESET & BASE TYPOGRAPHY
   ======================================================= */
html,
body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, li,
figure, figcaption,
blockquote, dl, dd {
  margin: 0;
  padding: 0;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #23314B;
  background: #FAF9FB;
  line-height: 1.6;
  min-height: 100vh;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 1em;
}
li {
  margin-bottom: 8px;
}
a {
  color: #23314B;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #B6A3B9;
}

strong {
  font-weight: 700;
}
img {
  max-width: 100%;
  display: inline-block;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ===============
   BRAND VARIABLES
   =============== */
:root {
  --primary: #23314B;
  --secondary: #B6A3B9;
  --accent: #EDE6F2;
  --white: #fff;
  --black: #21222C;
  --soft-bg: #FAF9FB;
  --shadow-1: 0 2px 12px 0 rgba(35,49,75,0.08);
  --shadow-2: 0 4px 16px 0 rgba(35,49,75,0.13);
  --radius: 22px;
}

/* =======================================================
   TYPOGRAPHY (modern bold)
   ======================================================= */
h1, .h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.14;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
h2, .h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.22;
  margin-bottom: 16px;
}
h3, .h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.content-wrapper > h1,
.content-wrapper > h2,
.content-wrapper > h3 {
  margin-top: 0;
}
p, .content-wrapper > p, .text-section p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 18px;
  font-weight: 400;
}
.text-section h2, .text-section h3 {
  margin-top: 28px;
}

/* ========================
   HEADER & NAVIGATION
   ======================== */
header {
  background: var(--white);
  box-shadow: 0 1px 8px 0 rgba(35,49,75,0.045);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 80px;
  gap: 18px;
  position: relative;
}
header img {
  height: 46px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 40px;
  flex: 1;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 2px 0 2px 0;
  color: var(--primary);
  position: relative;
  transition: color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
}
.cta-btn {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--white);
  background: var(--primary);
  border: none;
  border-radius: var(--radius);
  padding: 14px 36px;
  margin-left: 16px;
  letter-spacing: 0.05em;
  transition: background 0.22s, box-shadow 0.22s, color 0.22s;
  box-shadow: var(--shadow-1);
  cursor: pointer;
  outline: none;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: var(--shadow-2);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.1rem;
  margin-left: 16px;
  cursor: pointer;
  display: none;
  transition: color 0.18s;
  line-height: 1;
  z-index: 102;
}
.mobile-menu-toggle:focus {
  color: var(--secondary);
}

/* ================================
    MOBILE MENU SIDEBAR OVERLAY
   ================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,49,75,0.97);
  z-index: 101;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(0.86,0,0.07,1);
  will-change: transform;
  box-shadow: 0 6px 32px 0 rgba(35,49,75,0.23);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.35rem;
  color: var(--accent);
  padding: 24px 24px 8px 16px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 104;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 26px;
  gap: 24px;
  margin-top: 18px;
}
.mobile-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  padding: 18px 6px;
  border-bottom: 1px solid rgba(237,230,242,0.07);
  border-radius: 10px;
  transition: background 0.16s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* =================
   HERO STYLE
   ================= */
section:first-of-type {
  background: var(--accent);
  border-bottom: 8px solid var(--secondary);
}
section:first-of-type .content-wrapper {
  align-items: flex-start;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0 auto;
  align-items: flex-start;
}

/* ============================
   FEATURE GRID (responsiv)
   ============================ */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 24px;
  width: 100%;
  justify-content: flex-start;
}
.features-grid > div {
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 260px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.18s;
  position: relative;
  z-index: 1;
}
.features-grid > div:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-3px) scale(1.025);
}
.features-grid img {
  width: 36px;
  margin-bottom: 14px;
}
.features-grid h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}
.features-grid p {
  font-size: 1rem;
}

/* ====================================
   TESTIMONIALS: modern bold cards
   ==================================== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: 28px 28px 20px 28px;
  min-width: 260px;
  max-width: 380px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.17s, transform 0.15s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-2px) scale(1.016);
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.03rem;
  font-style: italic;
}
.testimonial-card span {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--secondary);
  letter-spacing: 0.03em;
}

/* ========================
   MAIN CONTENT SECTIONS
   ======================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.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;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--shadow-1);
  border-radius: var(--radius);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.19s, transform 0.15s;
}
.card:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-3px) scale(1.018);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 26px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/**** spacing for next-steps, about-page, others ****/
.next-steps {
  margin-top: 34px;
  margin-bottom: 36px;
}
.next-steps ul {
  margin-top: 10px;
  margin-bottom: 0;
}
.next-steps h2 {
  margin-bottom: 8px;
}

.text-section {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

/**** Buttons, Links & Microinteractions ****/
button, .cta-btn {
  cursor: pointer;
  transition: background 0.19s, color 0.18s, box-shadow 0.175s;
}
button:active, .cta-btn:active {
  transform: scale(0.98);
}

/* ==================
   FORMS (optional)
   ================== */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--secondary);
  padding: 12px 16px;
  margin-bottom: 18px;
  width: 100%;
  background: var(--white);
  transition: border-color 0.17s, box-shadow 0.16s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 2px 8px 0 rgba(35,49,75,0.09);
}

/**** Footer ****/
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 56px 0 34px 0;
  margin-top: 44px;
  box-shadow: 0 -2px 12px 0 rgba(35,49,75,0.07);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo {
  flex: 0 0 110px;
}
.footer-logo img {
  height: 64px;
}
.footer-menu, .footer-main-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 150px;
}
.footer-menu a, .footer-main-menu a {
  color: var(--accent);
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(237,230,242,0.11);
  border-radius: 8px;
  padding: 4px 0;
  transition: color 0.12s, background 0.14s;
}
.footer-menu a:hover, .footer-main-menu a:hover,
.footer-menu a:focus, .footer-main-menu a:focus {
  background: var(--accent);
  color: var(--primary);
}
.footer-contact {
  font-size: 1rem;
  color: var(--accent);
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  max-width: 230px;
  padding-top: 8px;
  opacity: .98;
}
.footer-contact strong {
  font-weight: bold;
  color: var(--secondary);
}

/* =====================================
* COOKIE CONSENT BANNER & MODAL
======================================= */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 500;
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 -3px 18px rgba(35,49,75,0.18);
  padding: 24px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  animation: fadeInBtt 0.5s;
}
@keyframes fadeInBtt {
  from { transform: translateY(60px); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-consent-banner p {
  color: var(--accent);
  font-size: 1.08em;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 0;
}
.cookie-buttons {
  display: flex;
  gap: 18px;
  margin-bottom: 0;
}
.cookie-accept, .cookie-reject, .cookie-settings {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  padding: 10px 22px;
  margin: 0;
  font-size: 1em;
  cursor: pointer;
  background: var(--accent);
  color: var(--primary);
  transition: background 0.14s, color 0.18s, box-shadow 0.14s;
  box-shadow: 0 1px 5px rgba(35,49,75,0.13);
  text-transform: uppercase;
}
.cookie-accept:hover, .cookie-settings:hover {
  background: var(--secondary);
  color: var(--white);
}
.cookie-reject {
  background: var(--secondary);
  color: var(--white);
}
.cookie-reject:hover {
  background: var(--accent);
  color: var(--primary);
}

/**** Cookie Modal ****/
.cookie-modal {
  position: fixed;
  max-width: 420px;
  left: 50%;
  top: 50%;
  background: var(--white);
  color: var(--primary);
  transform: translate(-50%,-50%) scale(0.98);
  border-radius: 24px;
  z-index: 1001;
  padding: 36px 30px;
  box-shadow: 0 10px 40px 0 rgba(35,49,75,0.19);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeInModal 0.4s;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: translate(-50%, -60%) scale(0.92); }
  to   { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-category label {
  cursor: pointer;
  user-select: none;
  font-weight: 700;
}
.cookie-category input[type="checkbox"]:not(:disabled) {
  accent-color: var(--primary);
}
.cookie-category input:disabled {
  accent-color: var(--secondary);
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.cookie-modal-close {
  border: none;
  background: none;
  color: var(--primary);
  font-size: 1.7rem;
  position: absolute;
  top: 20px;
  right: 24px;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--secondary);
}

/* ========================
   RESPONSIVE DESIGN
   ======================== */
@media (max-width: 1040px) {
  .container { max-width: 95vw; }
  .features-grid { gap: 18px; }
}
@media (max-width: 840px) {
  .features-grid {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
  .features-grid > div {
    max-width: 100%;
    width: 100%;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 22px;
  }
  footer .container {
    flex-direction: column;
    gap: 26px;
  }
  .footer-contact { max-width: 100%; }
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.26rem; }
  .cta-btn { padding: 11px 24px; font-size: 1em; }
  .main-nav {
    display: none;
  }
  .cta-btn { margin-left: 0; }
  .mobile-menu-toggle {
    display: block;
  }
  
  .content-wrapper { gap: 13px; padding: 0 2px; }
  section, .section {
    padding: 32px 6px;
    margin-bottom: 48px;
  }
  .features-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .features-grid > div {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
    margin-top: 18px;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
    padding: 19px 13px 17px 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .card-container { gap: 18px; }
  .card-content { padding: 18px 10px; }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .footer-logo img { height: 44px; }
  .cookie-consent-banner {
    padding: 18px 7px 18px 7px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .cookie-modal {
    width: 95vw;
    max-width: 99vw;
    padding: 17px 10px;
  }
}

/**** UTILITIES ****/
.d-flex { display: flex !important; }
.flex-column { flex-direction: column !important; }
.align-center { align-items: center !important; }
.justify-between { justify-content: space-between !important; }
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }

/**** PRINT STYLES OMITTED ****/