/*--- CSS RESET & ROOTS ---*/
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FDF8F2;
  color: #19333d;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #21566B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #C2691A;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.5em;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 8px;
}
:root {
  --color-primary: #21566B;
  --color-primary-dark: #19333d;
  --color-secondary: #5CC9BA;
  --color-accent: #F2F5F6;
  --color-warm-1: #FDF8F2;
  --color-warm-2: #FFF1E0;
  --color-warm-3: #FFE4CF;
  --color-warm-4: #FFF8E9;
  --color-btn-hover: #136175;
  --color-shadow: rgba(33, 86, 107, 0.08);
  --color-shadow-deep: rgba(33, 86, 107, 0.16);
  --border-radius: 18px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --shadow: 0 3px 16px 0 var(--color-shadow);
  --shadow-soft: 0 1.5px 4px 0 var(--color-shadow);
  --gap: 20px;
  --header-height: 82px;
  --transition: 0.28s cubic-bezier(.66,.20,.28,1);
}

/*--- TYPOGRAPHY ---*/
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-primary-dark);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
p {
  font-size: 1rem;
  color: #23434f;
  line-height: 1.7;
  margin-bottom: 18px;
}
.text-section li,
.text-section ul li,
.text-section ol li {
  font-size: 1rem;
  margin-bottom: 10px;
}
blockquote {
  background: var(--color-warm-2);
  border-left: 4px solid var(--color-secondary);
  padding: 20px 24px;
  border-radius: var(--border-radius);
  margin-bottom: 16px;
  font-style: italic;
  color: #2e454d;
}

/*--- CONTAINERS & CONTENT ---*/
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- HEADER --- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px 0 var(--color-shadow);
  min-height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 110;
}
header .container {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo img {
  height: 40px;
  border-radius: 12px;
  background: var(--color-warm-2);
  box-shadow: 0 0.5px 2px var(--color-shadow);
  padding: 4px;
  transition: box-shadow 0.2s;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 4px;
  border-radius: 8px;
  color: var(--color-primary);
  transition: background 0.16s, color 0.16s;
}
nav a:hover, nav a:focus {
  background: var(--color-warm-2);
  color: var(--color-primary-dark);
}
.btn-primary {
  font-family: var(--font-display);
  padding: 13px 30px;
  border-radius: 30px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.015em;
  box-shadow: var(--shadow);
  margin-left: 18px;
  border: none;
  outline: none;
  display: inline-block;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-btn-hover);
  box-shadow: 0 4px 18px 0 var(--color-shadow-deep);
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  font-family: var(--font-display);
  color: var(--color-primary);
  background: var(--color-warm-2);
  border-radius: 24px;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 24px;
  border: none;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.23s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: var(--shadow);
}

