/* CSS RESET & BASE TYPOGRAPHY */
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, 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 {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  color: #181818;
  background: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  display: inline-block;
}
a {
  color: #11344A;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #000;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
strong, b {
  font-weight: 600;
}
hr {
  border: none;
  border-top: 1px solid #e2e2e2;
  margin: 32px 0;
}

/* TYPOGRAPHY SCALE */
h1 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -1px;
  line-height: 1.12;
  color: #0d0d0d;
  margin-bottom: 18px;
}
h2 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #181818;
  margin-bottom: 16px;
}
h3 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #212121;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 400;
  color: #242424;
  margin-bottom: 8px;
}
.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  color: #333;
  font-size: 1.15rem;
  margin-bottom: 28px;
  max-width: 640px;
}
p {
  margin-bottom: 16px;
  color: #242424;
}
.text-center {
  text-align: center;
}
.text-section {
  margin-bottom: 16px;
}

/* LAYOUT CONTAINERS & FLEXBOX RULES */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section, main section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section, main section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 8px;
  }
}

/* FLEXBOX GRIDS & MANDATORY PATTERNS */
.features-grid, .feature-items, .service-cards, .card-container, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.features-grid {
  gap: 24px;
  flex-wrap: wrap;
}
.card-container, .card-grid {
  gap: 24px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .features-grid, .feature-items, .service-cards, .card-container, .card-grid, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* CARDS & CARD PATTERNS */
.card, .service-cards > div, .feature-item, .testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06), 0 1.5px 6px rgba(0,0,0,.04);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid #ececec;
  transition: box-shadow .24s, border-color .18s;
}
.card:hover, .service-cards > div:hover, .feature-item:hover, .testimonial-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.13);
  border-color: #c4c4c4;
}
@media (max-width: 600px) {
  .card, .service-cards > div, .feature-item, .testimonial-card {
    padding: 18px 8px 14px 8px;
    border-radius: 12px;
  }
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fafbfc;
  border-left: 4px solid #181818;
  font-size: 1.12rem;
  line-height: 1.65;
  margin-bottom: 24px;
  color: #181818;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  padding: 20px 26px;
}
.testimonial-card p {
  margin-bottom: 0;
  color: #222;
}
.testimonial-card strong {
  color: #585858;
  font-weight: 700;
  display: block;
  margin-top: 12px;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 16px 8px;
    font-size: 1.01rem;
  }
}

