/* RESET & BASE STYLES ------------------------------------------------*/
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, menu, nav, section {
    display: block;
}
body {
  min-height: 100vh;
  background: #F4F7F5;
  color: #222C21;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}
a {
  color: #225C32;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B38A00;  /* slightly deeper gold for hover, fits luxury theme */
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1E2D23;
  font-weight: 700;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

p, li, span, label {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #222C21;
  font-size: 1rem;
}

strong {
  font-weight: 700;
}

/* CONTAINER & SECTION LAYOUTS ------------------------------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* HEADER, NAVIGATION & HERO --------------------------------------------*/
header {
  background: #fff;
  box-shadow: 0 6px 24px rgba(34, 92, 50, 0.06);
  border-bottom: 2px solid #FFD63044;
  padding: 0;
  position: sticky;
  top: 0; 
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 18px;
}

img[alt="PrecuPseud Solar"] {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-left: 34px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1E2D23;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #B38A00;
  border-bottom: 2px solid #FFD630;
}

.cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #225C32;
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 12px 30px;
  border: none;
  border-radius: 32px;
  margin-left: 22px;
  box-shadow: 0 2px 16px rgba(34,92,50,0.08), 0 0.5px 1.5px #FFD63088;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
  border-bottom: 2px solid #FFD63099;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFD630;
  color: #1E2D23;
  box-shadow: 0 6px 30px rgba(34,92,50,0.13);
  transform: translateY(-2px) scale(1.045);
}

/* MOBILE NAVIGATION ----------------------------------------------------*/
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: #225C32;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 24px;
  z-index: 140;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #FFD630;
}

.mobile-menu {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 44, 33, 0.92);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 200;
  transition: transform 0.35s cubic-bezier(0.48,0.01,0.55,1), opacity 0.3s;
  transform: translateX(-100%);
  
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 18px 8px 0;
  font-size: 2.45rem;
  background: none;
  color: #FFD630;
  border: none;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 8px 24px 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.17s, border-bottom 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFD630;
  border-bottom: 2px solid #FFD630;
}

