/* ==== 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, main, 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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}
button:focus, a:focus {
  outline: 2px solid #1C74B7;
  outline-offset: 2px;
}

/* ==== BRAND FONTS ==== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@400;500&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background-color: #fff;
  color: #223142;
  line-height: 1.6;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1C74B7;
  margin-bottom: 12px;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.1rem; }

.subheadline {
  color: #223142;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.125rem;
  margin-bottom: 24px;
  font-weight: 400;
}

p {
  margin-bottom: 14px;
  color: #223142;
}
strong {
  font-weight: 600;
}

/* ==== LAYOUT CONTAINERS ==== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 0;
}

/* ==== SPACING PATTERNS ==== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(28,116,183,0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 24px;
  min-width: 0;
  flex: 1 1 260px;
  max-width: 360px;
}
.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 24px;
  border-radius: 14px;
  background: #F4F7FA;
  box-shadow: 0 2px 12px rgba(28,116,183,0.06);
  margin-bottom: 20px;
  min-width: 240px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Utility flex wrappers */
.features, .product-list, .product-cards, .testimonials, .steps, .about, .faq, .benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* ==== HEADER / NAVIGATION ==== */
header {
  padding: 20px 0;
  background: #fff;
  box-shadow: 0 2px 12px rgba(34,49,66,0.05);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo img, .logo-footer img {
  height: 38px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #223142;
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 6px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #1C74B7;
  background: #f4f7fa;
}
.button.primary {
  background: #1C74B7;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(28,116,183,0.09);
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.17s;
  border: none;
  display: inline-block;
}
.button.primary:hover, .button.primary:focus {
  background: #145891;
  box-shadow: 0 4px 16px rgba(28,116,183,0.13);
  transform: translateY(-2px) scale(1.025);
}
.button {
  background: #F4F7FA;
  color: #1C74B7;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 8px;
  border: 1px solid #E1E7EF;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.16s;
  display: inline-block;
}
.button:hover, .button:focus {
  background: #e6eef8;
  border-color: #b1cef0;
  color: #145891;
  transform: translateY(-1.5px) scale(1.015);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #1C74B7;
  background: none;
  border: none;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E8F0F7;
}

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,49,66,0.90);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.77,0,.18,1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border: none;
  padding: 16px;
  cursor: pointer;
  margin-right: 18px;
  margin-top: 16px;
  transition: color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #1C74B7;
}
.mobile-nav {
  margin-top: 58px;
  width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 0 28px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  background: transparent;
  padding: 14px 4px;
  border-radius: 6px;
  width: 100%;
  transition: background 0.18s, color 0.18s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #1C74B7;
  color: #fff;
}

@media (max-width: 992px) {
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    gap: 6px;
  }
  .button.primary {
    margin-left: 8px;
    padding: 9px 20px;
    font-size: 0.99rem;
  }
}

/* ==== HERO/SECTION ==== */
.hero {
  background: #F4F7FA;
  padding: 60px 0 40px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  color: #223142;
  margin-bottom: 12px;
}

/* ==== FEATURE GRID ==== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 32px;
}
.feature-grid li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(28,116,183,0.05);
  padding: 28px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 282px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  margin-bottom: 20px;
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
}

/* ==== PRODUCT CARDS ==== */
.product-cards, .product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: space-between;
}
.service-card, .product-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 8px rgba(28,116,183,0.09);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 28px 20px 24px;
  min-width: 210px;
  max-width: 280px;
  gap: 12px;
  transition: box-shadow 0.20s, transform 0.18s;
  margin-bottom: 20px;
  border: 1px solid #E1E7EF;
}
.service-card:hover, .product-card:hover, .service-card:focus-within, .product-card:focus-within {
  box-shadow: 0 6px 24px rgba(28,116,183,0.13);
  border-color: #b1cef0;
  transform: translateY(-5px) scale(1.020);
}
.service-card img, .product-card img {
  width: 44px;
  height: 44px;
  margin-bottom: 7px;
}
.price {
  color: #1C74B7;
  font-weight: 700;
  font-size: 1.07rem;
  margin-bottom: 0;
}

