/* -------------------------------------------------------------------
  CSS RESET & BASE STYLES
------------------------------------------------------------------- */
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;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}
:focus {
  outline: 2px solid #ED9732;
  outline-offset: 2px;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #1D3C4A;
  background: #F3F7FA;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* -------------------------------------------------------------------
  TYPOGRAPHY
------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1D3C4A;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 500;
}

p, ul, ol {
  margin-bottom: 16px;
  color: #2A4A5B;
  font-size: 1rem;
}
strong {
  color: #1D3C4A;
}
.subheadline {
  font-size: 1.2rem;
  color: #46697a;
  margin-bottom: 30px;
  letter-spacing: 0.01em;
  max-width: 550px;
}

/* Typography scale utility classes */
.text-section ul,
.text-section ol {
  margin-left: 22px;
  margin-bottom: 22px;
}

/* -------------------------------------------------------------------
  LAYOUT CONTAINERS
------------------------------------------------------------------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(29,60,74,0.07);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

/* Section spacing pattern */
section {
  padding: 40px 20px;
}

/* -------------------------------------------------------------------
  NAVIGATION
------------------------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(29,60,74,0.05);
  position: sticky;
  top: 0;
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px 0;
  justify-content: flex-start;
}
.main-nav img {
  height: 40px;
  margin-right: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1D3C4A;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.13s, color 0.13s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F3F7FA;
  color: #ED9732;
}
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 28px;
  top: 18px;
  background: #F3F7FA;
  border-radius: 7px;
  width: 42px;
  height: 42px;
  font-size: 1.75rem;
  color: #1D3C4A;
  align-items: center;
  justify-content: center;
  z-index: 35;
  border: 1px solid #e0e6eb;
  transition: background 0.18s, color 0.13s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  color: #ED9732;
  background: #fff;
}

/* -------------------------------------------------------------------
  MOBILE MENU
------------------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(29,60,74,0.85);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  z-index: 50;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  background: none;
  z-index: 55;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: background 0.14s, color 0.12s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #ED9732;
  background: #273e4d;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 80px;
  padding-left: 40px;
  gap: 20px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 12px 4px;
  border-radius: 4px;
  width: 100%;
  display: block;
  transition: background 0.1s, color 0.1s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #224153;
  color: #ED9732;
}

/* Hide nav for mobile, show burger */
@media (max-width: 968px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 969px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* -------------------------------------------------------------------
  BUTTONS & CTAs
------------------------------------------------------------------- */
.cta-button {
  display: inline-block;
  background: #ED9732;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 14px 36px;
  margin-top: 8px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px 0 rgba(237,151,50,0.14);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, color 0.16s;
  letter-spacing: 0.02em;
}
.cta-button:hover, .cta-button:focus {
  background: #1D3C4A;
  color: #fff;
  box-shadow: 0 2px 14px 0 rgba(29,60,74,0.09);
}

/* -------------------------------------------------------------------
  FEATURE/CARD/GRID STYLES (ALL FLEX-ONLY)
------------------------------------------------------------------- */
.feature-grid,
.service-grid,
.product-list-grid,
.bundle-options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 6px;
  margin-bottom: 20px;
}
.feature-grid > div,
.service-grid > div,
.product-list-grid > div,
.bundle-options-grid > div {
  background: #F3F7FA;
  border-radius: 12px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 20px;
  padding: 28px 24px;
  box-shadow: 0 1.5px 10px 0 rgba(29,60,74,0.055);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  transition: box-shadow 0.22s, background 0.18s;
}
.feature-grid > div:hover,
.service-grid > div:hover,
.product-list-grid > div:hover,
.bundle-options-grid > div:hover {
  box-shadow: 0 4px 22px 0 rgba(29,60,74,0.11);
  background: #fff;
}
.feature-grid img,
.service-grid img,
.product-list-grid img,
.bundle-options-grid img {
  height: 36px;
  margin-bottom: 8px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 26px 24px;
  box-shadow: 0 2px 12px 0 rgba(29,60,74,0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.22s;
}
.card:hover {
  box-shadow: 0 7px 32px 0 rgba(29,60,74,0.16);
}

.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: 20px;
  background: #F3F7FA;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(29,60,74,0.07);
  color: #1D3C4A;
  font-size: 1.09rem;
  max-width: 540px;
  transition: box-shadow 0.18s;
}
.testimonial-card .star-rating {
  letter-spacing: 3.5px;
  color: #ED9732;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 0 0 4px 0;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #46697a;
  font-style: italic;
}
.testimonial-card:hover {
  box-shadow: 0 5px 22px 0 rgba(29,60,74,0.11);
  background: #fff;
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.faq-list > div {
  background: #F3F7FA;
  border-radius: 10px;
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 520px;
  margin-bottom: 20px;
  padding: 22px 20px;
  box-shadow: 0 2px 10px 0 rgba(29,60,74,0.05);
  transition: box-shadow 0.16s;
}
.faq-list > div:hover {
  box-shadow: 0 4px 22px 0 rgba(29,60,74,0.10);
  background: #fff;
}

.bundle-benefits {
  margin-top: 24px;
  background: #F3F7FA;
  padding: 24px 22px;
  border-radius: 12px;
  box-shadow: 0 1px 10px 0 rgba(29,60,74,0.07);
}

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

/* -------------------------------------------------------------------
  ORDERED / UNORDERED LISTS
------------------------------------------------------------------- */
ul, ol {
  list-style-position: inside;
  margin-left: 22px;
}
ol {
  counter-reset: item;
}
ol > li {
  counter-increment: item;
  position: relative;
  padding-left: 26px;
  margin-bottom: 16px;
}
ol > li:before {
  content: counter(item)'.';
  color: #ED9732;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-family: 'Montserrat', Arial, sans-serif;
}
ul > li {
  margin-bottom: 12px;
  padding-left: 10px;
  position: relative;
}
ul > li:before {
  content: '';
  display: inline-block;
  height: 8px;
  width: 8px;
  background: #ED9732;
  border-radius: 50%;
  margin-right: 14px;
  position: absolute;
  left: 0;
  top: 7px;
}
ul.no-markers > li:before {
  display: none;
}

/* -------------------------------------------------------------------
  FOOTER
------------------------------------------------------------------- */
footer {
  background: #fff;
  box-shadow: 0 -3px 19px 0 rgba(29,60,74,0.04);
  padding: 36px 0 18px 0;
  margin-top: 80px;
  font-size: 1rem;
  color: #46697a;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #46697a;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 6px;
  padding: 3px 9px;
  transition: color 0.16s, background 0.16s;
  border-radius: 6px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #ED9732;
  background: #F3F7FA;
}
.footer-info {
  text-align: center;
  font-size: 0.98rem;
  color: #7c96a8;
  margin-top: 8px;
}

/* -------------------------------------------------------------------
  COOKIE CONSENT BANNER & MODAL
------------------------------------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px 22px 20px;
  background: #1D3C4A;
  color: #fff;
  font-size: 1.05rem;
  z-index: 80;
  box-shadow: 0 -3px 26px 0 rgba(29,60,74,0.12);
  gap: 22px;
  flex-wrap: wrap;
  min-height: 48px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-consent-banner.hidden {
  transform: translateY(120%);
}
.cookie-consent-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #ED9732;
  color: #fff;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.95rem;
  padding: 9px 19px;
  border: none;
  margin: 0 0 0 0;
  transition: background 0.13s;
  cursor: pointer;
}
.cookie-btn.settings {
  background: #fff;
  color: #1D3C4A;
  border: 1px solid #eaeaea;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #1D3C4A;
  color: #fff;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #ED9732;
  color: #fff;
  border: none;
}

.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(29,60,74,0.72);
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #1D3C4A;
  border-radius: 14px;
  box-shadow: 0 5px 44px 0 rgba(29,60,74,0.21);
  max-width: 380px;
  padding: 36px 32px 23px 32px;
  z-index: 130;
  animation: fadeInModal 0.32s cubic-bezier(.8,0,.36,1);
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
@keyframes fadeInModal {
  from { transform: translateY(40px); opacity: 0.2; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal .modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1D3C4A;
}
.cookie-toggle {
  width: 40px;
  height: 22px;
  background: #e3eaef;
  border-radius: 16px;
  position: relative;
  margin-right: 4px;
  cursor: pointer;
  transition: background 0.14s;
  flex-shrink: 0;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle .slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(50,60,80,0.09);
  transition: left 0.15s, background 0.14s;
}
.cookie-toggle input:checked + .slider {
  left: 20px;
  background: #ED9732;
}
.cookie-category.essential label {
  color: #a5adb9;
  font-style: italic;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #7c96a8;
  z-index: 155;
  border-radius: 5px;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  background: #F3F7FA;
  color: #1D3C4A;
}

/* -------------------------------------------------------------------
  RESPONSIVE / MOBILE FIRST
------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .container {
    max-width: 970px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 820px;
  }
  .content-wrapper,
  .card,
  .testimonial-card,
  .faq-list > div,
  .feature-grid > div,
  .service-grid > div,
  .product-list-grid > div,
  .bundle-options-grid > div {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .container {
    max-width: 100vw;
    padding: 0 3vw;
  }
  section {
    padding: 26px 4px;
  }
  .content-wrapper {
    padding: 20px 7px;
    margin-bottom: 38px;
    gap: 18px;
  }
  .feature-grid,
  .service-grid,
  .product-list-grid,
  .bundle-options-grid {
    flex-direction: column;
    gap: 16px;
  }
  .card-container,
  .content-grid,
  .faq-list {
    flex-direction: column;
    gap: 17px;
  }
  .card, .testimonial-card, .faq-list > div {
    min-width: 0;
    max-width: 100%;
    padding: 15px 7px;
  }
  .footer-nav {
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }
  .footer-info {
    margin-top: 2px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    font-size: 0.97rem;
    padding: 17px 12px 17px 10px;
  }
}
@media (max-width: 568px) {
  .container {
    padding: 0 2vw;
  }
  .content-wrapper {
    border-radius: 6px;
  }
  .card, .testimonial-card, .faq-list > div {
    border-radius: 6px;
  }
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.08rem;}
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* -------------------------------------------------------------------
  MICRO-INTERACTIONS & UTILITIES
------------------------------------------------------------------- */
.card, .testimonial-card, .faq-list > div, .feature-grid > div, .service-grid > div {
  outline: none;
  transition: box-shadow 0.22s, background 0.13s, transform 0.11s;
}
.card:active,
.testimonial-card:active,
.faq-list > div:active,
.feature-grid > div:active,
.service-grid > div:active {
  transform: scale(0.98);
  box-shadow: 0 5px 24px 0 rgba(29,60,74,0.20);
}
.cta-button:active {
  background: #ED9732;
  color: #F3F7FA;
}

/* Misc utilities */
.mt-24 { margin-top: 24px; }
.mb-28 { margin-bottom: 28px; }
.pb-32 { padding-bottom: 32px; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.gap-16 { gap: 16px; }
.text-center { text-align: center; }

/* Hide visually (for JS-enabled toggling) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* -------------------------------------------------------------------
  END OF CSS
------------------------------------------------------------------- */