/* ==== 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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.6;
  background: #232324;
  color: #F8F7F4;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #C5B98E; text-decoration: none; transition: color 0.20s; }
a:hover, a:focus { color: #F8F7F4; }
ul, ol { margin-left: 1.2em; }

/* ==== CUSTOM FONTS (GOOGLE FONTS FALLBACK) ==== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Source+Sans+Pro:wght@400;600;700&display=swap');

/* ==== LAYOUT CONTAINERS ==== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #29292B;
  border-radius: 10px;
  box-shadow: 0 4px 18px 0 rgba(30,29,29,0.11);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #40403F;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 8px 28px 0 rgba(30,29,29,0.16);
  border-color: #C5B98E;
}
.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: center;
  gap: 20px;
  padding: 20px;
  background: #F8F7F4;
  color: #232324;
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(35,35,36,0.10);
  margin-bottom: 20px;
  min-width: 0;
  border-left: 5px solid #C5B98E;
  font-size: 1.1em;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover,
.testimonial-card:focus {
  box-shadow: 0 4px 18px 0 rgba(35,35,36,0.21);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== UTILITIES ==== */
.mt-20 { margin-top: 20px; }
.mb-32 { margin-bottom: 32px; }
.gap-16 { gap: 16px; }

/* ==== TYPOGRAPHY ==== */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: #F8F7F4;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(12,12,14,0.18);
}
.main-nav a[aria-current], .main-nav a.active {
  color: #C5B98E;
  font-weight: bold;
}
@media (max-width: 600px) {
  h1, .hero h1 { font-size: 1.8rem; }
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #C5B98E;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #F8F7F4;
  margin-bottom: 6px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #C5B98E;
}
p, ul, ol, li, blockquote {
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  color: #F8F7F4;
}
blockquote {
  font-style: italic;
  border-left: 4px solid #C5B98E;
  padding-left: 14px;
  margin-bottom: 10px;
}
strong { color: #C5B98E; font-weight: bold; }

/* ==== HEADER & NAV ==== */
header {
  width: 100%;
  background: #232324;
  border-bottom: 2px solid #40403F;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 16px;
}
header img { height: 38px; width: auto; }
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
}
.main-nav a {
  color: #F8F7F4;
  padding: 6px 4px;
  border-radius: 3px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #C5B98E;
  color: #232324;
}
.cta-primary {
  background: #C5B98E;
  color: #232324;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  padding: 11px 30px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  margin-left: 28px;
  box-shadow: 0 2px 10px 0 rgba(240, 228, 201, 0.10);
  transition: background 0.22s, color 0.22s, box-shadow 0.21s, transform 0.18s;
  letter-spacing: 0.02em;
  display: inline-block;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: #F8F7F4;
  color: #232324;
  box-shadow: 0 4px 18px 0 rgba(197, 185, 142, 0.21);
  transform: translateY(-2px) scale(1.03);
}

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #C5B98E;
  border: none;
  font-size: 2.2rem;
  line-height: 1;
  padding: 4px 10px;
  margin-left: 18px;
  cursor: pointer;
  border-radius: 6px;
  z-index: 2001;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #33332D;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,35,36,0.99);
  z-index: 2000;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 46px;
  padding-left: 0;
  transition: transform 0.32s cubic-bezier(0.77,0,0.18,1);
  transform: translateX(100%);
}
.mobile-menu.open {
  display: flex !important;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #C5B98E;
  font-size: 2.2rem;
  border: none;
  position: absolute;
  top: 24px;
  right: 22px;
  cursor: pointer;
  z-index: 2100;
  border-radius: 6px;
  transition: background 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #33332D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  margin-left: 32px;
}
.mobile-nav a {
  color: #F8F7F4;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  padding: 10px 0;
  font-weight: 700;
  border-bottom: 1px solid #40403F;
  transition: color 0.20s, background 0.20s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #C5B98E;
  background: none;
}

