/* =============================
   QUICK SAGE MINIMALIST STYLE.CSS
   ============================= */

/* CSS RESET & NORMALIZATION */
html {
  box-sizing: border-box;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

html, body {
  width: 100%;
  height: 100%;
}
body {
  background: #fff;
  color: #222D38;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

/* =============================
   BRAND COLORS
   ============================= */
:root {
  --primary: #222D38;
  --secondary: #B1E200;
  --accent: #F3F6F4;
  --text: #222D38;
  --white: #fff;
  --border: #EBECEC;
  --shadow: 0 2px 16px rgba(34, 45, 56, 0.07);
  --shadow-hover: 0 4px 24px rgba(34, 45, 56, 0.12);
  --rad: 12px;
}

/* =============================
   TYPOGRAPHY
   ============================= */
h1, .h1 {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--primary);
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
h3, .h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--primary);
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 8px;
}
p {
  font-size: 1rem;
  margin-bottom: 18px;
  color: var(--text);
}
strong {
  font-weight: 500;
}
ul, ol {
  margin-left: 0;
  margin-bottom: 18px;
  color: var(--text);
}
ul li, ol li {
  padding-left: 0;
  margin-bottom: 8px;
  line-height: 1.7;
}
address {
  color: var(--primary);
  font-style: normal;
  margin-bottom: 14px;
}

/* =============================
   CONTAINER & WRAPPERS
   ============================= */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 0;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* =============================
   SECTION LAYOUTS (SPACING)
   ============================= */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features-section, .testimonials-section, .about-preview, .cta-section,
.schedule-section, .projects-section, .services-list, .cookies-policy, 
.values, .approach, .privacy-policy, .rodo-information, .terms-section, 
.thank-you-section, .contact-section, .cta-contact {
  background: var(--white);
  border-radius: var(--rad);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 0;
}

@media (max-width: 768px) {
  section, .section,
  .features-section, .testimonials-section, .about-preview, .cta-section,
  .schedule-section, .projects-section, .services-list, .cookies-policy, 
  .values, .approach, .privacy-policy, .rodo-information, .terms-section, 
  .thank-you-section, .contact-section, .cta-contact {
    padding: 32px 0 28px 0;
    margin-bottom: 40px;
  }
}

/* =============================
   FLEX LAYOUT CLASSES
   ============================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--rad);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--accent);
  border-radius: var(--rad);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 20px;
    flex-direction: column;
  }
}
.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.benefit-grid > div {
  flex: 1 1 220px;
  min-width: 220px;
  background: var(--accent);
  border-radius: var(--rad);
  padding: 20px;
  box-shadow: var(--shadow);
}
.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 900px) {
  .benefit-grid {
    flex-direction: column;
  }
  .project-list {
    flex-direction: column;
    gap: 16px;
  }
}

/* =============================
   HEADER, NAV & LOGO
   ============================= */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
  min-height: 74px;
}
.logo-link img {
  height: 36px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
  padding: 6px 2px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--primary);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 100px;
  padding: 12px 28px;
  margin-left: 12px;
  box-shadow: var(--shadow);
  transition: background 0.22s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #D4FA32;
  color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px) scale(1.04);
}
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--primary);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  border-radius: 100px;
  padding: 12px 28px;
  margin-top: 8px;
  border: 1.5px solid var(--primary);
  transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.19s;
  cursor: pointer;
}
.cta-btn-secondary:hover, .cta-btn-secondary:focus {
  color: var(--secondary);
  border-color: var(--secondary);
  background: var(--accent);
  box-shadow: var(--shadow-hover);
}

/* =============================
   MOBILE NAVIGATION
   ============================= */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  font-size: 2.1rem;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
  margin-left: 16px;
  z-index: 120;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #D4FA32;
  outline: none;
}
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta-btn {
    margin-left: 0;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: var(--white);
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 92vw;
  max-width: 350px;
  transform: translateX(110%);
  transition: transform 0.34s cubic-bezier(.6,.07,.49,.95);
  box-shadow: -2px 0 24px rgba(34,45,56,0.12);
  z-index: 400;
  padding: 32px 24px 0 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--accent);
  color: var(--primary);
  font-size: 2.1rem;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.12rem;
  color: var(--primary);
  padding: 14px 0;
  border-radius: 7px;
  transition: background 0.19s, color 0.18s;
  min-width: 70vw;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}

