﻿:root {
  --brand: #0f7f95;
  --brand-dark: #0a5f6f;
  --header-top-bg: #ffffff;
  --header-nav-bg: rgb(118, 34, 97);
  --header-nav-bg-dark: rgb(100, 27, 82);
  --header-nav-hover: rgb(138, 49, 117);
  --accent: #f28f3b;
  --ink: #153042;
  --muted: #5e7282;
  --surface: #f2f8fb;
  --white: #ffffff;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top right, #d8eef5 0%, #edf5f8 45%, #f7fafb 100%);
  line-height: 1.6;
}

a { color: var(--brand-dark); }
img { max-width: 100%; height: auto; }

#header-section {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-top-bg);
  border-bottom: 0;
  box-shadow: 0 8px 20px rgba(8, 55, 68, 0.1);
  backdrop-filter: blur(4px);
}

.top-header {
  padding: 14px 18px;
  background: var(--header-top-bg);
}

.logo img { max-height: 54px; }
.hdr-right { display: flex; justify-content: flex-end; align-items: center; gap: 14px; }
.hdr-socials a, .mbl-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c8dfe7;
  color: var(--brand-dark);
  background: #fff;
}
.hdr-socials {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}
.mbl-socials { display: none; }

.bottom-header {
  border-top: 1px solid #e5edf1;
  background: linear-gradient(180deg, var(--header-nav-bg) 0%, var(--header-nav-bg-dark) 100%);
}

.menu-icon {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  cursor: pointer;
}
.menu-bars span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  margin: 4px 0;
}
.menu-icon p { color: #ffffff; margin: 0; font-weight: 700; }

.hdr-navigation {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hdr-navigation > div { display: flex; flex-wrap: wrap; width: 100%; }
.hdr-navigation li { list-style: none; }
.hdr-navigation a {
  display: block;
  padding: 16px 14px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  letter-spacing: 0.01em;
}
.hdr-navigation a:hover,
.hdr-navigation .current-menu-item a,
.hdr-navigation .current_page_item a {
  color: #ffffff;
  background: var(--header-nav-hover);
  border-bottom-color: #ffffff;
}

.site-section {
  padding: 52px 0;
}
.site-section.inner-section {
  position: relative;
  overflow: hidden;
}
.site-section.inner-section .bg-svg {
  position: absolute;
  right: -180px;
  top: -120px;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}
.site-section.inner-section > .container {
  position: relative;
  z-index: 1;
}
.site-phases .site-div,
.inner-section .site-content,
.inner-section .mt-accordion,
.kit-wrapper,
.team-row {
  background: var(--white);
  border: 1px solid #d7e7ee;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(9, 57, 73, 0.08);
}

.site-div { overflow: hidden; margin-bottom: 22px; }
.site-div .site-header {
  background: linear-gradient(130deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  padding: 18px;
}
.site-div .site-header h2,
.site-div .site-header h4 { margin: 0; }
.site-div .site-header h4 { margin-top: 6px; opacity: 0.9; font-size: 0.95rem; }
.site-container { padding: 18px; }
.progress { height: 10px; border-radius: 999px; background: #d9e9f0; }
.progress-bar { background-color: var(--accent); }

.inner-section .site-header .site-title {
  font-family: 'Literata', serif;
  margin-bottom: 18px;
}
.site-bredcrumbs { color: var(--muted); margin-bottom: 14px; font-size: 0.95rem; }
.site-content,
.mt-accordion { padding: 20px; }

.wp-block-media-text {
  display: grid;
  grid-template-columns: minmax(220px, 41%) 1fr;
  gap: 24px;
  align-items: start;
}

.kit-wrapper {
  display: grid !important;
  grid-template-columns: 180px 1fr auto;
  gap: 18px;
  padding: 14px;
  margin: 14px 0;
  align-items: center;
}
.kit-image .image-wrapper { border-radius: 12px; overflow: hidden; }
.kit-title h3 { margin: 0 0 8px 0; font-size: 1.05rem; }
.kit-download button {
  border: 0;
  border-radius: 999px;
  background: var(--brand-dark);
  color: #fff;
  font-weight: 700;
  padding: 10px 18px;
}
.file-chip {
  display: inline-block;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  background: #edf5f8;
  color: var(--brand-dark);
  margin-right: 8px;
}

.team-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 12px;
  margin-bottom: 12px;
}
.team-image img { border-radius: 12px; }
.mt-name { margin: 4px 0; }

.schema-faq-section {
  border-bottom: 0;
  padding: 0;
}
.schema-faq-question {
  display: block;
  position: relative;
  padding: 14px 34px 14px 0;
  border-bottom: 1px solid #e0ecf1;
  padding-right: 34px;
  cursor: pointer;
  font-size: 1.03rem;
  color: var(--brand-dark);
}
.schema-faq-question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background-image: url("../assets/arrow.svg");
  background-repeat: no-repeat;
  background-size: 18px 18px;
  background-position: center;
  transition: transform 0.2s ease;
}
.schema-faq-answer {
  display: none;
  margin-top: 0;
  padding: 10px 0 16px 0;
  border-bottom: 1px solid #e0ecf1;
  color: #2f4757;
}
.schema-faq-question.is-open {
  border-bottom: 0;
}
.schema-faq-question.is-open::after {
  transform: translateY(-50%) rotate(180deg);
}

.footer-section {
  margin-top: 36px;
  background: linear-gradient(135deg, #0f2d3b 0%, #13465c 100%);
  color: #e8f4f8;
}
.ftr-metas ul {
  list-style: none;
  margin: 0;
  padding: 20px 0;
  gap: 24px;
}
.ftr-metas > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.ftr-metas > ul > li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ftr-metas > ul > li > ul {
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ftr-metas > ul > li > ul li {
  list-style: none;
}
.ftr-metas > ul > li > ul a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(232, 244, 248, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ftr-metas .share-label {
  cursor: default;
  pointer-events: none;
}
.ftr-metas a { color: #e8f4f8; text-decoration: none; }
.ftr-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding: 12px;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .menu-icon { display: flex; }
  .navigation-section { display: none; padding: 0 0 12px 0; }
  .navigation-section.is-open { display: block; }
  .hdr-navigation,
  .hdr-navigation > div { display: block; }
  .hdr-navigation a {
    padding: 10px 10px;
    border-bottom-width: 1px;
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }
  .mbl-socials { margin-top: 10px; }
  .mbl-socials { display: flex; }
  .mbl-socials a {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    background: transparent;
  }
  .ftr-metas > ul {
    justify-content: center;
    gap: 10px;
  }
  .ftr-metas > ul > li {
    gap: 8px;
  }
  .kit-wrapper { grid-template-columns: 1fr; }
  .team-row { grid-template-columns: 1fr; }
  .wp-block-media-text { grid-template-columns: 1fr; }
}
