/* ===== CSS RESET & NORMALIZATION ===== */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #f8f9fa;
  color: #232b36;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  color: #14213d;
  background-color: #a0a0a2;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #fca311;
  outline-offset: 2px;
}
button, .cta-btn {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ====== BRAND COLORS ====== */
:root {
  --primary-color: #14213d;
  --secondary-color: #fca311;
  --accent-color: #e5e5e5;
  --background-color: #f8f9fa;
  --text-color: #232b36;
  --card-bg: #fff;
  --contrast-color: #fff;
  --shadow1: 0 1px 4px rgba(20,33,61,0.08);
  --shadow2: 0 4px 16px rgba(20,33,61,0.13);
  --border-radius: 10px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #14213d;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 500;
}
p, ul, ol, address {
  font-family: 'Roboto', Arial, sans-serif;
  color: #232b36;
  font-size: 1rem;
  line-height: 1.7;
}

/* Spacing Utilities */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===== HEADER & NAVBAR ===== */
header {
  background: var(--contrast-color);
  box-shadow: var(--shadow1);
  position: relative;
  z-index: 110;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 18px 0;
}
.navbar > a img {
  height: 38px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav li {
  list-style: none;
}
.main-nav a {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary-color);
  padding: 8px 0;
  transition: color .2s;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  background: var(--secondary-color);
  color: var(--contrast-color);
  border-radius: 24px;
  padding: 12px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-left: 32px;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  box-shadow: var(--shadow1);
  border: 2px solid var(--secondary-color);
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--primary-color);
}

/* ===== MOBILE NAVI ===== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 2rem;
  margin-left: 16px;
  z-index: 124;
  line-height: 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: background .2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--accent-color);
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,33,61,0.97);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  color: var(--secondary-color);
  background: none;
  border: none;
  margin-bottom: 32px;
  cursor: pointer;
  transition: color .2s;
  padding: 0 10px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--accent-color);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 24px;
}
.mobile-nav a {
  color: var(--contrast-color);
  background: none;
  font-family: 'Montserrat',sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  padding: 12px 6px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--secondary-color);
  color: var(--primary-color);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 20px;
  }
  .cta-btn {
    margin-left: 18px;
    min-width: 120px;
    padding: 10px 18px;
    font-size: 0.98rem;
  }
}

@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }
  .cta-btn {
    margin-left: 8px;
    padding: 9px 10px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    padding: 12px 0;
  }
  .navbar > a {
    margin-right: 8px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===== HERO & GENERAL SECTION LAYOUTS ===== */
section {
  background: none;
  margin-bottom: 60px;
  padding: 40px 20px 40px 20px;
  display: block;
}
section:first-of-type {
  background: var(--primary-color);
  color: var(--contrast-color);
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  margin-bottom: 40px;
  box-shadow: var(--shadow2);
}
section:first-of-type h1, section:first-of-type p {
  color: var(--contrast-color);
}
section:first-of-type .cta-btn {
  background: var(--secondary-color);
  color: var(--contrast-color);
  margin-top: 28px;
}

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

.text-section {
  align-items: flex-start;
  gap: 18px;
}

