/* ===== CSS RESET & BASE ===== */
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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #181818;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: column;
}

*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style: disc inside;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.45,.05,.55,.95);
}
a:focus {
  outline: 2px dashed #23487A;
  outline-offset: 2px;
}

/* ===== TYPOGRAPHY HIERARCHY ===== */
h1, .hero h1 { 
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.2;
  color: #111;
  margin-bottom: 24px;
}

h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 1.2;
  color: #181818;
  margin-bottom: 20px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #222;
  margin-bottom: 12px;
}

p, li, address {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #222;
}

strong, b {
  font-weight: 700;
  color: #111;
}

blockquote {
  font-style: italic;
  color: #232323;
  background: #fafafb;
  border-left: 4px solid #222;
  padding: 18px 24px;
  margin: 0 0 10px;
  border-radius: 8px;
}

.author {
  display: block;
  margin-top: 5px;
  color: #656565;
  font-size: 0.97rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: normal;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ===== HEADER & MAIN NAV ===== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
header img {
  height: 42px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #222;
  font-size: 1rem;
  padding: 4px 8px;
  border-radius: 4px;
  position: relative;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #181818;
  color: #fff;
}

.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #181818;
  color: #fff;
  font-weight: 600;
  padding: 11px 30px;
  border-radius: 32px;
  font-size: 1.07rem;
  outline: none;
  border: none;
  transition: background 0.2s cubic-bezier(.45,.05,.55,.95), color 0.2s;
  margin-left: 12px;
  box-shadow: 0 2px 14px 0 rgba(34,34,34,0.10);
  letter-spacing: 0.01em;
  cursor: pointer;
  display: inline-block;
  position: relative;
}
.cta-button:hover,
.cta-button:focus {
  background: #23487A;
  color: #fff;
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #181818;
  cursor: pointer;
  margin-left: 16px;
  z-index: 90;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #23487A;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,20,20,.93);
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 0 0 26px;
  z-index: 120;
  transform: translateX(100%);
  transition: transform 0.48s cubic-bezier(.5,1.9,.7,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: #fff;
  background: transparent;
  border: none;
  margin-bottom: 28px;
  margin-left: auto;
  margin-right: 32px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #A8C63F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  background: none;
  padding: 10px 0;
  border-radius: 8px;
  letter-spacing: 0.02em;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #181818;
  color: #A8C63F;
}

@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

@media (min-width: 1024px) {
  .mobile-menu, .mobile-menu.open {
    display: none !important;
  }
}

/* ===== HERO & CTA ===== */
.hero {
  background: #fafbfc;
  padding: 48px 0 32px 0;
  margin-bottom: 42px;
  box-shadow: 0 2px 14px 0 rgba(10,10,10,0.09);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero p {
  font-size: 1.18rem;
  color: #232323;
}
.hero .cta-button {
  margin-top: 16px;
}

.cta {
  background: #111;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px 0 rgba(0,0,0,0.10);
  margin-bottom: 55px;
}
.cta .content-wrapper > h2, .cta p {
  color: #fff;
}
.cta .cta-button {
  margin-top: 14px;
  background: #23487A;
}
.cta .cta-button:hover {
  background: #fff;
  color: #23487A;
}

/* ===== CARDS & SERVICES ===== */
.card-container, .feature-grid, .service-list, .idea-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .feature, .service {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px 0 rgba(0,0,0,0.10);
  padding: 28px 28px 22px 28px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 270px;
  min-width: 260px;
  max-width: 350px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover, .feature:hover, .service:hover {
  box-shadow: 0 7px 30px 0 rgba(34,44,54,0.18);
  transform: translateY(-5px) scale(1.015);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.service-list {
  gap: 32px;
}
.feature-grid {
  gap: 28px;
}
.feature img {
  height: 42px;
  margin-bottom: 8px;
  filter: grayscale(100%) contrast(140%);
}

ul {
  margin-bottom: 12px;
}
ul li {
  margin-bottom: 8px;
  margin-left: 20px;
}

.idea-list {
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.idea-list h3 {
  margin-bottom: 8px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: #f6f6f7;
  border-radius: 12px;
  padding: 40px 0;
  margin-bottom: 46px;
}
.testimonials > .container {
  flex-direction: column;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 26px;
  padding: 24px 32px 20px 26px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 18px 0 rgba(44,44,44,0.10);
  position: relative;
  max-width: 600px;
  transition: box-shadow 0.19s, transform 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 40px 0 rgba(34,34,34,0.13);
  transform: translateY(-2px) scale(1.008);
}
.testimonial-card blockquote {
  font-style: italic;
  color: #181818;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}
.testimonial-card .author {
  color: #555;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.testimonials h2 {
  color: #181818;
}

/* ===== FOOTER ===== */
footer {
  background: #181818;
  color: #f3f3f4;
  padding: 50px 0 14px 0;
  position: relative;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav, .legal-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 16px 0 0;
}
.footer-nav a, .legal-nav a {
  color: #f3f3f4;
  font-size: 1rem;
  letter-spacing: 0.01em;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 2px 0;
  border-radius: 3px;
  transition: background 0.18s, color 0.18s;
}
.footer-nav a:hover, .legal-nav a:hover, .footer-nav a:focus, .legal-nav a:focus{
  background: #fff;
  color: #181818;
}
.brand-info {
  font-size: 1rem;
  color: #f3f3f4;
}
.brand-info strong {
  color: #fff;
  letter-spacing: 0.01em;
}
.brand-info a {
  color: #A8C63F;
  text-decoration: underline;
  word-break: break-all;
}
.brand-info a:hover, .brand-info a:focus {
  color: #fff;
}

/* ===== CONTENT UTILITIES ===== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section p {
  margin-bottom: 0;
}
.location-map {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.section:not(:last-child),
.content-wrapper > :not(:last-child) {
  margin-bottom: 20px;
}

.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;
}

dd, dt {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #333;
  font-size: 1rem;
}

/* ===== BUTTONS & FORMS ===== */
button, input[type="button"], input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 32px;
  outline: none;
  padding: 10px 26px;
  cursor: pointer;
  box-shadow: 0 1px 6px 0 rgba(0,0,0,0.07);
  background: #111;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s;
}

button:hover, button:focus {
  background: #23487A;
  color: #fff;
}

input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 12px;
  border: 1px solid #d2d2d6;
  border-radius: 7px;
  width: 100%;
  outline: none;
  margin-bottom: 16px;
}
input:focus, textarea:focus, select:focus {
  border-color: #23487A;
  background: #fafbfa;
}

/* ===== MONOCHROME DRAMATIC CONTRAST ===== */
body {
  background: #fafbfc;
  color: #181818;
}
a {
  color: #23487A;
}
a:hover, a:focus {
  color: #A8C63F;
  text-decoration: underline;
}

/* SHADOWS AND DEPTH */
.card, .card-content, .feature, .service, .testimonial-card {
  box-shadow: 0 2px 18px 0 rgba(30,30,30,0.07);
}

/* ROUNDED ELEMENTS */
.card, .feature, .service, .testimonial-card, .cta {
  border-radius: 14px;
}

/* === RESPONSIVE DESIGN ==== */
@media (max-width: 1023px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
  .footer-nav, .legal-nav,
  .content-wrapper,
  .card-container, .feature-grid, .service-list,
  .text-section, .idea-list, .testimonials > .container, .testimonial-card {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-nav, .legal-nav {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  h1, .hero h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.22rem;
  }
  h3 {
    font-size: 1.06rem;
  }
  .cta {
    padding: 28px 8px;
  }
  .card, .feature, .service {
    padding: 20px 12px 14px 12px;
    min-width: 90px;
    max-width: 100%;
  }
  .card-container, .feature-grid, .service-list, .idea-list, .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .testimonials, .testimonial-card {
    padding: 24px 8px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 18px 10px 14px 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  header img {
    height: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 3vw;
    padding-right: 3vw;
  }
  .cta-button, button, input[type="button"], input[type="submit"] {
    padding: 11px 12px;
    font-size: 1rem;
  }
}

/* === COOKIE BANNER & MODAL === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  background: #fff;
  color: #181818;
  padding: 32px 12px 20px 12px;
  box-shadow: 0 -3px 18px rgba(0,0,0,.13);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 9999;
  font-family: 'Roboto', Arial, sans-serif;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .3s, transform .38s;
}
.cookie-banner.closed {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner__text {
  flex: 1 1 0%;
  font-size: 0.97rem;
  color: #181818;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  padding: 10px 22px;
  border-radius: 30px;
  border: none;
  background: #181818;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  margin: 0;
  font-size: 1rem;
}
.cookie-btn.accept {
  background: #23487A;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #A8C63F;
  color: #181818;
}
.cookie-btn.reject {
  background: #181818;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #A8C63F;
  color: #181818;
}
.cookie-btn.settings {
  background: #fff;
  color: #23487A;
  border: 1px solid #23487A;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #23487A;
  color: #fff;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 8px 16px 8px;
    gap: 10px;
  }
  .cookie-banner__actions {
    width: 100%;
    flex-direction: column;
    gap: 9px;
    align-items: stretch;
  }
}

/* === COOKIE MODAL === */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(30,30,30, .82);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.24s;
}
.cookie-modal.closed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cookie-modal__content {
  background: #fff;
  color: #181818;
  border-radius: 16px;
  max-width: 420px;
  padding: 36px 30px 24px 30px;
  box-shadow: 0 20px 40px 0 rgba(10,10,10,0.19);
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.cookie-modal__header h3 {
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #181818;
}
.cookie-modal__close {
  background: none;
  border: none;
  font-size: 1.65rem;
  line-height: 1;
  color: #111;
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #23487A;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.cookie-modal__category-label {
  flex: 1 1 0%;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #181818;
  font-size: 1rem;
}
.cookie-toggle {
  appearance: none;
  width: 44px;
  height: 24px;
  border-radius: 14px;
  background: #d2d2d6;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: background 0.22s;
  margin-right: 4px;
}
.cookie-toggle:checked {
  background: #23487A;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform .22s, background .22s;
}
.cookie-toggle:checked::before {
  transform: translateX(20px);
  background: #A8C63F;
}
.cookie-modal__footer {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-info {
  font-size: 0.92rem;
  color: #676767;
}
@media (max-width: 500px) {
  .cookie-modal__content {
    max-width: 95vw;
    padding: 18px 6vw 16px 8vw;
  }
}

/* ======== MICRO-INTERACTIONS ======== */
.cta-button, button, .main-nav a, .mobile-nav a, .cookie-btn, .footer-nav a, .legal-nav a {
  transition: background 0.15s cubic-bezier(.4,1.1,.2,1), color 0.15s cubic-bezier(.4,1.1,.2,1), transform 0.15s cubic-bezier(.4,1.1,.2,1);
}
.cta-button:active, button:active, .main-nav a:active, .mobile-nav a:active, .cookie-btn:active {
  transform: scale(.97);
}
.card, .feature, .service, .testimonial-card {
  transition: box-shadow 0.17s, transform 0.11s;
}
.card:hover, .feature:hover, .service:hover {
  transform: translateY(-4px) scale(1.016);
}

/* ====== ACCESSIBILITY ====== */
:focus-visible {
  outline: 2px solid #A8C63F;
  outline-offset: 1px;
}

/* ====== UTILITY CLASSES ====== */
.mt-2 { margin-top: 20px; }
.mb-2 { margin-bottom: 20px; }
.mt-3 { margin-top: 32px; }
.flex-center { display: flex; justify-content: center; align-items: center; }

/* ===== Monochrome sophisticated decorative styles ===== */
hr {
  border: none;
  border-top: 1.5px solid #23232344;
  margin: 36px 0 24px 0;
}

/* ===== Hide mobile menu overflow on open ===== */
body.menu-open {
  overflow: hidden;
}

/* ===== END OF STYLES ===== */