/* =====================
   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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #232D36;
  color: #F2F6F8;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #232D36;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.22s;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border: none;
  background: none;
  color: inherit;
}

/* =============================
   BRAND VARIABLES & COLOR SCHEME
   ============================= */
:root {
  --primary: #26313C;
  --secondary: #ADC4CE;
  --accent: #EFC77C;
  --accent-neon: #EFC77C;
  --bg: #232D36;
  --section-bg: #26313C;
  --card-bg: #334048;
  --card-bg-light: #3D5261;
  --text-main: #F2F6F8;
  --text-secondary: #ADC4CE;
  --text-dark: #26313C;
  --shadow: 0 6px 24px 0 rgba(34,57,81,0.14);
  --shadow-light: 0 2px 8px 0 rgba(127,146,170,0.13);
  --border-radius: 16px;
  --transition: 0.22s cubic-bezier(.5,.1,.3,1);
}

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

/* =========================
   LAYOUT CONTAINERS & SPACING
   ========================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--section-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 32px;
    padding: 28px 8px;
  }
  .container {
    padding: 0 8px;
  }
}

/* ========================
   TYPOGRAPHY & COLORS
   ======================== */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.75rem;
  color: var(--accent);
  line-height: 1.15;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #EFC77C 60%, #ADC4CE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text-main);
}
h3 {
  font-size: 1.3rem;
  color: var(--accent);
}
h4, h5 {
  font-size: 1.1rem;
}
.subheadline {
  font-size: 1.22rem;
  color: var(--secondary);
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}
p, li, address {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text-main);
  line-height: 1.8;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: var(--card-bg-light);
  padding: 24px 20px;
  border-radius: var(--border-radius);
  margin-bottom: 32px;
  box-shadow: var(--shadow-light);
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.42rem;
  }
}

/* ============================
   HEADER, NAVIGATION, LOGO
   ============================ */
header {
  width: 100%;
  position: relative;
  z-index: 20;
  background: #222a32;
  box-shadow: 0 3px 14px 0 rgba(42,54,74,0.12);
}
nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  max-width: 1100px;
  margin: 0 auto;
}
nav > a img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 8px #EFC77C44);
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
nav ul li {
  margin: 0;
}
nav ul li a, .mobile-nav a {
  display: flex;
  align-items: center;
  color: var(--secondary);
  font-family: 'Roboto', Arial, sans-serif;
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 1rem;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  position: relative;
}
nav ul li a.primary-btn, .mobile-nav a.primary-btn {
  background: var(--accent);
  color: var(--text-dark);
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 #EFC77C22;
  border: none;
}
nav ul li a.primary-btn:hover, .mobile-nav a.primary-btn:hover {
  background: #fff6e1;
  color: #26313C;
  box-shadow: 0 4px 15px 0 #EFC77C44;
}
nav ul li a:hover, .mobile-nav a:hover {
  color: var(--accent);
  background: #31415588;
  box-shadow: 0 2px 8px 0 #EFC77C11;
}

@media (max-width: 998px) {
  nav > a img { height: 32px; }
  nav ul { gap: 10px; }
}

/* ========================
   MOBILE MENU STYLES
   ======================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--accent);
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 35;
  cursor: pointer;
  transition: color var(--transition);
}
.mobile-menu-toggle:hover {
  color: #fff6e1;
}
.mobile-menu {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(107deg, #222a32 80%, #EFC77C11 100%);
  transform: translateX(-100%);
  will-change: transform;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
  overflow-y: auto;
  transition: transform 0.34s cubic-bezier(.55,.05,.34,.97);
  box-shadow: 3px 0 55px 0 #EFC77C22;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 18px 0 0;
  padding: 8px 12px;
  background: #26313C;
  color: var(--accent);
  font-size: 2.1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-light);
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-close:hover {
  background: #425363;
  color: #FFF8EE;
}
.mobile-nav {
  width: 100%;
  padding: 40px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.mobile-nav a {
  padding: 15px 30px 15px 28px;
  font-size: 1.18rem;
  color: var(--secondary);
  width: 100%;
  border-radius: 0 20px 20px 0;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover {
  color: var(--accent);
  background: #31415599;
}
@media (max-width: 998px) {
  nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

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

/* =============================
   MAIN SECTIONS, HERO, FEATURES
   ============================= */