/* ==== TESTIMONIALS ==== */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}
.testimonial-card {
  background: #F4F7FA;
  color: #223142;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(28,116,183,0.08);
  font-size: 1rem;
  min-width: 240px;
  max-width: 350px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px 20px;
  border: 1px solid #E1E7EF;
}
.testimonial-card .stars {
  color: #F9A602;
  font-size: 1.32rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.07em;
  font-weight: 700;
  margin-bottom: 2px;
}
.testimonial-card .customer {
  color: #1C74B7;
  font-size: 0.95rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 6px;
  font-weight: 500;
}
.testimonial-card blockquote {
  margin: 0;
  border-left: 3px solid #1C74B7;
  padding-left: 15px;
  color: #223142;
}

/* ==== FAQ ==== */
.faq {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.faq-item {
  background: #F7FAFD;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(28,116,183,0.05);
  padding: 22px 20px;
  margin-bottom: 10px;
}
.faq-item h3 {
  color: #1C74B7;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  margin-bottom: 8px;
}
.faq-quick-links {
  margin-top: 8px;
  font-size: 0.97rem;
  color: #223142;
}
.faq-quick-links a {
  color: #1C74B7;
  text-decoration: underline;
  margin-right: 9px;
}

/* ==== BENEFITS, STEPS, BRAND VALUES ==== */
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: 18px;
}
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.brand-values {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0 14px 0;
}
.team-highlights {
  margin-top: 18px;
  margin-bottom: 0;
}
.team-highlights ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
  padding-left: 18px;
  list-style: disc;
}

/* ==== CTA SECTION ==== */
.cta-section {
  background: #1C74B7;
  border-radius: 18px;
  padding: 36px 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 36px;
  box-shadow: 0 3px 18px rgba(28,116,183,0.10);
}
.cta-section h2 {
  color: #fff;
}
.cta-section p {
  color: #f4f7fa;
}
.cta-section .button.primary {
  background: #fff;
  color: #1C74B7;
}
.cta-section .button.primary:hover {
  background: #E8F0F7;
  color: #145891;
}

/* ==== CONTACT INFO & MAP ==== */
.contact-info {
  margin-bottom: 20px;
  font-size: 1rem;
}
.map-location {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F4F7FA;
  padding: 14px 18px;
  border-radius: 10px;
  box-shadow: 0 1.5px 6px rgba(28,116,183,0.05);
}

/* ==== FOOTER ==== */
footer {
  padding: 28px 0 0 0;
  background: #f7fafc;
  color: #223142;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 1px solid #E1E7EF;
  padding-top: 18px;
}
.logo-footer img {
  height: 30px;
  width: auto;
}
.footer-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-nav a {
  color: #223142;
  font-size: 0.99rem;
  opacity: 0.9;
  transition: color 0.18s, opacity 0.22s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #1C74B7;
  opacity: 1;
}
.footer-contact p {
  font-size: 0.97rem;
  margin-bottom: 4px;
  color: #324251;
}
footer .footer-contact {
  min-width: 230px;
}

/* ==== LEGAL & THANK YOU PAGES ==== */
.legal {
  background: #fff;
  padding: 40px 28px;
  border-radius: 13px;
  box-shadow: 0 2px 12px rgba(28,116,183,0.07);
  max-width: 720px;
  margin: 48px auto 48px auto;
  color: #223142;
  font-size: 1rem;
}
.legal h1 {
  margin-bottom: 18px;
  color: #1C74B7;
}
.legal a {
  color: #1C74B7;
  text-decoration: underline;
  word-break: break-all;
}
.legal ul {
  margin: 12px 0 22px 20px;
  padding-left: 15px;
  list-style: disc;
}
.legal li {
  margin-bottom: 9px;
}

