/* === CSS RESET & NORMALIZATION === */
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  min-height: 100vh;
  background: #FFF7FA;
  color: #3a2e39;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}
ul, ol {
  list-style: none;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}

/* === BRAND TYPEFACE === */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Lato:wght@400;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', Arial, sans-serif;
  color: #3A2E39;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; font-weight: 600; }
h4, h5, h6 { font-size: 1rem; }
p { margin-bottom: 16px; font-size: 1.1rem; font-family: 'Lato', Arial, sans-serif; }
strong { font-weight: 700; }
em { font-style: italic; }

/* === BASE CONTAINER === */
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* === HEADER & NAVIGATION === */
header {
  background: #FFF7FA;
  box-shadow: 0 2px 10px 0 rgba(232,180,188,0.10);
  position: sticky;
  top: 0;
  z-index: 101;
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 14px;
}
.logo img {
  height: 50px;
  width: auto;
  mix-blend-mode: multiply;
}
nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
nav a {
  font-family: 'Quicksand', Arial, sans-serif;
  font-weight: 600;
  color: #3a2e39;
  font-size: 1.05rem;
  border-radius: 20px;
  padding: 6px 14px;
  transition: background 0.2s, color 0.2s;
}
nav a:hover, nav a:focus {
  background: #e8b4bc44;
  color: #b07a97;
  outline: none;
}
.btn-primary {
  background: #E8B4BC;
  color: #3A2E39;
  font-family: 'Quicksand', Arial, sans-serif;
  padding: 10px 30px;
  border-radius: 24px;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: .03em;
  box-shadow: 0 2px 16px 0 rgba(232,180,188,0.20);
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #f6efe7;
  color: #E8B4BC;
  box-shadow: 0 4px 24px 0 rgba(232,180,188,0.32);
  outline: none;
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 202;
  width: 48px;
  height: 48px;
  background: #E8B4BC;
  border-radius: 50%;
  font-size: 2rem;
  color: #3A2E39;
  border: none;
  box-shadow: 0 2px 8px rgba(230,175,188,0.10);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #F6EFE7;
  color: #E8B4BC;
  outline: 2px solid #E8B4BC;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(232,180,188,0.85);
  z-index: 220;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.52,.13,.23,.98);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 30px 28px 0 0;
  background: #fff;
  color: #E8B4BC;
  width: 48px;
  height: 48px;
  font-size: 2.5rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(232,180,188,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E8B4BC;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 24px;
  margin: 48px 0 0 36px;
}
.mobile-nav a {
  background: #fff7fa;
  color: #3A2E39;
  font-size: 1.18rem;
  border-radius: 24px;
  padding: 14px 32px;
  margin-bottom: 0px;
  box-shadow: 0 2px 12px rgba(232,180,188,0.12);
  transition: background 0.2s, color 0.2s;
  min-width: 230px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E8B4BC;
  color: #fff;
  outline: none;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(120deg, #f6efe7 62%, #e8b4bc 100%);
  min-height: 340px;
  padding: 52px 0 40px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 255px;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 20px;
}
.hero h1 {
  color: #3A2E39;
  font-size: 2.3rem;
  margin-bottom: 8px;
}
.hero p {
  max-width: 600px;
  color: #5E4A57;
  font-size: 1.22rem;
  margin: 0 auto 12px auto;
}

/* ===== SECTIONS & SPACING ===== */
main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.section {
  margin-bottom: 60px!important;
  padding: 40px 20px!important;
}

/* ==== CARDS, FLEX LAYOUTS, AND GRIDS (using flexbox only) ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff7fa;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(232,180,188,0.14);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(232,180,188,0.20);
  transform: translateY(-2px) scale(1.025);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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 ITEMS ==== */
.features ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}
.features ul li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #fffefb;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(232,180,188,0.09);
  padding: 18px 22px;
  font-size: 1.06rem;
  min-width: 240px;
  max-width: 320px;
  font-family: 'Lato', Arial, sans-serif;
}
.features ul li img {
  width: 36px; height: 36px;
  object-fit: contain;
  margin-right: 10px;
}

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