/* ==== HERO SECTION ==== */
.hero {
  background: linear-gradient(120deg, #232324 85%, #C5B98E 195%);
  min-height: 320px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  gap: 16px;
  align-items: flex-start;
}
.hero p {
  color: #C5B98E;
  font-size: 1.16rem;
  font-weight: 400;
  max-width: 600px;
}
.hero .cta-primary {
  margin: 26px 0 0;
}

/* ==== FEATURE GRID ==== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 30px 0 0 0;
  padding: 0;
}
.feature-grid li {
  background: #29292B;
  border: 1px solid #40403F;
  border-radius: 10px;
  box-shadow: 0 2px 6px 0 rgba(30,29,29,0.12);
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 330px;
  padding: 24px 18px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow 0.22s, border 0.18s, transform 0.17s;
  position: relative;
  margin-bottom: 20px;
}
.feature-grid li img {
  height: 42px;
  width: 42px;
  filter: grayscale(40%) sepia(12%) brightness(0.95) contrast(1.05);
  margin-bottom: 8px;
}
.feature-grid li h3 {
  color: #C5B98E;
  font-size: 1.17rem;
}
.feature-grid li:hover {
  box-shadow: 0 4px 24px 0 rgba(35,35,36,0.23);
  border-color: #C5B98E;
  transform: translateY(-3px) scale(1.01);
}

/* ==== CTA SECTION ==== */
.cta {
  background: #C5B98E;
  color: #232324 !important;
  border-radius: 12px;
  box-shadow: 0 4px 24px 0 rgba(35,35,36,0.08);
  margin: 60px 0 56px 0;
}
.cta .content-wrapper {
  align-items: flex-start;
}
.cta h2, .cta .cta-primary {
  color: #232324;
}
.cta p {
  color: #232324;
}

/* ==== TEXT & SECTION COMPONENTS ==== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.text-section ul {
  list-style: disc inside;
  margin-top: 9px;
}
.text-section li {
  margin-bottom: 10px;
}

.process-icons {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-top: 18px;
  margin-bottom: 18px;
  align-items: center;
}
.process-icons img {
  width: 48px;
  height: 48px;
}
.faq-toggle ul, .faq-toggle li {
  list-style: disc inside;
  color: #F8F7F4;
}
.next-steps-info ul {
  list-style: disc inside;
  color: #F8F7F4;
}
.collaboration-highlights ul {
  list-style: disc inside;
  color: #F8F7F4;
  margin-top: 9px;
}
.planning-methods-overview {
  margin-top: 16px;
  background: #29292B;
  border-radius: 8px;
  padding: 18px;
}

/* ==== FOOTER ==== */
footer {
  background: #1C1C1D;
  padding: 40px 0 22px 0;
  border-top: 2px solid #40403F;
  z-index: 10;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-navigation {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-navigation a {
  color: #C5B98E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 9px;
  transition: color 0.15s;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  color: #F8F7F4;
}
.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
  filter: grayscale(22%) brightness(0.93) contrast(1.03);
}
.footer-contact p {
  font-size: 1.02rem;
  color: #F8F7F4;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 3px;
  vertical-align: middle;
}
.footer-social {
  display: flex;
  gap: 19px;
}
.footer-social a img {
  width: 27px;
  height: 27px;
  filter: grayscale(60%) sepia(12%) brightness(0.94) contrast(1.09);
  transition: filter 0.16s, transform 0.15s;
}
.footer-social a:hover img,
.footer-social a:focus img {
  filter: grayscale(0%) sepia(0%) brightness(1.06) contrast(1.19);
  transform: scale(1.10);
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #232324;
  color: #F8F7F4;
  z-index: 3000;
  padding: 24px 18px 18px 18px;
  box-shadow: 0 -2px 24px 0 rgba(35,35,36,0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  min-height: 120px;
  border-top: 2px solid #C5B98E;
  animation: cookieSlideUp .48s cubic-bezier(0.88,0,0.22,1);
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 18px;
  margin-top: 11px;
  flex-wrap: wrap;
}
.cookie-btn-accept, .cookie-btn-reject, .cookie-btn-settings {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 18px;
  border: none;
  padding: 9px 24px;
  margin-right: 0px;
  cursor: pointer;
  margin-bottom: 6px;
  transition: background 0.2s, color 0.2s, box-shadow 0.17s, transform 0.14s;
}
.cookie-btn-accept {
  background: #C5B98E;
  color: #232324;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: #F8F7F4;
  color: #232324;
  transform: translateY(-2px) scale(1.04);
}
.cookie-btn-reject {
  background: #29292B;
  color: #F8F7F4;
  border: 1px solid #C5B98E;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #1C1C1D;
  color: #C5B98E;
  transform: translateY(-1.5px) scale(1.02);
}
.cookie-btn-settings {
  background: transparent;
  color: #C5B98E;
  border: 1px solid #40403F;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #29292B;
  color: #F8F7F4;
  border-color: #C5B98E;
}
/* ==== COOKIE PREFERENCES MODAL ==== */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 4000;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(35,35,36,0.81);
  justify-content: center;
  align-items: center;
  animation: cookieModalFadeIn .18s cubic-bezier(0.9,0,0.1,1);
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-overlay.open {
  display: flex !important;
}
.cookie-modal {
  background: #232324;
  color: #F8F7F4;
  border-radius: 10px;
  min-width: 345px;
  max-width: 95vw;
  box-shadow: 0 8px 50px 0 rgba(35,35,36,0.37);
  padding: 36px 25px 31px 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookieModalSlideUp .26s cubic-bezier(0.88,0,0.22,1);
}
@keyframes cookieModalSlideUp {
  from { transform: translateY(64px) scale(0.96); opacity:0; }
  to { transform: translateY(0) scale(1); opacity:1; }
}
.cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 19px;
  background: none;
  border: none;
  color: #C5B98E;
  font-size: 1.7rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.18s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #29292B;
}
.cookie-modal h2 {
  color: #C5B98E;
  margin-top: 0;
  font-size: 1.35rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 15px;
}
.cookie-category input[type=checkbox] {
  width: 19px;
  height: 19px;
  accent-color: #C5B98E;
}
.cookie-category label {
  font-size: 1.09rem;
  color: #F8F7F4;
  user-select: none;
}
.cookie-category.essential label {
  color: #C5B98E;
  font-weight: bold;
}
.cookie-category.essential input[type=checkbox] {
  accent-color: #C5B98E;
}

/* ==== THANK YOU SECTION ==== */
section.thank-you {
  background: linear-gradient(135deg, #29292B 80%, #C5B98E 120%);
  padding: 56px 0 80px 0;
  border-radius: 0 0 12px 12px;
  margin-bottom: 60px;
}
section.thank-you h1 {
  color: #C5B98E;
}
.next-steps-info ul li {
  color: #C5B98E;
}

/* ==== RESPONSIVE ======*/
@media (max-width: 1200px) {
  .container {
    max-width: 980px;
  }
}
@media (max-width: 980px) {
  .feature-grid {
    gap: 16px;
  }
  footer .container {
    gap: 20px;
  }
}
@media (max-width: 850px) {
  .feature-grid {
    gap: 10px;
  }
  .card-container, .footer-navigation {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 700px;
    padding: 0 8px;
  }
  .content-grid,
  .card-container,
  .footer-navigation {
    flex-direction: column;
    gap: 22px;
  }
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 19px;
  }
  .feature-grid li {
    max-width: 100%;
  }
  .process-icons {
    flex-direction: row;
    gap: 19px;
  }
  .section {
    padding: 24px 5px;
    margin-bottom: 38px;
  }
  .footer-navigation, .footer-contact, .footer-brand {
    align-items: flex-start;
  }
}
@media (max-width: 700px) {
  header .container, footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-primary {
    margin-left: 0;
    margin-top: 14px;
  }
  .hero .content-wrapper, .content-wrapper {
    align-items: flex-start;
    gap: 22px;
  }
}
@media (max-width: 600px) {
  .hero {
    min-height: 190px;
    padding: 12px 0 20px 0;
  }
  .feature-grid,
  .card-container {
    gap: 12px;
  }
  .section {
    padding: 13px 2px;
  }
  .cta {
    margin: 34px 0 27px 0;
    border-radius: 6px;
    padding: 12px 6px 14px;
  }
  .testimonial-card {
    padding: 11px 8px;
    font-size: 1em;
  }
  .cookie-modal {
    min-width: 95vw;
    padding: 16px 6px 13px 6px;
  }
  .cookie-banner {
    padding: 13px 6px 11px 6px;
  }
}

/* ==== ANIMATIONS FOR BURGER & MOBILE MENU ==== */
.mobile-menu { transition: transform 0.33s cubic-bezier(0.77,0,0.18,1); }
section {
  transition: box-shadow 0.2s, background 0.35s;
}

/* ==== MICRO-INTERACTIONS ==== */
button:focus, .cta-primary:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus, .cookie-btn-accept:focus, .cookie-btn-reject:focus, .cookie-btn-settings:focus, .cookie-modal-close:focus {
  outline: 2px solid #C5B98E;
  outline-offset: 1px;
}
.card:active,
.feature-grid li:active,
.cta-primary:active,
.cookie-btn-accept:active,
.cookie-btn-settings:active { 
  transform: scale(0.98);
}

/* ==== INDUSTRIAL MODERN ACCENTS ==== */
.card, .feature-grid li {
  border: 1.5px solid #40403F;
  /* metallic effect line */
  box-shadow: 0 1.5px 0 0 #C5B98E inset;
}

h1, h2, h3, .cta-primary {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

::-webkit-scrollbar {
  width: 12px;
  background: #212121;
}
::-webkit-scrollbar-thumb {
  background: #40403F;
  border-radius: 12px;
  border: 2px solid #232324;
}
::-webkit-scrollbar-thumb:hover {
  background: #C5B98E;
}

/* ==== FLEXBOX SAFETY: Prevent Overlapping ==== */
.card, .feature-grid li, .testimonial-card {
  min-width: 0;
  /* prevents child overflow in horizontal scroll */
}

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