/* ==== 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F0F5F1;
  color: #2c3a41;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #B59C68;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FF375B;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
main {
  flex: 1 1 auto;
}

/* ==== BRAND COLORS AND VARIABLES ==== */
:root {
  --color-primary: #485358;
  --color-dark: #2c3a41;
  --color-secondary: #F0F5F1;
  --color-bg: #ffffff;
  --color-accent: #B59C68;
  --color-high: #FF375B;
  --color-vibe1: #48E5C2;
  --color-vibe2: #FFBE00;
  --color-vibe3: #9147FF;
  --color-vibe4: #FDA7DC;
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  color: var(--color-dark);
  line-height: 1.13;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 18px;
  text-shadow: 0 3px 18px rgba(179,156,104,0.07);
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.08rem;
  margin-bottom: 8px;
  color: var(--color-accent);
  font-family: 'Montserrat', Arial, sans-serif;
}
p, ul, ol {
  margin-bottom: 14px;
}
.subtitle {
  font-size: 1.14rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 22px;
}
strong {
  color: var(--color-dark);
  font-weight: bold;
}

/* ==== SPACING AND CONTAINER ==== */
.container {
  width: 100%;
  max-width: 1172px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  margin-bottom: 28px;
  padding: 2px 0;
}

/* ==== HEADER & NAV ==== */
header {
  background: #fff;
  box-shadow: 0 4px 16px rgba(72,83,88,0.05);
  position: sticky;
  z-index: 61;
  top: 0;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
  padding: 12px 0;
}
header img {
  max-height: 54px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 6px 10px;
  border-radius: 6px;
  transition: background .15s, color .15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-high);
}
.btn-primary {
  background: linear-gradient(90deg,var(--color-high) 0,var(--color-vibe3) 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  border: none;
  border-radius: 44px;
  padding: 13px 32px;
  box-shadow: 0 4px 32px rgba(255,55,91,0.15);
  cursor: pointer;
  outline: none;
  margin-left: 12px;
  margin-right: 0;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background 0.15s, transform .12s, box-shadow .2s;
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg,var(--color-vibe1) 15%,var(--color-high) 90%);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 2px 26px 6px rgba(72,229,194,0.18);
}

.mobile-menu-toggle {
  background: none;
  color: var(--color-high);
  border: none;
  font-size: 2.1rem;
  display: none;
  cursor: pointer;
  margin-left: 16px;
  transition: color .15s, transform .18s;
  line-height: 1;
  z-index: 100;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-high);
}

