/* --- 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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #fff;
  color: #1A1A1A;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  background: #fff;
  color: #222;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #25416A;
  text-decoration: none;
  transition: color .2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #111;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: 600;
}
hr {
  border: none;
  border-top: 1px solid #D3D3D3;
  margin: 32px 0;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #181818;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.22;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
.subheadline {
  font-size: 1.25rem;
  color: #929292;
  font-weight: 400;
  margin-bottom: 24px;
}
p {
  margin-bottom: 16px;
}

/* --- STRUCTURE & CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}

/* --- FLEXBOX LAYOUTS --- */
.features-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 16px;
}
.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 18px rgba(32,34,37,0.06);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  min-width: 270px;
  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 28px 20px 28px;
  border-radius: 12px;
  background: #fafafd;
  color: #222;
  box-shadow: 0 0 0 1px #dedede, 0 2px 10px 0 rgba(16,18,18,0.06);
  margin-bottom: 20px;
  min-width: 275px;
  max-width: 460px;
  transition: box-shadow .20s cubic-bezier(.4,0,.2,1);
}
.testimonial-card:hover {
  box-shadow: 0 0 0 2px #25416A, 0 6px 24px 0 rgba(36,65,106,0.11);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f7f7f7;
  border-radius: 10px;
  padding: 24px 18px 18px 18px;
  box-shadow: 0 1.5px 8px rgba(0,0,0,0.035);
  min-width: 220px;
  flex: 1 1 240px;
  transition: box-shadow .18s cubic-bezier(.4,0,.2,1), background .18s cubic-bezier(.4,0,.2,1);
}
.feature-item:hover {
  background: #ebedf0;
  box-shadow: 0 3px 14px 0 rgba(36,65,106,0.07);
}

.usp-list ul {
  list-style: disc inside;
  padding-left: 0;
  margin-bottom: 0;
}
.trust-icons {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 24px;
}

/***** HERO SECTION *****/
.hero {
  background: #101217 linear-gradient(90deg, #111215 27%, #232438 100%);
  color: #fff;
  padding: 64px 0 48px 0;
}
.hero h1,
.hero h2,
.hero h3 {
  color: #fff;
}
.hero a.cta-btn {
  background: #fff;
  color: #181818;
  border-color: #fff;
}
.hero a.cta-btn:hover {
  box-shadow: 0 2px 16px #25416A25;
  color: #25416A;
  background: #fafafd;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: relative;
  width: 100%;
  z-index: 25;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 0 !important;
  position: relative;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
header nav a {
  color: #222;
  font-size: 1rem;
  font-weight: 500;
  opacity: .88;
  padding: 6px 0;
  transition: color .15s, opacity .15s;
  position: relative;
}
header nav a:hover, header nav a.active {
  color: #25416A;
  opacity: 1;
}
header img {
  height: 42px;
  max-width: 156px;
  width: auto;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25416A;
  border: 2px solid #25416A;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 6px;
  box-shadow: 0 2px 10px 0 rgba(37,65,106,0.06);
  letter-spacing: .01em;
  transition: background .16s, color .16s, box-shadow .18s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  margin-left: 28px;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #fff;
  color: #25416A;
  box-shadow: 0 4px 30px 0 #25416A19;
  text-decoration: none;
  border-color: #25416A;
}
header .cta-btn {
  margin-left: 28px;
  margin-right: 0;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 18px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #25416A;
  cursor: pointer;
  z-index: 201;
  line-height: 1;
  transition: color .16s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #25416A;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,22,24,0.98);
  color: #fff;
  z-index: 222;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-100%);
  display: flex;
  flex-direction: column;
  transition: opacity .32s cubic-bezier(.4,0,.2,1), transform .32s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.15rem;
  position: absolute;
  top: 20px;
  right: 28px;
  z-index: 2;
  cursor: pointer;
  transition: color .18s;
}
.mobile-menu-close:hover {
  color: #FFB700;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  margin-top: 80px;
  padding: 32px 20px;
  height: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.4rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  border-radius: 5px;
  padding: 10px 14px;
  min-width: 64px;
  transition: background .16s, color .16s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #222;
  color: #FFB700;
}

