/* ========================================================
   Vexal Boost – style.css
   Nature Organic Design – Mobile-First Responsive CSS
   Brand: Montserrat (display), Open Sans (body)
   Colors: #17415F (primary), #F9A33E (secondary), #F5F6FA (accent)
   Nature Organic: earth tones, greens, browns, soft shapes, warm textures
   ======================================================== */

/* --- RESET & BASE --- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background-color: #F5F6FA;
  color: #2C3A25;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  letter-spacing: 0.01em;
  transition: background 0.3s;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #17415F;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 14px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
p, ul, ol, li { font-size: 1rem; }
p { margin-bottom: 16px; }
ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 20px;
}
li { margin-bottom: 8px; }
strong { color: #347758; font-weight: bold; }
a {
  color: #17415F;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #347758;
  text-decoration: none;
}

/* --- FLEXBOX LAYOUTS --- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.content-wrapper.center {
  align-items: center;
  text-align: center;
  justify-content: center;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px 32px 40px 28px / 32px 44px 40px 32px;
  box-shadow: 0 4px 28px rgba(52, 119, 88, 0.07);
  transition: box-shadow 0.3s;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
}
.card-container, .feature-grid, .price-cards, .testimonial-slider, .testimonial-grid, .faq-list, .usps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.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) {
  .text-image-section, .feature-grid, .price-cards, .testimonial-slider, .testimonial-grid, .faq-list, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

/* --- CARDS & FEATURE ITEMS --- */
.card, .feature-item, .price-card {
  background: #F5F6FA;
  border-radius: 24px 36px 28px 32px / 26px 32px 28px 24px;
  box-shadow: 0 2px 18px rgba(52, 119, 88, 0.05);
  padding: 28px 20px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 260px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 1px solid #e6e7e3;
  transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
}
.card:hover, .feature-item:hover, .price-card:hover {
  box-shadow: 0 6px 24px rgba(52, 119, 88, 0.13);
  border-color: #cedabb;
  transform: translateY(-2px) scale(1.011);
}
.price-card {
  align-items: flex-start;
  min-width: 250px;
  background: #fffbe7;
  border: 1.5px solid #DED6C1;
}
.price-card .price {
  color: #347758;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 14px;
}

/* Feature Items */
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 3px;
}
.feature-item h3 {
  color: #347758;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 170px;
  background: #F8FAF5;
}

/* USPs*/
.usps ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: disc inside;
}
.usps li {
  background: #edf4ee;
  padding: 7px 18px;
  border-radius: 18px;
  font-size: 1em;
  color: #347758;
}

/* --- TESTIMONIAL CARDS --- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F8FAF5;
  border-radius: 18px 28px 22px 16px / 19px 24px 20px 18px;
  box-shadow: 0 2px 14px rgba(23,65,95,0.06);
  margin-bottom: 20px;
  max-width: 460px;
  min-width: 220px;
}
.testimonial-card p {
  color: #28512C;
  font-size: 1.1em;
  font-style: italic;
  margin-bottom: 6px;
  text-align: center;
}
.testimonial-meta {
  color: #17415F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.95em;
  letter-spacing: 0.01em;
}
.testimonial-slider,
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
}

/* --- FAQ --- */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.faq-item {
  flex: 1 1 330px;
  margin-bottom: 20px;
  background: #f2f9f2;
  border-radius: 18px 26px 24px 16px;
  box-shadow: 0 2px 10px rgba(52, 119, 88, 0.05);
  padding: 20px 22px;
}
.faq-item h2 {
  font-size: 1.16rem;
  color: #347758;
}
.faq-item p {
  margin-bottom: 0;
  color: #24432c;
  font-size: 1em;
}