/* ==== HERO SECTION ==== */
.hero {
  width: 100%;
  background: linear-gradient(115deg,#FFFFFF 0%,#F0F5F1 65%,var(--color-vibe4) 100%);
  border-bottom: 6px solid var(--color-high);
  padding: 48px 0 44px 0;
  min-height: 320px;
  display: flex;
  align-items: center;
  margin-bottom: 38px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.hero h1 {
  background-image: linear-gradient(90deg,var(--color-vibe1) 24%,var(--color-high) 80%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

/* ==== FLEXBOX CARDS, FEATURES, LAYOUTS ==== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 24px;
  margin-bottom: 24px;
  justify-content: space-between;
}
.feature-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(179,156,104,0.06),0 2px 8px rgba(255,55,91,0.04);
  padding: 28px 26px 23px 26px;
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.15s, transform 0.14s;
  margin-bottom: 20px;
  border: 2px solid var(--color-vibe1);
  position: relative;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 16px 46px 0 rgba(72,229,194,0.17), 0 2px 14px rgba(255,55,91,0.1);
  transform: translateY(-4px) scale(1.02);
  border-color: var(--color-high);
}
.feature-item img {
  max-width: 54px;
  margin-bottom: 4px;
}
.price-label {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--color-high);
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  padding: 5px 14px;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(255,55,91,0.10);
  margin-top: 6px;
  letter-spacing: 0.01em;
}

/* Cards & Testimonials */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 14px rgba(44,58,65,.08);
  transition: box-shadow .16s, transform .12s;
  margin-bottom: 20px;
  padding: 24px 24px 21px 24px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 22px #FDA7DC16, 0 2px 10px #FFBE0016;
  transform: translateY(-3px);
}

.testimonials {
  margin-top: 48px;
  margin-bottom: 48px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 28px #FF375B10;
  padding: 38px 0 38px 0;
}
.testimonials > .container {
  flex-direction: column;
  display: flex;
  gap: 28px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 18px;
  padding: 20px 24px 18px 24px;
  background: #F0F5F1;
  margin-bottom: 26px;
  box-shadow: 0 2px 9px #B59C6812, 0 1px 4px #9147FF10;
  border-left: 5px solid var(--color-high);
  transition: box-shadow .14s, transform .12s, background .13s;
}
.testimonial-card p {
  color: #2c3a41;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  flex: 1 1 auto;
}
.testimonial-meta {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  background: var(--color-vibe1);
  box-shadow: 0 6px 22px #9147FF17, 0 4px 10px #FF375B19;
}


/* ==== FLEX LAYOUT HELPERS ==== */
.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-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ==== FOOTER ==== */
footer {
  background: var(--color-dark);
  color: #fff;
  padding: 56px 0 20px 0;
  margin-top: 56px;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  flex: 1 0 210px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-right: 22px;
}
.footer-brand img {
  max-height: 46px;
}
.footer-brand p {
  color: #B59C68;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 8px;
}
.footer-links {
  display: flex;
  gap: 38px;
  flex: 2 1 350px;
  justify-content: space-between;
}
.footer-section {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 128px;
}
.footer-section h4 {
  margin-bottom: 6px;
  color: var(--color-accent);
  font-size: 1.08rem;
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-section a {
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.99rem;
  opacity: .93;
  transition: color 0.2s, opacity .15s;
}
.footer-section a:hover, .footer-section a:focus {
  color: var(--color-high);
  opacity: 1;
}
.footer-contact {
  flex: 1 0 164px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--color-secondary);
  font-size: 1.01rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-contact img {
  height: 20px;
  width: 20px;
  vertical-align: sub;
  margin-right: 6px;
}
.footer-social {
  flex: 0 0 120px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-social h4 {
  color: var(--color-accent);
}
.footer-social a {
  display: inline-block;
  margin-right: 7px;
}
.footer-social img {
  height: 30px;
  width: 30px;
  filter: grayscale(0.25) drop-shadow(0 3px 12px #B59C6835);
  transition: filter 0.14s, transform .13s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: grayscale(0) drop-shadow(0 4px 8px #FF375B60);
  transform: scale(1.11) rotate(-6deg);
}

/* ==== COOKIES BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2301;
  background: #fff;
  box-shadow: 0 -4px 22px #2c3a4113;
  padding: 22px 24px 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  font-family: 'Roboto', Arial, sans-serif;
  border-top: 6px solid var(--color-high);
  animation: bannerSlideIn .56s cubic-bezier(.44,.12,.25,.87);
}
@keyframes bannerSlideIn {
  from {transform: translateY(120%); opacity: 0;}
  to   {transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  color: var(--color-dark);
  margin-bottom: 0;
  font-size: 1rem;
  flex: 2 1 280px;
}
.cookie-btns {
  display: flex;
  gap: 18px;
  align-items: center;
}
.cookie-btns button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 28px;
  font-size: 1rem;
  padding: 10px 24px;
  box-shadow: 0 2px 7px #48E5C220;
  background: var(--color-vibe1);
  color: #2c3a41;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 0;
  transition: background .18s, color .17s, box-shadow .17s;
  outline: none;
}
.cookie-btns .accept {
  background: linear-gradient(90deg,var(--color-high), var(--color-vibe3));
  color: #fff;
}
.cookie-btns .accept:hover, .cookie-btns .accept:focus {
  background: linear-gradient(90deg,#FFBE00, var(--color-high));
  color: #fff;
}
.cookie-btns .reject {
  background: var(--color-vibe4);
  color: var(--color-dark);
}
.cookie-btns .reject:hover, .cookie-btns .reject:focus {
  background: #fff;
  color: var(--color-high);
  border: 1px solid var(--color-high);
}
.cookie-btns .settings {
  background: #fff;
  color: var(--color-high);
  border: 1.7px solid var(--color-high);
}
.cookie-btns .settings:hover, .cookie-btns .settings:focus {
  background: var(--color-vibe1);
  color: #2c3a41;
}

/* ==== COOKIE MODAL ==== */
.cookie-modal {
  position: fixed;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%) scale(1);
  background: #fff;
  z-index: 2401;
  min-width: 312px;
  max-width: 94vw;
  padding: 34px 30px 24px 30px;
  border-radius: 18px;
  box-shadow: 0 6px 30px 0 #2c3a4142, 0 1px 4px #9147FF10;
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: modalIn .24s cubic-bezier(.49,.49,.25,1);
}
@keyframes modalIn {
  from {transform: translateX(-50%) scale(0.92); opacity:0;}
  to {transform: translateX(-50%) scale(1); opacity:1;}
}
.cookie-modal h3 {
  font-size: 1.28rem;
  color: var(--color-accent);
  margin-bottom: 9px;
}
.cookie-modal label,
.cookie-modal .category {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal .category {
  font-weight: bold;
}
.cookie-modal input[type=checkbox] {
  accent-color: var(--color-high);
  margin-right: 8px;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 24px;
  font-size: 1rem;
  padding: 9px 20px;
  background: var(--color-vibe1);
  color: var(--color-dark);
  font-weight: 700;
  cursor: pointer;
  transition: background .17s, color .16s;
}
.cookie-modal .close-modal {
  background: #fff;
  color: var(--color-high);
  border: 1px solid var(--color-high);
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: var(--color-vibe1);
  color: var(--color-dark);
}
.cookie-modal .modal-accept {
  background: linear-gradient(90deg,var(--color-high), var(--color-vibe3));
  color: #fff;
}
.cookie-modal .modal-accept:hover, .cookie-modal .modal-accept:focus {
  background: linear-gradient(90deg,#FFBE00, var(--color-high));
}

/* =========== MOBILE MENU =========== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #2c3a418c;
  z-index: 1200;
  display: flex;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.7,0,.35,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: #fff;
  border: none;
  color: var(--color-high);
  font-size: 2.33rem;
  font-weight: bold;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  z-index: 1102;
  border-radius: 20px;
  padding: 6px 13px;
  box-shadow: 0 2px 8px #B59C6827;
  transition: background .18s, color .18s, transform .13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-vibe1);
  color: #2c3a41;
  transform: scale(1.1);
}
.mobile-nav {
  background: #fff;
  padding: 66px 34px 34px 34px;
  width: 85vw;
  max-width: 370px;
  min-width: 215px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 6px 0 28px #FF375B15;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-dark);
  font-size: 1.17rem;
  margin: 0 0 2px 0;
  border-radius: 12px;
  padding: 12px 12px;
  transition: background .15s, color .16s;
  outline: none;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-vibe4);
  color: var(--color-high);
}

/* Hide nav, show burger on mobile */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 8px;
  }
  .hero {
    padding: 32px 0 28px 0;
  }
  .footer-flex {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .feature-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 16px 13px 14px 13px;
  }
  .section, main > section {
    margin-bottom: 38px;
    padding: 25px 5px;
  }
}

/* ==== RESPONSIVE FLEX: text-image-section and feature-grid ==== */
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 24px;
  }
  .section, main > section {
    margin-bottom: 38px;
    padding: 30px 10px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .hero .container {
    align-items: flex-start;
  }
}

/* ==== ANIMATIONS ==== */
.btn-primary, .feature-item, .mobile-nav a, .mobile-menu-close, .testimonial-card, .cookie-btns button, .cookie-modal button, .footer-social img {
  transition: box-shadow .15s, background .15s, color .15s, transform .13s;
}

/* ==== WHITE SPACE AND GAPS ==== */
.card-container, .content-grid, .feature-grid, .footer-flex {
  gap: 20px;
}
.feature-item, .card, .testimonial-card, .section {
  margin-bottom: 20px;
}


/* ==== MISC SMALLS ==== */
details, summary {
  cursor: pointer; font-weight: bold; color: var(--color-accent); margin-bottom: 10px;
}
::-webkit-scrollbar { width: 10px; background: #eee; }
::-webkit-scrollbar-thumb { background: var(--color-accent); border-radius: 7px; }

/* ==== FOCUS STATES ==== */
:focus-visible {
  outline: 2px solid var(--color-high);
  outline-offset: 2px;
}

/* ==== PRINT ====*/
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff; }
}

/* ==== Z-INDEX ==== */
.mobile-menu, .cookie-modal { z-index: 9999; }

/* ==== ADDITIONAL UTILITIES ==== */
.nowrap { white-space: nowrap; }

/* ==== END ==== */