/* --- MAIN LAYOUT SECTIONS --- */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}
.content-wrapper.contact-cta {
  background: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 1px 7px 0 rgba(0,0,0,0.06);
  padding: 32px 24px;
  align-items: flex-start;
}

/***** PRICING TABLE *****/
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-top: 12px;
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 8px 0 rgba(25,25,25,0.07);
}
.pricing-table th, .pricing-table td {
  padding: 18px 12px;
  text-align: left;
  font-size: 1.05rem;
}
.pricing-table th {
  background: #222;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.pricing-table tr:nth-child(even) td {
  background: #F5F5F5;
}
.pricing-table tr:hover td {
  background: #ebedf0;
  color: #25416A;
}

.price-notes {
  background: #f7f7f7;
  border-radius: 10px;
  padding: 24px 18px 18px 18px;
  margin-top: 14px;
  margin-bottom: 14px;
}
.price-notes h3 {
  margin-top: 0;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

/***** TESTIMONIAL AND RATING SECTIONS *****/
.testimonials, .testimonial-list, .testimonial-slider {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-list {
  flex-wrap: wrap;
  gap: 24px;
}
.rating-summary {
  background: #fafafd;
  border-radius: 8px;
  padding: 19px 22px;
  color: #181818;
  font-weight: 600;
  box-shadow: 0 1px 8px 0 rgba(36,65,106,0.05);
}
.testimonial-name {
  color: #25416A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-style: italic;
  font-size: 1rem;
}

.submit-feedback h3 {
  font-size: 1.125rem;
  margin-top: 0;
  margin-bottom: 8px;
}
.submit-feedback a {
  color: #25416A;
  text-decoration: underline;
  font-weight: 500;
}

/***** ACCORDION (FAQ) *****/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
}
.faq-item {
  background: #f6f6f6;
  border-radius: 8px;
  padding: 20px 18px;
  box-shadow: 0 1px 4px rgba(36,41,57,0.05);
  cursor: pointer;
  transition: box-shadow .15s cubic-bezier(.4,0,.2,1), background .14s;
}
.faq-item h3 {
  margin: 0 0 6px 0;
  font-size: 1.05rem;
}
.faq-item:hover, .faq-item.open {
  background: #ededed;
  box-shadow: 0 2px 16px 0 rgba(30,41,64,0.08);
}
.faq-item p {
  color: #212121;
  margin: 0;
  font-size: 1rem;
}

/***** FOOTER *****/
footer {
  background: #16181d;
  color: #ccc;
  padding: 40px 0 18px 0;
  border-top: 2px solid #111217;
  margin-top: 32px;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 32px;
}
.footer-nav a {
  color: #ccc;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  opacity: .84;
  transition: color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFB700;
  opacity: 1;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #888;
  font-size: 0.98rem;
}
.footer-brand img {
  height: 30px;
  width: auto;
}

/***** SIGNATURE COMPONENTS *****/
.map-placeholder {
  width: 100%;
  min-height: 190px;
  background: #ededed;
  color: #9d9d9d;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 1.12rem;
  margin-bottom: 20px;
  font-style: italic;
  letter-spacing: .04em;
}

/***** THANK YOU PAGE *****/
.thank-you .text-section {
  background: #fafafd;
  border-radius: 10px;
  padding: 28px 22px;
  box-shadow: 0 1px 8px 0 rgba(50,50,50,0.09);
  margin-top: 16px;
}

/***** COOKIE CONSENT BANNER *****/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #18181B;
  color: #f3f3f3;
  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 32px 26px 24px;
  box-shadow: 0 -2px 24px 0 rgba(24,24,27,0.16);
  transition: transform .24s cubic-bezier(.4,0,.2,1), opacity .22s cubic-bezier(.4,0,.2,1);
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner strong {
  color: #fff;
}
.CookieButtons {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  background: #fff;
  color: #18181B;
  border: none;
  border-radius: 4px;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(37,65,106,0.05);
  transition: background .14s, color .14s, box-shadow .13s;
}
.cookie-btn.settings {
  background: #eee;
  color: #222;
}
.cookie-btn.accept {
  background: #FFB700;
  color: #222;
}
.cookie-btn.reject {
  background: #dedede;
  color: #525252;
}
.cookie-btn:focus,
.cookie-btn:hover {
  outline: 2px solid #25416A;
  color: #25416A;
  background: #f5f5f5;
}

/***** COOKIE MODAL *****/
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(24,24,27,0.68);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity .22s cubic-bezier(.4,0,.2,1);
}
.cookie-modal {
  background: #f8f8fa;
  color: #1A1A1A;
  border-radius: 12px;
  padding: 40px 30px 34px 30px;
  min-width: 320px;
  max-width: 98vw;
  min-height: 14vh;
  box-shadow: 0 6px 48px 0 rgba(24,24,27,0.26);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 1000;
}
.cookie-modal h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.cookie-close-btn {
  position: absolute;
  top: 18px;
  right: 19px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #18181B;
  cursor: pointer;
}
.cookie-category-list {
  margin-top: 22px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.08rem;
}
.cookie-category input[type=checkbox] {
  accent-color: #25416A;
  width: 22px;
  height: 22px;
  margin-right: 7px;
}
.cookie-category.essential label {
  color: #9d9d9d;
}

