/* RESET & NORMALIZE */
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 {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
}
body {
  background: #F5F7FB;
  color: #223041;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #005392;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #00B27D;
  outline: none;
}
ul, ol {
  margin-left: 1.5em;
  padding-left: 0;
  margin-bottom: 1.5em;
}
li {
  margin-bottom: 8px;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
}
strong {
  font-weight: 600;
}

/* TYPOGRAPHY */
h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #005392;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #223041;
  margin-bottom: 20px;
  line-height: 1.2;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #005392;
  margin-bottom: 12px;
  line-height: 1.25;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #005392;
}
p, blockquote {
  margin-bottom: 16px;
  font-size: 1rem;
}
blockquote {
  font-style: italic;
  color: #334157;
  margin: 0 0 8px 0;
  border-left: 4px solid #00B27D;
  padding-left: 18px;
}
.subheadline {
  font-size: 1.25rem;
  color: #223041;
  margin-bottom: 20px;
  font-weight: 400;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1200;
  border-bottom: 1px solid #E0E4EC;
  box-shadow: 0 2px 8px 0 rgba(36,64,98,0.05);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #223041;
  letter-spacing: 0.02em;
  padding: 8px 4px;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:hover, .main-nav a.active {
  color: #005392;
}
.btn-primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #005392;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  box-shadow: 0 2px 8px 0 rgba(0,83,146,0.10);
  cursor: pointer;
  outline: none;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: background 0.21s, box-shadow 0.21s, color 0.21s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #00B27D;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(0,83,146,0.15);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #005392;
  cursor: pointer;
  z-index: 1401;
  padding: 4px 12px;
  margin-left: 8px;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus {
  color: #00B27D;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(34,48,65,0.98);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 36px 28px 0 28px;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(0.77,0.2,0.05,1.0);
  box-shadow: 0 2px 32px 0 rgba(36,64,98,0.13);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: 16px;
  right: 24px;
  cursor: pointer;
  z-index: 1301;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  transition: color 0.14s, background 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #00B27D;
  background: rgba(255,255,255,0.02);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 20px;
  }
}

