/* --- 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 { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F8F9FB;
  color: #191A1B;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
b, strong { font-weight: 600; }
hr { border: none; border-top: 1px solid #E3E4E6; margin: 32px 0; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 { font-family: 'Montserrat', 'Open Sans', Arial, sans-serif; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: 2.4rem; color: #191A1B; margin-bottom: 20px; line-height: 1.18; }
h2 { font-size: 1.8rem; color: #232425; margin-bottom: 18px; line-height: 1.24; }
h3 { font-size: 1.24rem; color: #232425; margin-bottom: 14px; line-height: 1.28; }
h4 { font-size: 1.1rem; color: #232425; margin-bottom: 10px; }
p, li, dt, dd { font-size: 1rem; }
p, ul, ol, dl { margin-bottom: 18px; }
blockquote { border-left: 4px solid #C5C7CA; margin-left: 0; padding-left: 22px; color: #37393A; font-style: italic; }

a:hover, .main-nav a:hover, .mobile-nav a:hover { color: #20405A; }

/* --- BRAND COLORS/MONOCHROME PALETTE --- */
:root {
  --primary: #20405A;
  --secondary: #F4F4F6;
  --accent: #E6A817;
  --dark: #191A1B;
  --light: #FFFFFF;
  --gray-100: #F5F6F7;
  --gray-300: #E3E4E6;
  --gray-500: #B8BBC0;
  --gray-700: #55585A;
  --shadow: 0 2px 24px rgba(32,40,60,0.06), 0 1.5px 4px rgba(25,25,25,0.10);
}

/* --- COMMON LAYOUT CLASSES AND CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--light);
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: box-shadow .22s;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--light);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 26px 22px;
  min-width: 220px;
  flex: 1 1 260px;
  transition: box-shadow .21s, transform .18s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(32,64,90,0.11),0 3px 8px rgba(32,64,90,0.1);
  transform: translateY(-2px) scale(1.015);
}
.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #f9f9fb;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(32,64,90,0.07);
  border: 1px solid #E3E4E6;
  color: #181A18;
  transition: box-shadow .19s, border-color .19s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 20px rgba(32,40,60,0.12);
  border-color: #B8BBC0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 32px;
}
.service-list .text-section {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(32,64,90,0.07);
  padding: 26px 20px;
}

.confirmation {
  margin-top: 36px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--gray-100);
  padding: 50px 14px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

/* --- HEADER & NAV --- */
header {
  background: var(--light);
  box-shadow: 0 1px 9px rgba(32,64,90,0.06);
  padding: 0;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 74px;
  gap: 18px;
}
.logo {
  display: flex;
  align-items: center;
  height: 68px;
  margin-right: 30px;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-right: auto;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 500;
  color: #232425;
  padding: 8px 13px;
  border-radius: 7px;
  transition: background 0.16s, color 0.16s;
}
.main-nav a.active, .main-nav a:focus {
  color: var(--primary);
  background: var(--gray-100);
}
.main-nav a:hover {
  color: var(--primary);
  background: var(--gray-100);
}
.cta-button {
  background: var(--primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.09rem;
  padding: 10px 26px;
  border-radius: 9px;
  box-shadow: 0 2px 18px rgba(32,64,90,0.09);
  border: none;
  cursor: pointer;
  text-align: center;
  outline: none;
  margin-left: 32px;
  transition: background 0.18s, transform .12s;
  display: inline-block;
}
.cta-button:hover,
.cta-button:focus {
  background: #12171b;
  color: #fff;
  transform: translateY(-1px) scale(1.025);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.1rem;
  cursor: pointer;
  margin-left: 24px;
  z-index: 60;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(22,24,28, 0.97);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.67,0,.2,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  margin: 24px 34px 0 0;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  padding-top: 50px;
  padding-right: 48px;
  gap: 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.27rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  min-width: 180px;
  transition: color .16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--accent);
  background: none;
}