main > section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}
@media (max-width: 768px) {
  main > section {
    margin-bottom: 40px;
    padding: 24px 0;
  }
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
  justify-content: center;
}
.feature-grid li {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 22px 22px 22px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 240px;
  flex: 1 1 265px;
  color: var(--secondary);
  font-size: 1.06rem;
  position: relative;
  transition: background var(--transition), box-shadow var(--transition), transform 0.21s cubic-bezier(.6,.12,.2,.95);
  border: 1.7px solid #273f50;
}
.feature-grid li img {
  width: 38px;
  height: 38px;
  margin-right: 10px;
  filter: drop-shadow(0 0 5px var(--accent-neon));
}
.feature-grid li:hover {
  background: #2E3645;
  transform: translateY(-6px) scale(1.012);
  box-shadow: 0 8px 24px 0 #EFC77C44, var(--shadow);
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid li {
    min-width: unset;
    width: 100%;
  }
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  width: 100%;
  margin-bottom: 22px;
  justify-content: space-between;
}
.services-list li {
  background: var(--card-bg-light);
  padding: 22px 22px 14px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  flex: 1 1 290px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  transition: background var(--transition), box-shadow var(--transition), transform 0.21s cubic-bezier(.66,.05,.25,1);
  border: 1.2px solid #354256;
}
.services-list li:hover {
  background: #415D75;
  transform: translateY(-6px) scale(1.014);
  box-shadow: 0 7px 20px 0 #ADC4CE44;
}
.services-list h3 {
  font-size: 1.15rem;
  color: var(--accent);
}
@media (max-width: 768px) {
  .services-list {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
  }
  .services-list li {
    width: 100%;
  }
}

