/* --- 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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #223041;
  background: #F8FAFC;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
}
a {
  color: #204C63;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, .main-nav a:focus {
  color: #F7C900;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #204C63;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.15rem;
  color: #223041;
  margin-bottom: 8px;
}
.subheadline {
  font-size: 1.15rem;
  color: #55698A;
  margin-bottom: 24px;
}
strong {
  font-weight: 700;
  color: #204C63;
}
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- HEADER --- */
header {
  background: #ffffff;
  box-shadow: 0 1px 6px rgba(32, 76, 99, 0.07);
  border-bottom: 1px solid #E2E8F0;
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 10px;
}
header img {
  height: 42px;
  margin-right: 30px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #223041;
  padding: 7px 0 7px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a.active {
  border-bottom: 2px solid #F7C900;
  color: #204C63;
}
.cta-btn {
  display: inline-block;
  background: #204C63;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 28px;
  box-shadow: 0 2px 8px rgba(32, 76, 99, 0.09);
  border: none;
  margin-left: 18px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
  cursor: pointer;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #F7C900;
  color: #204C63;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 4px 18px rgba(32, 76, 99, 0.16);
}
.cta-link {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #204C63;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1.5px solid #204C63;
  transition: color 0.2s, border-color 0.2s;
}
.cta-link:hover {
  color: #F7C900;
  border-bottom-color: #F7C900;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #204C63;
  padding: 8px 10px;
  margin-left: 20px;
  cursor: pointer;
  z-index: 50;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu-toggle:focus {
  color: #F7C900;
  background: #E2E8F0;
  border-radius: 28px;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(34, 48, 65, 0.90);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.74,.24,.18,.98), opacity 0.25s;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 24px 24px 0 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2050;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #F7C900;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  margin-top: 48px;
  gap: 12px;
  padding-right: 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px 0;
  width: 100%;
  text-align: right;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F7C900;
  border-bottom: 1.5px solid #F7C900;
}

@media (max-width: 1024px) {
  .container {
    max-width: 860px;
  }
  header img { height: 38px; }
}
@media (max-width: 768px) {
  .container { max-width: 100vw; padding: 0 12px; }
  .main-nav { display: none; }
  .cta-btn { margin-left: 6px; }
  .mobile-menu-toggle { display: initial; font-size: 2rem; }
}

/* --- MAIN SECTIONS --- */
main {
  flex: 1 1 auto;
}
section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(134,168,198,0.06);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-grid, .feature-list, .benefit-grid, .service-list, .stats-list, .benefit-list, .icon-bullets, .category-list, .client-success-rates {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
}
.feature-list, .benefit-list, .icon-bullets, .category-list {
  gap: 20px;
}
.service-list {
  gap: 24px;
}
.feature-grid > li, .feature-list > li, .benefit-grid > li, .service-list > li {
  background: #F5F8FA;
  border-radius: 10px;
  box-shadow: 0 1px 9px rgba(134,168,198,0.08);
  padding: 24px 18px 18px 18px;
  flex: 1 1 180px;
  min-width: 220px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, background 0.2s;
}
.feature-grid > li:hover,
.feature-list > li:hover,
.benefit-grid > li:hover,
.service-list > li:hover {
  box-shadow: 0 4px 22px rgba(134,168,198,0.16);
  background: #E8F0F9;
}
.feature-grid img,
.feature-list img,
.benefit-grid img {
  width: 34px;
  height: 34px;
  margin-bottom: 2px;
  object-fit: contain;
  display: block;
}
.service-list .price {
  font-weight: 700;
  color: #204C63;
  font-size: 1.2rem;
  margin-top: auto;
}

/************ TESTIMONIALS ************/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: #F5F8FA;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(134,168,198, 0.09);
  color: #223041;
  max-width: 530px;
  font-size: 1.08rem;
  line-height: 1.7;
  transition: box-shadow 0.17s, background 0.2s;
}
.testimonial-card strong {
  color: #204C63;
}
.testimonial-card:hover {
  background: #E8F0F9;
  box-shadow: 0 8px 28px rgba(134,168,198, 0.18);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card p {
  font-size: 1.09rem;
  color: #223041;
}
.testimonial-card span {
  font-size: 1rem;
  color: #55698A;
}

/************ TABLES ************/
table {
  width: 100%;
  border-collapse: collapse;
  background: #F8FAFC;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 1px 8px rgba(134,168,198,0.06);
}
thead tr {
  background: #204C63;
}
th, td {
  padding: 16px 14px;
  text-align: left;
  font-size: 1rem;
}
th {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
td {
  color: #223041;
}
tr:nth-child(even) td {
  background: #EEF3F9;
}
tr:not(:last-child) td {
  border-bottom: 1px solid #E2E8F0;
}

/************ FOOTER ************/
footer {
  background: #204C63;
  color: #F8FAFC;
  padding: 32px 0 16px 0;
  margin-top: 40px;
  font-size: 0.99rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-menu a {
  color: #F8FAFC;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: color 0.2s;
  font-size: 1.02em;
}
.footer-menu a:hover {
  color: #F7C900;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo img {
  height: 32px;
  width: auto;
}

/************ FORMS & BUTTONS ************/
button, input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
}
input, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 6px;
  border: 1px solid #86A8C6;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 1rem;
  transition: border 0.2s;
  background: #F8FAFC;
  color: #223041;
}
input:focus, textarea:focus {
  outline: none;
  border: 1.5px solid #204C63;
}

/************ CONTENT BLOCKS ************/
.text-section {
  background: #F8FAFC;
  border-radius: 8px;
  box-shadow: 0 1px 7px rgba(134,168,198,0.06);
  padding: 18px 20px;
  margin-bottom: 20px;
}
.text-section ul, .text-section ol {
  padding-left: 18px;
  margin-top: 8px;
  color: #223041;
}
.text-section li {
  margin-bottom: 8px;
  line-height: 1.65;
  font-size: 1rem;
}
.chart-section {
  background: #EEF3F9;
  box-shadow: 0 1px 6px rgba(134,168,198,0.07);
  border-radius: 10px;
  padding: 18px 18px 14px 18px;
  margin-bottom: 20px;
}

/************ MAP EMBED ************/
.map-embed {
  display: flex;
  align-items: center;
  background: #E8EAF6;
  padding: 20px;
  border-radius: 6px;
  margin-top: 8px;
  gap: 8px;
}

/************ FLEX LAYOUTS ************/
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.5px 9px rgba(134,168,198,0.10);
  padding: 24px 20px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 4px 26px rgba(32,76,99,0.10);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid, .feature-list, .benefit-grid, .service-list, .category-list, .stats-list, .benefit-list, .icon-bullets, .client-success-rates {
    flex-direction: column;
    gap: 16px;
  }
  section {
    margin-bottom: 38px;
    padding: 26px 7px;
  }
  .testimonial-card { max-width: 100%; }
  header .container {
    flex-direction: row;
    gap: 6px;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
  }
}