@media (max-width: 850px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* HERO SECTION */
.hero {
  background: #F5F7FB;
  padding-bottom: 24px;
  margin-bottom: 0;
}
.hero .container {
  min-height: 320px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 600px;
}
.hero h1 {
  color: #005392;
}

/* FEATURES SECTION */
.features .content-wrapper {
  align-items: flex-start;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 12px;
  width: 100%;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px 0 rgba(0,83,146,0.06);
  padding: 28px 22px 22px 22px;
  min-width: 220px;
  flex: 1 1 240px;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 0;
}
.feature-item img {
  width: 48px;
  height: 48px;
}
.feature-item:hover {
  box-shadow: 0 8px 24px 0 rgba(0,178,125,0.14);
  transform: translateY(-4px) scale(1.015);
}
.features ul, .features ol {
  margin-bottom: 0;
}

/* SERVICES/PRICING */
.services .content-wrapper {
  align-items: flex-start;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.service-list li {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px 0 rgba(0,83,146,0.07);
  padding: 24px 18px 18px 18px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 6px solid #00B27D;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.service-list li:hover {
  box-shadow: 0 10px 24px 0 rgba(0,178,125,0.12);
  border-left: 6px solid #005392;
}
.service-list h2, .service-list h3 { margin-bottom: 8px; }
.service-list span {
  font-size: 1rem;
  font-weight: 500;
  color: #005392;
}
.services .btn-primary {
  margin-top: 10px;
  align-self: flex-start;
}

/* CONTACT/INFO */
.contact .content-wrapper {
  align-items: flex-start;
}
.contact ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  background: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  box-shadow: 0 2px 8px 0 rgba(36,64,98,0.05);
}
.contact li img {
  width: 24px;
  height: 24px;
  margin-right: 4px;
}
.text-section {
  margin-bottom: 12px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* TESTIMONIALS */
.testimonials .content-wrapper {
  gap: 24px;
  align-items: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border-radius: 8px;
  padding: 20px 24px 18px 20px;
  box-shadow: 0 2px 14px 0 rgba(36,64,98,0.08);
  margin-bottom: 20px;
  min-width: 220px;
}
.testimonial-card blockquote {
  color: #223041;
  border-left: 4px solid #005392;
  font-size: 1.12rem;
  font-style: italic;
  background: none;
}
.testimonial-card .client {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #005392;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 4px;
}
.testimonial-card .stars {
  color: #00B27D;
  font-size: 1.1rem;
  letter-spacing: 0.09em;
  font-weight: 600;
}

/* CARDS & GRIDS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px 0 rgba(36,64,98,0.06);
  padding: 24px 20px 18px 20px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.16s, transform 0.13s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(0,83,146,0.13);
  transform: translateY(-3px);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 1px solid #E0E4EC;
  box-shadow: 0 -2px 16px 0 rgba(36,64,98,0.04);
  padding-top: 32px;
  padding-bottom: 8px;
}
.footer-section {
  display: flex;
  flex-direction: column;
  min-width: 200px;
  gap: 14px;
}
.footer-section img {
  width: 44px;
}
.footer-menu, .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-menu a, .footer-nav a {
  color: #223041;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
.footer-menu a:hover, .footer-nav a:hover {
  color: #005392;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 12px;
}
.footer-credit {
  border-top: 1px solid #E0E4EC;
  padding-top: 12px;
  margin-top: 20px;
}
.footer-credit small {
  color: #8aa0b6;
  letter-spacing: 0.02em;
}
@media (min-width: 800px) {
  footer .content-wrapper {
    flex-direction: row;
    display: flex;
    gap: 32px;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-menu, .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
}

/* LEGAL/SECTION STYLES */
.legal .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.legal a {
  color: #005392;
  text-decoration: underline;
}
.legal a:hover { color: #00B27D; }
.legal ul{
  margin-bottom: 16px;
}

/* COOKIE BANNER */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #223041;
  color: #fff;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 20px 20px 20px;
  box-shadow: 0 -2px 14px 0 rgba(34,48,65,0.08);
  transition: transform 0.25s;
  font-size: 1rem;
}
.cookie-consent-banner.hide {
  transform: translateY(100%);
}
.cookie-consent-buttons {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  padding: 9px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-btn.accept {
  background: #00B27D;
  color: #fff;
}
.cookie-btn.accept:hover {
  background: #005392;
}
.cookie-btn.reject {
  background: #fff;
  color: #005392;
  border: 1px solid #edeff1;
}
.cookie-btn.reject:hover {
  background: #E0E4EC;
  color: #005392;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  text-decoration: underline;
}
.cookie-btn.settings:hover {
  color: #00B27D;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,48,65,0.94);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  color: #223041;
  border-radius: 10px;
  box-shadow: 0 10px 36px 0 rgba(0,83,146,0.18);
  padding: 36px 24px 24px 24px;
  max-width: 420px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #005392;
  cursor: pointer;
  z-index: 2202;
}
.cookie-modal h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  color: #005392;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category input[type='checkbox'],
.cookie-category input[type='radio'] {
  accent-color: #00B27D;
  width: 18px;
  height: 18px;
}
.cookie-modal-btns {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

@media (max-width: 1200px) {
  .container {
    max-width: 980px;
    padding: 0 12px;
  }
  .footer-section {
    min-width: 160px;
  }
}
@media (max-width: 900px) {
  .footer-section {
    min-width: 120px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  .content-wrapper, .feature-grid, .card-container, .service-list, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .main-nav {
    display: none;
  }
  .section {
    margin-bottom: 38px;
    padding: 26px 8px;
  }
  .feature-grid {
    gap: 20px;
  }
  .footer-section, .footer-menu, .footer-nav {
    min-width: 0;
    max-width: 100%;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card, .card, .feature-item, .service-list li {
    min-width: 0;
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }
  .hero .content-wrapper {
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.06rem; }
  .section {
    padding: 18px 2px;
    margin-bottom: 25px;
  }
}

/* MICRO-INTERACTIONS & TRANSITIONS */
.btn-primary, .card, .feature-item, .service-list li, .testimonial-card, .cookie-btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.19s, border 0.18s, transform 0.14s;
}

/* ACCESSIBILITY FOCUS STATES */
a:focus, button:focus, .btn-primary:focus, .cookie-btn:focus {
  outline: 2px solid #00B27D;
  outline-offset: 2px;
}

/* UTILITIES */
.mt-16 { margin-top: 16px; }
.mb-20 { margin-bottom: 20px; }
.gap-20 { gap: 20px; }

/* END */