.cta-btn {
  background: linear-gradient(90deg, #EFC77C 50%, #ADC4CE 100%);
  color: var(--text-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  padding: 14px 34px;
  border: none;
  border-radius: 23px 12px 23px 12px / 12px 23px 12px 23px;
  box-shadow: 0 2px 10px 0 #EFC77C33;
  text-shadow: none;
  letter-spacing: 0.01em;
  margin-top: 12px;
  cursor: pointer;
  transition: background 0.18s, color 0.21s, transform 0.20s;
  position: relative;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fff8ea;
  color: #26313C;
  transform: translateY(-2px) scale(1.027);
  box-shadow: 0 6px 24px 0 #EFC77C55;
}

/* ========================
   CARDS, TESTIMONIALS, FAQ
   ======================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 30px 22px;
  flex: 1 1 300px;
  transition: box-shadow var(--transition), transform 0.20s;
  min-width: 250px;
}
.card:hover {
  box-shadow: 0 8px 40px 0 #ADC4CE55;
  transform: scale(1.011);
}

.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;
}
@media (max-width: 768px) {
  .content-grid, .card-container, .text-image-section {
    flex-direction: column;
    gap: 12px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 20px 28px 20px 28px;
  border-radius: var(--border-radius);
  background: #f2f6f8;
  color: var(--text-dark);
  box-shadow: 0 6px 22px 0 #ADC4CE22, var(--shadow-light);
  margin-bottom: 24px;
  border: 2px solid #ADC4CE;
  min-width: 220px;
  max-width: 610px;
  width: 100%;
  position: relative;
  transition: box-shadow var(--transition), transform 0.21s cubic-bezier(.64,.09,.18,.96);
}
.testimonial-card:hover {
  box-shadow: 0 10px 30px 0 #ADC4CE55, 0 1.2px 8px 0 #EFC77C22;
  transform: translateY(-4px) scale(1.012);
}
.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.08rem;
  color: #26313C;
  line-height: 1.7;
  margin-bottom: 0;
  text-align: center;
  position: relative;
}
.testimonial-info {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #35529E;
  letter-spacing: 0.01em;
  opacity: .97;
}
.customer-rating {
  font-size: 1.18rem;
  color: #F2B603;
  letter-spacing: 0.06em;
  filter: drop-shadow(0 0 2px #EFC77C);
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 16px 10px;
    min-width: unset;
    max-width: 100vw;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-list article {
  background: var(--card-bg-light);
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  padding: 20px 18px;
  margin-bottom: 8px;
  position: relative;
  transition: background var(--transition), box-shadow var(--transition);
  border: 1.5px solid #ADC4CE22;
}
.faq-list article:hover {
  background: #415D75;
  box-shadow: 0 8px 22px 0 #ADC4CE44;
}
.faq-list h2 {
  color: var(--accent);
  font-size: 1.13rem;
  margin-bottom: 6px;
}

/* ========================
   FOOTER
   ======================== */
footer {
  background: #20262c;
  color: var(--secondary);
  padding: 36px 0 34px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  border-radius: 24px 24px 0 0;
  margin-top: 36px;
  box-shadow: 0 -2px 16px 0 #26313C22;
}
footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 9px;
}
footer ul li a {
  color: var(--secondary);
  font-size: 0.93rem;
  padding: 4px 10px;
  border-radius: 7px;
  transition: background var(--transition), color var(--transition);
}
footer ul li a:hover {
  background: #26313C;
  color: var(--accent);
}
footer address {
  font-size: 0.95rem;
  color: #adc4cecc;
  font-style: normal;
  line-height: 1.7;
  text-align: center;
}
footer address a {
  color: var(--accent);
  text-decoration: underline dotted;
}

@media (max-width: 768px) {
  footer {
    padding: 22px 0 18px 0;
    margin-top: 18px;
  }
  footer ul {
    gap: 9px;
    margin-bottom: 6px;
  }
}

/* ========================
   ANIMATIONS
   ======================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cta-btn, .card, .testimonial-card, .feature-grid li, .services-list li, .faq-list article {
  animation: fadeInUp 0.8s cubic-bezier(.47,.05,.29,1) both;
}

/* ===========================
   COOKIE CONSENT BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  width: 100vw;
  background: #26313C;
  color: #F2F6F8;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 -6px 24px 0 #13192192;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 16px 24px 16px;
  gap: 32px;
  transition: transform 0.25s cubic-bezier(.52,.08,.24,.91), opacity 0.17s;
  overflow-x: auto;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-message {
  font-size: 1.05rem;
  color: #F2F6F8;
  margin-right: 36px;
  max-width: 470px;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.cookie-btn, .cookie-settings-btn {
  min-width: 120px;
  padding: 8px 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: var(--text-dark);
  box-shadow: 0 2px 8px 0 #EFC77C33;
  transition: background var(--transition), color var(--transition), transform 0.16s;
}
.cookie-btn.accept:hover {
  background: #efdba7;
  color: #26313C;
}
.cookie-btn.reject {
  background: #26313C;
  color: #EFC77C;
  border: 1.2px solid #ADC4CE;
}
.cookie-btn.reject:hover {
  background: #464e65;
  color: #fff;
}
.cookie-settings-btn {
  background: transparent;
  border: 1.5px solid #ADC4CE;
  color: #ADC4CE;
}
.cookie-settings-btn:hover {
  background: #31415588;
  color: #fff;
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    padding: 18px 6px;
    gap: 16px;
    align-items: flex-start;
  }
  .cookie-banner-message {
    margin: 0 0 10px 0;
    max-width: unset;
    font-size: 0.98rem;
  }
}

/* COOKIE CONSENT MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(38,49,60,0.8);
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.17s;
}
.cookie-modal {
  background: #F2F6F8;
  color: #26313C;
  border-radius: 20px;
  box-shadow: 0 10px 32px 0 #26313C44;
  max-width: 420px;
  width: 93vw;
  padding: 28px 28px 18px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInUp 0.62s;
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 9px;
}
.cookie-modal label {
  color: #26313C;
  font-size: 1.06rem;
  font-family: 'Roboto', Arial, sans-serif;
  flex: 1;
}
.cookie-modal-switch {
  appearance: none;
  width: 37px;
  height: 19px;
  background: #adbfcf44;
  border-radius: 10px;
  position: relative;
  outline: none;
  transition: background .18s;
  cursor: pointer;
}
.cookie-modal-switch:checked {
  background: #EFC77C;
}
.cookie-modal-switch:disabled {
  opacity: .65;
  cursor: not-allowed;
}
.cookie-modal-switch:before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 5px 0 #adbfcf44;
  transform: translateX(0);
  transition: transform .18s;
  position: absolute; left: 0; top: .5px;
}
.cookie-modal-switch:checked:before {
  transform: translateX(18px);
  background: #FFFBEF;
}

.cookie-modal-actions, .cookie-modal-buttons {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .cookie-btn, .cookie-modal .cookie-settings-btn {
  min-width: 110px;
  padding: 7px 14px;
  font-size: 1rem;
}
.cookie-modal .cookie-btn.accept {
  background: var(--accent);
  color: #26313C;
}
.cookie-modal .cookie-btn.reject {
  background: #ffffff;
  color: var(--primary);
  border: 1.5px solid #EFC77C;
}
.cookie-modal .cookie-btn.reject:hover {
  background: #EFC77C22;
}

.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 18px;
  background: none;
  color: #26313C;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  padding: 3px 7px;
  border-radius: 50%;
  transition: background .14s, color .14s;
}
.cookie-modal-close:hover {
  background: #EFC77C22;
  color: #efc77c;
}


/* ========================
   MISC/GENERAL
   ======================== */
hr {
  border: none;
  border-top: 1.2px solid #3b4e5c;
  margin: 32px 0 32px 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

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

@media (max-width: 480px) {
  .section {
    padding: 14px 2px;
    margin-bottom: 14px;
  }
  .feature-grid li, .services-list li {
    padding: 15px 9px 13px 8px;
  }
  .card {
    padding: 15px 6px;
  }
}

::-webkit-scrollbar {
  width: 11px;
  background: #232D36;
}
::-webkit-scrollbar-thumb {
  background: #26313C;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #425363;
}

/* Focus visible for accessibility */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus {
  outline: 2px solid #EFC77C;
  outline-offset: 2px;
  background: #FFF5E1;
  color: #26313C;
}

/* ========================
   PRINT & SELECTION
   ======================== */
::selection {
  background: #EFC77Cbb;
  color: #26313C;
}

/* End of CSS */