/************ MISCELLANEOUS ************/
hr {
  border: none;
  border-top: 1px solid #E2E8F0;
  margin: 32px 0;
}
::-webkit-scrollbar {
  width: 9px;
  background: #F8FAFC;
}
::-webkit-scrollbar-thumb {
  background: #86A8C6;
  border-radius: 8px;
}

/************ PRICING ************/
.price {
  color: #F7C900;
  font-size: 1.07rem;
  font-weight: bold;
  margin-top: 4px;
}

/************ OL/UL STYLES ************/
ol {
  list-style: decimal inside;
  margin: 0 0 14px 0;
  padding-left: 12px;
}

/************ HEADINGS & TYPOGRAPHY SCALE ************/
@media (min-width: 600px) {
  h1 { font-size: 2.7rem; }
  h2 { font-size: 2rem; }
  .subheadline { font-size: 1.25rem; }
}
@media (min-width: 900px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.2rem; }
}

/************ ANIMATIONS & TRANSITIONS ************/
.cta-btn, .cta-link, .main-nav a, .mobile-nav a {
  transition: background 0.18s, color 0.17s, border-color 0.17s, box-shadow 0.2s, transform 0.13s;
}
section, .card, .testimonial-card, .feature-grid > li, .chart-section, .text-section {
  transition: box-shadow 0.17s, background 0.19s, transform 0.14s;
}
section:hover, .card:hover, .testimonial-card:hover, .feature-grid > li:hover, .chart-section:hover, .text-section:hover {
  transform: translateY(-2px) scale(1.012);
}

/************ COOKIE CONSENT BANNER ************/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(32,76,99, 0.98);
  color: #fff;
  font-size: 1rem;
  z-index: 3000;
  box-shadow: 0 -2px 16px rgba(32,76,99,0.17);
  padding: 18px 20px 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s, transform 0.3s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-text {
  flex: 1 1 180px;
  min-width: 170px;
  line-height: 1.7;
  margin-bottom: 6px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  outline: none;
  border-radius: 24px;
  padding: 7px 24px;
  margin: 0;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
}
.cookie-accept {
  background: #F7C900;
  color: #204C63;
  box-shadow: 0 1px 7px rgba(32,76,99,0.10);
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #ffe04c;
  color: #204C63;
}
.cookie-reject {
  background: #fff;
  color: #204C63;
  border: 1.5px solid #F7C900;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #F7C900;
  color: #204C63;
}
.cookie-settings {
  background: #204C63;
  color: #fff;
  border: 1.5px solid #F7C900;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #F7C900;
  color: #204C63;
}
@media (max-width: 575px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px 7px 13px 7px;
  }
}

/************ COOKIE MODAL ************/
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,48,65,0.80);
  z-index: 3010;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #223041;
  border-radius: 14px;
  min-width: 295px;
  max-width: 98vw;
  box-shadow: 0 14px 53px rgba(32,76,99,0.15);
  padding: 34px 34px 28px 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: showModal 0.40s cubic-bezier(.71,.12,.19,.97);
}
@keyframes showModal {
  0%   { opacity: 0; transform: scale(0.93) translateY(50px); }
  100% { opacity: 1; transform: scale(1) translateY(0px); }
}
.cookie-modal h2 {
  font-size: 1.31rem;
  margin-bottom: 10px;
}
.cookie-modal .category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}
.cookie-modal label {
  font-size: 1.1em;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .essentials-toggle {
  color: #bbb;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 14px; right: 17px;
  background: none;
  border: none;
  font-size: 1.4em;
  color: #204C63;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  color: #F7C900;
}
@media (max-width: 575px) {
  .cookie-modal {
    padding: 23px 7px 18px 7px;
  }
}

/************ UTILITIES FOR SPACING & FLEX ************/
.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-center { align-items: center; justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.mt-24 { margin-top: 24px; }
.mb-20 { margin-bottom: 20px; }
.mt-32 { margin-top: 32px; }

/************ SELECTION & FOCUS ************/
:focus {
  outline: 2px solid #F7C900;
  outline-offset: 2px;
}
::selection {
  background: #F7C900;
  color: #223041;
}

/************ END CSS ************/