/* BUTTONS & CTA */
.cta-btn,
button,
input[type='submit'] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  padding: 12px 32px;
  border-radius: 26px;
  background: #181818;
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(17, 52, 74, 0.12);
  letter-spacing: 0.5px;
  cursor: pointer;
  margin: 0 6px 10px 0;
  display: inline-block;
  outline: none;
  transition: background .23s, color .16s, box-shadow .18s;
}
.cta-btn:hover,
button:hover,
.cta-btn:focus,
button:focus {
  background: #fff;
  color: #181818;
  border: 2px solid #181818;
  box-shadow: 0 4px 16px rgba(24,24,24,0.12);
}
@media (max-width: 480px) {
  .cta-btn, button, input[type='submit'] {
    width: 100%;
    padding: 11px 0;
    font-size: 1rem;
  }
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1.5px 8px rgba(0,0,0,.04);
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 99;
  min-height: 70px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 0 24px;
  min-height: 70px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #181818;
  padding: 5px 12px;
  transition: color .15s, border .15s;
  border-radius: 16px;
}
header nav a:hover,
header nav a:focus {
  background: #181818;
  color: #fff;
}
header a img {
  display: block;
  height: 40px;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #181818;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 14px;
  border-radius: 24px;
  width: 42px;
  height: 42px;
  transition: background .17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #ececec;
}
@media (max-width: 1024px) {
  header nav {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20, 20, 20, 0.98);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform .48s cubic-bezier(.77,.2,.05,1), opacity .23s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  margin: 22px 22px 0 0;
  cursor: pointer;
  z-index: 4;
  transition: color .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F5C242;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 48px 24px 0 36px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 500;
  padding: 12px 8px;
  border-radius: 12px;
  transition: background .17s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff;
  color: #181818;
}
@media (max-width: 480px) {
  .mobile-nav {
    padding: 32px 8px 0 8px;
  }
}
/* Ensure mobile menu covers the full viewport */
@media (max-width: 900px) {
  .mobile-menu {
    width: 100vw;
    height: 100vh;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #fff 55%, #f5f5f5 100%);
  min-height: 370px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 64px 0 40px 0;
}
.hero .container, .hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero h1 {
  color: #111;
  font-size: 2.65rem;
  margin-bottom: 20px;
  line-height: 1.13;
}
.hero .subheadline {
  color: #353535;
  font-size: 1.18rem;
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .hero {
    min-height: 220px;
    padding: 36px 0 16px 0;
    margin-bottom: 36px;
  }
  .hero h1 {
    font-size: 1.65rem;
  }
}

/* SERVICES/FEATURES */
.features-grid > div {
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 250px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 8px rgba(0,0,0,.05);
  padding: 18px 20px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid #ececec;
  margin-bottom: 0;
  transition: box-shadow .22s, border-color .14s;
}
.features-grid > div:hover {
  box-shadow: 0 8px 32px rgba(17, 52, 74, 0.10);
  border-color: #b1b1b1;
}
.features-grid img {
  height: 40px;
  width: 40px;
  margin-bottom: 4px;
  filter: grayscale(100%) contrast(1.4);
}
.features-grid h3 {
  font-size: 1.09rem;
  font-weight: 600;
  color: #191919;
  margin-bottom: 6px;
}
.features-grid p {
  font-size: 1rem;
  color: #333;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.service-cards > div {
  flex: 1 1 230px;
  min-width: 210px;
  max-width: 240px;
  text-align: left;
  background: #f7f8fa;
  border-radius: 14px;
  border: 1px solid #eaeaea;
  box-shadow: 0 1.5px 7px rgba(0,0,0,.05);
  padding: 20px 16px 14px 16px;
  transition: box-shadow .22s, border-color .18s;
}
.service-cards > div:hover {
  box-shadow: 0 5px 17px rgba(17, 52, 74, 0.09);
  border-color: #bebebe;
}
.service-cards h3 {
  color: #191919;
  font-size: 1.12rem;
}
.service-cards p {
  color: #282828;
  font-size: 1rem;
}

/* CONTACT SNIPPET & DETAILS */
.contact-snippet {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 12px;
}
.contact-snippet img {
  height: 22px;
  width: 22px;
  margin-right: 10px;
  filter: grayscale(1) contrast(1.2);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
  color: #252525;
  margin: 12px 0 0 0;
}
.contact-details div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-details img {
  height: 18px;
  width: 18px;
  filter: grayscale(1) contrast(1.3);
}
@media (max-width: 700px) {
  .contact-snippet, .contact-details {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/* FOOTER */
footer {
  width: 100%;
  background: #111;
  color: #fff;
  padding: 48px 0 0 0;
  border-top: 1px solid #e0e0e0;
  margin-top: 60px;
  font-size: 0.99rem;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 44px;
  justify-content: flex-start;
  padding: 0 24px 16px 24px;
}
footer nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 10px;
}
footer nav a {
  color: #fff;
  opacity: 0.85;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  transition: opacity .18s, color .16s;
}
footer nav a:hover {
  opacity: 1;
  color: #F5C242;
}
footer .contact-details {
  color: #ececec;
  gap: 8px;
  margin-top: 0;
  padding-left: 14px;
  font-size: 0.97rem;
}
footer img {
  height: 40px;
  margin-right: 30px;
}
footer .copyright {
  width: 100%;
  text-align: left;
  color: #d8d8d8;
  font-size: 0.94rem;
  padding: 6px 24px 16px 24px;
}
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    padding: 0 12px 12px 12px;
  }
  footer .copyright {
    padding: 4px 12px 12px 12px;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 28px 0 0 0;
    font-size: 0.93rem;
  }
  footer img {
    height: 32px;
    margin-right: 12px;
  }
}

/* THANK YOU SECTION & SPECIALS */
.thank-you {
  background: #fafbfc;
  padding: 40px 20px;
  border-radius: 20px;
  margin: 40px auto 0 auto;
}
.next-steps ul {
  list-style: disc inside;
  margin-left: 20px;
  color: #191919;
  margin-bottom: 16px;
}