/* ==== ABOUT, TEAM, VALUES ==== */
.about, .team, .values {
  background: #f6efe7;
  border-radius: 30px;
  box-shadow: 0 8px 32px 0 rgba(232,180,188,0.11);
}

/* ==== SERVICE / CATALOG CARDS ==== */
.services ul, .catalog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  align-items: stretch;
  justify-content: space-between;
}
.services ul li, .catalog-grid > div {
  display: flex;
  flex-direction: column;
  flex: 1 1 240px;
  max-width: 340px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(232,180,188,0.06);
  padding: 30px 22px;
  gap: 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.16s;
}
.services ul li:hover, .catalog-grid > div:hover {
  box-shadow: 0 6px 22px 0 rgba(232,180,188,0.18);
  transform: translateY(-2px) scale(1.025);
}
.services ul li img {
  width: 44px; height: 44px;
  margin-bottom: 8px;
}

/* ==== TABLES (PRICING, COMPARISONS) ==== */
table {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(232,180,188,0.09);
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 18px;
  font-family: 'Lato', Arial, sans-serif;
  overflow: hidden;
}
thead th {
  background: #E8B4BC;
  color: #3A2E39;
  font-weight: 700;
  padding: 16px 14px;
  font-size: 1.12rem;
}
td, th {
  padding: 14px 12px;
  text-align: left;
  border: none;
}
tbody tr {
  border-bottom: 1px solid #f6efe7;
}
tbody tr:last-child {
  border-bottom: none;
}
tbody td {
  background: #FFF7FA;
  font-size: 1rem;
}