@media (max-width: 768px) {
  section {
    padding: 32px 8px 32px 8px;
    margin-bottom: 36px;
  }
  section:first-of-type {
    padding: 38px 8px 38px 8px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
  .content-wrapper {
    gap: 16px;
    padding-left: 0; padding-right: 0;
  }
  .text-section {
    gap: 10px;
  }
}

/* ===== FEATURE GRID / CARDS ===== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature-grid li {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow1);
  padding: 28px 22px 24px 22px;
  flex: 1 1 280px;
  max-width: 320px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  border: 1px solid var(--accent-color);
  transition: box-shadow 0.15s, border 0.15s;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: var(--shadow2);
  border: 1.5px solid var(--secondary-color);
  z-index: 2;
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}
.feature-grid h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 4px;
}
.feature-grid p {
  font-size: .97rem;
  color: var(--text-color);
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 14px;
  }
  .feature-grid li {
    max-width: 100%;
    min-width: 200px;
    padding: 22px 13px 16px 13px;
  }
  .feature-grid img {
    width: 40px; height: 40px;
  }
}
@media (max-width: 640px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid li {
    max-width: 100%;
    width: 100%;
  }
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--accent-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow1);
  margin-bottom: 20px;
  border-left: 6px solid var(--secondary-color);
  color: var(--text-color);
  max-width: 650px;
  transition: box-shadow 0.15s, border 0.15s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: var(--shadow2);
  border-left: 6px solid var(--primary-color);
}
.testimonial-card p {
  font-size: 1.05rem;
  color: #232b36;
  font-style: italic;
  letter-spacing: 0.01em;
}
.testimonial-card strong {
  color: var(--primary-color);
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card span {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-left: 7px;
  letter-spacing: 2px;
}
@media (max-width: 640px) {
  .testimonial-card {
    padding: 13px;
    gap: 13px;
    font-size: .98rem;
  }
}

/* ===== ADDRESS & CONTACT BLOCKS ===== */
address {
  font-style: normal;
  margin-top: 14px;
}
address ul, address div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
address li, address div, address a {
  font-size: 1rem;
  color: #232b36;
  display: flex;
  align-items: center;
}
address img {
  margin-right: 10px;
  width: 20px;
  height: 20px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary-color);
  color: var(--accent-color);
  padding: 38px 0 24px 0;
  margin-top: 30px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  box-shadow: var(--shadow2);
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  border-radius: var(--border-radius);
}
.footer-content > a img {
  height: 42px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
}
.footer-nav a {
  color: var(--accent-color);
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary-color);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 17px;
}
.footer-social a img {
  height: 28px; width: 28px;
  filter: grayscale(60%) brightness(110%);
  transition: filter .2s;
}
.footer-social a:hover img {
  filter: grayscale(0%) brightness(135%) drop-shadow(0 1px 5px #fca31144);
}
footer address {
  font-size: .98rem;
  background-color: var(--accent-color);
  margin-top: 0;
  gap: 4px;
}
footer address a {
  color: var(--secondary-color);
  text-decoration: underline;
  font-size: inherit;
}
@media (max-width: 900px) {
  .footer-content {gap: 19px;}
}
@media (max-width: 700px) {
  .footer-content {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding-left: 0; padding-right: 0;
  }
  .footer-nav {
    font-size: .98rem;
    flex-wrap: wrap;
    gap: 5px;
  }
}
@media (max-width: 500px) {
  footer {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    padding: 24px 0 16px 0;
  }
}

/* ===== BUTTONS GENERAL ===== */
button, .cta-btn {
  outline: none;
  border: none;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: background .2s, box-shadow .2s, color .2s;
  box-shadow: var(--shadow1);
}
button:hover, .cta-btn:hover {
  box-shadow: var(--shadow2);
}

/* ======= LINKS ======= */
a {
  text-decoration: none;
  transition: color 0.18s;
}
a:hover {
  color: var(--secondary-color);
}

/* ===== CARDS ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow1);
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--accent-color);
  transition: box-shadow .15s, border-color .15s;
}
.card:hover, .card:focus-within {
  box-shadow: var(--shadow2);
  border-color: var(--secondary-color);
  z-index: 10;
}

/* ===== GENERAL FLEX SECTIONS ===== */
.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;
}

/* ===== FORM & INPUTS (for contact - minimal) ===== */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  background: #fff;
  border: 1.5px solid var(--accent-color);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 20px;
  width: 100%;
  color: #232b36;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--secondary-color);
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--primary-color);
}

/* ===== FEATURES/USP BULLETS ===== */
.text-section ul, .text-section ol {
  margin-top: 6px;
  margin-bottom: 12px;
  padding-left: 20px;
  gap: 9px;
}
.text-section ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 16px;
  font-size: 1rem;
  color: #34405a;
}
.text-section ul li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  position: absolute;
  left: 0;
  top: 0.6em;
  transform: translateY(-50%);
}
.text-section ol li {
  color: #374151;
  font-size: 1rem;
  margin-bottom: 7px;
  padding-left: 3px;
}

