body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  word-break: break-word;
  overflow-wrap: anywhere;
  font-family: 'EB Garamond', serif;
}

.sitehead {
  position: relative;
  background: linear-gradient(135deg, #475D6C 0%, #3a4d5a 60%, #2e3e4a 100%);
  padding: 0;
  overflow: hidden;
}

.sitehead-accentbar {
  height: 4px;
  background: linear-gradient(90deg, #8A9E85 0%, #D5E3DC 50%, #8A9E85 100%);
  width: 100%;
}

.sitehead-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.sitehead-toprow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 8px;
  gap: 32px;
}

.brandmark {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  flex-shrink: 0;
}

.brandmark-imgbox {
  width: 60px;
  height: 72px;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 2px 3px 0 rgba(71, 93, 108, 0.07), 0 6px 14px 0 rgba(71, 93, 108, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
}

.brandmark-imgbox img {
  width: 44px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.brandmark-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brandmark-name {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: 0;
}

.brandmark-tagline {
  font-size: 14px;
  line-height: 1.4;
  color: #D5E3DC;
  font-weight: 400;
}

.headcontact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.headcontact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #D5E3DC;
  font-size: 14px;
  line-height: 1.4;
  padding: 4px 8px;
  border-radius: 5px;
  transition: color 0.15s ease-out, background-color 0.15s ease-out, box-shadow 0.15s ease-out;
  min-height: 44px;
}

.headcontact-item:hover {
  color: #ffffff;
  background-color: rgba(138, 158, 133, 0.18);
  box-shadow: inset 0 2px 6px 0 rgba(71, 93, 108, 0.18);
}

.headcontact-item:focus {
  outline: none;
  transform: scale(1.02);
  color: #ffffff;
}

.headcontact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.headcontact-label {
  font-size: 14px;
}

.sitehead-navrow {
  border-top: 1px solid rgba(213, 227, 220, 0.18);
  padding: 0;
}

.sitenav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  padding: 4px 0;
}

.sitenav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #D5E3DC;
  font-size: 16px;
  line-height: 1.4;
  padding: 8px 16px;
  border-radius: 5px;
  min-height: 44px;
  font-family: 'EB Garamond', serif;
  font-weight: 400;
  transition: color 0.12s ease-out, background-color 0.18s ease-out, box-shadow 0.12s ease-out;
  white-space: nowrap;
}

.sitenav-link:hover {
  color: #ffffff;
  background-color: rgba(138, 158, 133, 0.2);
  box-shadow: inset 0 2px 8px 0 rgba(71, 93, 108, 0.2);
}

.sitenav-link:focus {
  outline: none;
  transform: scale(1.02);
  color: #ffffff;
}

.sitenav-link.active {
  color: #ffffff;
  background-color: rgba(138, 158, 133, 0.25);
}

.sitenav-divider {
  width: 1px;
  height: 20px;
  background-color: rgba(213, 227, 220, 0.25);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .sitehead-inner {
    padding: 0 16px;
  }

  .sitehead-toprow {
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 0 8px;
  }

  .brandmark-name {
    font-size: 36px;
  }

  .headcontact {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .sitenav {
    justify-content: flex-start;
    gap: 4px;
  }

  .sitenav-link {
    font-size: 14px;
    padding: 8px 12px;
  }

  .sitenav-divider {
    display: none;
  }
}

@media (min-width: 1280px) {
  .sitehead-toprow {
    padding: 24px 0 12px;
  }

  .sitenav-link {
    padding: 8px 24px;
  }
}

.sitefooter {
  background: linear-gradient(180deg, #3a4d5a 0%, #2e3e4a 100%);
  padding: 64px 0 0;
  position: relative;
}

.sitefooter-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.sitefooter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
}

.sitefooter-brandcol {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footerbrand-name {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  font-family: 'EB Garamond', serif;
}

.footerbrand-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #D5E3DC;
  font-family: 'EB Garamond', serif;
}

.footerbrand-mission {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(213, 227, 220, 0.75);
  font-family: 'EB Garamond', serif;
  font-style: italic;
  padding: 16px;
  border-radius: 8px;
  background-color: rgba(138, 158, 133, 0.12);
  box-shadow: inset 0 2px 6px 0 rgba(71, 93, 108, 0.15);
}

.sitefooter-contactcol {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footercol-heading {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #8A9E85;
  font-family: 'EB Garamond', serif;
  text-transform: uppercase;
  letter-spacing: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(138, 158, 133, 0.3);
}

.footercontact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footercontact-entry {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footercontact-lbl {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(213, 227, 220, 0.6);
  font-family: 'EB Garamond', serif;
}

.footercontact-val {
  font-size: 16px;
  line-height: 1.4;
  color: #D5E3DC;
  font-family: 'EB Garamond', serif;
  text-decoration: none;
  transition: color 0.12s ease-out;
  display: inline-block;
}

.footercontact-val:hover {
  color: #ffffff;
}

.footercontact-val:focus {
  outline: none;
  transform: scale(1.02);
  color: #ffffff;
}

.sitefooter-linkcol {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footerlinks-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footerlinks-item a {
  font-size: 16px;
  line-height: 1.4;
  color: #D5E3DC;
  font-family: 'EB Garamond', serif;
  text-decoration: none;
  padding: 4px 0;
  display: inline-block;
  transition: color 0.12s ease-out;
}

.footerlinks-item a:hover {
  color: #ffffff;
}

.footerlinks-item a:focus {
  outline: none;
  transform: scale(1.02);
  color: #ffffff;
}

.sitefooter-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(138, 158, 133, 0.35) 30%, rgba(138, 158, 133, 0.35) 70%, transparent 100%);
  margin: 0 32px;
}

.sitefooter-bottomrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 32px 32px;
  max-width: 1140px;
  margin: 0 auto;
  gap: 32px;
  flex-wrap: wrap;
}

.footercopy {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(213, 227, 220, 0.55);
  font-family: 'EB Garamond', serif;
}

.sitefooter-logowrap {
  width: 52px;
  height: 64px;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 2px 3px 0 rgba(71, 93, 108, 0.07), 0 6px 14px 0 rgba(71, 93, 108, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
}

.sitefooter-logowrap img {
  width: 36px;
  height: 48px;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .sitefooter-inner {
    padding: 0 16px;
  }

  .sitefooter-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }

  .sitefooter-separator {
    margin: 0 16px;
  }

  .sitefooter-bottomrow {
    padding: 32px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (min-width: 1280px) {
  .sitefooter-grid {
    gap: 96px;
  }
}

.cookiepanel {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 360px;
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 52px 0 rgba(71, 93, 108, 0.11), 0 6px 14px 0 rgba(71, 93, 108, 0.09);
  z-index: 1500;
  padding: 32px;
  display: none;
}

.cookiepanel-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #475D6C;
  font-family: 'EB Garamond', serif;
  margin: 0 0 8px;
}

.cookiepanel-body {
  font-size: 14px;
  line-height: 1.6;
  color: #475D6C;
  font-family: 'EB Garamond', serif;
  margin: 0 0 8px;
}

.cookiepanel-uses {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cookiepanel-uses li {
  font-size: 14px;
  line-height: 1.4;
  color: #475D6C;
  font-family: 'EB Garamond', serif;
  padding-left: 16px;
  position: relative;
}

.cookiepanel-uses li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 38px;
  background-color: #8A9E85;
}

.datasale-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid #D5E3DC;
  border-bottom: 1px solid #D5E3DC;
  margin-bottom: 16px;
}

.datasale-lbl {
  font-size: 14px;
  line-height: 1.4;
  color: #475D6C;
  font-family: 'EB Garamond', serif;
}

.datasale-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.datasale-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.datasale-track {
  position: absolute;
  inset: 0;
  background-color: #D5E3DC;
  border-radius: 22px;
  cursor: pointer;
  transition: background-color 0.15s ease-out;
}

.datasale-track::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 22px;
  background-color: #ffffff;
  top: 3px;
  left: 3px;
  transition: transform 0.15s ease-out;
}

.datasale-toggle input:checked + .datasale-track {
  background-color: #8A9E85;
}

.datasale-toggle input:checked + .datasale-track::after {
  transform: translateX(18px);
}