/***** ANIMATIONS & MICROINTERACTIONS *****/
a, .cta-btn, .feature-item, .testimonial-card, .cookie-btn, .faq-item, .pricing-table tr {
  transition: color .18s, background .18s, box-shadow .18s, border-color 0.14s;
}

/***** RESPONSIVE DESIGN: MOBILE-FIRST *****/
@media (max-width: 1160px) {
  .container {
    max-width: 100vw;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 98vw;
  }
  .features-grid, .service-list, .card-container, .card-grid, .testimonial-list {
    gap: 16px;
  }
  .feature-item, .testimonial-card {
    min-width: 170px;
    max-width: 100vw;
  }
}
@media (max-width: 810px) {
  .cta-btn {
    font-size: 1rem;
    padding: 9px 14px;
    margin-left: 12px;
  }
  .hero {
    padding: 44px 0 30px 0;
  }
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.45rem; }
  .footer-nav {
    gap: 16px;
  }
  .content-wrapper.contact-cta {
    padding: 20px 10px;
  }
}
@media (max-width: 769px) {
  .features-grid, .service-list, .card-container, .card-grid, .testimonial-list {
    gap: 13px;
  }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 58px;
    padding: 9px 7px 9px 16px;
  }

  header nav,
  header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline;
  }
  .mobile-menu {
    display: flex;
  }
  .content-wrapper {
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .usp-list ul {
    font-size: 1rem;
  }
  .trust-icons {
    gap: 10px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-brand {
    margin-top: 12px;
  }
  section, .section {
    padding: 30px 0;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 15px;
  }
  .pricing-table th, .pricing-table td {
    font-size: 0.96rem;
    padding: 12px 7px;
  }
  .hero {
    padding: 20px 0 18px 0;
    border-radius: 0;
  }
  .thank-you .text-section {
    padding: 15px 7px;
    font-size: 0.96rem;
  }
  .testimonial-card {
    padding: 15px 7px;
  }
  .feature-item,
  .price-notes,
  .content-wrapper.contact-cta {
    padding: 12px 6px 8px 7px;
  }
  .cookie-banner {
    padding: 13px 7px 12px 8px;
    flex-direction: column;
    gap: 12px;
    font-size: .98rem;
    align-items: flex-start;
  }
  .CookieButtons {
    gap: 8px;
  }
  .cookie-modal {
    padding: 18px 9px 18px 9px;
    min-width: 0;
    max-width: 99vw;
    font-size: .97rem;
  }
  .faq-item {
    padding: 13px 6px;
  }
  .content-wrapper {
    gap: 8px;
  }
  h1 { font-size: 1.34rem; }
  h2 { font-size: 1.09rem; }
}
/* --- UTILITY: FOR ACCESSIBLE HIDDEN TEXT --- */
.sr-only {
  position: absolute;
  left: -99999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* END OF CSS */
