/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background-color: #FAFAFA;
  color: #23253B;
  line-height: 1.6;
  min-height: 100vh;
  font-size: 1rem;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #23253B;
  letter-spacing: -1px;
  font-weight: 900;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1rem; }
p, ul, ol {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #23253B;
  margin-bottom: 16px;
  font-weight: 400;
}

/* VISUAL UTILITY CLASSES */
.container {
  width: 100%;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.text-section {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(35,37,59,0.10);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  flex: 1 1 260px;
  transition: box-shadow 0.2s cubic-bezier(.43,.41,.22,1.02);
}
.card:hover {
  box-shadow: 0 8px 32px rgba(35,37,59,0.18);
}
.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: 15px;
  padding: 20px;
  margin-bottom: 20px;
  color: #23253B;
  box-shadow: 0 2px 20px rgba(35,37,59,0.10);
  min-width: 240px;
  max-width: 460px;
  transition: box-shadow 0.2s;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #23253B;
}
.testimonial-card span {
  font-size: 1rem;
  color: #B6736C;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
ul { margin-bottom: 16px; padding-left: 24px; }
ul li, ol li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.5;
}

/* HEADER & NAVIGATION */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0 2px 10px rgba(35,37,59,0.09);
  padding: 0 20px;
  height: 70px;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 40;
}
header a img {
  height: 44px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #23253B;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 9px;
  transition: background 0.16s, color 0.16s;
  position: relative;
}
header nav a.cta {
  background: #B6736C;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.5px;
  border-radius: 17px;
  padding: 10px 22px;
  box-shadow: 0 2px 10px rgba(182,115,108,0.13);
  margin-left: 8px;
  transition: background 0.2s, box-shadow 0.2s;
}
header nav a.cta:hover, .cta:focus {
  background: #23253B;
  color: #fff;
  box-shadow: 0 4px 24px rgba(35,37,59,0.13);
}
header nav a:hover, header nav a.active {
  color: #B6736C;
  background: #EAE5DF;
}
.mobile-menu-toggle {
  display: none;
  background: #B6736C;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  padding: 0 14px;
  border-radius: 12px;
  margin-left: 16px;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 44;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #23253B;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  background: rgba(35,37,59,0.87);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(.37,.99,.34,.98);
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0%);
  pointer-events: auto;
}
.mobile-menu-close {
  background: #fff;
  color: #B6736C;
  border: none;
  font-size: 2.35rem;
  padding: 8px 18px;
  margin: 20px 28px 0 0;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(35,37,59,0.13);
  align-self: flex-end;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #B6736C;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 48px 34px 0 0;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-decoration: none;
  letter-spacing: 0.5px;
  background: none;
  padding: 14px 8px 14px 16px;
  border-radius: 9px;
  transition: background 0.15s, color 0.15s;
  min-width: 120px;
}
.mobile-nav a:hover, .mobile-nav a.cta, .mobile-nav a.active {
  background: #EAE5DF;
  color: #B6736C;
}