.cookiepanel-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.cookieact-btn {
  background: none;
  border: none;
  padding: 4px 0;
  font-size: 14px;
  line-height: 1.4;
  font-family: 'EB Garamond', serif;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.12s ease-out;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.cookieact-btn.decline {
  color: #8A9E85;
}

.cookieact-btn.accept {
  color: #475D6C;
  font-weight: 700;
}

.cookieact-btn:hover {
  color: #2e3e4a;
}

.cookieact-btn:focus {
  outline: none;
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .cookiepanel {
    bottom: 16px;
    right: 16px;
    left: 16px;
    width: auto;
  }
}.policy-details {
    max-width: 1140px;
    margin: 0 auto;
    padding: 64px 32px;
}

.policy-details h1 {
    font-size: 50px;
    line-height: 1.1;
    color: #475D6C;
    margin-bottom: 32px;
    margin-top: 0;
}

.policy-details h2 {
    font-size: 36px;
    line-height: 1.1;
    color: #475D6C;
    margin-top: 64px;
    margin-bottom: 16px;
}

.policy-details h3 {
    font-size: 16px;
    line-height: 1.4;
    color: #475D6C;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 8px;
}

.policy-details h4 {
    font-size: 16px;
    line-height: 1.4;
    color: #8A9E85;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 8px;
}

.policy-details h5 {
    font-size: 14px;
    line-height: 1.4;
    color: #475D6C;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 16px;
    margin-bottom: 8px;
}

.policy-details h6 {
    font-size: 14px;
    line-height: 1.4;
    color: #8A9E85;
    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 8px;
}

.policy-details p {
    font-size: 16px;
    line-height: 1.6;
    color: #2e3d46;
    margin-bottom: 16px;
    margin-top: 0;
}

.policy-details ul {
    margin: 0 0 16px 0;
    padding-left: 32px;
    list-style: none;
}

.policy-details ol {
    margin: 0 0 16px 0;
    padding-left: 32px;
    list-style: decimal;
}

.policy-details ul li {
    font-size: 16px;
    line-height: 1.6;
    color: #2e3d46;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.policy-details ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #8A9E85;
}

.policy-details ol li {
    font-size: 16px;
    line-height: 1.6;
    color: #2e3d46;
    margin-bottom: 8px;
    padding-left: 8px;
}

.policy-details ul ul,
.policy-details ol ul,
.policy-details ul ol,
.policy-details ol ol {
    margin-top: 8px;
    margin-bottom: 0;
}

.policy-details strong,
.policy-details b {
    font-weight: 700;
    color: #475D6C;
}

.policy-details em,
.policy-details i {
    font-style: italic;
    color: #475D6C;
}

.policy-details table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
    font-size: 14px;
    line-height: 1.6;
    box-shadow: 0 2px 3px 0 rgba(71, 93, 108, 0.07);
    border-radius: 8px;
    overflow: hidden;
}

.policy-details thead {
    background-color: #475D6C;
}

.policy-details thead th {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    padding: 16px;
    text-align: left;
}

.policy-details tbody tr {
    border-bottom: 1px solid #D5E3DC;
    transition: background-color 0.15s ease-out;
}

.policy-details tbody tr:last-child {
    border-bottom: none;
}

.policy-details tbody tr:nth-child(even) {
    background-color: rgba(213, 227, 220, 0.25);
}

.policy-details tbody tr:hover {
    background-color: rgba(138, 158, 133, 0.12);
    box-shadow: inset 0 0 0 1px rgba(71, 93, 108, 0.07);
}

.policy-details td {
    padding: 16px;
    color: #2e3d46;
    font-size: 14px;
    line-height: 1.6;
    vertical-align: top;
}

.policy-details th {
    padding: 16px;
    text-align: left;
}

.policy-details hr {
    border: none;
    border-top: 2px solid #D5E3DC;
    margin: 64px 0;
}

@media (max-width: 768px) {
    .policy-details {
        padding: 32px 16px;
    }

    .policy-details h1 {
        font-size: 36px;
    }

    .policy-details h2 {
        font-size: 36px;
        margin-top: 32px;
    }

    .policy-details table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .policy-details hr {
        margin: 32px 0;
    }
}
.aboutUs {
  max-width: 100%;
  overflow-x: hidden;
}

.aboutUs .auInner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.aboutUs .titleBlock {
  padding: 96px 0 64px;
  position: relative;
}

.aboutUs .titleBlock .auInner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
}

.aboutUs .tbImageCol {
  flex: 0 0 320px;
  position: relative;
}

.aboutUs .tbImageWrap {
  width: 320px;
  height: 480px;
  overflow: hidden;
  border-radius: 0;
  position: relative;
  box-shadow: 0 8px 52px 0 rgba(71, 93, 108, 0.11);
}

.aboutUs .tbImageWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: sepia(0.28) contrast(1.08) brightness(0.97) saturate(0.85);
}

.aboutUs .tbBlob1 {
  width: 180px;
  height: 180px;
  border-radius: 38px;
  background: rgba(138, 158, 133, 0.18);
  filter: blur(32px);
  position: absolute;
  top: -40px;
  left: -40px;
  pointer-events: none;
  z-index: 0;
}

.aboutUs .tbBlob2 {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(213, 227, 220, 0.28);
  filter: blur(24px);
  position: absolute;
  bottom: -30px;
  right: -30px;
  pointer-events: none;
  z-index: 0;
}

.aboutUs .tbImageWrap {
  position: relative;
  z-index: 1;
}

.aboutUs .tbTextCol {
  flex: 1;
  min-width: 0;
}