/* ==== THANK YOU PAGE ==== */
.thank-you {
  background: #F4F7FA;
  border-radius: 13px;
  padding: 40px 28px;
  max-width: 740px;
  margin: 50px auto 54px auto;
  color: #223142;
  box-shadow: 0 2px 10px rgba(28,116,183,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.next-steps {
  margin-top: 20px;
  margin-bottom: 10px;
}
.next-steps h2 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}
.next-steps ul {
  margin-left: 28px;
  margin-bottom: 12px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #223142;
  color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 24px 20px 20px 20px;
  box-shadow: 0 -2px 14px rgba(28,116,183,0.13);
  z-index: 9999;
  transition: transform 0.52s cubic-bezier(.77,0,.18,1), opacity 0.37s;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  font-size: 0.98rem;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner .cookie-text {
  max-width: 520px;
  padding-right: 14px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  padding: 9px 18px;
  border: none;
  box-shadow: none;
  margin-right: 4px;
  transition: background 0.18s, color 0.16s;
  cursor: pointer;
}
.cookie-banner .accept {
  background: #1C74B7;
  color: #fff;
}
.cookie-banner .accept:hover {
  background: #145891;
}
.cookie-banner .reject {
  background: #E63946;
  color: #fff;
}
.cookie-banner .reject:hover {
  background: #af2731;
}
.cookie-banner .settings {
  background: #F4F7FA;
  color: #223142;
  border: 1px solid #B1CEE7;
}
.cookie-banner .settings:hover {
  background: #e8eef5;
}

/* ==== COOKIE SETTINGS MODAL ==== */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,49,66,0.50);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.33s;
}
.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(28,116,183,0.11);
  padding: 36px 32px 28px;
  min-width: 350px;
  max-width: 94vw;
  color: #223142;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-content h2 {
  color: #1C74B7;
  font-size: 1.19rem;
  margin-bottom: 8px;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 11px;
}
.cookie-modal-content .cookie-category label {
  font-size: 1rem;
  color: #145891;
}
.cookie-modal-content .close-modal {
  position: absolute;
  top: 12px; right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #1C74B7;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 3px;
  transition: background 0.16s;
}
.cookie-modal-content .close-modal:hover {
  background: #E8F0F7;
}
.cookie-modal-content .save-preferences {
  background: #1C74B7;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 7px;
  padding: 9px 18px;
  border: none;
  cursor: pointer;
  margin-top: 12px;
  align-self: flex-end;
}
.cookie-modal-content .save-preferences:hover {
  background: #145891;
}
.cookie-modal-content .cookie-category input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #1C74B7;
  margin-right: 6px;
}

/* ==== MEDIA QUERIES ==== */
@media (max-width: 1200px) {
  .container {
    padding: 0 12px;
  }
  .feature-grid li, .service-card, .product-card {
    min-width: 185px;
    max-width: 260px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 940px;
  }
  .feature-grid {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.35rem; }
  .main-nav { display: none; }
  .container { padding: 0 8px; }
  .section {
    margin-bottom: 36px;
    padding: 24px 8px;
  }
  .content-wrapper, .hero .content-wrapper {
    gap: 10px;
  }
  .feature-grid, .product-cards, .product-list, .testimonials {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid li, .service-card, .product-card, .testimonial-card {
    min-width: 150px;
    max-width: 98vw;
  }
  .cta-section {
    padding: 26px 10px;
    gap: 11px;
    margin-top: 28px;
    border-radius: 11px;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 7px;
    justify-content: flex-start;
  }
  footer .container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding-top: 12px;
  }
  .team-highlights ul {
    margin-left: 16px;
  }
  .legal, .thank-you {
    padding: 24px 6px;
    max-width: 96vw;
    margin: 22px 0;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 8px 14px 8px;
    font-size: 0.97rem;
  }
  .cookie-modal-content {
    min-width: 0px;
    max-width: 98vw;
    padding: 20px 10px 16px;
    gap: 11px;
  }
  .map-location {
    flex-direction: column;
    gap: 10px;
    padding: 7px 9px;
    font-size: 0.96rem;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
@media (max-width: 520px) {
  .feature-grid li, .service-card, .product-card, .testimonial-card {
    padding: 15px 7px;
    min-width: 106px;
    max-width: 100vw;
  }
  .cta-section {
    border-radius: 7px;
    padding: 12px 4px;
  }
  .cookie-modal-content {
    border-radius: 7px;
    padding: 12px 4px 10px;
  }
}

/* ==== MICRO-INTERACTIONS / TRANSITIONS ==== */
.button, .button.primary, .main-nav a, .mobile-nav a {
  transition: background 0.2s, color 0.17s, box-shadow 0.19s, border-color 0.16s, transform 0.18s;
}
.service-card, .product-card, .card, .feature-grid li, .testimonial-card {
  transition: box-shadow 0.17s, border-color 0.19s, transform 0.19s;
}

/* ==== ACCENT UTILITIES ==== */
.bg-primary {
  background: #1C74B7 !important;
  color: #fff !important;
}
.bg-accent {
  background: #F4F7FA !important;
}
.text-primary {
  color: #1C74B7 !important;
}
.text-secondary {
  color: #223142 !important;
}

/* ==== VISUAL HIERARCHY ==== */
h1 + .subheadline, h2 + .subheadline { margin-top: -10px; }

/* ==== ENSURE NO GRID ==== */
/* Only flexbox is used for layout. No display: grid, columns or grid-* properties anywhere. */
