/* =================== 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, 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 {
  box-sizing: border-box;
  font-family: 'Roboto', Arial, sans-serif;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #FAFAFA;
  color: #2F2F34;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: #22282E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C5B358;
  outline: none;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  color: #22282E;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }
p, blockquote {
  font-size: 1rem;
  margin-bottom: 16px;
}
blockquote {
  border-left: 4px solid #D2C8F3;
  background: #F5F7FB;
  color: #796085;
  padding: 16px 24px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  border-radius: 12px;
  margin: 20px 0 20px 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}
/* =================== COLOR PALETTE =================== */
:root {
  --brand-primary: #22282E;
  --brand-secondary: #C5B358;
  --brand-accent: #EFEFEF;
  --brand-pastel0: #F5F7FB;
  --brand-pastel1: #FDF6EF;
  --brand-pastel2: #E2EAF3;
  --brand-pastel3: #D2C8F3;
  --brand-pastel4: #F9E8EC;
  --brand-pastel5: #FCF4ED;
  --brand-pastel6: #E8F6F0;
  --brand-pastel7: #E3E9F0;
  --text-dark: #22282E;
  --text-med: #44495A;
  --text-light: #9086B4;
  --white: #fff;
  --shadow-pastel: 0 2px 12px rgba(125,108,195,0.11);
}
/* =================== LAYOUT CONTAINERS =================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.features-grid, .features, .card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.features-grid {
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-pastel);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(125,108,195,0.18);
  transform: translateY(-4px) 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;
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
  .content-wrapper, .text-section {
    gap: 16px;
  }
  .features-grid, .features, .card-container, .card-grid, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
/* =========== HEADER & NAVIGATION =========== */
header {
  background: linear-gradient(90deg, var(--brand-pastel2) 0%, var(--brand-pastel6) 100%);
  box-shadow: 0 2px 24px rgba(125,108,195,0.07);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  gap: 20px;
}
header img {
  height: 56px;
  margin-right: 16px;
  filter: drop-shadow(0 1px 2px #D2C8F3);
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 1rem;
  padding: 10px 6px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-pastel3);
  color: var(--brand-secondary);
}
.cta-btn {
  background: linear-gradient(90deg, var(--brand-pastel4), var(--brand-secondary) 35%);
  color: var(--text-dark);
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 30px;
  margin-left: 20px;
  box-shadow: 0 2px 12px rgba(125,108,195,0.10);
  border: 2px solid var(--brand-secondary);
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s, transform 0.18s;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, var(--brand-secondary), var(--brand-pastel4) 85%);
  color: #fff;
  border-color: var(--brand-secondary);
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 6px 32px rgba(197,179,88,0.18);
  outline: none;
}
@media (max-width: 992px) {
  header .container {
    gap: 10px;
  }
  .main-nav {
    gap: 12px;
  }
  .cta-btn {
    margin-left: 7px;
    font-size: 0.98rem;
    padding: 11px 14px;
  }
}
@media (max-width:768px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: relative;
    z-index: 1122;
    font-size: 2rem;
    width: 44px;
    height: 44px;
    background: var(--brand-secondary);
    color: var(--brand-primary);
    border-radius: 50%;
    border: none;
    box-shadow: 0 1px 9px rgba(125,108,195,0.08);
    text-align: center;
    transition: box-shadow 0.16s, background 0.16s;
    line-height: 41px;
  }
}
.mobile-menu-toggle {
  display: none;
}
/* =========== MOBILE MENU =========== */
.mobile-menu {
  position: fixed;
  z-index: 1400;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(246,244,252,0.98);
  transform: translateX(-105%);
  transition: transform 0.35s cubic-bezier(0.68, -0.15, 0.27, 1.20);
  overflow-y: auto;
  box-shadow: 2px 0 28px rgba(125,108,195,0.13);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 16px;
  top: 18px;
  color: var(--brand-primary);
  background: none;
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  z-index: 9991;
  padding: 0 6px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 90px 32px 32px 32px;
  width: 100vw;
  max-width: 94vw;
}
.mobile-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.32rem;
  color: var(--brand-primary);
  font-weight: 600;
  padding: 13px 12px 13px 4px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  display: block;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-pastel3);
  color: var(--brand-secondary);
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}
/* =========== HERO SECTIONS =========== */
.hero-section {
  background: linear-gradient(120deg, var(--brand-pastel2), var(--brand-pastel4) 64%);
  border-radius: 0 0 38px 38px;
  border-top: 3.5px solid var(--brand-secondary);
  min-height: 220px;
  margin-bottom: 34px;
  box-shadow: var(--shadow-pastel);
}
.hero-section .container {
  display: flex;
  align-items: center;
  min-height: 222px;
}
.hero-section .content-wrapper {
  align-items: flex-start;
}
.hero-section h1 {
  font-size: 2.7rem;
  color: var(--brand-primary);
  font-family: 'Playfair Display', serif;
  letter-spacing: -2px;
  margin-bottom: 8px;
  text-shadow: 0 1px 8px rgba(213,200,243,0.075);
}
.hero-section .subheadline {
  color: var(--text-light);
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 1.18rem;
  margin-bottom: 12px;
}
@media (max-width: 768px){
  .hero-section {
    padding: 22px 0 12px 0;
    min-height: 120px;
    border-radius: 0 0 22px 22px;
  }
  .hero-section .container {
    min-height: 90px;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
}
/* =========== FEATURES & SERVICE BOXES =========== */
.feature-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 26px 22px 26px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-pastel);
  transition: box-shadow 0.15s, transform 0.15s;
  min-width: 240px;
  flex: 1 1 210px;
  margin-right: 0;
}
.feature-box img {
  width: 43px;
  height: 43px;
  margin-bottom: 4px;
}
.feature-box h3 {
  font-size: 1.18rem;
  margin-bottom: 5px;
  color: var(--brand-primary);
}
.feature-box p {
  font-size: 1rem;
  color: var(--text-med);
  margin: 0;
}
.feature-box:hover, .feature-box:focus {
  box-shadow: 0 8px 34px rgba(197,179,88,0.09), 0 2px 14px rgba(125,108,195,0.18);
  transform: translateY(-2px) scale(1.03);
}
@media (max-width: 768px) {
  .feature-box {
    min-width: 0;
    padding: 18px 10px 13px 14px;
  }
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 12px;
}
.service-list li {
  font-size: 1rem;
  color: var(--text-med);
}
.service-list strong {
  font-weight: 700;
  color: var(--brand-primary);
}
.service-price {
  background: var(--brand-pastel3);
  color: var(--brand-primary);
  font-size: 0.96rem;
  font-weight: 600;
  border-radius: 9px;
  padding: 3px 8px;
  margin-left: 10px;
  vertical-align: middle;
}
.pricing-highlights ul {
  margin-bottom: 0;
}
/* =========== TESTIMONIALS =========== */
.testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 8px 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px 18px 28px;
  background: var(--brand-pastel7);
  border-radius: 18px;
  box-shadow: var(--shadow-pastel);
  min-width: 240px;
  max-width: 385px;
  margin-bottom: 20px;
  color: var(--text-dark);
  transition: box-shadow 0.17s, transform 0.20s;
}
.testimonial-card p {
  color: var(--text-dark);
  font-size: 1.03rem;
  font-style: italic;
}
.testimonial-card span {
  font-family: 'Roboto', sans-serif;
  color: var(--text-med);
  font-size: 0.98rem;
  font-weight: 500;
}
.testimonial-card .star-rating {
  font-size: 1.3rem;
  color: #FAE26B;
  letter-spacing: 2px;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 32px rgba(197,179,88,0.13), 0 2px 14px rgba(125,108,195,0.17);
  transform: translateY(-3px) scale(1.025);
}
@media (max-width: 768px) {
  .testimonial-carousel {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    min-width: 0;
    padding: 18px 10px 12px 14px;
    max-width: 100%;
  }
}
/* =========== CONTACT & ADDRESS BLOCKS =========== */
.contact-data {
  display: flex;
  flex-direction: row;
  gap: 36px;
  margin-bottom: 22px;
}
.address-block {
  background: var(--brand-pastel1);
  border-radius: 14px;
  padding: 20px 22px;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  color: var(--text-med);
  box-shadow: 0 2px 6px rgba(126,108,190,0.07);
  min-width: 220px;
}
.map-placeholder {
  background: var(--brand-pastel2);
  color: var(--brand-primary);
  border-radius: 18px;
  padding: 24px 18px;
  font-size: 1.07rem;
  font-weight: 400;
  margin: 18px 0;
  text-align: center;
  box-shadow: 0 2px 8px rgba(128,140,193,0.14);
}
@media (max-width: 768px) {
  .contact-data {
    flex-direction: column;
    gap: 13px;
  }
  .address-block {
    padding: 13px 10px;
  }
  .map-placeholder {
    padding: 12px 6px;
    font-size: 1rem;
  }
}
/* =========== FOOTER =========== */
footer {
  background: linear-gradient(90deg, var(--brand-pastel2), var(--brand-pastel1) 85%);
  border-top: 3.5px solid var(--brand-secondary);
  padding: 24px 0 12px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 4px;
}
.footer-nav a {
  color: var(--text-med);
  font-size: 1rem;
  transition: color 0.17s;
  border-radius: 6px;
  padding: 4px 6px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-secondary);
  background: var(--brand-pastel3);
}
footer p {
  color: #9086B4;
  font-size: 0.95rem;
  font-family: 'Roboto', sans-serif;
}
@media (max-width: 768px) {
  .footer-nav {
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.93rem;
  }
}
/* =========== COOKIE CONSENT BANNER =========== */
.cookie-banner {
  position: fixed;
  left: 0;right: 0;bottom: 0;
  z-index: 1700;
  background: var(--brand-pastel3);
  color: var(--brand-primary);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  box-shadow: 0 -2px 32px rgba(125,108,195,0.171);
  padding: 30px 18px 18px 18px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  transition: transform 0.33s cubic-bezier(0.42, 0, 0.58, 1), opacity 0.33s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-banner button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 32px;
  padding: 10px 18px;
  border: 2px solid var(--brand-secondary);
  background: var(--brand-secondary);
  color: #fff;
  font-weight: 600;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  margin-right: 3px;
  margin-bottom: 0;
}
.cookie-banner button.cookie-settings {
  background: #fff;
  color: var(--brand-primary);
  border: 2px solid var(--brand-secondary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--brand-primary);
  color: #fff;
  border: 2px solid var(--brand-primary);
  outline: none;
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: var(--brand-pastel2);
  color: var(--brand-secondary);
  border: 2px solid var(--brand-secondary);
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    align-items: stretch;
    padding: 18px 7px 10px 7px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-actions {
    gap: 11px;
  }
}
/* ---------- Cookie Preferences Modal ---------- */
.cookie-modal-backdrop {
  position: fixed;
  top: 0;left:0;right:0;bottom:0;
  background: rgba(150,140,200,0.28);
  z-index: 1800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
}
.cookie-modal {
  background: var(--white);
  border-radius: 22px;
  padding: 35px 28px 30px 28px;
  max-width: 400px;
  width: 95vw;
  box-shadow: 0 5px 32px rgba(125,108,195,0.18);
  color: var(--brand-primary);
  animation: cookiePop 0.36s cubic-bezier(0.53,0,0.55,1);
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
}
@keyframes cookiePop {
  from { transform: translateY(60px) scale(0.96); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--brand-primary);
  font-size: 1.28rem;
  margin-bottom: 7px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 1.5rem;
  background: none;
  color: var(--brand-primary);
  border: none;
  cursor: pointer;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 600;
}
.cookie-category input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--brand-secondary);
}
.cookie-category.essential label {
  color: #888;
}
.cookie-modal .category-desc {
  color: #888;
  font-size: 0.95rem;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}