/* ==== CTA ==== */
.cta {
  background: linear-gradient(115deg, #f6efe7 60%, #e8b4bc 100%);
  border-radius: 24px;
  box-shadow: 0 2px 22px 0 rgba(232,180,188,0.13);
  text-align: center;
  padding-bottom: 48px;
  padding-top: 48px;
}
.cta .btn-primary { margin: 0 14px 0 0; }
.cta a:not(.btn-primary) {
  color: #b07a97;
  font-weight: 600;
  padding: 10px 8px;
}

/* ==== TESTIMONIALS & STORY CARDS ==== */
.testimonials {
  background: #f6efe7;
  border-radius: 26px;
  box-shadow: 0 2px 20px 0 rgba(232,180,188,0.14);
}
.testimonials h2 {
  text-align: center;
  margin-bottom: 14px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff7fa;
  padding: 20px 28px;
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(232,180,188,0.10);
  transition: box-shadow 0.19s;
}
.testimonial-card blockquote {
  color: #3A2E39;
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1.18rem;
  line-height: 1.7;
  margin-bottom: 10px;
  text-align: center;
  quotes: none;
}
.testimonial-card p {
  font-size: 0.98rem;
  color: #957175;
  margin-bottom: 0;
  font-family: 'Lato', Arial, sans-serif;
}

.stories .text-section p {
  background: #fff7fa;
  border-left: 5px solid #e8b4bc;
  border-radius: 10px;
  padding: 18px 22px 12px 18px;
  margin-bottom: 18px;
  color: #3A2E39;
}
.stories .text-section em {
  color: #b07a97;
}

/* ==== FOOTER ==== */
footer {
  background: #F6EFE7;
  color: #917381;
  border-top: 2px solid #E8B4BC33;
  padding: 36px 0 26px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 6px;
}
footer nav a {
  font-family: 'Quicksand', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #917381;
  padding: 5px 12px;
  border-radius: 16px;
  transition: background 0.2s, color 0.2s;
}
footer nav a:hover, footer nav a:focus {
  background: #fff;
  color: #3A2E39;
  outline: none;
}
footer p {
  color: #9f879b;
  font-size: 0.98rem;
  font-family: 'Lato', Arial, sans-serif;
}

/* ==== CONTACT & MAP ==== */
.contact .map-placeholder {
  background: #fff7fa;
  color: #ccb4bb;
  text-align: center;
  border-radius: 14px;
  padding: 32px;
  font-size: 1rem;
  margin: 20px 0;
  border: 1px dashed #e8b4bc;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.08rem;
}
.contact-details strong { color: #3A2E39; }
.contact-details a {
  color: #b07a97;
  word-break: break-all;
  text-decoration: underline;
  transition: color 0.2s;
}
.contact-details a:hover, .contact-details a:focus {
  color: #E8B4BC;
}

/* === POLICY PAGES (Privacy, Cookie, Terms) === */
.policy {
  background: #fff7fa;
  border-radius: 26px;
  box-shadow: 0 2px 16px 0 rgba(232,180,188,0.09);
}
.policy h2 {
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.policy ul {
  margin-bottom: 18px;
  padding-left: 1.5em;
  list-style: disc;
}
.policy ul li {
  margin-bottom: 6px;
}
.policy .text-section {
  font-size: 1.08rem;
}

/* ==== GENERIC TEXT SECTION LAYOUT ==== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section ul, .text-section ol {
  padding-left: 1.4em;
  margin-bottom: 16px;
  color: #725c64;
  font-size: 1.02em;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 7px;
}
.text-section a {
  color: #E8B4BC;
  font-weight: 600;
  transition: color 0.18s;
}
.text-section a:hover { color: #b07a97; text-decoration: underline; }

/* ==== THANK YOU PAGE ==== */
.thank-you .text-section {
  align-items: center;
  text-align: center;
  gap: 14px;
}

/* ==== MODALS & OVERLAYS ==== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(58,46,57,0.10);
  z-index: 330;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff7fa;
  padding: 36px 26px 20px 26px;
  border-radius: 24px;
  box-shadow: 0 4px 36px 0 rgba(232,180,188,0.21);
  width: 96vw;
  max-width: 420px;
  min-width: 240px;
  color: #3A2E39;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #fff;
  color: #b07a97;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s;
}
.cookie-modal .close-modal:hover { background: #e8b4bc; color: #fff; }
.cookie-modal h2 {
  font-size: 1.21rem;
  margin-bottom: 0;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}
.cookie-modal .switch {
  position: relative;
  width: 42px;
  height: 22px;
}
.cookie-modal .switch input { display: none; }
.cookie-modal .slider {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: #E8B4BC;
  border-radius: 16px;
  transition: background 0.18s;
}
.cookie-modal .switch input:checked + .slider {
  background: #b07a97;
}
.cookie-modal .slider:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(18px);
}
.cookie-modal .description {
  font-size: 0.98rem; margin-top: -6px;
  color: #7c6069;
}

/* ==== COOKIE BANNER (FIXED BOTTOM) ==== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff7fa;
  box-shadow: 0 -4px 24px 0 rgba(232,180,188,0.12);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  z-index: 300;
  border-top: 2px solid #e8b4bc33;
  min-height: 80px;
  animation: slideUp 0.34s ease;
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-message {
  font-size: 1.08rem;
  color: #645363;
  max-width: 420px;
  font-family: 'Lato', Arial, sans-serif;
  flex: 1 1 260px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Quicksand', Arial, sans-serif;
  border-radius: 22px;
  padding: 9px 24px;
  font-size: 1.01rem;
  color: #3a2e39;
  background: #e8b4bc;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-banner button.accept {
  background: #b07a97;
  color: #fff;
}
.cookie-banner button.accept:hover {
  background: #e8b4bc;
  color: #3A2E39;
}
.cookie-banner button.reject {
  background: #F6EFE7;
  color: #B07A97;
}
.cookie-banner button.reject:hover { background: #e8b4bc; color: #fff; }
.cookie-banner button.settings {
  background: #fff;
  color: #b07a97;
  border: 1px solid #e8b4bcaa;
}
.cookie-banner button.settings:hover { background: #e8b4bc22; color: #3A2E39; }


/* ==== ANIMATIONS & TRANSITIONS ==== */
section, .card, .testimonial-card, .content-grid > *, .catalog-grid > * {
  transition: box-shadow 0.2s, transform 0.18s, background 0.18s;
}
a, button, .btn-primary, nav a, .mobile-nav a {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}

/* ==== SCROLLBAR (subtle pastel style) ==== */
::-webkit-scrollbar { width: 9px; background: #f6efe7; }
::-webkit-scrollbar-thumb { background: #e8b4bc77; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #e8b4bc;
}

/* ==== RESPONSIVE DESIGN (MOBILE FIRST) ==== */
@media (max-width: 1200px) {
  .container { max-width: 960px; }
}
@media (max-width: 996px) {
  .container { max-width: 98vw; }
  nav { gap: 10px; }
  main > section { padding: 36px 8px; }
  .section { padding: 36px 8px!important; }
}
@media (max-width: 900px) {
  .container { max-width: 96vw; }
  table thead th, table td, table th {
    font-size: 0.99rem;
    padding: 10px 6px;
  }
  header .container { flex-direction: column; height: auto; gap: 8px; }
}
@media (max-width: 768px) {
  /* MOBILE NAV */
  nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .logo img {
    height: 42px;
  }
  .btn-primary {
    padding: 8px 22px;
    font-size: 0.98rem;
  }
  .hero {
    min-height: 210px;
    padding: 36px 0 28px 0;
  }
  .hero .content-wrapper {
    padding: 0 6px;
  }
  .features ul {
    gap: 14px;
  }
  .features ul li {
    min-width: 180px;
    padding: 12px 10px;
    font-size: 0.98rem;
  }
  .services ul, .catalog-grid {
    gap: 12px;
  }
  .services ul li, .catalog-grid > div {
    padding: 18px 10px;
    font-size: 0.97rem;
  }
  .testimonial-card { padding: 16px 9px; }
  .card-container, .content-grid {
    gap: 12px;
  }
  .section, main > section { padding: 22px 4px!important; margin-bottom: 30px!important; }
}
@media (max-width: 600px) {
  .container { max-width: 100vw; padding: 0 5px; }
  .hero h1 { font-size: 1.45rem; }
  .hero p { font-size: 1rem; }
  .card, .services ul li, .catalog-grid > div {
    padding: 14px 6px;
  }
  .testimonial-card {
    padding: 12px 4px;
    font-size: 0.97rem;
    gap: 12px;
  }
}
@media (max-width: 550px) {
  .features ul, .team .text-section ul, .content-grid, .catalog-grid {
    flex-direction: column;
    gap: 9px!important;
  }
  .services ul, .catalog-grid {
    flex-direction: column !important;
    gap: 10px!important;
  }
  .features ul li, .services ul li, .catalog-grid > div {
    max-width: 99vw;
    min-width: 160px;
  }
  .card, .card-container > .card { margin-bottom: 16px; }
}
@media (max-width: 540px) {
  .modal-overlay {
    align-items: flex-end;
  }
  .cookie-modal {
    max-width: 97vw;
    border-radius: 18px 18px 0 0;
    padding: 18px 8px 14px 14px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.19rem; }
  h2 { font-size: 1.05rem; }
  .cookie-banner { padding: 16px 4px 8px 4px; }
  .cookie-banner .cookie-message { font-size: 0.96rem; }
  .cookie-banner .cookie-actions button { padding: 8px 13px; font-size: 0.98rem; }
}
/* TEXT-IMAGE FLEX LAYOUT RESPONSIVENESS */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: center; gap: 16px; }
}

/* ==== ACCESSIBILITY ==== */
:focus-visible { outline: 2px solid #b07a97; }

/* ==== Z-INDEX LAYERING ==== */
.mobile-menu { z-index: 220; }
.modal-overlay, .cookie-modal { z-index: 330; }
.cookie-banner { z-index: 300; }
header { z-index: 101; }

/* === END OF CSS === */