/* --- HERO SECTIONS --- */
.hero {
  background: linear-gradient(120deg, #fff 50%, #e3e9ee 100%);
  padding: 70px 0 60px 0;
  min-height: 330px;
  border-bottom: 2px solid #e7e8eb;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero .content-wrapper {
  gap: 18px;
}
.hero h1 {
  font-size: 2.4rem;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.25rem;
  color: #37393A;
}

/* --- FEATURE SECTION LISTS --- */
.features {
  margin-bottom: 60px;
  background: var(--gray-100);
  border-radius: 14px;
  padding: 32px 20px;
  box-shadow: 0 2px 10px rgba(32,64,90,0.04);
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  background: #fff;
  padding: 13px 18px;
  border-radius: 8px;
  box-shadow: 0 1.5px 6px rgba(32,64,90,0.05);
  color: var(--primary);
}
.features li img {
  width: 26px; height: 26px;
  margin-right: 10px;
}

/* --- OFFER, PRICING, TABLES --- */
.offer ul, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 12px;
}
.offer ul li {
  background: #fff;
  color: #232425;
  border-radius: 11px;
  box-shadow: 0 2px 8px rgba(32,64,90,0.05);
  padding: 16px 18px;
  margin-bottom: 0;
  min-width: 200px;
  font-size: 1.05rem;
}
.table-wrapper {
  overflow-x: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  margin-bottom: 32px;
  box-shadow: 0 1.5px 5px rgba(32,64,90,0.06);
  border-radius: 10px;
  font-size: 1rem;
  margin-top: 20px;
}
th, td {
  padding: 14px 18px;
  border-bottom: 1px solid #ECEDFA;
  text-align: left;
}
th {
  background: #20232a;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
}
tr:last-child td {
  border-bottom: none;
}

dl {
  margin-bottom: 20px;
}
dt {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 10px;
  margin-bottom: 2px;
}
dd {
  margin-left: 0;
  margin-bottom: 8px;
}

/* --- TESTIMONIAL SECTIONS --- */
.testimonials {
  margin-bottom: 60px;
}
.testimonials h2 {
  margin-bottom: 12px;
}
.testimonials .testimonial-card span {
  color: #333;
  font-size: 1.01rem;
}

