/* ==== 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #18191A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  display: block;
  max-width: 120px;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

:root {
  --primary: #18191a;
  --secondary: #fff;
  --light-gray: #f7f7f7;
  --dark-gray: #222;
  --gray-400: #ccc;
  --gray-300: #e5e5e5;
  --accent: #C17800;
  --text: #222;
  --text-invert: #fff;
  --shadow: 0 6px 24px 0 rgba(24,25,26,0.14);
  --border-radius: 18px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --shadow-hover: 0 16px 32px 0 rgba(24,25,26,0.15);
}

/* ==== LAYOUT ==== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--secondary);
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  flex: 1 1 320px;
  min-width: 260px;
  transition: box-shadow 0.24s;
}
.card:hover, .card:focus-within {
  box-shadow: var(--shadow-hover);
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.features-grid > div {
  background: var(--secondary);
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  padding: 32px 20px 28px 20px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.22s;
  margin-bottom: 20px;
  border: 1px solid #ebebeb;
}
.features-grid > div:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--gray-400);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  background: var(--light-gray);
  color: var(--text);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  flex: 1 1 400px;
  min-width: 240px;
  max-width: 670px;
  border: 1px solid #ededed;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ==== HEADER, NAVIGATION ==== */
header {
  background: var(--secondary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  z-index: 30;
  position: sticky;
  top: 0;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 18px 0;
}
.main-nav img {
  height: 38px;
  width: auto;
  margin-right: 24px;
  vertical-align: middle;
}
.main-nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
  display: flex;
  align-items: center;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--primary);
  color: var(--secondary);
}
.main-nav .cta-primary {
  background: var(--primary);
  color: var(--secondary);
  font-weight: 700;
  font-size: 16px;
  box-shadow: var(--shadow);
  border-radius: 20px;
  padding: 10px 26px;
  margin-left: 12px;
  transition: box-shadow 0.19s, background 0.19s;
  border: 2px solid var(--primary);
}
.main-nav .cta-primary:hover,
.main-nav .cta-primary:focus {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--secondary);
  box-shadow: var(--shadow-hover);
}

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 18px;
  right: 26px;
  background: var(--primary);
  color: var(--secondary);
  border: none;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  z-index: 50;
  cursor: pointer;
  transition: background .16s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--accent);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  background: #161616f0;
  width: 100vw;
  height: 100vh;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.88,.1,.15,.83);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: var(--accent);
  color: var(--secondary);
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 22px;
  right: 30px;
  z-index: 201;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 110px;
  margin-left: 28px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--secondary);
  padding: 16px 0 10px 14px;
  border-radius: 12px;
  width: fit-content;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 1050px) {
  .main-nav a:not(:first-child) {
    font-size: 15px;
    padding: 6px 4px;
  }
}
@media (max-width: 910px) {
  .main-nav {
    gap: 10px;
  }
  .main-nav img {
    margin-right: 12px;
    height: 32px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
/* Always display mobile menu toggle for small screens */
@media (max-width: 900px) {
  header {
    min-height: 60px;
    position: relative;
  }
}

/* ==== HERO ==== */
.hero {
  padding: 67px 0 49px 0;
  background: linear-gradient(90deg, #fff 65%, #dfdfdf 135%);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 650px;
  align-items: center;
  text-align: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.7rem;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.hero p {
  color: #383838;
  margin-bottom: 32px;
  font-family: var(--font-body);
  font-size: 1.18rem;
  line-height: 1.57;
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.7em;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
  margin-bottom: 0.3em;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
}
p, li {
  font-family: var(--font-body);
  color: #232323;
  font-size: 1rem;
  line-height: 1.65;
}
strong {
  font-weight: 700;
}
ul, ol {
  margin-left: 1.1em;
  margin-bottom: 1em;
}
ul li, ol li {
  margin-bottom: 0.65em;
  list-style: disc inside;
}

.text-section ul, .content-wrapper ul {
  padding-left: 1.5em;
}
.text-section ul li, .content-wrapper ul li {
  list-style: disc;
  padding-left: 0.1em;
}

/* ==== BUTTONS ==== */
.cta-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--secondary);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  border-radius: 24px;
  padding: 12px 36px;
  margin: 12px 0 0 0;
  box-shadow: var(--shadow);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  border: 2px solid var(--primary);
  letter-spacing: .02em;
  cursor: pointer;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-hover);
}

.cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  border-radius: 20px;
  margin-top: 8px;
  padding: 10px 25px;
  box-shadow: 0 2px 8px rgba(24,25,26,.06);
  transition: background 0.15s, color 0.15s, border 0.15s;
  cursor: pointer;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ==== TESTIMONIALS ==== */
.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 10px;
  color: #232323;
}
.testimonial-card strong {
  display: block;
  font-size: 1rem;
  color: #222;
  margin-bottom: 3px;
}
.testimonial-card img {
  height: 21px;
  width: 21px;
  display: inline-block;
}