/* LISTS & BULLETED FEATURES */
ul, ol {
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: #212121;
  padding-left: 1.1em;
  position: relative;
}
ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #181818;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.7em;
}
@media (max-width: 768px) {
  ul li, ol li {
    padding-left: 1.4em;
  }
}

/* FORM ELEMENTS */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 13px;
  border-radius: 8px;
  border: 1px solid #bbbbbb;
  margin-bottom: 12px;
  background: #f6f6f6;
  color: #222;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border .15s, box-shadow .10s;
}
input:focus, textarea:focus, select:focus {
  border-color: #181818;
  box-shadow: 0 1px 7px rgba(24,24,24,0.07);
}

/* ANIMATION & INTERACTION */
.cta-btn, button, .mobile-menu-toggle, .mobile-menu-close, .mobile-nav a, .service-cards > div, .card, .testimonial-card {
  transition: background .18s, color .15s, box-shadow .22s, border-color .15s;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fafaf8;
  border-top: 1.5px solid #191919;
  box-shadow: 0 -2px 12px rgba(24,24,24,0.07);
  z-index: 99999;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 18px 36px 18px 28px;
  font-size: 1rem;
  color: #191919;
  opacity: 1;
  pointer-events: auto;
  transition: transform .38s cubic-bezier(.83,0,.17,1), opacity .23s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner p {
  flex: 1;
  margin: 0 14px 0 0;
  color: #191919;
  font-size: 0.99rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.cookie-banner button,
.cookie-banner .cta-btn {
  border-radius: 22px;
  font-size: 1rem;
  padding: 8px 20px;
  margin: 0 0 0 4px;
  font-weight: 600;
  border: 1.5px solid #191919;
  color: #fff;
  background: #181818;
  transition: background .18s, color .14s, border .16s;
}
.cookie-banner button:hover, .cookie-banner .cta-btn:hover, .cookie-banner button:focus {
  background: #fff;
  color: #181818;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #181818;
  border: 1.5px solid #191919;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #181818;
  color: #fff;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 11px;
    font-size: 0.94rem;
    padding: 14px 8px 14px 8px;
  }
  .cookie-banner .cookie-actions {
    width: 100%;
    flex-direction: row;
    gap: 8px;
    justify-content: flex-end;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(17, 20, 24, 0.92);
  z-index: 100010;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .26s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .modal-box {
  background: #fff;
  color: #121212;
  border-radius: 20px;
  box-shadow: 0 8px 38px rgba(0,0,0,0.16);
  max-width: 400px;
  width: 94vw;
  padding: 34px 22px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: cookieModalIn .53s cubic-bezier(.7,.31,.18,.99);
}
@keyframes cookieModalIn {
  from { transform: translateY(60px) scale(.95); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal .modal-box h3 {
  font-size: 1.23rem;
  font-weight: 600;
  color: #191919;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #191919;
}
.cookie-modal .toggle {
  width: 34px;
  height: 18px;
  background: #ececec;
  border-radius: 9px;
  position: relative;
  transition: background .19s;
  margin-right: 7px;
}
.cookie-modal .toggle input[type="checkbox"] {
  display: none;
}
.cookie-modal .toggle .slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  background: #222;
  border-radius: 50%;
  transition: left 0.2s;
}
.cookie-modal .toggle input:checked + .slider {
  background: #F5C242;
  left: 18px;
}
.cookie-modal .cookie-settings-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 10px; right: 16px;
  font-size: 1.4rem;
  background: none;
  border: none;
  color: #191919;
  cursor: pointer;
  padding: 0;
}
.cookie-modal .modal-close:hover {
  color: #F5C242;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 450px) {
  .hero h1 {
    font-size: 1.26rem;
  }
  h2 {
    font-size: 1.17rem;
  }
  .testimonial-card, .card, .service-cards > div {
    padding: 10px 5px 8px 5px;
  }
  .cookie-modal .modal-box {
    padding: 14px 8px 10px 8px;
    border-radius: 16px;
  }
}

/* MICRO-INTERACTIONS & OVERRIDES */
main a.cta-btn:active { transform: scale(0.98); }
main .cta-btn:focus-visible { box-shadow: 0 0 0 2.5px #181818; }

::selection { background: #11344A; color: #fff; }

/* Hide outline for mouse but not for keyboard navigation */
*:focus:not(:focus-visible) {
  outline: none !important;
}

/* Utility: visually hidden */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* End of CSS */