/* --- BUTTONS --- */
.btn-primary {
  background: #347758;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  display: inline-block;
  padding: 13px 34px;
  border-radius: 28px 18px 30px 24px;
  box-shadow: 0 2px 10px rgba(52,119,88, 0.09);
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  outline: none;
  margin-top: 14px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #17415F;
  color: #fff;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 2px 16px rgba(23,65,95,0.13);
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fffbe7;
  box-shadow: 0 2px 10px rgba(23,65,95,0.04);
  padding: 0;
  width: 100%;
  z-index: 30;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 16px;
}
.logo img {
  height: 38px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #347758;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 18px;
  transition: background 0.13s, color 0.13s;
  letter-spacing: 0.01em;
}
.main-nav a.active, .main-nav a:focus, .main-nav a:hover {
  background: #e6f7e7;
  color: #17415F;
}
/* Desktop CTAs in nav */
nav .btn-primary {
  margin: 0 0 0 16px;
}

@media (max-width: 1020px) {
  nav {
    gap: 10px;
    padding: 10px 4px;
  }
  .main-nav {
    gap: 11px;
  }
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 20px;
  background: #347758;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  z-index: 98;
  cursor: pointer;
  outline: none;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #17415F;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(38,61,34,0.93);
  box-shadow: -5px 0 44px rgba(23,65,95,0.20);
  z-index: 120;
  transition: transform 0.33s cubic-bezier(.95,0,.24,1), opacity 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: #fff;
  color: #347758;
  border: none;
  border-radius: 50%;
  font-size: 2.2rem;
  width: 54px;
  height: 54px;
  position: absolute;
  top: 22px;
  right: 18px;
  z-index: 124;
  cursor: pointer;
  outline: none;
  box-shadow: 0 4px 8px rgba(23,65,95,0.08);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #e6f7e7;
  color: #17415F;
}
.mobile-nav {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  width: 93vw;
  max-width: 340px;
  padding: 0 38px;
}
.mobile-nav a {
  font-size: 1.19rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 6px 14px 0;
  border-radius: 0 24px 24px 0;
  width: 100%;
  display: block;
  transition: background 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #17415F;
}

@media (max-width: 1190px) {
  .container { max-width: 97vw; }
  nav { max-width: 97vw; }
}

@media (max-width: 900px) {
  nav .main-nav,
  nav .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* --- HERO --- */
main > section:first-child {
  background: linear-gradient(120deg, #f4f1ea 85%, #e6f7e7 100%);
  border-radius: 0 0 28px 32px;
  box-shadow: 0 3px 36px rgba(52, 119, 88, 0.05);
  margin-bottom: 50px;
  padding-top: 44px;
  padding-bottom: 44px;
}
main > section:first-child h1 {
  color: #17415F;
  font-size: 2.9rem;
  line-height: 1.2;
}
main > section:first-child p {
  color: #347758;
  font-size: 1.2em;
  max-width: 650px;
}
@media (max-width: 768px) {
  main > section:first-child .container { padding: 0 8px; }
  main > section:first-child h1 { font-size: 2rem; }
  main > section:first-child { padding-top: 28px; padding-bottom: 28px; }
}

/* --- CARDS & PRICING --- */
.price-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.price-card {
  min-width: 245px;
  max-width: 330px;
  flex: 1 1 220px;
  background: #f1ebde;
}
@media (max-width: 900px) {
  .price-cards {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .price-card {
    min-width: unset;
    max-width: 100%;
  }
}

/* --- CONTACT & TEAM --- */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 10px;
}
.contact-methods ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 15px;
}
.contact-methods li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 1.05em;
}
.contact-methods li img {
  width: 21px;
  height: 21px;
}