/* --- FOOTER --- */
footer {
  background: #181A1B;
  color: #E3E4E6;
  padding: 0 0 30px 0;
  font-size: 1rem;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding: 34px 10px 8px 10px;
  border-bottom: 1px solid #232425;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.footer-brand img {
  width: 34px; height: 34px;
  border-radius: 6px;
  background: #fff;
}
.footer-links,
.footer-legal,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a,
.footer-legal a,
.footer-contact a {
  color: #B8BBC0;
  font-size: 0.98rem;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: color 0.17s;
}
.footer-links a:hover, .footer-legal a:hover {
  color: #fff;
}
.footer-contact b {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-bottom {
  text-align: center;
  color: #666a6b;
  font-size: 0.98rem;
  padding-top: 14px;
}

/* --- COOKIES CONSENT BANNER --- */
.cookie-banner {
  display: flex;
  position: fixed;
  left: 18px; right: 18px; bottom: 18px;
  z-index: 980;
  background: #1a1a1b;
  color: #fff;
  box-shadow: 0 2px 26px rgba(32,64,90,0.12);
  border-radius: 16px;
  align-items: center;
  padding: 22px 28px;
  gap: 24px;
  font-size: 1rem;
  min-width: 210px;
  max-width: 650px;
  margin: auto;
  animation: fadein-cookie 0.7s cubic-bezier(.5,0,.4,1);
}
@keyframes fadein-cookie {
  from { opacity: 0; transform: translateY(32px); } 
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner button {
  margin-left: 8px;
}
.cookie-banner .cookie-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  padding: 8px 15px;
  margin-right: 6px;
  cursor: pointer;
  transition: background 0.15s, color 0.13s;
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: var(--accent);
  color: #181A1B;
}
.cookie-banner .cookie-settings-btn {
  background: none;
  color: #fff;
  border: none;
  font-size: 0.98rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0 6px;
  transition: color .17s;
}
.cookie-banner .cookie-settings-btn:hover { color: var(--accent); }

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(36,44,50,0.65);
  z-index: 999;
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal .modal-content {
  background: #fff;
  color: #232425;
  padding: 34px 32px;
  border-radius: 14px;
  min-width: 310px;
  max-width: 420px;
  box-shadow: 0 2px 30px rgba(32,64,90,0.12);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: fadein-cookie 0.5s cubic-bezier(.5,0,.5,1);
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: #181A1B;
  font-size: 2.1rem;
  cursor: pointer;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.cookie-toggle {
  width: 38px;
  height: 20px;
  background: #eee;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  margin-right: 8px;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle span {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: 1px; top: 1px;
  transition: left .19s cubic-bezier(.38,0,.65,1);
}
.cookie-toggle input:checked + span {
  background: var(--accent);
  left: 19px;
}

/* --- CONFIRMATION --- */
.confirmation h1 {
  color: var(--primary);
}

/* --- RESPONSIVE --- */
@media (max-width: 1080px) {
  .footer-columns { gap: 22px; }
  .features ul { gap: 14px; }
}
@media (max-width: 900px) {
  .footer-columns { flex-direction: column; gap: 23px; }
  header .container { flex-wrap: wrap; height: auto; padding: 0 10px; }
}
@media (max-width: 768px) {
  .main-nav,
  .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .footer-columns {
    flex-direction: column;
    gap: 20px;
    padding: 24px 0 14px 0;
  }
  .container { padding: 0 9px; }
  .hero { padding: 42px 0 28px 0; }
  .section { margin-bottom: 38px; padding: 24px 6px; }
  .features, .offer ul, .content-grid, .service-list {
    flex-direction: column!important;
    gap: 16px!important;
  }
  .card-container { flex-direction: column; gap: 16px; }
  .testimonial-card { gap: 15px; padding: 14px; }
  .service-list .text-section { padding: 14px 10px; }
  .confirmation { padding: 22px 2px; }
  .text-image-section { flex-direction: column; gap: 16px; }
  .cookie-banner { padding: 14px 12px; font-size: 0.97rem; }
}
@media (max-width: 530px) {
  .container { padding: 0 2.5vw; }
  .footer-brand img { width: 26px; height: 26px; }
  .footer-bottom { font-size: 0.92rem; }
  .cookie-banner { left: 4px; right: 4px; bottom: 4px; }
  .cookie-modal .modal-content { padding: 17px 6px; min-width: 96vw; max-width: 99vw; }
}

/* --- MICRO-INTERACTIONS, TRANSITIONS --- */
a, button, .cta-button, .main-nav a, .footer-links a, .footer-legal a, .cookie-btn, .cookie-settings-btn {
  transition: background 0.2s, color 0.17s, transform 0.13s;
}
.cta-button:active { transform: scale(0.98); }
button:focus-visible, a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* --- FORMS (future-proof, for cookie modals etc) --- */
input, select, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  background: #fff;
  border: 1px solid #E3E4E6;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 18px;
  width: 100%;
  transition: border .14s, box-shadow .15s;
  color: #191A1B;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--primary);
  box-shadow: 0 2px 8px rgba(32,64,90,0.11);
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #333;
  font-size: 1.05rem;
}

/* --- MISC UTILS --- */
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* --- ACCESSIBILITY IMPROVEMENTS --- */
@media (prefers-reduced-motion: reduce) {
  * { transition: none!important; animation: none!important; }
}

/* Additional Global Spacing/Hierarchy */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card { margin-bottom: 20px; }
.card-container { gap: 24px; }
.content-grid { gap: 20px; }
.text-image-section { gap:30px; }
.testimonial-card { gap:20px; padding:20px; }
.feature-item { gap:15px; }

/* HIDE open mobile menu content background scroll */
body.menu-opened {
  overflow: hidden;
}