/* ==== CARD STYLES ==== */
.card {
  border: 1px solid #ededed;
  background: var(--secondary);
  color: var(--primary);
  transition: box-shadow 0.2s;
}
.card h3 {
  color: var(--primary);
}

/* ==== MAP EMBED ==== */
.map-embed {
  background: #efefef;
  border-radius: 14px;
  padding: 22px 16px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.04);
  margin-top: 9px;
  margin-bottom: 18px;
  color: #353535;
}

/* ==== FOOTER ==== */
footer {
  background: #1a1a1a;
  color: #bababa;
  padding: 50px 0 32px 0;
  margin-top: 67px;
  font-size: 15px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}
.footer-nav a {
  color: #bababa;
  font-family: var(--font-display);
  font-weight: 500;
  border-radius: 16px;
  transition: background 0.14s, color 0.14s;
  padding: 6px 12px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  background: rgba(68,68,68,.21);
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #acacac;
  font-size: 15px;
}
.footer-info span {
  margin-right: 16px;
}

/* ==== SPACING UTILITIES ==== */
.mb-0 { margin-bottom: 0 !important; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.mt-32 { margin-top: 32px; }
.pt-16 { padding-top: 16px; }
.pt-28 { padding-top: 28px; }

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #fafafa;
  color: #232323;
  width: 100vw;
  z-index: 3000;
  box-shadow: 0 -3px 18px rgba(0,0,0,0.10);
  padding: 28px 16px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.35s cubic-bezier(.77,.05,.92,.54), opacity 0.2s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  margin-top: 9px;
}
.cookie-btn {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  border-radius: 18px;
  padding: 10px 23px;
  margin: 0 2px;
  cursor: pointer;
  outline: none;
  border: 2px solid var(--primary);
  background: var(--primary);
  color: #fff;
  transition: background 0.18s, color 0.18s, border 0.18s;
}
.cookie-btn.accept {
  background: var(--accent);
  border-color: var(--accent);
}
.cookie-btn.reject {
  background: #fff;
  color: var(--primary);
  border-color: var(--primary);
}
.cookie-btn.settings {
  background: #ededed;
  color: var(--dark-gray);
  border-color: #ededed;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
/* ==== COOKIE PREFERENCES MODAL ==== */
.cookie-modal {
  position: fixed;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background: #fff;
  color: #232323;
  z-index: 3010;
  border-radius: 15px;
  box-shadow: 0 9px 48px 0 rgba(22,23,29,0.25);
  max-width: 360px;
  width: 96%;
  padding: 32px 22px 26px 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.25s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) scale(1);
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 0.85em;
  color: var(--primary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
}
.cookie-category label {
  font-family: var(--font-body);
  font-size: 15px;
  color: #373737;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--primary);
  width: 19px;
  height: 19px;
  margin-right: 4px;
}
.cookie-category input[disabled] {
  opacity: .36;
}
.cookie-modal .cookie-actions {
  margin-top: 12px;
  justify-content: flex-end;
}

/* ==== RESPONSIVE / FLEXBOX MOBILE-FIRST ==== */
@media (max-width: 768px) {
  .container {
    padding: 0 9px;
    max-width: 100vw;
  }
  .section {
    margin-bottom: 38px;
    padding: 28px 7px;
  }
  .content-wrapper, .text-section {
    gap: 12px;
  }
  .features-grid, .card-container, .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .features-grid > div, .testimonial-card, .card {
    min-width: 0;
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-info {
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
  }
  footer {
    padding: 24px 0 18px 0;
    margin-top: 36px;
  }
  .hero {
    padding: 38px 0 26px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: flex !important;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 16px 0 13px 0;
  }
  .hero h1 {
    font-size: 1.3rem;
  }
  .section {
    padding: 16px 3px;
    margin-bottom: 22px;
  }
}

/* ==== ANIMATIONS ==== */
.card, .features-grid > div, .testimonial-card, .cta-primary, .cta-secondary, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.19s, background 0.21s, color 0.19s,opacity 0.24s, transform 0.2s;
}
.mobile-menu, .cookie-modal {
  will-change: transform, opacity;
}

/* ========== ACCESSIBILITY and SELECTION ========== */
:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
::selection {
  background: #18191a;
  color: #fff;
}

/* == SCROLLBAR == */
::-webkit-scrollbar {
  width: 10px;
  background: #eaeaea;
}
::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 10px;
}

/* ==== END OF STYLE.CSS ==== */