/* --- MOBILE NAV --- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  border: none;
  font-size: 2rem;
  color: var(--color-primary);
  border-radius: 12px;
  width: 52px;
  height: 52px;
  margin: 0 0 0 10px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.19s;
  z-index: 130;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-primary);
}
/* --- MOBILE MENU OVERLAY --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(253,248,242,0.97);
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.54,.11,.26,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 56px;
  padding: 0 28px;
  box-shadow: 0 0px 36px 10px var(--color-shadow-deep);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin-top: 36px;
  margin-bottom: 24px;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 2.2rem;
  padding: 4px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.19s, color 0.19s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-warm-3);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--color-primary);
  padding: 16px 0 16px 10px;
  border-radius: 6px;
  transition: background .16s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-warm-2);
  color: var(--color-primary-dark);
}

/* --- HERO & CTA --- */
.hero {
  padding: 54px 0 38px 0;
  background: var(--color-warm-3);
  border-radius: 0 0 32px 32px;
  min-height: 416px;
  margin-bottom: 60px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
}
.hero .container, .cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper,
.cta .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.cta {
  background: var(--color-warm-2);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 38px 20px 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* SECTION LAYOUTS */
.features, .trust, .about, .team, .services, .faq, .process, .pricing, .testimonials, .case-studies, .contact, .confirmation, .blog-intro, .blog-list, .legal {
  margin-bottom: 60px;
  padding: 40px 0;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: var(--color-accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-warm-2);
  border-radius: 22px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  transition: box-shadow 0.19s, transform 0.19s;
}
.testimonial-card blockquote {
  margin: 0;
  flex: 1 1 0%;
  background: transparent;
  border-left: none;
  padding: 0;
  color: #243e53;
}
.testimonial-card .testimonial-meta {
  font-family: var(--font-display);
  font-weight: 500;
  color: #21566B;
  font-size: 1.02rem;
  margin-left: 12px;
  align-self: flex-end;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 var(--color-shadow-deep);
  transform: translateY(-2px) scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-warm-4);
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: var(--shadow-soft);
  width: 100%;
  min-width: 220px;
  flex: 1 1 180px;
  transition: box-shadow 0.22s;
}
.feature-item img {
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  padding: 5px;
}
.feature-item:hover {
  box-shadow: 0 6px 24px 0 var(--color-shadow-deep);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

/* USP & CERTIFICATION */
.usp-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 1rem;
}
.certifications {
  display: flex;
  gap: 24px;
  margin-top: 18px;
  flex-wrap: wrap;
  color: var(--color-primary);
}
.certifications span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.97rem;
  background: var(--color-warm-4);
  border-radius: 8px;
  padding: 4px 12px;
}
.certifications img {
  width: 24px;
  height: 24px;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-radius: var(--border-radius);
  margin: 16px 0 24px 0;
  background-color: var(--color-warm-3);
  box-shadow: var(--shadow-soft);
}
.pricing-table th {
  font-family: var(--font-display);
  color: var(--color-primary-dark);
  background: var(--color-warm-2);
  font-weight: 600;
  font-size: 1.08rem;
  text-align: left;
  border-bottom: 2px solid var(--color-secondary);
}
.pricing-table td {
  background: #fff;
  color: #23434f;
  font-size: 1.01rem;
  border-bottom: 1px solid var(--color-accent);
}
.price-inclusions, .pricing-notes {
  margin: 16px 0 0 0;
  font-size: 0.97rem;
  color: #394851;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-list h3 {
  font-size: 1.07rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.faq-list p {
  margin-bottom: 0;
}

/* BLOG */
.blog-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 10px;
}
.blog-preview {
  background: var(--color-warm-4);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
  flex: 1 1 240px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.blog-preview:hover {
  box-shadow: 0 8px 28px 0 var(--color-shadow-deep);
  transform: translateY(-3px) scale(1.015);
}

/* CASE STUDIES */
.project-snippet {
  margin-bottom: 22px;
  padding: 18px 14px;
  background: var(--color-warm-4);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}
.project-snippet h3 {
  color: var(--color-primary);
  font-size: 1.02rem;
  margin-bottom: 5px;
}
.project-outcomes ul {
  margin-top: 19px;
  list-style: disc;
}

/* CONTACT INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 18px 0;
  font-size: 1rem;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-info img {
  width: 22px;
  height: 22px;
}

/* FOOTER */
footer {
  background: var(--color-warm-1);
  padding: 40px 0 24px 0;
  font-size: 0.95rem;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -2px 18px 0 var(--color-shadow-soft);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
footer nav {
  display: flex;
  gap: 14px;
  margin: 8px 0;
}
footer nav a {
  color: var(--color-primary-dark);
  font-family: var(--font-display);
  padding: 7px 8px;
  border-radius: 8px;
  font-size: 0.97rem;
  transition: background 0.14s;
}
footer nav a:hover {
  background: var(--color-accent);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  color: #486077;
  font-size: 0.98rem;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
}
footer img[src*="logo-mark"] {
  height: 38px;
  margin-bottom: 3px;
}
footer p {
  color: #a8b5bf;
  font-size: 0.97rem;
  text-align: center;
  margin-top: 12px;
}

/* COOKIE CONSENT STYLES */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 16px 0 var(--color-shadow-deep);
  border-radius: 18px 18px 0 0;
  padding: 26px 17px 22px 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  z-index: 2300;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.24s, transform 0.4s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(124px);
}
.cookie-banner p {
  font-size: 1rem;
  color: #233e45;
  margin-bottom: 0;
  text-align: center;
}
.cookie-btn-group {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  font-family: var(--font-display);
  border-radius: 24px;
  padding: 10px 24px;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  border: none;
  background: var(--color-primary);
  color: #fff;
  transition: background 0.18s, color 0.18s, transform 0.22s;
  cursor: pointer;
}
.cookie-btn.accept {
  background: var(--color-secondary);
  color: #1a403e;
}
.cookie-btn.reject {
  background: #f7c4ab;
  color: #994227;
}
.cookie-btn.settings {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: var(--color-btn-hover);
  color: #fff;
  transform: translateY(-1.5px) scale(1.04);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3000;
  background: rgba(33,86,107,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.27s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 9px 48px 0 var(--color-shadow-deep);
  padding: 34px 26px 24px 26px;
  min-width: 320px;
  max-width: 94vw;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}
.cookie-modal-content h3 {
  color: var(--color-primary-dark);
  font-size: 1.32rem;
  margin-bottom: 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--color-warm-4);
  border-radius: 16px;
  padding: 12px 14px;
  margin-bottom: 11px;
}
.cookie-category.essential {
  opacity: 0.7;
}
.cookie-toggle {
  position: relative;
  width: 44px;
  height: 26px;
  margin-left: 8px;
}
.cookie-toggle input {
  display: none;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  height: 100%;
  width: 100%;
  background: var(--color-secondary);
  border-radius: 18px;
  transition: background 0.2s;
}
.cookie-toggle input:checked + .cookie-slider {
  background: var(--color-primary);
}
.cookie-slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  left: 3px;
  bottom: 3px;
  background: #fff;
  box-shadow: 0 1px 3px var(--color-shadow);
  transition: transform 0.2s;
}
.cookie-toggle input:checked + .cookie-slider::before {
  transform: translateX(18px);
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* --- LEGAL SECTIONS --- */
.legal h1, .legal h2, .legal h3 {
  margin-top: 12px;
}

/*--- RESPONSIVE DESIGN ---*/
@media (max-width: 1200px) {
  .container {
    max-width: 977px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 822px;
  }
  .feature-item { min-width: 160px; }
}
@media (max-width: 768px) {
  :root {
    --header-height: 62px;
  }
  .container {
    max-width: 97vw;
    padding-left: 13px;
    padding-right: 13px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .hero, .cta, .features, .trust, .about, .team, .services, .faq, .process, .pricing, .testimonials, .case-studies, .confirmation, .blog-intro, .blog-list, .legal {
    padding: 25px 0;
    border-radius: 14px;
  }
  nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
    font-size: 1rem;
    padding: 11px 21px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid, .card-container, .blog-preview-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
  }
  .project-snippet {
    padding: 12px 8px;
    margin-bottom: 13px;
  }
  .cookie-modal-content {
    padding: 18px 9px 15px 12px;
    min-width: 0;
    max-width: 98vw;
  }
  footer .container {
    gap: 16px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .blog-preview {
    min-width: 0;
  }
}
@media (max-width: 545px) {
  h1, .h1 { font-size: 1.4rem; }
  h2, .h2 { font-size: 1.1rem; }
  h3, .h3 { font-size: 1rem; }
  .btn-primary, .btn-secondary { font-size: 0.97rem; }
}

/* ---- CUSTOM SCROLLBAR ---- */
body::-webkit-scrollbar {
  width: 13px;
}
body::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 8px;
}
body::-webkit-scrollbar-track {
  background: var(--color-warm-4);
}

/* --- FOCUS OUTLINES & ACCESSIBILITY --- */
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus, .cookie-btn:focus, .cookie-modal-content:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* --------- MICRO-INTERACTIONS --------- */
.card, .feature-item, .blog-preview, .testimonial-card {
  transition: box-shadow 0.23s, transform 0.19s;
}
.card:hover, .feature-item:hover, .blog-preview:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 7px 28px 0 var(--color-shadow-deep);
}

/* --------- TRANSITIONS --------- */
nav a, .btn-primary, .btn-secondary, .footer-contact a, .mobile-nav a, .cookie-btn {
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, transform 0.13s;
}

/* --------- END --------- */