/* HERO SECTION */
.hero {
  background: #EAE5DF;
  display: flex;
  min-height: 350px;
  align-items: center;
  justify-content: center;
  padding: 40px 0 60px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  color: #23253B;
  font-size: 2.5rem;
}
.hero p {
  color: #B6736C;
  font-size: 1.35rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.hero .cta {
  background: #B6736C;
  color: #fff;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  padding: 14px 32px;
  border: none;
  border-radius: 22px;
  text-decoration: none;
  margin-top: 10px;
  box-shadow: 0 4px 24px rgba(182,115,108,0.13);
  transition: background 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.hero .cta:hover, .hero .cta:focus {
  background: #23253B;
  box-shadow: 0 8px 32px rgba(35,37,59,0.13);
}

/* FEATURES & SERVICES CARDS */
.features, .services {
  background: #fff;
}
.features ul, .services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  justify-content: space-between;
}
.features ul li, .services ul li {
  background: #EAE5DF;
  border-radius: 18px;
  padding: 28px 22px 28px 22px;
  flex: 1 1 260px;
  min-width: 220px;
  box-shadow: 0 2px 10px rgba(35,37,59,0.09);
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.features ul li:hover, .services ul li:hover {
  box-shadow: 0 6px 24px rgba(35,37,59,0.13);
}
.features ul li img, .services ul li img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}
.features ul li h3, .services ul li h3 {
  color: #23253B;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 8px;
  font-weight: 800;
}
.features ul li p, .services ul li p {
  color: #23253B;
  font-weight: 600;
  font-size: 1rem;
}
.services ul li a {
  margin-top: 10px;
  color: #B6736C;
  font-weight: bold;
  text-decoration: underline;
  transition: color .15s;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.services ul li a:hover {
  color: #23253B;
}

/* USP SECTION (Why Us) */
.usp {
  background: #F8F6F2;
  border-top: 2px solid #EAE5DF;
  border-bottom: 2px solid #EAE5DF;
}
.usp ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 1.2em;
}
.usp ul li {
  font-weight: 700;
  color: #23253B;
  font-size: 1.1em;
  margin-bottom: 12px;
}

/* ABOUT & TEAM */
.about {
  background: #fff;
}
.team {
  background: #EAE5DF;
  padding: 40px 0 48px 0;
}
.team-member {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 10px rgba(35,37,59,0.09);
  padding: 26px 22px;
  margin-bottom: 20px;
  max-width: 420px;
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
}
.team-member h3 {
  color: #B6736C;
  font-size: 1.12rem;
}

.values {
  background: #fff;
}
.values ul {
  list-style: disc inside none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.values ul li {
  color: #23253B;
  font-weight: 700;
  font-size: 1.06rem;
}

/* PRICING TABLES */
.pricing table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  margin-bottom: 32px;
  font-size: 1rem;
}
.pricing th, .pricing td {
  padding: 16px 12px;
  text-align: left;
  border-bottom: 2px solid #EAE5DF;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.pricing thead {
  background: #B6736C;
}
.pricing th {
  background: #B6736C;
  color: #fff;
  font-size: 1.07rem;
  font-weight: 800;
}
.pricing tr:last-child td {
  border-bottom: none;
}
.pricing tbody tr td:last-child {
  font-weight: 800;
  color: #B6736C;
}

/* FAQ */
.faq .content-wrapper > div {
  background: #EAE5DF;
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 12px;
}
.faq h3 {
  font-size: 1.06rem;
  color: #B6736C;
}

/* POLICY AND LEGAL */
.policy {
  background: #fff;
}
.policy ul {
  list-style: disc inside;
  margin-bottom: 12px;
  margin-top: 12px;
}
.policy ul li {
  color: #23253B;
  font-weight: 600;
  margin-bottom: 8px;
}

/* CALL TO ACTION + THANK YOU */
.call-to-action {
  background: #B6736C;
  color: #fff;
  text-align: center;
}
.call-to-action .content-wrapper {
  align-items: center;
}
.call-to-action h2 {
  color: #fff;
  font-size: 2rem;
}
.call-to-action a.cta {
  background: #fff;
  color: #B6736C;
  font-weight: 900;
  letter-spacing: 1.7px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 14px 38px;
  border: none;
  border-radius: 22px;
  margin-top: 14px;
  box-shadow: 0 4px 24px rgba(35,37,59,0.12);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  display: inline-block;
}
.call-to-action a.cta:hover, .call-to-action a.cta:focus {
  background: #23253B;
  color: #fff;
  box-shadow: 0 8px 32px rgba(182,115,108,0.16);
}
.call-to-action a {
  color: #fff;
  text-decoration: underline;
  margin-left: 20px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
.call-to-action a:not(.cta):hover {
  color: #23253B;
}

.thank-you {
  background: #EAE5DF;
}
.thank-you .cta {
  margin-top: 20px;
}

/* CONTACT */
.contact ul {
  margin-bottom: 20px;
}
.contact ul li {
  margin-bottom: 8px;
  font-weight: 700;
  color: #23253B;
  font-size: 1.1em;
}

.location {
  background: #EAE5DF;
}
.location .content-wrapper {
  align-items: flex-start;
  justify-content: flex-start;
}

/* FOOTER */
footer {
  background: #23253B;
  color: #fff;
  padding: 40px 0 32px 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
footer img {
  height: 44px;
  margin-bottom: 10px;
}
footer nav {
  display: flex;
  gap: 18px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
footer nav a {
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.13s, color 0.13s;
}
footer nav a:hover {
  color: #B6736C;
  background: #EAE5DF;
}
footer p {
  color: #fff;
  font-size: 0.96em;
  opacity: 0.86;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  margin-bottom: 2px;
  text-align: center;
}

/* BUTTONS & INTERACTIONS */
button, .cta {
  cursor: pointer;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  outline: none;
  border: none;
}
.cta:active {
  transform: scale(0.97);
}
a.cta {
  display: inline-block;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, transform 0.10s;
}
a.cta:focus {
  outline: 2px solid #B6736C;
  outline-offset: 2px;
}

/* TABLES */
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 32px;
}
th, td {
  padding: 12px 9px;
  text-align: left;
}
tr:nth-child(even) {
  background-color: #F8F6F2;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #23253B;
  color: #fff;
  padding: 22px 8vw 22px 8vw;
  box-shadow: 0 -2px 24px rgba(35,37,59,0.22);
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  font-size: 1.07rem;
  justify-content: space-between;
  flex-wrap: wrap;
  transition: transform .33s cubic-bezier(.35,1.43,.38,.99);
}
.cookie-banner.hide {
  transform: translateY(130%);
}
.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 12px 22px;
  border-radius: 18px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  margin-left: 5px;
  transition: background 0.14s, color 0.14s;
  box-shadow: 0 2px 8px rgba(35,37,59,0.11);
  cursor: pointer;
}
.cookie-accept {
  background: #B6736C;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #fff;
  color: #B6736C;
}
.cookie-reject {
  background: #EAE5DF;
  color: #23253B;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #B6736C;
  color: #fff;
}
.cookie-settings {
  background: #fff;
  color: #23253B;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #EAE5DF;
  color: #B6736C;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,37,59,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(.34,.69,.47,1.21);
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  color: #23253B;
  border-radius: 16px;
  padding: 40px 34px 32px 34px;
  box-shadow: 0 6px 40px rgba(35,37,59,0.21);
  min-width: 320px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 95vw;
}
.cookie-modal-content h2 {
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.07rem;
  margin-bottom: 8px;
}
.cookie-category label {
  cursor: pointer;
  font-weight: 700;
}
.cookie-modal-content .category-switch {
  accent-color: #B6736C;
  width: 22px;
  height: 22px;
}
.cookie-modal-content .close-modal {
  align-self: flex-end;
  background: #EAE5DF;
  color: #B6736C;
  border: none;
  font-size: 1.35rem;
  border-radius: 9px;
  padding: 6px 12px;
  cursor: pointer;
  margin-bottom: -18px;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal-content .close-modal:hover, .cookie-modal-content .close-modal:focus {
  background: #B6736C;
  color: #fff;
}

/* RESPONSIVENESS: MOBILE-FIRST */
@media (max-width: 1024px) {
  .container {
    max-width: 92vw;
  }
}
@media (max-width: 900px) {
  .features ul, .services ul {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 38px;
    padding: 27px 4vw;
  }
  .container {
    max-width: 98vw;
    padding: 0 3vw;
  }
  header {
    flex-direction: row;
    height: 60px;
    padding: 0 2vw;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .content-wrapper, .footer .content-wrapper {
    gap: 18px;
  }
  .features ul, .services ul {
    flex-direction: column;
    gap: 16px;
  }
  .features ul li, .services ul li {
    min-width: 0;
    width: 100%;
    max-width: 99vw;
  }
  .team-member {
    max-width: 99vw;
  }
  .about, .team, .values, .call-to-action, .thank-you, .faq {
    padding: 12vw 2vw;
  }
  .text-section {
    padding: 0 2vw;
  }
  .testimonial-card {
    max-width: 100vw;
    min-width: 0;
    padding: 20px 12px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 2vw 16px 2vw;
    font-size: 1rem;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.19rem; }
  .hero {
    padding-top: 20px;
  }
  .hero .cta, .call-to-action .cta {
    padding: 10px 14px;
    font-size: 1rem;
    border-radius: 14px;
  }
  .cookie-modal-content {
    padding: 18px 7vw 18px 7vw;
  }
}

/* ANIMATION UTILITIES */
.fade-in {
  opacity: 1;
  transform: none;
  transition: opacity .4s, transform .4s;
}
.slide-in-right {
  transform: translateX(100%);
  opacity: 0;
  transition: opacity .32s, transform .32s;
}
.slide-in-right.active {
  transform: translateX(0);
  opacity: 1;
}

/* Hide elements with .hidden class */
.hidden { display: none !important; }

/* Z-INDEX: ensure no overlaps and cookie/modal/nav stay above all */

/* Visual Accent Geometric Circle (optional, non-content only) */
.geometric-circle {
  position: absolute;
  background: #B6736C;
  border-radius: 50%;
  opacity: 0.13;
  z-index: 0;
}

/* Accessibility improvements */
:focus {
  outline: 2px solid #B6736C;
  outline-offset: 2px;
  transition: outline 0.1s;
}

::-webkit-input-placeholder { color: #B6736C; }
::-moz-placeholder { color: #B6736C; }
:-ms-input-placeholder { color: #B6736C; }
::placeholder { color: #B6736C; }