/* Overlay when menu is open - handled by JS if desired */
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(34,45,56,0.18);
  z-index: 300;
  transition: opacity 0.22s;
}
.mobile-menu.open ~ .mobile-menu-backdrop {
  display: block;
  opacity: 1;
}

/* =============================
   HERO & VISUAL ELEMENTS
   ============================= */
.hero-section {
  background: var(--accent);
  border-radius: var(--rad);
  margin-bottom: 60px;
  padding: 64px 0;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 28px;
}
.hero-section h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}
.hero-section p {
  font-size: 1.18rem;
  color: var(--primary);
  margin-bottom: 18px;
}

/* =============================
   CARD & FEATURE GRIDS
   ============================= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 250px;
  min-width: 250px;
  background: var(--accent);
  border-radius: var(--rad);
  box-shadow: var(--shadow);
  padding: 28px 22px 18px 22px;
  gap: 12px;
  margin-bottom: 0;
  transition: box-shadow .18s, transform .17s;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px) scale(1.02);
}
.feature-grid img {
  height: 36px;
  margin-bottom: 10px;
}
.feature-grid h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.service-price {
  margin-top: 16px;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* =============================
   TESTIMONIAL CARDS
   ============================= */
.testimonials-section {
  background: var(--white);
  border-radius: var(--rad);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 26px;
  background: var(--accent);
  border-radius: var(--rad);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  min-width: 0;
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 0;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.testimonial-author {
  color: var(--primary);
  font-size: 0.98rem;
  font-weight: 500;
}
.star-rating {
  color: #FFCA36;
  font-size: 1.18rem;
  letter-spacing: 2px;
  margin-left: 4px;
}

/* Guarantee strong contrast for testimonial text */
.testimonial-card, .testimonial-card p, .testimonial-meta, .testimonial-author {
  color: #222D38;
  background: var(--accent);
}

/* =============================
   CTA / CALL-TO-ACTION
   ============================= */
.cta-section, .cta, .cta-contact {
  background: var(--accent);
  border-radius: var(--rad);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 0;
}
.cta-section h2, .cta h2, .cta-contact h2 {
  margin-bottom: 18px;
  font-size: 2rem;
}
.cta-section .cta-btn, .cta .cta-btn, .cta-contact .cta-btn {
  margin-top: 16px;
}

/* =============================
   PAGE SPECIFIC BLOCKS
   ============================= */
.about, .values, .approach {
  background: var(--white);
  border-radius: var(--rad);
  box-shadow: var(--shadow);
}
.values ul, .approach ul {
  margin-left: 1.3em;
  color: var(--text);
}
.values ul li, .approach ul li {
  position: relative;
  margin-left: 0.8em;
  margin-bottom: 8px;
}
.values ul li:before, .approach ul li:before {
  content: "•";
  color: var(--secondary);
  margin-right: 9px;
  font-size: 1.1em;
}

.services-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.services-list ul li {
  background: var(--accent);
  border-radius: var(--rad);
  padding: 26px 20px 20px 20px;
  box-shadow: var(--shadow);
  flex: 1 1 250px;
  min-width: 250px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .17s, transform .13s;
}
.services-list ul li:hover, .services-list ul li:focus-within {
  box-shadow: var(--shadow-hover);
  transform: scale(1.02);
}

.schedule-section .cta-btn {
  margin-top: 14px;
}

.privacy-policy, .rodo-information, .terms-section, .cookies-policy {
  background: var(--white);
  border-radius: var(--rad);
  box-shadow: var(--shadow);
}

.thank-you-section .text-section {
  margin-bottom: 24px;
}

/* =============================
   FOOTER
   ============================= */
footer {
  background: var(--white);
  box-shadow: 0 -1px 8px rgba(34,45,56,0.04);
  padding: 32px 0 16px 0;
  width: 100%;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
.footer-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--primary);
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
}
footer span {
  color: #A6ADBA;
  font-size: 0.93rem;
}