.cookie-modal .modal-actions button {
  padding: 10px 20px;
  border-radius: 24px;
}
@media (max-width: 400px) {
  .cookie-modal {
    padding: 15px 5px 10px 5px;
  }
}
/* =========== GENERAL SPACING AND ALIGNMENT =========== */
section, main > section, main > .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  section, main > section, main > .section {
    margin-bottom: 32px;
    padding: 19px 6px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* =========== MISC =========== */
::-webkit-input-placeholder { color: #9E9EBC; }
::-moz-placeholder { color: #9E9EBC; }
:-ms-input-placeholder { color: #9E9EBC; }
::placeholder { color: #9E9EBC; }
/* =========== ACCESSIBILITY =========== */
a:focus, button:focus, [tabindex]:focus {
  outline: 2px dashed var(--brand-secondary);
  outline-offset: 2px;
}
/* =========== SCROLLBAR THEMING =========== */
body {
  scrollbar-width: thin;
  scrollbar-color: #d9c9ec #f5f7fb;
}
body::-webkit-scrollbar {
  width: 9px;
  background: #f5f7fb;
}
body::-webkit-scrollbar-thumb {
  background: #d9c9ec;
  border-radius: 7px;
}
/* =========== ANIMATIONS =========== */
.cta-btn, .feature-box, .testimonial-card, .card {
  transition: box-shadow 0.22s, background 0.21s, color 0.17s, transform 0.14s;
}
/* =========== PRINT =========== */
@media print {
  header, footer, .cookie-banner, .mobile-menu {
    display: none !important;
  }
}