@media (max-width: 1080px) {
  header .container {
    flex-wrap: wrap;
    gap: 8px;
  }
  .main-nav {
    gap: 15px;
    margin-left: 10px;
  }
  .cta-btn {
    margin-left: 10px;
    padding: 12px 20px;
  }
}
@media (max-width: 992px) {
  .main-nav {
    gap: 8px;
  }
}
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* HERO SECTIONS --------------------------------------------------------*/
.hero {
  background: linear-gradient(90deg, #f4f7f5 60%, #fff8d4 100%);
  padding: 64px 0 50px 0;
  border-bottom: 2.5px solid #FFD63033;
  box-shadow: 0 10px 42px rgba(225, 214, 122, 0.13);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 22px;
}
.hero h1 {
  font-size: 2.7rem;
  font-weight: 900;
  color: #225C32;
  text-shadow: 0 2px 10px #FFD63044;
}
.hero p {
  font-size: 1.25rem;
  color: #2e4535;
  margin-bottom: 16px;
}

/* FLEXBOX LAYOUTS ------------------------------------------------------*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 16px 0 6px 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px #F4F7F555,0 1px 12px #FFD63033;
  padding: 26px 22px 20px 22px;
  min-width: 230px;
  max-width: 300px;
  gap: 15px;
  border-left: 4px solid #FFD630;
  transition: box-shadow 0.18s, transform 0.16s;
}
.feature-item img {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 2px 6px #FFD63077);
}
.feature-item h3 {
  color: #225C32;
  font-size: 1.15rem;
  margin: 0 0 4px 0;
}
.feature-item p {
  color: #234;
}
.feature-item:hover {
  box-shadow: 0 6px 32px #FFD63044, 0 2px 22px #225C3233;
  transform: translateY(-4px) scale(1.03);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 12px 0 32px 0;
}
.service-list li {
  background: #fff;
  border-radius: 18px;
  padding: 24px 22px 18px 22px;
  flex: 1 1 220px;
  box-shadow: 0 2px 12px #FFE08233;
  margin-bottom: 20px;
  margin-right: 0;
  border-right: none;
}
.service-list h3 {
  color: #B38A00;
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px #FFD63033, 0 2.5px 12px #225C3233;
  position: relative;
  padding: 24px;
  transition: box-shadow 0.17s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 12px 38px #FFD63030;
  transform: translateY(-2px) scale(1.015);
}
.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-slider {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px 18px 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px #FFD63018, 0 1px 10px #225C3218;
  min-width: 260px;
  max-width: 370px;
  transition: box-shadow 0.19s, transform 0.16s;
  border-left: 4px solid #FFD630;
}
.testimonial-card p {
  color: #222C21;
  font-size: 1.03rem;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #1E2D23;
  font-size: 0.98rem;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px #FFD63037, 0 1.5px 4.5px #225C3222;
  transform: translateY(-2px) scale(1.029);
}

.customer-logos {
  display: flex;
  gap: 28px;
  margin-top: 12px;
}
.customer-logos img {
  height: 34px;
  opacity: 0.85;
  filter: grayscale(1) brightness(1.15);
}

.case-study-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
}
.case-study-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px #FFD63022, 0 2px 11px #225C3211;
  padding: 30px 26px;
  max-width: 50%;
  flex: 1 1 410px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
  border-left: 4px solid #FFD630;
  transition: box-shadow 0.16s, transform 0.15s;
}
.case-study-item:hover {
  box-shadow: 0 12px 40px #FFD63018, 0 6px 22px #225C3208;
  transform: translateY(-2px) scale(1.021);
}
.highlighted-results {
  background: #F4F7F5;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 4px;
}
.client-feedback {
  background: #fff8d4;
  border-radius: 10px;
  padding: 15px 12px;
  box-shadow: 0 2px 8px #FFD63011;
}
.client-feedback p {
  color: #31372a;
  font-size: 0.99rem;
}


/* FAQ, TEXT BLOCKS -----------------------------------------------------*/
.faq-category-tabs {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 16px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #B38A00;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.faq-list li {
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 1px 8px #FFD63018;
  color: #224320;
}

.text-section {
  background: none;
  border-radius: 0;
  padding: 0;
  line-height: 1.75;
  font-size: 1.02rem;
  color: #21351e;
  margin-bottom: 8px;
}

/* Contact Details Layout -----------------------------------------------*/
.contact-details {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 14px 16px;
  border-radius: 14px;
  box-shadow: 0 1px 8px #FFD63015;
  margin-bottom: 12px;
  min-width: 260px;
  max-width: 320px;
  flex: 1 1 260px;
}
.contact-details img {
  width: 32px; height: 32px;
}
.map-embed {
  margin-top: 18px;
  background: #fffde6;
  border-radius: 10px;
  padding: 16px;
  color: #48481b;
  box-shadow: 0 1px 6px #FFE08222;
}

/* Footer --------------------------------------------------------------*/
footer {
  background: #fff;
  border-top: 2px solid #FFD63044;
  padding: 32px 0 16px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #225C32;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #B38A00;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
footer p {
  color: #222C21;
  font-size: 0.98rem;
}

/* Cookie Consent Banner & Modal --------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #222C21;
  color: #fff;
  padding: 22px 18px 16px 18px;
  box-shadow: 0 -2px 30px #FFD63030;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  z-index: 3000;
  transition: transform 0.4s cubic-bezier(0.48,0.01,0.55,1), opacity 0.3s;
  font-size: 0.98rem;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.cookie-banner button, .cookie-banner .cookie-settings-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 9px 22px;
  margin-right: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.19s, color 0.16s, box-shadow 0.19s;
}
.cookie-banner .accept {
  background: #FFD630;
  color: #1E2D23;
  box-shadow: 0 2px 6px #FFD63022;
}
.cookie-banner .accept:hover {
  background: #B38A00;
  color: #fff;
}
.cookie-banner .reject {
  background: #225C32;
  color: #fff;
  box-shadow: 0 2px 10px #303d2233;
}
.cookie-banner .reject:hover {
  background: #F4F7F5;
  color: #225C32;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #225C32;
  box-shadow: 0 1.5px 8px #FFD63019;
  border: 2px solid #FFD630;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #FFD630;
  color: #225C32;
}

.cookie-modal {
  position: fixed;
  top: 70px; left: 0; right: 0;
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 16px 52px #225C3230, 0 2px 10px #FFD63022;
  border-radius: 20px;
  z-index: 3100;
  padding: 32px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 1;
  transform: translateY(-40px);
  animation: cookie-modal-in 0.5s ease;
}
@keyframes cookie-modal-in {
  from {
    
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(-40px);
  }
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-200px);
  transition: opacity 0.2s, transform 0.3s;
}
.cookie-modal h2 {
  color: #225C32;
  font-size: 1.5rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-toggle {
  background: #F4F7F5;
  border-radius: 20px;
  width: 44px;
  height: 24px;
  position: relative;
  border: 1.5px solid #FFD630;
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.2s;
}
.cookie-modal .cookie-toggle input {
  
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.cookie-modal .cookie-toggle .slider {
  position: absolute;
  background: #FFD630;
  width: 20px; height: 20px;
  top: 1.5px; left: 2px;
  border-radius: 50%;
  transition: left 0.21s, background 0.19s;
}
.cookie-modal .cookie-toggle input:checked + .slider {
  left: 22px;
  background: #225C32;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 9px 22px;
  font-size: 1rem;
  cursor: pointer;
  background: #FFD630;
  color: #225C32;
  box-shadow: 0 2px 8px #FFD63030;
  transition: background 0.18s, color 0.15s;
}
.cookie-modal button:hover {
  background: #225C32;
  color: #fff;
}

/*-----------------------------------------------------------------------------*/
/* Responsive Media Queries ---------------------------------------------------*/
@media (max-width: 1150px) {
  .container {
    max-width: 980px;
  }
  .feature-grid, .service-list, .case-study-list, .content-grid {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .case-study-item {
    max-width: 100%;
    flex-basis: 100%;
  }
  .feature-grid, .service-list, .case-study-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 22px;
  }
  .card, .feature-item, .service-list li {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 98%;
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .section {
    padding: 28px 4vw;
    margin-bottom: 30px;
  }
  h1 {
    font-size: 2.05rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  .hero {
    padding-top: 38px;
    padding-bottom: 28px;
  }
  .hero h1 {
    font-size: 1.47rem;
  }
  .content-wrapper {
    gap: 14px;
  }
  .feature-grid, .service-list, .case-study-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .contact-details {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .footer-nav {
    gap: 12px;
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .cookie-modal {
    max-width: 95vw;
    padding: 18px 6vw;
  }
  .feature-item, .service-list li, .testimonial-card, .card, .case-study-item {
    padding: 14px 8px;
    font-size: 0.95rem;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 98vw;
  }
  .case-study-item {
    padding: 16px 8px 12px 8px;
  }
}

/*-----------------------------------------------------------------------------*/
/* Misc/utility ---------------------------------------------------------------*/
::-webkit-scrollbar {
  width: 8px;
  background: #F4F7F5;
}
::-webkit-scrollbar-thumb {
  background: #FFD630;
  border-radius: 8px;
}

/* White-space/section divider for luxury -----------------------------------*/
.section:not(:last-child) {
  border-bottom: 1.5px solid #FFD63022;
}

/* Utility for hiding but accessible */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/*-----------------------------------------------------------------------------*/
/* Micro-interactions --------------------------------------------------------*/
.card, .feature-item, .cta-btn, .testimonial-card, .cookie-banner button, .cookie-modal button {
  transition: box-shadow 0.17s, transform 0.13s, background 0.16s, color 0.13s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.018);
  box-shadow: 0 10px 32px #FFD6302d;
}

/*----------------------------------------------------------------------------*/