/* =============================
   COOKIE CONSENT BANNER
   ============================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--primary);
  color: var(--white);
  padding: 24px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  z-index: 7000;
  box-shadow: 0 -4px 28px rgba(34,45,56,0.10);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.33s, transform 0.33s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(32px);
}
.cookie-banner p {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding: 9px 18px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.16s, color 0.15s, box-shadow 0.15s;
}
.cookie-btn.accept {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: var(--shadow);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #D4FA32;
}
.cookie-btn.reject {
  background: var(--white);
  color: var(--primary);
  border: 1.5px solid var(--secondary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--accent);
  color: var(--primary);
}
.cookie-btn.settings {
  background: transparent;
  color: var(--secondary);
  border: 1.5px solid var(--secondary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* Cookie Modal */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(34,45,56,0.32);
  z-index: 7100;
  opacity: 0;
  transition: opacity 0.22s;
}
.cookie-modal-backdrop.show {
  display: block;
  opacity: 1;
}
.cookie-modal {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0.98);
  min-width: 330px;
  max-width: 94vw;
  background: var(--white);
  border-radius: var(--rad);
  box-shadow: var(--shadow-hover);
  z-index: 7350;
  padding: 40px 28px 24px 28px;
  transition: opacity 0.28s, transform 0.28s;
  opacity: 0;
}
.cookie-modal.show {
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h2 {
  margin-bottom: 14px;
  font-size: 1.18rem;
}
.cookie-cats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.cookie-cats label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--primary);
  cursor: pointer;
  margin-bottom: 0;
}
.cookie-cats input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 20px;
  height: 20px;
}
.cookie-modal .cookie-btn-group {
  gap: 12px;
}
.cookie-modal .cookie-btn {
  min-width: 110px;
}
/* Modal close */
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: var(--accent);
  color: var(--primary);
  font-size: 1.7rem;
  border-radius: 7px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background 0.17s;
  z-index: 7520;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--secondary);
}

.cookie-category-desc {
  font-size: 0.93rem;
  color: #5D6878;
  margin-left: 36px;
}

/* =============================
   MISCELLANEOUS / UTILITIES
   ============================= */
hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}

::-webkit-scrollbar {
  width: 7px;
  background: var(--white);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 8px;
}

/* Focus Styles (Accessibility) */
:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* =============================
   RESPONSIVE DESIGN
   ============================= */
@media (max-width: 1200px) {
  .container { max-width: 970px; }
}
@media (max-width: 992px) {
  .container { max-width: 840px; }
}
@media (max-width: 768px) {
  html {
    font-size: 98%;
  }
  .container { max-width: 100vw; }
  .content-wrapper {
    gap: 14px;
    padding: 0;
  }
  .hero-section {
    padding: 44px 0 32px 0;
  }
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.3rem; }
  .feature-grid, .services-list ul, .benefit-grid, .project-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid li, .services-list ul li, .benefit-grid > div {
    min-width: unset;
    padding: 18px 12px 14px 12px;
  }
  .hero-section .content-wrapper {
    gap: 18px;
  }
  footer .container {
    gap: 10px;
  }
  .footer-nav {
    gap: 12px;
    flex-wrap: wrap;
  }
  .cta-btn, .cta-btn-secondary {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }
  .section, section {
    padding: 24px 0 14px 0;
    margin-bottom: 28px;
  }
  .testimonial-card {
    padding: 16px 11px;
  }
}
@media (max-width: 480px) {
  .logo-link img {
    height: 28px;
  }
}

/* =============================
   ANIMATIONS & MICROINTERACTIONS
   ============================= */
.cta-btn, .cta-btn-secondary, .main-nav a, .feature-grid li, .services-list ul li, .testimonial-card, .benefit-grid > div {
  transition: box-shadow 0.15s, background 0.14s, color 0.13s, transform 0.14s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: scale(1.014);
}

/* =============================
   PRINT & SELECTION
   ============================= */
::selection {
  background: var(--secondary);
  color: var(--primary);
}

/* END OF QUICK SAGE MINIMALIST STYLE.CSS */