/* --- FOOTER --- */
footer {
  background: #eff4ed;
  padding: 48px 0 22px 0;
  border-radius: 48px 48px 0 0;
  box-shadow: 0 -2px 15px rgba(52,119,88,0.05);
  margin-top: 48px;
  font-size: 0.98rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.logo-footer img {
  width: 49px;
  height: auto;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #347758;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 12px;
  padding: 4px 10px;
  transition: background 0.14s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #e6f7e7;
  color: #17415F;
}
.contact-footer {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: #17415F;
}
.contact-footer img {
  width: 19px;
  height: 18px;
  margin-right: 6px;
}
footer small {
  color: #8DA085;
  margin-top: 14px;
}
@media (max-width: 600px) {
  footer .container {
    gap: 16px;
    padding: 0 4px;
  }
  .footer-nav { gap: 12px; }
}

/* --- MODALS & COOKIE CONSENT --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 9999;
  background: #fffbe7;
  color: #312d1b;
  border-top: 2px solid #ded6c1;
  box-shadow: 0 -2px 18px rgba(52, 119, 88, 0.10);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: center;
  padding: 24px 16px 16px 16px;
  font-size: 1rem;
  flex-wrap: wrap;
  transition: transform 0.3s, opacity 0.2s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-left: auto;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 24px;
  border-radius: 20px;
  border: none;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-btn.accept {
  background: #347758;
  color: #fff;
}
.cookie-btn.accept:hover { background: #17415F; }
.cookie-btn.reject {
  background: #e06a1b;
  color: #fff;
}
.cookie-btn.reject:hover { background: #9e4710; }
.cookie-btn.settings {
  background: transparent;
  color: #17415F;
  border: 1.5px solid #347758;
}
.cookie-btn.settings:hover {
  background: #e6f7e7;
  border-color: #17415F;
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 12000;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(23,65,95,0.41);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fffbe7;
  color: #17415F;
  border-radius: 32px 42px 36px 28px;
  box-shadow: 0 8px 32px rgba(52,119,88,0.14);
  padding: 38px 28px 28px 28px;
  min-width: 320px;
  max-width: 99vw;
  position: relative;
  margin: 15px;
  animation: fadeInScale 0.27s cubic-bezier(.97,-0.01,.39,1.22);
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.88); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #347758;
}
.cookie-modal ul {
  list-style: none;
  margin-bottom: 18px;
  padding-left: 0;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.cookie-switch {
  appearance: none;
  width: 38px;
  height: 20px;
  border-radius: 16px;
  background: #d2e5c6;
  border: 1px solid #a7bd98;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: background 0.13s;
}
.cookie-switch:checked {
  background: #347758;
}
.cookie-switch:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 1px;
  left: 1px;
  transition: left 0.18s;
}
.cookie-switch:checked:before {
  left: 19px;
}
.cookie-modal .cookie-btn {
  margin: 0 8px 0 0;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 16px;
  top: 10px;
  background: transparent;
  border: none;
  color: #e06a1b;
  font-size: 1.38rem;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.15s;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus { color: #17415F; }

/* --- FORM & INPUTS --- */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  background: #F5F6FA;
  border: 1.5px solid #CEDABB;
  border-radius: 16px;
  padding: 11px 16px;
  outline: none;
  margin-bottom: 16px;
  transition: border 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: #17415F;
}

/* --- UTILITY CLASSES --- */
.text-section {
  margin-bottom: 26px;
}
.center { text-align: center !important; }

@media (max-width: 600px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.13rem; }
  h3 { font-size: 1.03rem; }
}

/* --- SPACING PATTERNS (MANDATORY) --- */
.card-container, .card-grid, .feature-grid, .testimonial-slider, .testimonial-grid, .content-grid, .faq-list {
  gap: 24px;
}
.card, .feature-item, .price-card, .testimonial-card, .faq-item {
  margin-bottom: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section { margin-bottom: 38px; padding: 28px 8px; }
}

/* --- ANIMATIONS --- */
.btn-primary, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.15s, color 0.15s, transform 0.18s, box-shadow 0.14s;
}
.card, .feature-item, .testimonial-card, .faq-item {
  transition: box-shadow 0.23s, border 0.18s, transform 0.18s;
}

/* --- VISUAL/ORGANIC DECOR -- Rounded, colors, subtle texture */
.section, .card, .feature-item, .testimonial-card, .price-card, .faq-item, .cookie-modal {
  border-radius: 36px 28px 32px 22px / 28px 34px 30px 18px;
}

/* --- SCROLLBAR (optional for organic feel) --- */
::-webkit-scrollbar {
  width: 10px;
  background: #ecf2e7;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #c8d7cb;
  border-radius: 8px;
}

/* --- END OF CSS --- */