/* ========= 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;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}
body {
  min-height: 100vh;
  min-width: 100vw;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #FFFFFF;
  color: #283142;
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #283142;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #CA965B;
  outline-offset: 2px;
}
/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #283142;
  font-weight: 700;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
  line-height: 1.18;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.22;
}
h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
  line-height: 1.22;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p {
  margin-bottom: 16px;
  color: #283142;
}
strong, b {
  font-weight: 700;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
blockquote {
  margin: 0;
  padding: 0;
  font-style: italic;
  color: #283142;
  opacity: 0.85;
}
address {
  font-style: normal;
  line-height: 1.7;
  color: #283142;
  font-size: 16px;
}
/* ========== LAYOUT STRUCTURE ========== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
/* ========== HEADER & NAVIGATION ========== */
header {
  background: #fff;
  border-bottom: 1px solid #EDF0F2;
  box-shadow: 0 2px 8px 0 rgba(40,49,66,0.03);
  position: relative;
  z-index: 101;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.main-nav > a img {
  height: 44px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  align-items: center;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #283142;
  padding: 7px 16px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  transition: background 0.18s, color 0.18s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: #F6F6F8;
  color: #CA965B;
}
/* CTA Button */
.btn-cta {
  background: #CA965B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 26px;
  padding: 11px 32px;
  margin-left: 22px;
  font-size: 17px;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px 0 rgba(202,150,91,0.07);
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  outline: none;
  display: inline-block;
  text-align: center;
}
.btn-cta:hover, .btn-cta:focus {
  background: #283142;
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(40,49,66,0.08);
}
/* ========= MOBILE MENU ========== */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2.2rem;
  color: #283142;
  border: none;
  margin-left: 16px;
  cursor: pointer;
  z-index: 110;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(40,49,66,0.92);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 32px;
  box-sizing: border-box;
  z-index: 2000;
  transform: translateX(-100vw);
  transition: transform 0.26s cubic-bezier(.8,.2,.2,1);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #FFF;
  font-size: 2.1rem;
  margin: 30px 0 20px 0;
  cursor: pointer;
  z-index: 10;
  padding: 8px 12px;
  border-radius: 50%;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #CA965B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 12px 0 12px 0;
  line-height: 1.14;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #CA965B;
  background: #fff1e1;
}
@media (max-width: 1024px) {
  .main-nav ul {
    gap: 6px;
  }
  .main-nav {
    gap: 10px;
  }
  .btn-cta {
    margin-left: 10px;
    padding: 10px 22px;
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .main-nav ul {
    gap: 0;
  }
  .main-nav {
    flex-wrap: wrap;
    gap: 6px;
  }
}
@media (max-width: 768px) {
  .main-nav ul {
    display: none;
  }
  .btn-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* ========== HERO SECTION ========== */
.hero {
  background: #F9F9FB;
  padding: 48px 0 50px 0;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  max-width: 630px;
  margin: 0 auto;
}
.hero h1 {
  color: #283142;
  font-size: 2.35rem;
  margin-bottom: 10px;
}
.hero p {
  color: #283142;
  opacity: 0.85;
  font-size: 1.16rem;
}
/* ========== FEATURES & SERVICES ========== */
.features, .services {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 0;
}
.features .content-wrapper, .services .content-wrapper {
  align-items: stretch;
}
.features ul, .services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0;
}
.features ul li, .services ul li {
  flex: 1 1 230px;
  min-width: 220px;
  background: #FCFCFD;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(40,49,66,0.06);
  padding: 28px 22px 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.2s;
}
.features ul li:hover, .services ul li:hover {
  box-shadow: 0 6px 24px 0 rgba(40,49,66,0.10);
}
.features ul li img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}
.features ul li h3, .services ul li h3 {
  font-size: 18px;
  margin: 0 0 6px 0;
  color: #283142;
}
.features ul li p, .services ul li p {
  font-size: 15px;
  opacity: 0.88;
  margin: 0 0 6px 0;
}
.services ul li span {
  margin-top: 8px;
  color: #CA965B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.services .btn-cta {
  margin-top: 30px;
}
@media (max-width: 900px) {
  .features ul, .services ul {
    flex-direction: column;
    gap: 18px;
  }
  .features ul li, .services ul li {
    min-width: 0;
    width: 100%;
  }
}
/* ========== TESTIMONIALS ========== */
.testimonials {
  background: #F7F8FA;
  padding: 40px 0 44px 0;
  margin-bottom: 60px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 32px 18px 32px;
  background: #fff;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(40,49,66,0.06);
  transition: box-shadow 0.19s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 20px 0 rgba(202,150,91,0.10);
}
.testimonial-card blockquote {
  color: #283142;
  font-size: 17px;
  line-height: 1.50;
  max-width: 520px;
  font-style: italic;
  opacity: 0.96;
}
.testimonial-meta {
  min-width: 120px;
  font-size: 15px;
  color: #283142;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.78;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 9px;
}
.testimonial-meta img {
  width: 26px;
  height: 26px;
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 15px 16px 15px;
  }
}
/* ========== PROJECTS / HIGHLIGHTS ========== */
.project-highlight {
  background: #f8f7f6;
  border-radius: 13px;
  padding: 26px 22px 20px 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(202,150,91,0.06);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.project-highlight h2 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.project-highlight p {
  font-size: 15px;
}
/* ========== FOOTER ========== */
footer {
  background: #fff;
  border-top: 1px solid #EDF0F2;
  padding: 40px 0 0 0;
}
footer .container {
  padding-bottom: 28px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand {
  flex: 2;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
}
.footer-brand img {
  width: 44px;
  margin-bottom: 7px;
}
.footer-brand p {
  color: #667;
  font-size: 15px;
}
.footer-brand a {
  color: #283142;
  font-size: 15px;
}
.footer-nav {
  flex: 2;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #283142;
  padding: 2px 0;
  font-size: 15px;
  opacity: 0.81;
  transition: color 0.15s, opacity 0.2s;
}
.footer-nav a:hover {
  color: #CA965B;
  opacity: 1;
}
.social-links {
  flex: 1;
  min-width: 100px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
  margin-top: 10px;
}
.social-links a img {
  width: 28px;
  height: 28px;
  filter: grayscale(1) brightness(0.8);
  transition: filter 0.18s;
}
.social-links a:hover img, .social-links a:focus img {
  filter: grayscale(0) brightness(1.04) drop-shadow(0 0 2px #CA965B);
}
@media (max-width: 850px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  .footer-brand, .footer-nav, .social-links {
    min-width: 0;
  }
}
/* ========== GENERAL DESIGN CARDS / ELEMENTS ========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 12px 0 rgba(40,49,66,0.08);
  padding: 20px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 30px rgba(40,49,66,0.15);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
  .hero {
    padding: 34px 0 34px 0;
  }
  .features, .services, .testimonials {
    padding: 24px 0 28px 0;
    margin-bottom: 34px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
/* ========== BUTTONS & LINKS ========== */
button, .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  background: #fff;
  color: #283142;
  border: 1px solid #EDF0F2;
  border-radius: 24px;
  padding: 10px 26px;
  cursor: pointer;
  transition: background 0.17s, border 0.15s, color 0.17s, box-shadow 0.15s;
  outline: none;
}
button:hover, button:focus, .btn:hover, .btn:focus {
  background: #CA965B;
  color: #fff;
  border-color: #CA965B;
  box-shadow: 0 4px 22px 0 rgba(202,150,91,0.07);
}
.btn-link {
  color: #CA965B;
  border: none;
  background: none;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
  text-decoration: underline;
}
.btn-link:hover {
  color: #283142;
}
/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  width: 100vw;
  bottom: 0;
  left: 0;
  background: #fff;
  color: #283142;
  border-top: 1px solid #EDF0F2;
  box-shadow: 0 -2px 16px 0 rgba(40,49,66,0.04);
  padding: 22px 18px;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  transition: transform 0.22s cubic-bezier(.8,.2,.2,1);
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner p {
  margin: 0;
  color: inherit;
  font-size: 16px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-banner .btn {
  min-width: 108px;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 24px;
  border: 1px solid #EDF0F2;
  background: #fff;
  color: #283142;
}
.cookie-banner .btn.accept {
  background: #CA965B;
  color: #fff;
  border-color: #CA965B;
}
.cookie-banner .btn.reject {
  background: #fff;
  color: #283142;
  border-color: #EDF0F2;
}
.cookie-banner .btn.settings {
  background: #F9F9FB;
  color: #283142;
  border: 1px solid #EDF0F2;
}
.cookie-banner .btn.accept:hover, .cookie-banner .btn.accept:focus {
  background: #283142;
  color: #fff;
}
.cookie-banner .btn.reject:hover, .cookie-banner .btn.reject:focus {
  background: #FCFCFD;
  color: #CA965B;
  border-color: #CA965B;
}
.cookie-banner .btn.settings:hover, .cookie-banner .btn.settings:focus {
  background: #fff1e1;
  color: #CA965B;
}
@media (max-width: 520px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 16px 6px;
  }
  .cookie-banner-buttons {
    gap: 9px;
  }
}
/* COOKIE MODAL (example class: .cookie-modal, .cookie-modal.active) */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40,49,66,0.79);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(.8,.2,.2,1);
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 40px 0 rgba(40,49,66,0.13);
  padding: 32px 24px 20px 24px;
  max-width: 440px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
  animation: cookieModalPop 0.22s cubic-bezier(.8,.2,.2,1);
}
@keyframes cookieModalPop {
  0% { transform: scale(0.98) translateY(40px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-dialog h2 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-category label {
  font-size: 15px;
  color: #283142;
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  accent-color: #CA965B;
  width: 20px;
  height: 20px;
}
.cookie-category.essential label {
  color: #CA965B;
  font-weight: 600;
}
.cookie-modal-dialog .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 18px;
  background: none;
  border: none;
  color: #CA965B;
  font-size: 1.7rem;
  cursor: pointer;
  border-radius: 50%;
  padding: 4px 10px;
  transition: background 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FCFCFD;
}
@media (max-width: 425px) {
  .cookie-modal-dialog {
    padding: 14px 6px 14px 8px;
  }
  .cookie-modal-dialog .modal-actions {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
}
/* ========= MICROANIMATIONS/INTERACTIONS ========== */
*:focus-visible {
  outline: 2px solid #CA965B;
  outline-offset: 2px;
}
a, button, .btn, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner .btn {
  transition: color 0.15s, background 0.18s, box-shadow 0.18s, border 0.15s, filter 0.10s;
}
.card, .testimonial-card, .features ul li, .services ul li, .project-highlight {
  transition: box-shadow 0.18s, filter 0.10s;
}
.card:hover, .testimonial-card:hover, .features ul li:hover, .services ul li:hover, .project-highlight:hover {
  box-shadow: 0 6px 24px 0 rgba(202,150,91,0.12);
  filter: brightness(1.01) saturate(1.01);
}
.btn-cta:active, .btn:active {
  transform: scale(0.98);
}
.mobile-menu.active {
  animation: mobileMenuSlideIn 0.26s cubic-bezier(.8,.2,.2,1);
}
@keyframes mobileMenuSlideIn {
  0% { transform: translateX(-120vw); }
  100% { transform: translateX(0); }
}
/* ========= RESPONSIVE TYPOGRAPHY ========= */
@media (max-width: 650px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
  .hero h1 { font-size: 1.3rem; }
  .hero p { font-size: 1rem; }
  .testimonial-card blockquote { font-size: 1rem; }
}
/* ========= SCROLLBAR STYLES ========== */
::-webkit-scrollbar {
  width: 10px;
  background: #f4f4f4;
}
::-webkit-scrollbar-thumb {
  background: #e4e4e4;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #CA965B44;
}
/* ========= HELPER CLASSES ========== */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.align-center { text-align: center !important; }
.visible-mobile { display: none !important; }
.visible-desktop { display: inherit !important; }
@media (max-width: 768px) {
  .visible-mobile { display: inherit !important; }
  .visible-desktop { display: none !important; }
}
/* ========= Z-INDEX LAYERS ========= */
header { z-index: 101; }
.mobile-menu, .cookie-modal { z-index: 2000; }
.cookie-banner { z-index: 3000; }
.cookie-modal { z-index: 4000; }
/* ========= END OF STYLE ========= */