.aboutUs .tbLabel {
  display: inline-block;
  font-size: 14px;
  line-height: 1.4;
  color: #8A9E85;
  background: rgba(138, 158, 133, 0.12);
  padding: 4px 16px;
  border-radius: 5px;
  margin-bottom: 32px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.aboutUs .tbHeading {
  font-size: 66px;
  line-height: 1.1;
  color: #2a3d4a;
  margin: 0 0 32px;
  font-weight: 800;
}

.aboutUs .tbHeading .tbAccent {
  color: #475D6C;
  position: relative;
  display: inline-block;
}

.aboutUs .tbHeading .tbAccent::after {
  content: '';
  display: block;
  height: 4px;
  border-radius: 5px;
  background: linear-gradient(90deg, #8A9E85, #D5E3DC);
  width: 0;
  transition: width 0.18s ease-out;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.aboutUs .tbHeading .tbAccent:hover::after {
  width: 100%;
}

.aboutUs .tbDesc {
  font-size: 16px;
  line-height: 1.6;
  color: #3d5060;
  max-width: 520px;
  margin: 0;
}

.aboutUs .tbConcentric {
  position: absolute;
  right: -60px;
  top: 20px;
  width: 220px;
  height: 220px;
  pointer-events: none;
  opacity: 0.07;
  z-index: 0;
}

.aboutUs .tbConcentric circle {
  fill: none;
  stroke: #475D6C;
  stroke-width: 1;
}

.aboutUs .storyBlock {
  padding: 64px 0 96px;
  background: conic-gradient(from 200deg at 30% 60%, rgba(213,227,220,0.38) 0deg, rgba(138,158,133,0.14) 80deg, rgba(71,93,108,0.08) 160deg, rgba(213,227,220,0.22) 240deg, rgba(255,255,255,0.6) 320deg, rgba(213,227,220,0.38) 360deg);
}

.aboutUs .storyBlock .auInner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.aboutUs .storyMain {
  grid-column: 2;
  grid-row: 1;
}

.aboutUs .storySideA {
  grid-column: 1;
  grid-row: 1;
}

.aboutUs .storySideB {
  grid-column: 3;
  grid-row: 1;
}

.aboutUs .storyHeading {
  font-size: 36px;
  line-height: 1.1;
  color: #2a3d4a;
  margin: 0 0 16px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.aboutUs .storyHeading::after {
  content: '';
  display: block;
  height: 3px;
  border-radius: 5px;
  background: #8A9E85;
  width: 0;
  transition: width 0.15s ease;
}

.aboutUs .storyMain:hover .storyHeading::after {
  width: 100%;
}

.aboutUs .storyText {
  font-size: 16px;
  line-height: 1.6;
  color: #3d5060;
  margin: 0 0 16px;
}

.aboutUs .storyFact {
  background: rgba(71, 93, 108, 0.07);
  border-radius: 14px;
  padding: 16px;
  margin: 16px 0;
  border-top: 3px solid #8A9E85;
  border-left: 1px solid rgba(138,158,133,0.2);
  border-right: 1px solid rgba(138,158,133,0.2);
  border-bottom: 1px solid rgba(138,158,133,0.2);
  box-shadow: inset 0 2px 3px 0 rgba(71, 93, 108, 0.07);
}

.aboutUs .storyFactLabel {
  font-size: 14px;
  color: #8A9E85;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 8px;
}

.aboutUs .storyFactText {
  font-size: 16px;
  line-height: 1.4;
  color: #2a3d4a;
  margin: 0;
  font-weight: 600;
}

.aboutUs .sideCard {
  background: #fff;
  border-radius: 14px;
  padding: 32px 16px;
  box-shadow: 0 6px 14px 0 rgba(71, 93, 108, 0.09);
  box-shadow: inset 0 2px 3px 0 rgba(71, 93, 108, 0.07), 0 6px 14px 0 rgba(71, 93, 108, 0.09);
  margin-top: 32px;
}

.aboutUs .sideCardHeading {
  font-size: 16px;
  line-height: 1.4;
  color: #475D6C;
  font-weight: 700;
  margin: 0 0 16px;
}

.aboutUs .glossaryList {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aboutUs .glossaryList li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(138,158,133,0.2);
}

.aboutUs .glossaryList li:last-child {
  border-bottom: none;
}

.aboutUs .glossaryTerm {
  font-size: 14px;
  font-weight: 700;
  color: #475D6C;
  display: block;
  margin-bottom: 4px;
}

.aboutUs .glossaryDef {
  font-size: 14px;
  line-height: 1.4;
  color: #3d5060;
}

.aboutUs .sideImageWrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 2px 3px 0 rgba(71, 93, 108, 0.07);
}

.aboutUs .sideImageWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.aboutUs .sideNote {
  font-size: 14px;
  line-height: 1.6;
  color: #3d5060;
  margin: 0;
}

.aboutUs .teamBlock {
  padding: 96px 0 64px;
  background: #fff;
  position: relative;
}

.aboutUs .teamBlock .auInner {
  position: relative;
}

.aboutUs .teamConcentric {
  position: absolute;
  left: -80px;
  bottom: -40px;
  width: 260px;
  height: 260px;
  pointer-events: none;
  opacity: 0.06;
}

.aboutUs .teamConcentric circle {
  fill: none;
  stroke: #8A9E85;
  stroke-width: 1;
}

.aboutUs .teamTopRow {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
  margin-bottom: 64px;
}

.aboutUs .teamTextSide {
  flex: 1;
  min-width: 0;
}

.aboutUs .teamHeading {
  font-size: 50px;
  line-height: 1.1;
  color: #2a3d4a;
  margin: 0 0 32px;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.aboutUs .teamHeading::after {
  content: '';
  display: block;
  height: 4px;
  border-radius: 5px;
  background: linear-gradient(90deg, #475D6C, #8A9E85);
  width: 0;
  transition: width 0.2s ease-out;
}

.aboutUs .teamTextSide:hover .teamHeading::after {
  width: 100%;
}

.aboutUs .teamBodyText {
  font-size: 16px;
  line-height: 1.6;
  color: #3d5060;
  max-width: 560px;
  margin: 0 0 16px;
}

.aboutUs .teamPortraitSide {
  flex: 0 0 240px;
}

.aboutUs .teamPortraitWrap {
  width: 240px;
  height: 360px;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 8px 52px 0 rgba(71, 93, 108, 0.11);
}

.aboutUs .teamPortraitWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.aboutUs .personName {
  font-size: 16px;
  font-weight: 700;
  color: #2a3d4a;
  margin: 16px 0 4px;
}

.aboutUs .personRole {
  font-size: 14px;
  color: #8A9E85;
  margin: 0;
}

.aboutUs .valuesRow {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.aboutUs .valueItem {
  flex: 1;
  background: rgba(213, 227, 220, 0.3);
  border-radius: 14px;
  padding: 32px 16px;
  position: relative;
  box-shadow: inset 0 2px 3px 0 rgba(71, 93, 108, 0.07);
  transition: box-shadow 0.15s ease-out, background 0.15s ease-out;
  cursor: default;
}

.aboutUs .valueItem:hover {
  background: rgba(213, 227, 220, 0.55);
  box-shadow: inset 0 4px 8px 0 rgba(71, 93, 108, 0.12);
}

.aboutUs .valueIcon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aboutUs .valueIcon svg {
  width: 36px;
  height: 36px;
  transition: transform 0.18s ease-out;
}

.aboutUs .valueItem:hover .valueIcon svg {
  animation: iconRotateSettle 0.5s ease-out forwards;
}

@keyframes iconRotateSettle {
  0% { transform: rotate(0deg); }
  60% { transform: rotate(22deg); }
  80% { transform: rotate(-6deg); }
  100% { transform: rotate(0deg); }
}

.aboutUs .valueTitle {
  font-size: 16px;
  font-weight: 700;
  color: #2a3d4a;
  margin: 0 0 8px;
}

.aboutUs .valueDesc {
  font-size: 14px;
  line-height: 1.6;
  color: #3d5060;
  margin: 0;
}

.aboutUs .cycleHighlight {
  animation: cyclePulse 3s ease-in-out infinite;
}

.aboutUs .valueItem:nth-child(1) .cycleHighlight { animation-delay: 0s; }
.aboutUs .valueItem:nth-child(2) .cycleHighlight { animation-delay: 1s; }
.aboutUs .valueItem:nth-child(3) .cycleHighlight { animation-delay: 2s; }

@keyframes cyclePulse {
  0%, 66%, 100% { color: #3d5060; }
  33% { color: #475D6C; font-weight: 700; }
}

.aboutUs .teamImgRow {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 64px;
}

.aboutUs .teamImgCard {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  height: 220px;
  box-shadow: 0 6px 14px 0 rgba(71, 93, 108, 0.09);
}

.aboutUs .teamImgCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.2s ease-out;
}

.aboutUs .teamImgCard:hover img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .aboutUs .titleBlock .auInner {
    flex-direction: column;
    gap: 32px;
  }
  .aboutUs .tbImageCol {
    flex: none;
    width: 100%;
  }
  .aboutUs .tbImageWrap {
    width: 100%;
    height: 320px;
  }
  .aboutUs .tbHeading {
    font-size: 36px;
  }
  .aboutUs .storyBlock .auInner {
    grid-template-columns: 1fr;
  }
  .aboutUs .storyMain { grid-column: 1; grid-row: 2; }
  .aboutUs .storySideA { grid-column: 1; grid-row: 1; }
  .aboutUs .storySideB { grid-column: 1; grid-row: 3; }
  .aboutUs .teamTopRow {
    flex-direction: column;
    gap: 32px;
  }
  .aboutUs .teamPortraitSide {
    flex: none;
  }
  .aboutUs .teamHeading {
    font-size: 36px;
  }
  .aboutUs .valuesRow {
    flex-direction: column;
  }
  .aboutUs .teamImgRow {
    flex-direction: column;
  }
  .aboutUs .tbConcentric {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 1280px) {
  .aboutUs .tbHeading {
    font-size: 50px;
  }
  .aboutUs .tbImageCol {
    flex: 0 0 260px;
  }
  .aboutUs .tbImageWrap {
    width: 260px;
    height: 390px;
  }
  .aboutUs .teamHeading {
    font-size: 36px;
  }
}

.opn {
  max-width: 100%;
  overflow-x: hidden;
}

.opn .pgwrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.opn .titlebk {
  position: relative;
  padding: 96px 32px;
  background: linear-gradient(127deg, #475D6C, #8A9E85, #D5E3DC, #475D6C);
  background-size: 300% 300%;
  animation: gradshift 8s ease-in-out infinite;
  overflow: hidden;
}

@keyframes gradshift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.opn .titlebk::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 260px;
  height: 260px;
  background: conic-gradient(from 45deg, rgba(71,93,108,0.13), rgba(138,158,133,0.09), rgba(213,227,220,0.07), transparent);
  border-radius: 38px;
  pointer-events: none;
}

.opn .titlebk::after {
  content: "";
  position: absolute;
  bottom: 24px;
  left: 32px;
  width: 48px;
  height: 2px;
  background: rgba(71,93,108,0.22);
  border-radius: 5px;
  pointer-events: none;
}

.opn .tbinner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
}

.opn .tbtext {
  flex: 1 1 0;
}

.opn .tbtext h1 {
  font-size: 66px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}

.opn .tbtext h1::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: rgba(255,255,255,0.55);
  border-radius: 5px;
  margin-top: 8px;
  animation: underlinedraw 0.2s ease-out 0.4s forwards;
}

@keyframes underlinedraw {
  to { width: 80px; }
}

.opn .tbslogan {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  max-width: 480px;
  margin-top: 16px;
}

.opn .tbimgwrap {
  flex: 0 0 260px;
  width: 260px;
}

.opn .tbimg {
  width: 260px;
  height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: sepia(0.28) contrast(1.08) brightness(0.96) saturate(0.82);
}

.opn .arrowdeco {
  position: absolute;
  right: 32px;
  bottom: 48px;
  width: 28px;
  height: 28px;
  opacity: 0.18;
  pointer-events: none;
}

.opn .arrowdeco svg {
  width: 28px;
  height: 28px;
}

.opn .divider-arc1 {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.opn .divider-arc1 svg {
  display: block;
  width: 100%;
}

.opn .approachbk {
  background: #fff;
  padding: 96px 32px;
}

.opn .approachgrid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.opn .approachleft h2 {
  font-size: 50px;
  line-height: 1.1;
  color: #475D6C;
  margin-bottom: 32px;
  position: relative;
  display: inline-block;
}

.opn .approachleft h2::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: #8A9E85;
  border-radius: 5px;
  margin-top: 8px;
  transition: width 0.2s ease-out;
}

.opn .approachleft h2:hover::after {
  width: 100%;
}

.opn .approachpara {
  font-size: 16px;
  line-height: 1.6;
  color: #2e3d47;
  margin-bottom: 16px;
}

.opn .approachright {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.opn .approachcard {
  background: rgba(213,227,220,0.28);
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 2px 3px 0 rgba(71,93,108,0.07), 0 6px 14px 0 rgba(71,93,108,0.09);
  transition: box-shadow 0.15s ease-out;
}

.opn .approachcard:hover {
  box-shadow: inset 0 2px 8px 0 rgba(71,93,108,0.13), 0 2px 3px 0 rgba(71,93,108,0.07);
}

.opn .approachcard h4 {
  font-size: 16px;
  line-height: 1.4;
  color: #475D6C;
  margin-bottom: 8px;
}

.opn .approachcard p {
  font-size: 14px;
  line-height: 1.6;
  color: #3a4d58;
  margin: 0;
}

.opn .divider-arc2 {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.opn .divider-arc2 svg {
  display: block;
  width: 100%;
}

.opn .relbk {
  background: rgba(213,227,220,0.22);
  padding: 96px 32px;
}

.opn .relinner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: start;
}

.opn .relimg {
  flex: 0 0 380px;
  width: 380px;
  height: 280px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 8px 52px 0 rgba(71,93,108,0.11);
  display: block;
}

.opn .reltext {
  flex: 1 1 0;
}

.opn .reltext h2 {
  font-size: 36px;
  line-height: 1.1;
  color: #475D6C;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.opn .reltext h2::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: #8A9E85;
  border-radius: 5px;
  margin-top: 8px;
  transition: width 0.18s ease-out;
}

.opn .reltext h2:hover::after {
  width: 100%;
}

.opn .relpara {
  font-size: 16px;
  line-height: 1.6;
  color: #2e3d47;
  margin-bottom: 16px;
}

.opn .relsteps {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.opn .relstep {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 3px 0 rgba(138,158,133,0.07);
  transition: box-shadow 0.15s ease-out;
}

.opn .relstep:hover {
  box-shadow: inset 0 2px 6px 0 rgba(71,93,108,0.10), 0 2px 3px 0 rgba(71,93,108,0.07);
}

.opn .stepnum {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #475D6C;
  color: #fff;
  font-size: 14px;
  line-height: 1.1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.opn .relstep p {
  font-size: 14px;
  line-height: 1.6;
  color: #2e3d47;
  margin: 0;
}

.opn .divider-arc3 {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.opn .divider-arc3 svg {
  display: block;
  width: 100%;
}

.opn .teambk {
  background: #fff;
  padding: 64px 32px;
}

.opn .teaminner {
  max-width: 1140px;
  margin: 0 auto;
}

.opn .teaminner h2 {
  font-size: 50px;
  line-height: 1.1;
  color: #475D6C;
  margin-bottom: 8px;
  display: inline-block;
  position: relative;
}

.opn .teaminner h2::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: #D5E3DC;
  border-radius: 5px;
  margin-top: 8px;
  transition: width 0.2s ease-out;
}

.opn .teaminner h2:hover::after {
  width: 100%;
}

.opn .teamlead {
  font-size: 14px;
  line-height: 1.6;
  color: #5a7080;
  margin-bottom: 32px;
}

.opn .teamgrid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}

.opn .teamportraitwrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.opn .teamportrait {
  width: 140px;
  height: 210px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
  box-shadow: 0 6px 14px 0 rgba(71,93,108,0.09);
}

.opn .teamname {
  font-size: 14px;
  line-height: 1.4;
  color: #475D6C;
  font-weight: 600;
  margin: 0;
}

.opn .teamrole {
  font-size: 14px;
  line-height: 1.4;
  color: #8A9E85;
  margin: 4px 0 0 0;
}

.opn .teamcols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.opn .teamcol p {
  font-size: 16px;
  line-height: 1.6;
  color: #2e3d47;
  margin-bottom: 16px;
}

.opn .teamcol p:last-child {
  margin-bottom: 0;
}

.opn .teamaccent {
  display: inline-block;
  background: rgba(213,227,220,0.55);
  border-radius: 5px;
  padding: 4px 8px;
  font-size: 14px;
  line-height: 1.4;
  color: #475D6C;
  margin-top: 8px;
}

.opn .divider-arc4 {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.opn .divider-arc4 svg {
  display: block;
  width: 100%;
}

.opn .scalebk {
  position: relative;
  padding: 96px 32px;
  background-image: url("./image_archive/navbar-gallery-08-31.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.opn .scaleoverlay {
  position: absolute;
  inset: 0;
  background: rgba(213,227,220,0.82);
  pointer-events: none;
}

.opn .scaleinner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.opn .scaleinner h2 {
  font-size: 50px;
  line-height: 1.1;
  color: #2e3d47;
  margin-bottom: 8px;
  display: inline-block;
  position: relative;
}

.opn .scaleinner h2::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: #475D6C;
  border-radius: 5px;
  margin-top: 8px;
  transition: width 0.18s ease-out;
}

.opn .scaleinner h2:hover::after {
  width: 100%;
}

.opn .scalesub {
  font-size: 16px;
  line-height: 1.6;
  color: #2e3d47;
  max-width: 580px;
  margin-bottom: 64px;
}

.opn .scalemetrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.opn .metriccard {
  background: rgba(255,255,255,0.88);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 8px 52px 0 rgba(71,93,108,0.11);
  transition: box-shadow 0.15s ease-out;
  border-top: 4px solid #475D6C;
  border-left: none !important;
  border-right: none;
  border-bottom: none;
}

.opn .metriccard:hover {
  box-shadow: inset 0 2px 8px 0 rgba(71,93,108,0.12), 0 6px 14px 0 rgba(71,93,108,0.09);
}

.opn .metricnum {
  font-size: 50px;
  line-height: 1.1;
  color: #475D6C;
  font-weight: 700;
  margin-bottom: 8px;
}

.opn .metriclabel {
  font-size: 14px;
  line-height: 1.6;
  color: #3a4d58;
}

.opn .divider-arc5 {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.opn .divider-arc5 svg {
  display: block;
  width: 100%;
}

.opn .examplebk {
  background: #fff;
  padding: 96px 32px;
}

.opn .exampleinner {
  max-width: 1140px;
  margin: 0 auto;
}

.opn .exampleinner h2 {
  font-size: 36px;
  line-height: 1.1;
  color: #475D6C;
  margin-bottom: 8px;
  display: inline-block;
  position: relative;
}

.opn .exampleinner h2::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: #8A9E85;
  border-radius: 5px;
  margin-top: 8px;
  transition: width 0.18s ease-out;
}

.opn .exampleinner h2:hover::after {
  width: 100%;
}

.opn .examplelead {
  font-size: 16px;
  line-height: 1.6;
  color: #5a7080;
  margin-bottom: 64px;
  max-width: 600px;
}

.opn .examplelayout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.opn .exampletext p {
  font-size: 16px;
  line-height: 1.6;
  color: #2e3d47;
  margin-bottom: 16px;
}

.opn .exampletext p:last-child {
  margin-bottom: 0;
}

.opn .examplehighlight {
  background: rgba(71,93,108,0.07);
  border-radius: 14px;
  padding: 32px;
  margin-top: 32px;
}

.opn .examplehighlight h4 {
  font-size: 16px;
  line-height: 1.4;
  color: #475D6C;
  margin-bottom: 16px;
}

.opn .examplehighlight ul {
  padding-left: 16px;
  margin: 0;
}

.opn .examplehighlight ul li {
  font-size: 14px;
  line-height: 1.6;
  color: #2e3d47;
  margin-bottom: 8px;
}

.opn .examplehighlight ul li:last-child {
  margin-bottom: 0;
}

.opn .exampleimgwrap {
  position: relative;
}

.opn .exampleimg {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  display: block;
  box-shadow: 0 8px 52px 0 rgba(71,93,108,0.11);
}

.opn .examplearrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  opacity: 0.22;
  pointer-events: none;
}

.opn .examplearrow svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {
  .opn .tbinner {
    flex-direction: column;
    gap: 32px;
  }
  .opn .tbtext h1 {
    font-size: 36px;
  }
  .opn .tbimgwrap {
    flex: 0 0 auto;
    width: 100%;
  }
  .opn .tbimg {
    width: 100%;
    height: 220px;
  }
  .opn .approachgrid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .opn .approachleft h2 {
    font-size: 36px;
  }
  .opn .relinner {
    flex-direction: column;
    gap: 32px;
  }
  .opn .relimg {
    flex: 0 0 auto;
    width: 100%;
    height: 220px;
  }
  .opn .teamgrid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .opn .teamcols {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .opn .teaminner h2 {
    font-size: 36px;
  }
  .opn .scalemetrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .opn .scaleinner h2 {
    font-size: 36px;
  }
  .opn .examplelayout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .opn .exampleinner h2 {
    font-size: 36px;
  }
  .opn .titlebk {
    padding: 64px 16px;
  }
  .opn .approachbk,
  .opn .relbk,
  .opn .teambk,
  .opn .examplebk {
    padding: 64px 16px;
  }
}

@media (min-width: 769px) and (max-width: 1280px) {
  .opn .tbtext h1 {
    font-size: 50px;
  }
  .opn .scalemetrics {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.anlx {
    max-width: 100%;
    overflow-x: hidden;
}

.anlx .anlx-bound {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

.anlx .anlx-titlesec {
    background: linear-gradient(157deg, #475D6C 0%, #8A9E85 60%, #D5E3DC 100%);
    padding-top: 64px;
    padding-bottom: 0;
    position: relative;
}

.anlx .anlx-titlesec .anlx-titlegrid {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 64px;
}

.anlx .anlx-titlesec .anlx-titleleft {
    flex: 1 1 0;
    padding-bottom: 64px;
}

.anlx .anlx-titlesec .anlx-titleimg {
    flex: 0 0 340px;
    width: 340px;
    position: relative;
    align-self: flex-end;
}

.anlx .anlx-titlesec .anlx-titleimg img {
    width: 340px;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 14px 14px 0 0;
    box-shadow: 0 8px 52px 0 rgba(71,93,108,0.11);
}

.anlx .anlx-titlesec .anlx-titleimg::before {
    content: "";
    position: absolute;
    top: -16px;
    left: -16px;
    width: 120px;
    height: 120px;
    background: conic-gradient(from 210deg, rgba(213,227,220,0.55) 0deg, rgba(138,158,133,0.18) 120deg, transparent 200deg);
    border-radius: 38px;
    pointer-events: none;
    z-index: 0;
}

.anlx .anlx-titlesec .anlx-titleimg img {
    position: relative;
    z-index: 1;
}

.anlx .anlx-pagelabel {
    display: inline-block;
    font-size: 14px;
    line-height: 1.4;
    color: #D5E3DC;
    border: 1px solid rgba(213,227,220,0.45);
    border-radius: 5px;
    padding: 4px 16px;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}

.anlx .anlx-titlesec h1 {
    font-size: 50px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 32px;
    max-width: 560px;
}

.anlx .anlx-titlesec h1 span {
    display: inline-block;
    position: relative;
}

.anlx .anlx-titlesec h1 span::after {
    content: "";
    display: block;
    height: 3px;
    background: #D5E3DC;
    border-radius: 5px;
    width: 0;
    animation: anlxUnderline 0.18s ease-out 0.3s forwards;
}

@keyframes anlxUnderline {
    to { width: 100%; }
}

.anlx .anlx-titlelink {
    display: inline-block;
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: 8px;
    padding: 8px 32px;
    text-decoration: none;
    background: transparent;
    transition: background 0.15s ease-out, color 0.15s ease-out, box-shadow 0.18s ease-out;
}

.anlx .anlx-titlelink:hover {
    background: rgba(255,255,255,0.18);
    color: #fff;
    box-shadow: inset 0 2px 6px 0 rgba(71,93,108,0.13);
    text-decoration: none;
}

.anlx .anlx-waveedge {
    display: block;
    width: 100%;
    line-height: 0;
    margin-top: 32px;
}

.anlx .anlx-waveedge svg {
    display: block;
    width: 100%;
}

.anlx .anlx-chevdiv {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.anlx .anlx-chevdiv svg {
    display: block;
    width: 100%;
}

.anlx .anlx-processsec {
    background: #fff;
    padding-top: 64px;
    padding-bottom: 0;
}

.anlx .anlx-proctop {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
    margin-bottom: 64px;
}

.anlx .anlx-procleftcol {
    flex: 0 0 320px;
}

.anlx .anlx-procleftcol h2 {
    font-size: 36px;
    line-height: 1.1;
    color: #475D6C;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.anlx .anlx-procleftcol h2::after {
    content: "";
    display: block;
    height: 2px;
    background: #8A9E85;
    border-radius: 5px;
    width: 0;
    transition: width 0.18s ease-out;
}

.anlx .anlx-procleftcol h2:hover::after {
    width: 100%;
}

.anlx .anlx-procleftcol p {
    font-size: 16px;
    line-height: 1.6;
    color: #3a4e5b;
    margin-bottom: 0;
}

.anlx .anlx-procrightcol {
    flex: 1 1 0;
}

.anlx .anlx-procrightcol p {
    font-size: 16px;
    line-height: 1.6;
    color: #3a4e5b;
}

.anlx .anlx-stepsrow {
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: stretch;
    margin-bottom: 0;
}

.anlx .anlx-step {
    flex: 1 1 0;
    background: rgba(213,227,220,0.22);
    border-radius: 14px;
    padding: 32px 24px;
    position: relative;
    transition: box-shadow 0.15s ease-out, background 0.15s ease-out;
    box-shadow: 0 2px 3px 0 rgba(71,93,108,0.07);
}

.anlx .anlx-step:hover {
    background: rgba(213,227,220,0.44);
    box-shadow: inset 0 2px 8px 0 rgba(71,93,108,0.09), 0 6px 14px 0 rgba(71,93,108,0.09);
}

.anlx .anlx-stepnum {
    font-size: 36px;
    line-height: 1.1;
    color: rgba(71,93,108,0.15);
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.anlx .anlx-step h5 {
    font-size: 16px;
    line-height: 1.4;
    color: #475D6C;
    margin-bottom: 8px;
}

.anlx .anlx-step p {
    font-size: 14px;
    line-height: 1.6;
    color: #3a4e5b;
    margin-bottom: 0;
}

.anlx .anlx-steparrow {
    display: flex;
    align-items: center;
    padding: 0 8px;
    flex: 0 0 auto;
}

.anlx .anlx-steparrow svg {
    display: block;
}

.anlx .anlx-dashedborder {
    border: 2px dashed rgba(71,93,108,0.22);
    border-radius: 22px;
    padding: 32px;
    margin-top: 64px;
}

.anlx .anlx-detailsec {
    background: linear-gradient(172deg, #475D6C 0%, #3a4e5b 100%);
    padding-top: 96px;
    padding-bottom: 96px;
    position: relative;
}

.anlx .anlx-detailsec::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 380px;
    height: 380px;
    background: conic-gradient(from 45deg at 90% 10%, rgba(213,227,220,0.09) 0deg, rgba(138,158,133,0.06) 120deg, transparent 220deg);
    border-radius: 38px;
    pointer-events: none;
}

.anlx .anlx-detailgrid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start;
}

.anlx .anlx-detailleft h2 {
    font-size: 36px;
    line-height: 1.1;
    color: #D5E3DC;
    margin-bottom: 16px;
}

.anlx .anlx-detailleft p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(213,227,220,0.82);
    margin-bottom: 0;
}

.anlx .anlx-detailright {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.anlx .anlx-metriccard {
    background: rgba(213,227,220,0.08);
    border-radius: 14px;
    padding: 32px 24px;
    border: 1px solid rgba(213,227,220,0.18);
    box-shadow: 0 2px 3px 0 rgba(71,93,108,0.07);
    transition: box-shadow 0.2s ease, background 0.2s ease;
    position: relative;
    overflow: hidden;
}

.anlx .anlx-metriccard:hover {
    background: rgba(213,227,220,0.14);
    box-shadow: inset 0 3px 10px 0 rgba(71,93,108,0.13), 0 6px 14px 0 rgba(71,93,108,0.09);
}

.anlx .anlx-metriccard .anlx-mval {
    font-size: 36px;
    line-height: 1.1;
    color: #D5E3DC;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.anlx .anlx-metriccard .anlx-mdivider {
    width: 32px;
    height: 1px;
    background: rgba(138,158,133,0.55);
    margin-bottom: 8px;
}

.anlx .anlx-metriccard h5 {
    font-size: 14px;
    line-height: 1.4;
    color: rgba(213,227,220,0.9);
    margin-bottom: 8px;
}

.anlx .anlx-metriccard p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(213,227,220,0.65);
    margin-bottom: 0;
}

.anlx .anlx-subgridcard {
    grid-column: 1 / -1;
    background: rgba(213,227,220,0.05);
    border-radius: 14px;
    padding: 32px;
    border: 1px solid rgba(213,227,220,0.12);
}

.anlx .anlx-subgridcard h5 {
    font-size: 16px;
    line-height: 1.4;
    color: #D5E3DC;
    margin-bottom: 16px;
}

.anlx .anlx-innergrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.anlx .anlx-innercell {
    background: rgba(71,93,108,0.35);
    border-radius: 8px;
    padding: 16px;
    border-left: 3px solid #8A9E85;
    border-top: 1px solid rgba(213,227,220,0.1);
    border-right: 1px solid rgba(213,227,220,0.1);
    border-bottom: 1px solid rgba(213,227,220,0.1);
}

.anlx .anlx-innercell span {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(213,227,220,0.7);
    margin-bottom: 4px;
}

.anlx .anlx-innercell strong {
    font-size: 14px;
    line-height: 1.4;
    color: #D5E3DC;
}

.anlx .anlx-usecasesec {
    background: rgba(213,227,220,0.18);
    padding-top: 96px;
    padding-bottom: 96px;
}

.anlx .anlx-usehead {
    max-width: 600px;
    margin-bottom: 64px;
}

.anlx .anlx-usehead h2 {
    font-size: 36px;
    line-height: 1.1;
    color: #475D6C;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.anlx .anlx-usehead h2::after {
    content: "";
    display: block;
    height: 2px;
    background: #8A9E85;
    border-radius: 5px;
    width: 0;
    transition: width 0.2s ease-out;
}

.anlx .anlx-usehead h2:hover::after {
    width: 100%;
}

.anlx .anlx-usehead p {
    font-size: 16px;
    line-height: 1.6;
    color: #3a4e5b;
    margin-bottom: 0;
}

.anlx .anlx-uselist {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.anlx .anlx-useitem {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 2px 3px 0 rgba(71,93,108,0.07);
    transition: box-shadow 0.18s ease-out, transform 0.18s ease-out;
    animation: anlxScaleIn 0.18s ease-out both;
}

.anlx .anlx-useitem:nth-child(2) { animation-delay: 0.04s; }
.anlx .anlx-useitem:nth-child(3) { animation-delay: 0.08s; }
.anlx .anlx-useitem:nth-child(4) { animation-delay: 0.12s; }

@keyframes anlxScaleIn {
    from { transform: scale(0.95); opacity: 0.7; }
    to { transform: scale(1); opacity: 1; }
}

.anlx .anlx-useitem:hover {
    box-shadow: inset 0 2px 6px 0 rgba(71,93,108,0.08), 0 8px 52px 0 rgba(71,93,108,0.11);
    transform: scale(1);
}

.anlx .anlx-usenum {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #475D6C, #8A9E85);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
    box-shadow: 0 6px 14px 0 rgba(71,93,108,0.09);
}

.anlx .anlx-usetextblock {
    flex: 1 1 0;
}

.anlx .anlx-usetextblock h4 {
    font-size: 16px;
    line-height: 1.4;
    color: #475D6C;
    margin-bottom: 8px;
}

.anlx .anlx-usetextblock p {
    font-size: 14px;
    line-height: 1.6;
    color: #3a4e5b;
    margin-bottom: 0;
}

.anlx .anlx-accentbg {
    background: rgba(71,93,108,0.06);
    border-radius: 8px;
    padding: 4px 8px;
    display: inline;
}

.anlx .anlx-closesec {
    background: #fff;
    padding-top: 96px;
    padding-bottom: 96px;
}

.anlx .anlx-closegrid {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: center;
}

.anlx .anlx-closeleft {
    flex: 2 1 0;
}

.anlx .anlx-closeleft h2 {
    font-size: 36px;
    line-height: 1.1;
    color: #475D6C;
    margin-bottom: 16px;
}

.anlx .anlx-closeleft p {
    font-size: 16px;
    line-height: 1.6;
    color: #3a4e5b;
    margin-bottom: 16px;
    max-width: 560px;
}

.anlx .anlx-closeleft p:last-of-type {
    margin-bottom: 32px;
}

.anlx .anlx-closeright {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.anlx .anlx-statblock {
    width: 100%;
    background: rgba(213,227,220,0.28);
    border-radius: 14px;
    padding: 24px;
    border-top: 3px solid #8A9E85;
    border-left: 1px solid rgba(138,158,133,0.2);
    border-right: 1px solid rgba(138,158,133,0.2);
    border-bottom: 1px solid rgba(138,158,133,0.2);
    box-shadow: 0 2px 3px 0 rgba(71,93,108,0.07);
    transition: box-shadow 0.15s ease-out;
}

.anlx .anlx-statblock:hover {
    box-shadow: inset 0 2px 8px 0 rgba(71,93,108,0.1), 0 6px 14px 0 rgba(71,93,108,0.09);
}

.anlx .anlx-statblock .anlx-stlabel {
    font-size: 14px;
    line-height: 1.4;
    color: #8A9E85;
    display: block;
    margin-bottom: 4px;
}

.anlx .anlx-statblock .anlx-stval {
    font-size: 36px;
    line-height: 1.1;
    color: #475D6C;
    font-weight: 700;
    display: block;
}

.anlx .anlx-closebtn {
    display: inline-block;
    font-size: 16px;
    line-height: 1.4;
    color: #475D6C;
    border: 1.5px solid #475D6C;
    border-radius: 8px;
    padding: 8px 32px;
    text-decoration: none;
    background: transparent;
    transition: background 0.15s ease-out, color 0.15s ease-out, box-shadow 0.18s ease-out;
}

.anlx .anlx-closebtn:hover {
    background: #475D6C;
    color: #fff;
    box-shadow: inset 0 2px 6px 0 rgba(71,93,108,0.18);
    text-decoration: none;
}

@media (max-width: 768px) {
    .anlx .anlx-titlegrid {
        flex-direction: column;
        gap: 32px;
    }
    .anlx .anlx-titleimg {
        flex: 0 0 auto;
        width: 100%;
    }
    .anlx .anlx-titleimg img {
        width: 100%;
        height: 180px;
        border-radius: 14px;
    }
    .anlx .anlx-titlesec h1 {
        font-size: 36px;
    }
    .anlx .anlx-proctop {
        flex-direction: column;
        gap: 32px;
    }
    .anlx .anlx-procleftcol {
        flex: 0 0 auto;
    }
    .anlx .anlx-stepsrow {
        flex-direction: column;
        gap: 16px;
    }
    .anlx .anlx-steparrow {
        transform: rotate(90deg);
        padding: 4px 0;
    }
    .anlx .anlx-detailgrid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .anlx .anlx-detailright {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .anlx .anlx-innergrid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .anlx .anlx-closegrid {
        flex-direction: column;
        gap: 32px;
    }
    .anlx .anlx-useitem {
        flex-direction: column;
        gap: 16px;
    }
    .anlx .anlx-dashedborder {
        padding: 16px;
    }
    .anlx .anlx-bound {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (min-width: 769px) and (max-width: 1280px) {
    .anlx .anlx-titlesec h1 {
        font-size: 36px;
    }
    .anlx .anlx-titleimg {
        flex: 0 0 260px;
        width: 260px;
    }
    .anlx .anlx-titleimg img {
        width: 260px;
    }
    .anlx .anlx-innergrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contus {
    max-width: 100%;
    overflow-x: hidden;
}

.contus .pagebound {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

.contus .divstrip {
    height: 4px;
    background: #475D6C;
    width: 100%;
}

.contus .reachblock {
    padding-top: 96px;
    padding-bottom: 64px;
    background: #fff;
    position: relative;
}

.contus .reachblock .decorcorner {
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    overflow: hidden;
    pointer-events: none;
}

.contus .reachblock .decorcorner::before,
.contus .reachblock .decorcorner::after {
    content: "";
    position: absolute;
    top: 16px;
    right: 16px;
    border: 1.5px solid rgba(71, 93, 108, 0.18);
    border-radius: 5px;
}

.contus .reachblock .decorcorner::before {
    width: 120px;
    height: 120px;
}

.contus .reachblock .decorcorner::after {
    width: 80px;
    height: 80px;
    top: 36px;
    right: 36px;
}

.contus .decorcorner .decoinner {
    position: absolute;
    top: 56px;
    right: 56px;
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(71, 93, 108, 0.12);
    border-radius: 5px;
}

.contus .reachsplit {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
}

.contus .reachprimary {
    flex: 2;
    min-width: 0;
}

.contus .reachsecondary {
    flex: 1;
    min-width: 0;
}

.contus .pagelabel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

.contus .pagelabel .dot {
    width: 10px;
    height: 10px;
    border-radius: 38px;
    background: #8A9E85;
    flex-shrink: 0;
}

.contus .pagelabel .labeltext {
    font-size: 14px;
    color: #8A9E85;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contus .reachprimary .bighead {
    font-size: 50px;
    line-height: 1.1;
    color: #2a3840;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.contus .reachprimary .bighead::after {
    content: "";
    display: block;
    height: 3px;
    width: 0;
    background: #8A9E85;
    border-radius: 5px;
    margin-top: 8px;
    animation: headunderline 0.2s ease-out 0.15s forwards;
}

@keyframes headunderline {
    to { width: 100%; }
}

.contus .reachprimary .subtext {
    font-size: 16px;
    line-height: 1.6;
    color: #3d4f5a;
    max-width: 520px;
    margin-bottom: 48px;
}

.contus .infocard {
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 8px 52px 0 rgba(71, 93, 108, 0.11);
    border-top: 4px solid #475D6C;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: sticky;
    top: 32px;
}

.contus .infocard .cardhead {
    font-size: 16px;
    line-height: 1.4;
    color: #475D6C;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contus .inforow {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contus .infoitem {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 8px;
    background: #f4f7f6;
    transition: box-shadow 0.15s ease-out;
}

.contus .infoitem:hover {
    box-shadow: inset 0 2px 6px 0 rgba(71, 93, 108, 0.13);
}

.contus .infoitem .iicon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #D5E3DC;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contus .infoitem .iicon svg {
    width: 18px;
    height: 18px;
}

.contus .infoitem .idetail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contus .infoitem .ilabel {
    font-size: 14px;
    color: #8A9E85;
    line-height: 1.4;
}

.contus .infoitem .ival {
    font-size: 16px;
    color: #2a3840;
    line-height: 1.4;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s ease-out;
}

.contus .infoitem .ival:hover {
    color: #475D6C;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.contus .formwrap {
    background: #fff;
    border-radius: 22px;
    padding: 48px;
    box-shadow: 0 6px 14px 0 rgba(71, 93, 108, 0.09);
    border: 1px solid rgba(71, 93, 108, 0.1);
    position: relative;
    overflow: hidden;
}

.contus .formwrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: conic-gradient(from 200deg at 0% 50%, #475D6C, #8A9E85, #D5E3DC, #8A9E85, #475D6C);
}

.contus .formhead {
    font-size: 36px;
    line-height: 1.1;
    color: #2a3840;
    margin-bottom: 8px;
}

.contus .formsub {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6e79;
    margin-bottom: 32px;
}

.contus .fieldgroup {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.contus .fieldrow {
    margin-bottom: 24px;
}

.contus .floatfield {
    position: relative;
}

.contus .floatfield input,
.contus .floatfield textarea {
    width: 100%;
    border: 1.5px solid rgba(71, 93, 108, 0.25);
    border-radius: 8px;
    padding: 20px 16px 8px 16px;
    font-size: 16px;
    color: #2a3840;
    background: #f9fbfa;
    outline: none;
    transition: border-color 0.15s ease-out, box-shadow 0.2s ease-out;
    line-height: 1.4;
    box-sizing: border-box;
}

.contus .floatfield textarea {
    min-height: 100px;
    resize: vertical;
}

.contus .floatfield input:focus,
.contus .floatfield textarea:focus {
    border-color: #475D6C;
    box-shadow: 0 2px 3px 0 rgba(71, 93, 108, 0.07);
    background: #fff;
}

.contus .floatfield label {
    position: absolute;
    left: 16px;
    top: 14px;
    font-size: 16px;
    color: #8A9E85;
    pointer-events: none;
    transition: top 0.15s ease-out, font-size 0.15s ease-out, color 0.15s ease-out;
    line-height: 1.4;
}

.contus .floatfield input:focus + label,
.contus .floatfield input:not(:placeholder-shown) + label,
.contus .floatfield textarea:focus + label,
.contus .floatfield textarea:not(:placeholder-shown) + label {
    top: 6px;
    font-size: 14px;
    color: #475D6C;
}

.contus .budgetblock {
    margin-bottom: 24px;
}

.contus .budgetlabel {
    font-size: 14px;
    color: #475D6C;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contus .budgetlabel .dot {
    width: 8px;
    height: 8px;
    border-radius: 38px;
    background: #8A9E85;
    flex-shrink: 0;
}

.contus .budgetopts {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.contus .budgetopts input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.contus .budgetopts label {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 22px;
    border: 1.5px solid rgba(71, 93, 108, 0.3);
    font-size: 14px;
    color: #475D6C;
    cursor: pointer;
    transition: background 0.15s ease-out, border-color 0.15s ease-out, box-shadow 0.15s ease-out;
    background: #fff;
    line-height: 1.4;
}

.contus .budgetopts input[type="radio"]:checked + label {
    background: #475D6C;
    color: #fff;
    border-color: #475D6C;
    box-shadow: 0 2px 3px 0 rgba(71, 93, 108, 0.07);
}

.contus .budgetopts label:hover {
    border-color: #475D6C;
    box-shadow: inset 0 2px 4px 0 rgba(71, 93, 108, 0.1);
}

.contus .budgetopts input[type="radio"]:focus + label {
    outline: 2px solid #475D6C;
    outline-offset: 2px;
}

.contus .privacyrow {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
    padding: 16px;
    background: rgba(213, 227, 220, 0.3);
    border-radius: 8px;
}

.contus .privacyrow input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #475D6C;
    cursor: pointer;
}

.contus .privacyrow .privtext {
    font-size: 14px;
    color: #5a6e79;
    line-height: 1.6;
}

.contus .privacyrow .privtext a {
    color: #475D6C;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    transition: text-decoration-thickness 0.1s ease-out;
}

.contus .privacyrow .privtext a:hover {
    text-decoration-thickness: 3px;
}

.contus .submitbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 48px;
    border-radius: 8px;
    border: 2px solid #475D6C;
    background: transparent;
    color: #475D6C;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease-out, color 0.15s ease-out, box-shadow 0.15s ease-out;
    position: relative;
    line-height: 1.4;
}

.contus .submitbtn:hover {
    background: #475D6C;
    color: #fff;
    box-shadow: inset 0 3px 8px 0 rgba(71, 93, 108, 0.2);
}

.contus .submitbtn:focus {
    outline: 3px solid #8A9E85;
    outline-offset: 3px;
}

.contus .submitbtn:active {
    box-shadow: inset 0 4px 12px 0 rgba(71, 93, 108, 0.3);
}

.contus .spinlabel {
    display: inline-block;
}

.contus .submitbtn .spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 38px;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.contus .contactform:valid .submitbtn .spinner {
    display: none;
}

.contus .detailblock {
    padding-top: 64px;
    padding-bottom: 96px;
    background: #2e3d47;
    position: relative;
}

.contus .detailblock .decorcornerbr {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 160px;
    height: 160px;
    overflow: hidden;
    pointer-events: none;
}

.contus .detailblock .decorcornerbr::before,
.contus .detailblock .decorcornerbr::after {
    content: "";
    position: absolute;
    bottom: 16px;
    left: 16px;
    border: 1.5px solid rgba(213, 227, 220, 0.15);
    border-radius: 5px;
}

.contus .detailblock .decorcornerbr::before {
    width: 110px;
    height: 110px;
}

.contus .detailblock .decorcornerbr::after {
    width: 70px;
    height: 70px;
    bottom: 36px;
    left: 36px;
}

.contus .detailblock .decoinnerbl {
    position: absolute;
    bottom: 56px;
    left: 56px;
    width: 30px;
    height: 30px;
    border: 1.5px solid rgba(213, 227, 220, 0.1);
    border-radius: 5px;
    pointer-events: none;
}

.contus .detailsplit {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
}

.contus .detailmain {
    flex: 2;
    min-width: 0;
}

.contus .detailside {
    flex: 1;
    min-width: 0;
}

.contus .detailmain .seclabel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.contus .detailmain .seclabel .dot {
    width: 10px;
    height: 10px;
    border-radius: 38px;
    background: #8A9E85;
    flex-shrink: 0;
}

.contus .detailmain .seclabel .sectext {
    font-size: 14px;
    color: #8A9E85;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contus .detailmain .darkhead {
    font-size: 36px;
    line-height: 1.1;
    color: #D5E3DC;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.contus .detailmain .darkhead::after {
    content: "";
    display: block;
    height: 2px;
    width: 0;
    background: #8A9E85;
    border-radius: 5px;
    margin-top: 8px;
    animation: headunderline 0.2s ease-out 0.3s forwards;
}

.contus .detailmain .darkbody {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(213, 227, 220, 0.8);
    max-width: 540px;
    margin-bottom: 48px;
}

.contus .metricrow {
    display: flex;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
}

.contus .metricitem {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 24px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(213, 227, 220, 0.12);
    min-width: 140px;
    flex: 1;
    transition: background 0.2s ease-out, box-shadow 0.15s ease-out;
    cursor: default;
}

.contus .metricitem:hover {
    background: rgba(255,255,255,0.09);
    box-shadow: inset 0 2px 8px 0 rgba(71, 93, 108, 0.25);
}

.contus .metricitem .mval {
    font-size: 36px;
    line-height: 1.1;
    color: #D5E3DC;
    font-weight: 700;
}

.contus .metricitem .mdesc {
    font-size: 14px;
    color: rgba(213, 227, 220, 0.6);
    line-height: 1.4;
}

.contus .legendcard {
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    border: 1px solid rgba(213, 227, 220, 0.15);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contus .legendcard .lghead {
    font-size: 16px;
    color: #D5E3DC;
    font-weight: 700;
    line-height: 1.4;
    border-bottom: 1px solid rgba(213, 227, 220, 0.1);
    padding-bottom: 16px;
}

.contus .lgrow {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contus .lgitem {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    border-left: 3px solid #8A9E85;
    border-top: 1px solid rgba(213, 227, 220, 0.06);
    border-right: 1px solid rgba(213, 227, 220, 0.06);
    border-bottom: 1px solid rgba(213, 227, 220, 0.06);
    transition: background 0.15s ease-out, box-shadow 0.15s ease-out;
}

.contus .lgitem:hover {
    background: rgba(255,255,255,0.07);
    box-shadow: inset 0 2px 5px 0 rgba(71, 93, 108, 0.2);
}

.contus .lgitem .lgdot {
    width: 8px;
    height: 8px;
    border-radius: 38px;
    flex-shrink: 0;
    margin-top: 6px;
}

.contus .lgitem .lgdot.green { background: #8A9E85; }
.contus .lgitem .lgdot.teal { background: #D5E3DC; }
.contus .lgitem .lgdot.slate { background: #475D6C; }

.contus .lgitem .lgtext {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contus .lgitem .lgtitle {
    font-size: 14px;
    color: #D5E3DC;
    font-weight: 600;
    line-height: 1.4;
}

.contus .lgitem .lgdesc {
    font-size: 14px;
    color: rgba(213, 227, 220, 0.55);
    line-height: 1.6;
}

.contus .seqchildren .lgitem:nth-child(1) { animation: fadeup 0.2s ease-out 0.05s both; }
.contus .seqchildren .lgitem:nth-child(2) { animation: fadeup 0.2s ease-out 0.12s both; }
.contus .seqchildren .lgitem:nth-child(3) { animation: fadeup 0.2s ease-out 0.19s both; }

@keyframes fadeup {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .contus .reachblock {
        padding-top: 64px;
        padding-bottom: 32px;
    }

    .contus .reachsplit {
        flex-direction: column;
        gap: 32px;
    }

    .contus .reachprimary .bighead {
        font-size: 36px;
    }

    .contus .fieldgroup {
        grid-template-columns: 1fr;
    }

    .contus .formwrap {
        padding: 32px 24px;
    }

    .contus .infocard {
        position: static;
    }

    .contus .detailblock {
        padding-top: 48px;
        padding-bottom: 64px;
    }

    .contus .detailsplit {
        flex-direction: column;
        gap: 32px;
    }

    .contus .metricrow {
        gap: 16px;
    }

    .contus .budgetopts {
        flex-direction: column;
    }

    .contus .detailmain .darkhead {
        font-size: 36px;
    }
}

@media (min-width: 769px) and (max-width: 1280px) {
    .contus .reachsplit {
        gap: 32px;
    }

    .contus .detailsplit {
        gap: 32px;
    }

    .contus .formwrap {
        padding: 40px 32px;
    }
}

.successPage {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 96px 16px;
    background: linear-gradient(160deg, #ffffff 0%, #D5E3DC 55%, #ffffff 100%);
}

.successPage .successCard {
    max-width: 560px;
    width: 100%;
    background: #ffffff;
    border-radius: 22px;
    padding: 64px 64px;
    box-shadow: 0 8px 52px 0 rgba(71, 93, 108, 0.11);
    text-align: left;
    position: relative;
}

.successPage .successCard .successIconWrap {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: #D5E3DC;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    box-shadow: inset 0 2px 3px 0 rgba(138, 158, 133, 0.07);
}

.successPage .successCard .successIconWrap svg {
    display: block;
}

.successPage .successCard .successHeading {
    font-size: 36px;
    line-height: 1.1;
    color: #475D6C;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.successPage .successCard .successHeading::after {
    content: '';
    display: block;
    height: 3px;
    width: 100%;
    background: #8A9E85;
    border-radius: 5px;
    margin-top: 8px;
    animation: underlineDraw 0.2s ease-out forwards;
    transform-origin: left center;
}

@keyframes underlineDraw {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.successPage .successCard .successBody {
    font-size: 16px;
    line-height: 1.6;
    color: #3a4e5a;
    margin-bottom: 32px;
    max-width: 420px;
}

.successPage .successCard .successMeta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
    padding: 16px;
    background: #D5E3DC;
    border-radius: 8px;
    border-top: 3px solid #8A9E85;
    border-left: 1px solid #8A9E85;
    border-right: 1px solid rgba(138, 158, 133, 0.3);
    border-bottom: 1px solid rgba(138, 158, 133, 0.3);
}

.successPage .successCard .successMeta .metaRow {
    font-size: 14px;
    line-height: 1.4;
    color: #475D6C;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
}

.successPage .successCard .successMeta .metaRow .metaLabel {
    font-weight: 600;
    min-width: 80px;
    color: #3a4e5a;
}

.successPage .successCard .successActions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
}

.successPage .successCard .successActions .btnPrimary {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.4;
    color: #475D6C;
    background: transparent;
    border: 2px solid #475D6C;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease-out, color 0.15s ease-out, box-shadow 0.1s ease-out;
}

.successPage .successCard .successActions .btnPrimary:hover {
    background: #475D6C;
    color: #ffffff;
    box-shadow: inset 0 2px 3px 0 rgba(71, 93, 108, 0.07);
}

.successPage .successCard .successActions .btnPrimary:focus {
    outline: 3px solid #8A9E85;
    outline-offset: 3px;
}

.successPage .successCard .successActions .btnSecondary {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.4;
    color: #8A9E85;
    background: transparent;
    border: 2px solid #8A9E85;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.successPage .successCard .successActions .btnSecondary:hover {
    background: #8A9E85;
    color: #ffffff;
    box-shadow: inset 0 2px 3px 0 rgba(138, 158, 133, 0.09);
}

.successPage .successCard .successActions .btnSecondary:focus {
    outline: 3px solid #475D6C;
    outline-offset: 3px;
}

.successPage .successCard .successDivider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #D5E3DC, transparent);
    margin: 32px 0;
    border: none;
}

.successPage .successCard .successContact {
    font-size: 14px;
    line-height: 1.6;
    color: #5a6e7a;
}

.successPage .successCard .successContact a {
    color: #475D6C;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    transition: text-decoration-thickness 0.1s ease-out;
}

.successPage .successCard .successContact a:hover {
    text-decoration-thickness: 3px;
}

@media (max-width: 768px) {
    .successPage {
        padding: 64px 16px;
    }

    .successPage .successCard {
        padding: 32px 32px;
    }

    .successPage .successCard .successHeading {
        font-size: 36px;
    }

    .successPage .successCard .successActions {
        flex-direction: column;
    }

    .successPage .successCard .successActions .btnPrimary,
    .successPage .successCard .successActions .btnSecondary {
        text-align: center;
    }
}
