/* =============================================================
   CSS RESET & BASE
   ============================================================= */
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 {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  min-height: 100vh;
  line-height: 1.5;
  background: #fff;
  color: #384B6E;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
  appearance: none;
}
a {
  color: #384B6E;
  text-decoration: none;
  transition: color 0.16s;
}
a:hover, a:focus {
  color: #90B7C8;
}
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 1.5em;
}
strong { font-weight: 700; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #384B6E;
  line-height: 1.15;
  font-weight: 700;
}
h1 { font-size: 2rem; margin-bottom: 24px; }
h2 { font-size: 1.5rem; margin-bottom: 20px; }
h3 { font-size: 1.125rem; margin-bottom: 16px; }
h4 { font-size: 1rem; margin-bottom: 12px; }
p, li, blockquote {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #384B6E;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  color: #384B6E;
  margin-bottom: 10px;
  margin-left: 0;
  padding-left: 18px;
  border-left: 3px solid #90B7C8;
  font-style: italic;
  background: none;
}
.subheadline {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.15rem;
  color: #61739c;
  margin-bottom: 26px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.category-tag {
  display: inline-block;
  background: #F7F3EF;
  color: #384B6E;
  border-radius: 6px;
  font-size: 0.85em;
  padding: 2px 12px;
  margin-left: 6px;
  margin-top: 2px;
  font-family: 'Lato', Arial, sans-serif;
}

/* ============ CONTAINER & LAYOUT FLEXBOX ============ */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features-grid,
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.feature {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 6px 0 rgba(56,75,110, 0.09);
  padding: 28px 24px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 322px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 20px;
}
.feature img {
  margin-bottom: 18px;
  width: 44px;
  height: 44px;
}
.feature h3 {
  font-size: 1.08rem;
  font-family: 'Playfair Display', Georgia, serif;
  margin-bottom: 8px;
  color: #384B6E;
  font-weight: 700;
}
.feature p {
  font-size: 1rem;
  color: #384B6E;
  margin-bottom: 8px;
}
.price {
  margin-top: 8px;
  color: #384B6E;
  font-family: 'Lato', Arial, sans-serif;
  background: #F7F3EF;
  padding: 2px 12px;
  border-radius: 6px;
  font-size: 0.98rem;
  font-weight: 500;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 4px 24px rgba(56,75,110,0.11);
  transform: translateY(-2px) scale(1.025);
}
/* More layout containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 6px 0 rgba(56,75,110,.07);
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* .testimonial-card handled in next section */

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(56,75,110, 0.03);
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 21;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.logo img {
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-size: 1.04rem;
  font-family: 'Lato', Arial, sans-serif;
  color: #384B6E;
  padding: 4px 7px;
  border-radius: 7px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F7F3EF;
  color: #90B7C8;
}
.main-nav .cta.primary {
  background: #384B6E;
  color: #fff;
  padding: 7px 24px;
  border-radius: 8px;
  font-weight: 600;
  margin-left: 12px;
  transition: background 0.2s, color 0.2s;
}
.main-nav .cta.primary:hover, .main-nav .cta.primary:focus {
  background: #90B7C8;
  color: #384B6E;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #384B6E;
  padding: 7px 9px;
  border-radius: 7px;
  transition: background 0.13s;
  cursor: pointer;
  z-index: 35;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F7F3EF;
}

/* =============== MOBILE MENU =============== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(56,75,110, 0.95);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.61, 1, 0.88, 1);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  margin-bottom: 24px;
  cursor: pointer;
  border-radius: 6px;
  padding: 6px 10px;
  transition: background 0.13s;
  z-index: 1220;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(255,255,255,0.09);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 14px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.22rem;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 500;
  padding: 12px 2px;
  border-radius: 7px;
  transition: background 0.17s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(255,255,255,0.13);
  color: #90B7C8;
}

/* =============== HERO SECTION =============== */
.hero {
  background: #F7F3EF;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-radius: 0 0 22px 22px;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.3rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: bold;
  color: #384B6E;
  margin-bottom: 18px;
}
.hero .cta.primary {
  margin-top: 10px;
}

/* =========== SECTION GENERICS ========== */
section {
  margin-bottom: 58px;
  padding: 36px 0 34px 0;
}
.container {
  padding-top: 0;
  padding-bottom: 0;
}
.content-wrapper > h2 {
  margin-top: 0;
}
.text-section ul, 
.benefits-features ul,
.steps ul,
.workflow-method ul,
.next-steps ul,
.about-gallery ul,
.our-philosophy ul {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 24px;
  color: #384B6E;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  line-height: 1.7;
}
.text-section ul li,
.benefits-features ul li,
.steps ul li,
.workflow-method ul li,
.next-steps ul li,
.about-gallery ul li,
.our-philosophy ul li {
  padding-bottom: 10px;
}
.text-section p,
.text-section strong,
.benefits-features ul,
.workflow-method ul {
  color: #384B6E;
  font-size: 1rem;
  margin-bottom: 16px;
}
.text-section a {
  color: #90B7C8;
  text-decoration: underline;
}

/* ============ CTA BUTTONS ============ */
.cta {
  display: inline-block;
  border-radius: 8px;
  padding: 10px 28px;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  background: none;
  text-align: center;
  cursor: pointer;
  font-weight: 500;
  line-height: 1.1;
  box-shadow: none;
  border: none;
  transition: background 0.18s, color 0.16s, box-shadow 0.18s, transform 0.15s;
}
.cta.primary {
  background: #384B6E;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 8px 0 rgba(56,75,110,0.07);
}
.cta.primary:hover, .cta.primary:focus {
  background: #90B7C8;
  color: #384B6E;
  box-shadow: 0 4px 24px rgba(56,75,110,0.14);
  transform: translateY(-2px) scale(1.03);
}
.cta.secondary {
  background: #F7F3EF;
  color: #384B6E;
  border: 1px solid #90B7C8;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #90B7C8;
  color: #fff;
  border-color: #384B6E;
}

/* ============ TESTIMONIALS ============ */
.testimonials, .about-testimonials, .testimonials-gallery {
  background: #F7F3EF;
  border-radius: 22px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 7px 0 rgba(56,75,110, 0.10);
  margin-bottom: 20px;
  flex-wrap: wrap;
  width: 100%;
  transition: box-shadow 0.14s, transform 0.13s;
}
.testimonial-card blockquote {
  color: #384B6E;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.04rem;
  letter-spacing: 0.01em;
  border-left: 3px solid #90B7C8;
  margin: 0;
  padding-left: 16px;
  line-height: 1.42;
  background: none;
}
.testimonial-card .customer {
  color: #384B6E;
  margin-left: 14px;
  font-style: normal;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  opacity: 0.8;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 22px rgba(56,75,110,0.15);
  transform: translateY(-1.5px) scale(1.01);
}

/* ========== FOOTER ============= */
footer {
  background: #fff;
  border-top: 1px solid #F7F3EF;
  position: relative;
  padding: 0 0 40px 0;
}
footer .container {
  padding-top: 36px;
  padding-bottom: 12px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin-top: 0;
}
.footer-logos, .footer-social {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.footer-logos img {
  width: 44px;
  height: auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  margin: 16px 0 0 0;
  align-items: center;
}
.footer-nav a {
  color: #384B6E;
  font-family: 'Lato', Arial, sans-serif;
  opacity: 0.8;
  font-size: 0.98rem;
  padding: 2px 2px;
  border-radius: 6px;
  transition: color 0.16s, background 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #90B7C8;
  opacity: 1;
  background: #F7F3EF;
}
.footer-contact, .address, .email, .opening-hours {
  font-size: 0.99rem;
  color: #384B6E;
  font-family: 'Lato', Arial, sans-serif;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F7F3EF;
  border-radius: 100%;
  width: 36px; height: 36px;
  margin-right: 6px;
  transition: background 0.16s, transform 0.14s;
}
.footer-social a:hover, .footer-social a:focus {
  background: #90B7C8;
  transform: scale(1.06) translateY(-2px);
}
.footer-social img {
  width: 18px; height: 18px;
}
.newsletter {
  background: #F7F3EF;
  border-radius: 10px;
  padding: 20px 18px;
  margin-top: 10px;
  max-width: 340px;
  box-shadow: 0 2px 14px rgba(56,75,110,0.05);
}
.newsletter h4 {
  font-size: 1.05rem;
  margin-bottom: 9px;
  font-weight: 700;
  color: #384B6E;
}
.newsletter p {
  font-size: 0.99rem;
  margin-bottom: 10px;
  color: #384B6E;
}

/* ============== BLOG STYLES =============== */
.summary-snippet p {
  font-size: 1rem;
  color: #384B6E;
  margin-top: 7px;
}

/* ========== MAP & CONTACT SEC ========== */
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  background: #F7F3EF;
  padding: 16px 18px;
  border-radius: 8px;
  font-size: 0.99rem;
}

/* ========== CONFIRMATION / THANK YOU ========== */
.confirmation-message {
  font-size: 1.18rem;
  font-family: 'Lato', Arial, sans-serif;
  color: #384B6E;
  margin-bottom: 22px;
  margin-top: 9px;
}

/* ================= COOKIE CONSENT BANNER ================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #384B6E;
  color: #fff;
  width: 100vw;
  z-index: 1600;
  padding: 22px 16px 18px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  box-shadow: 0 -2px 18px rgba(56,75,110, 0.09);
  gap: 18px;
  transition: transform 0.33s cubic-bezier(0.82,0,0.46,1);
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner-content {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 4px;
}
.cookie-btn {
  border: none;
  border-radius: 7px;
  font-size: 0.98rem;
  padding: 9px 20px;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.18s, color 0.16s, box-shadow 0.15s;
  cursor: pointer;
}
.cookie-btn.accept {
  background: #90B7C8;
  color: #384B6E;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #F7F3EF;
  color: #384B6E;
  box-shadow: 0 3px 16px rgba(247,243,239, .19);
}
.cookie-btn.reject {
  background: #F7F3EF;
  color: #384B6E;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #384B6E;
  color: #fff;
  box-shadow: 0 3px 16px rgba(56,75,110, .15);
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 1.3px solid #fff;
  padding: 9px 16px;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #90B7C8;
  color: #384B6E;
  border-color: #F7F3EF;
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(56,75,110, 0.33);
  z-index: 1700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeinModal 0.23s cubic-bezier(0.61, 1, 0.88, 1);
}
@keyframes fadeinModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #384B6E;
  border-radius: 19px;
  box-shadow: 0 10px 48px rgba(56,75,110,0.19);
  padding: 32px 34px;
  max-width: 440px;
  width: 92vw;
  z-index: 1710;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popinModal 0.29s cubic-bezier(0.61, 1, 0.88, 1);
}
@keyframes popinModal {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #384B6E;
  font-size: 1.5rem;
  border-radius: 5px;
  padding: 4px 9px;
  cursor: pointer;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.cookie-category {
  background: #F7F3EF;
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  color: #384B6E;
  font-weight: 500;
}
.cookie-switch {
  display: flex;
  align-items: center;
  gap: 7px;
}
.cookie-switch input[type="checkbox"] {
  width: 36px;
  height: 20px;
  appearance: none;
  background: #dbe5ee;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-switch input[type="checkbox"]:checked {
  background: #90B7C8;
}
.cookie-switch input[type="checkbox"]:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.cookie-switch .slider {
  position: absolute;
  left: 0; top: 0;
  width: 36px; height: 20px;
  pointer-events: none;
}
.cookie-switch input[type="checkbox"]:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  background: #fff;
  border-radius: 50%;
  width: 16px; height: 16px;
  box-shadow: 0 1px 4px rgba(56,75,110,0.09);
  transition: left 0.16s;
}
.cookie-switch input[type="checkbox"]:checked:before {
  left: 18px;
}

/* ============ RESPONSIVE & MEDIA QUERIES ============= */
@media (max-width: 1020px) {
  .features-grid {
    gap: 20px;
    justify-content: flex-start;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 15px;
  }
  .features-grid {
    gap: 18px;
  }
}
@media (max-width: 820px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  footer .content-wrapper {
    gap: 21px;
  }
}
@media (max-width: 760px) {
  header .container {
    height: 60px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-nav, .newsletter {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 680px) {
  .features-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature {
    min-width: 90vw;
    max-width: 98vw;
    width: 100%;
    align-items: flex-start;
    padding: 18px 14px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    padding: 12px 8px;
  }
  .section {
    padding: 22px 8px;
    margin-bottom: 34px;
  }
  .hero {
    padding-top: 34px;
    padding-bottom: 36px;
    border-radius: 0 0 13px 13px;
    margin-bottom: 34px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  .newsletter {
    padding: 14px 7px;
    font-size: 0.99rem;
  }
}
@media (max-width: 420px) {
  .feature {
    padding: 10px 5px;
  }
  .card {
    padding: 10px 6px;
  }
  .testimonial-card {
    padding: 6px 2px;
  }
  .footer-social a {
    width: 28px; height: 28px;
  }
}

/* =========== UTILITY CLASSES ========== */
.hide {
  display: none !important;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.flex-row {
  flex-direction: row;
}
.flex-column {
  flex-direction: column;
}
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.justify-center {
  justify-content: center;
}
.gap-24 { gap: 24px; }
.gap-16 { gap: 16px; }
.gap-8 { gap: 8px; }

/* =========== FOCUS STYLES ========== */
a, button, .cta, .cookie-btn {
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: outline-color 0.14s;
}
a:focus-visible, button:focus-visible, .cta:focus-visible, .cookie-btn:focus-visible {
  outline-color: #90B7C8;
}

/* =========== SCROLLBAR ========== */
body {
  scrollbar-width: thin;
  scrollbar-color: #90B7C8 #F7F3EF;
}
body::-webkit-scrollbar {
  width: 10px;
  background: #F7F3EF;
}
body::-webkit-scrollbar-thumb {
  background: #90B7C8;
  border-radius: 8px;
}

/* =========== ANIMATIONS ============ */
.fade-in {
  opacity: 0;
  animation: fadeinMain 0.7s cubic-bezier(0.61, 1, 0.88, 1) forwards;
}
@keyframes fadeinMain {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Playfair Display && Lato font import (web safe fallback in CSS) */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;500;700&family=Playfair+Display:wght@700&display=swap');