/* ===== RESPONSIVE FLEXBOX ADJUSTMENTS ===== */
@media (max-width: 900px) {
  .content-grid, .card-container {
    gap: 13px;
  }
  .text-image-section {gap: 14px;}
}
@media (max-width: 768px) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
}
@media (max-width: 480px) {
  .container {padding-left: 6px; padding-right: 6px;}
  h1 {font-size: 1.6rem;}
  h2 {font-size: 1.23rem;}
  section {padding: 18px 2px;}

}


/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #14213df0;
  color: #fff;
  box-shadow: 0 -4px 16px rgba(20,33,61,0.14);
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 38px;
  padding: 22px 22px 18px 22px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.23s ease, transform 0.28s cubic-bezier(.77,0,.18,1);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100px);
}
.cookie-banner-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cookie-banner-content p {
  color: #fff;
  font-size: .98rem;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-btn {
  min-width: 125px;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 20px;
  border: 2px solid #fca311;
  font-family: 'Montserrat', Arial,sans-serif;
  margin-left: 0;
  margin-right: 0;
  background: #fca311;
  color: #14213d;
  font-weight: 700;
  transition: background .2s, color .2s;
  box-shadow: var(--shadow1);
}
.cookie-btn.reject {
  background: #66697a
  color: #fff;
  border-color: #66697a;
}
.cookie-btn.settings {
  background: none;
  color: #fca311;
  border-color: #fca311;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #14213d;
  color: #fca311;
  outline: none;
}
.cookie-btn.reject:hover {
  background: #455063;
  color: #fff;
}
.cookie-btn.settings:hover {
  background: #fca311;
  color: #14213d;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 8px 12px 8px;
  }
  .cookie-banner-actions {
    gap: 8px;
    margin-top: 7px;
  }
}

/* ---- Cookie Modal ---- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(20,33,61,0.92);
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.22s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: #232b36;
  max-width: 420px;
  padding: 36px 28px 28px 28px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow2);
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: stretch;
  position: relative;
}
.cookie-modal-content h2 {
  color: #14213d;
  margin-bottom: 2px;
  font-size: 1.25rem;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #fca311;
  cursor: pointer;
  z-index: 2222;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-size: 1rem;
}
.cookie-category label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  width: 21px;
  height: 21px;
  accent-color: #fca311;
  margin-left: 18px;
}
.cookie-category.essential label {
  color: #5c6577;
}
.cookie-category.essential input[type="checkbox"] {
  accent-color: #14213d;
}
.cookie-category .always-on {
  color: #888;
  font-size: .96em;
  margin-left: 10px;
}
.cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
@media (max-width: 500px) {
  .cookie-modal-content {
    padding: 20px 6px 18px 14px;
    width: 95vw;
    max-width: 98vw;
  }
  .cookie-modal-actions {
    gap: 6px;
    flex-direction: column;
    align-items: stretch;
  }
}


/* ===== MICRO-ANIMATIONS ===== */
.cta-btn, button, .cookie-btn {
  transition: box-shadow 0.18s, background .25s, color .18s, border-color .2s;
}
.feature-grid li, .card, .testimonial-card {
  transition: box-shadow .17s, border-color .15s, transform .16s;
}
.feature-grid li:hover,
.card:hover,
.testimonial-card:hover {
  transform: translateY(-6px) scale(1.013);
}

/* ===== MISC ===== */
::-webkit-scrollbar {
  width: 12px;
  background: #e5e5e5;
}
::-webkit-scrollbar-thumb {
  background: #babdc5;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #fca311;
}

/* Highlight for accessibility */
:focus-visible {
  outline: 2.5px dashed #fca311;
  outline-offset: 1.5px;
}

/* Hide visually but keep accessible */
.visually-hidden {
  border: 0;
  clip: rect(1px,1px,1px,1px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
