* {
  box-sizing: border-box;
}
body {
  font-family: "Exo 2", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #1a1a1a;
  background: #fefefe;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection {
  background: linear-gradient(90deg, #84020c 0%, #15ffb7 100%);
  color: #fff;
}
input::placeholder,
textarea::placeholder {
  opacity: 1;
  transition: opacity 0.28s ease-in-out;
}
input:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}
a:focus {
  outline: 2px solid #15ffb7;
  outline-offset: 2px;
}
button:focus {
  outline: 2px solid #f19b03;
  outline-offset: 2px;
}
input:focus,
textarea:focus {
  outline: 2px solid #84020c;
  outline-offset: 2px;
}
.amviro-header-wrap {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 7px 28px 0 #84020c14;
  padding: 28px 0;
}
.amviro-header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}
.logo-block {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f0f0f0;
}
.logo-container {
  display: inline-block;
  background: #ffffffe6;
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 5px 0 #84020c14;
}
.logo-container img {
  display: block;
  width: 65px;
  height: 65px;
  object-fit: contain;
}
.nav-main-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.nav-pill {
  display: inline-block;
  padding: 8px 16px;
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  color: #2c2c2c;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition:
    background-color 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.27s ease-in-out,
    transform 0.25s ease-in-out;
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-pill:hover {
  background: linear-gradient(135deg, #84020c 0%, #15ffb7 100%);
  border-color: #84020c;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 7px 28px 0 #84020c14;
}
.nav-pill.home-lnk {
  background: #fff;
  border: 2px solid #84020c;
  font-weight: 700;
}
.nav-pill.home-lnk:hover {
  background: #84020c;
  color: #fff;
}
@media (max-width: 1024px) {
  .amviro-header-wrap {
    padding: 16px 0;
  }
  .amviro-header-inner {
    padding: 0 16px;
  }
  .logo-block {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  .nav-main-row {
    gap: 8px;
  }
  .nav-pill {
    font-size: 16px;
    padding: 8px 16px;
  }
}
@media (max-width: 640px) {
  .amviro-header-wrap {
    padding: 16px 0;
  }
  .amviro-header-inner {
    padding: 0 8px;
  }
  .logo-block {
    margin-bottom: 8px;
    padding-bottom: 8px;
  }
  .logo-container {
    padding: 4px 8px;
  }
  .logo-container img {
    width: 55px;
    height: 55px;
  }
  .nav-main-row {
    gap: 4px;
  }
  .nav-pill {
    font-size: 16px;
    padding: 8px;
    flex: 1 1 calc(50% - 4px);
    justify-content: center;
    text-align: center;
  }
  .nav-pill.home-lnk {
    flex: 1 1 100%;
  }
}
.ft-base {
  background: linear-gradient(180deg, #f9fafb 0%, #fff 100%);
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -4px 16px 0 #84020c0a;
  padding: 28px 0;
  margin-top: 56px;
}
.ft-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}
.ft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 28px;
}
.ft-logo-zone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ft-logo-holder {
  background: #fffffff2;
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 5px 0 #84020c14;
  margin-bottom: 16px;
}
.ft-logo-holder img {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.ft-links-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: #84020c;
  margin: 0 0 8px;
  line-height: 1.35;
}
.ft-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ft-nav-list li {
  margin-bottom: 4px;
}
.ft-nav-list a {
  display: inline-block;
  color: #4a4a4a;
  text-decoration: none;
  font-size: 16px;
  padding: 4px 0;
  transition: color 0.29s cubic-bezier(0.4, 0, 0.2, 1);
}
.ft-nav-list a:hover {
  color: #84020c;
}
.ft-contact-zone {
  background: #fafafa;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #ececec;
}
.ft-contact-zone h3 {
  font-size: 16px;
  font-weight: 700;
  color: #84020c;
  margin: 0 0 8px;
  line-height: 1.35;
}
.ft-contact-item {
  display: flex;
  align-items: start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.55;
  color: #3a3a3a;
}
.ft-contact-item i {
  color: #15ffb7;
  margin-top: 4px;
  flex-shrink: 0;
}
.ft-contact-item a {
  color: #3a3a3a;
  text-decoration: none;
  transition: color 0.31s ease-in-out;
}
.ft-contact-item a:hover {
  color: #84020c;
}
.ft-bottom-bar {
  border-top: 1px solid #e8e8e8;
  padding-top: 16px;
  text-align: center;
  font-size: 16px;
  color: #6a6a6a;
}
@media (max-width: 1024px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .ft-contact-zone {
    grid-column: 1 / -1;
  }
}
@media (max-width: 640px) {
  .ft-base {
    padding: 16px 0;
  }
  .ft-inner {
    padding: 0 8px;
  }
  .ft-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
  .ft-logo-zone {
    align-items: center;
  }
  .ft-links-section,
  .ft-contact-zone {
    text-align: center;
  }
  .ft-contact-item {
    justify-content: center;
  }
  .ft-bottom-bar {
    padding-top: 8px;
  }
}
.consent-overlay {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 2px solid #e0e0e0;
  box-shadow: 0 -8px 40px 0 #84020c1f;
  z-index: 4000;
  padding: 28px;
}
.consent-wrap {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.consent-txt {
  flex: 1 1 400px;
  font-size: 16px;
  line-height: 1.55;
  color: #2a2a2a;
}
.consent-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.consent-btn {
  padding: 8px 28px;
  font-size: 16px;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  border: 2px solid #84020c;
  background: transparent;
  color: #84020c;
  border-radius: 3px;
  cursor: pointer;
  transition:
    background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
  min-width: 120px;
}
.consent-btn:hover {
  background: #84020c;
  color: #fff;
}
.consent-btn.secondary {
  border-color: #15ffb7;
  color: #15ffb7;
}
.consent-btn.secondary:hover {
  background: #15ffb7;
  color: #1a1a1a;
}
.consent-detail {
  display: none;
  width: 100%;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e8e8e8;
}
.consent-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}
.consent-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}
.consent-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.consent-toggle label {
  font-size: 16px;
  color: #3a3a3a;
  cursor: pointer;
}
@media (max-width: 640px) {
  .consent-overlay {
    padding: 16px;
  }
  .consent-wrap {
    flex-direction: column;
    align-items: stretch;
  }
  .consent-txt {
    flex: 1 1 100%;
  }
  .consent-actions {
    width: 100%;
    flex-direction: column;
  }
  .consent-btn {
    width: 100%;
  }
}
.bcfo-policy-block {
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px 28px;
  background: #fff;
}
.bcfo-policy-block h1 {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin: 0 0 56px;
  font-weight: 700;
}
.bcfo-policy-block h2 {
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #2a2a2a;
  margin: 56px 0 28px;
  font-weight: 600;
}
.bcfo-policy-block h3 {
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: #3a3a3a;
  margin: 28px 0 16px;
  font-weight: 600;
}
.bcfo-policy-block h4 {
  font-size: 16px;
  line-height: 1.55;
  color: #3a3a3a;
  margin: 28px 0 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.bcfo-policy-block h5 {
  font-size: 16px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 16px 0 8px;
  font-weight: 600;
}
.bcfo-policy-block h6 {
  font-size: 16px;
  line-height: 1.55;
  color: #5a5a5a;
  margin: 16px 0 8px;
  font-weight: 500;
  font-style: italic;
}
.bcfo-policy-block p {
  font-size: 16px;
  line-height: 1.55;
  color: #2a2a2a;
  margin: 0 0 16px;
}
.bcfo-policy-block strong,
.bcfo-policy-block b {
  font-weight: 600;
  color: #1a1a1a;
}
.bcfo-policy-block ul,
.bcfo-policy-block ol {
  margin: 0 0 28px;
  padding: 0 0 0 28px;
}
.bcfo-policy-block ul {
  list-style-type: disc;
}
.bcfo-policy-block ol {
  list-style-type: decimal;
}
.bcfo-policy-block li {
  font-size: 16px;
  line-height: 1.55;
  color: #2a2a2a;
  margin: 0 0 8px;
  padding: 0 0 0 8px;
}
.bcfo-policy-block ul ul,
.bcfo-policy-block ol ol,
.bcfo-policy-block ul ol,
.bcfo-policy-block ol ul {
  margin: 8px 0;
}
.bcfo-policy-block ul ul {
  list-style-type: circle;
}
.bcfo-policy-block ul ul ul {
  list-style-type: square;
}
.bcfo-policy-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.55;
  background: #fff;
  box-shadow: 0 1px 5px 0 #84020c14;
  border-radius: 3px;
  overflow: hidden;
}
.bcfo-policy-block thead {
  background: #f8f8f8;
}
.bcfo-policy-block thead tr {
  border-bottom: 2px solid #e0e0e0;
}
.bcfo-policy-block th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  color: #1a1a1a;
  border-right: 1px solid #e8e8e8;
}
.bcfo-policy-block th:last-child {
  border-right: none;
}
.bcfo-policy-block tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.28s ease-in-out;
}
.bcfo-policy-block tbody tr:last-child {
  border-bottom: none;
}
.bcfo-policy-block tbody tr:hover {
  background: #fafafa;
}
.bcfo-policy-block td {
  padding: 16px;
  color: #2a2a2a;
  border-right: 1px solid #f0f0f0;
}
.bcfo-policy-block td:last-child {
  border-right: none;
}
.bcfo-policy-block hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, #f0f0f0 0%, #d0d0d0 50%, #f0f0f0 100%);
  margin: 56px 0;
}
@media (max-width: 1024px) {
  .bcfo-policy-block {
    padding: 56px 16px;
  }
  .bcfo-policy-block h1 {
    font-size: 28px;
    margin: 0 0 28px;
  }
  .bcfo-policy-block h2 {
    font-size: 22px;
    margin: 28px 0 16px;
  }
  .bcfo-policy-block h3 {
    font-size: 16px;
    margin: 16px 0 8px;
  }
  .bcfo-policy-block table {
    font-size: 16px;
  }
  .bcfo-policy-block th,
  .bcfo-policy-block td {
    padding: 8px;
  }
}
@media (max-width: 640px) {
  .bcfo-policy-block {
    padding: 28px 16px;
  }
  .bcfo-policy-block h1 {
    font-size: 22px;
    margin: 0 0 16px;
  }
  .bcfo-policy-block h2 {
    font-size: 16px;
    margin: 16px 0 8px;
  }
  .bcfo-policy-block hr {
    margin: 28px 0;
  }
  .bcfo-policy-block table {
    display: block;
    overflow-x: auto;
    box-shadow: 0 1px 5px 0 #84020c14;
  }
  .bcfo-policy-block th,
  .bcfo-policy-block td {
    padding: 8px 4px;
    font-size: 16px;
  }
}
.amviro-abt-pg {
  background: #fefefe;
  color: #1a1a1a;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.amviro-abt-pg .hdr-zone-wrap {
  position: relative;
  min-height: 580px;
  background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px 28px;
}
.amviro-abt-pg .img-side {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.amviro-abt-pg .img-wrap-diagonal {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 7px 28px 0 #84020c14;
}
.amviro-abt-pg .img-wrap-diagonal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.amviro-abt-pg .img-wrap-diagonal:hover img {
  transform: scale(1.04);
}
.amviro-abt-pg .img-wrap-diagonal::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #84020c14 0%, #15ffb70f 100%);
  pointer-events: none;
}
.amviro-abt-pg .txt-side {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 0 0 56px;
}
.amviro-abt-pg .txt-side-inner {
  max-width: 540px;
}
.amviro-abt-pg .primary-hdg {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: #84020c;
}
.amviro-abt-pg .decorative-shape {
  position: absolute;
  bottom: 28px;
  left: 28px;
  width: 140px;
  height: 140px;
  background: #15ffb71f;
  border-radius: 12px;
  pointer-events: none;
  z-index: 1;
}
.amviro-abt-pg .story-sect {
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px 28px;
  background: #fff;
}
.amviro-abt-pg .story-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.amviro-abt-pg .story-card {
  background: linear-gradient(135deg, #fefefe 0%, #f8f8f8 100%);
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 1px 5px 0 #84020c14;
  transition:
    transform 0.28s ease-in-out,
    box-shadow 0.28s ease-in-out;
  position: relative;
  overflow: hidden;
}
.amviro-abt-pg .story-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, #84020c 0%, #15ffb7 100%);
  transition: height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.amviro-abt-pg .story-card:hover::before {
  height: 100%;
}
.amviro-abt-pg .story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px 0 #84020c1f;
}
.amviro-abt-pg .story-card h2 {
  font-size: 28px;
  line-height: 1.35;
  font-weight: 600;
  margin: 0 0 16px;
  color: #1a1a1a;
}
.amviro-abt-pg .story-card p {
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 16px;
  color: #3a3a3a;
}
.amviro-abt-pg .story-card p:last-child {
  margin: 0;
}
.amviro-abt-pg .founding-card {
  background: linear-gradient(135deg, #fefefe 0%, #f8f8f8 100%);
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 1px 5px 0 #15ffb714;
  transition: background 0.27s ease-in-out;
  border: 0 solid transparent;
}
.amviro-abt-pg .founding-card:hover {
  background: linear-gradient(135deg, #f8f8f8 0%, #fefefe 100%);
}
.amviro-abt-pg .founding-card h3 {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
  margin: 0 0 8px;
  color: #84020c;
}
.amviro-abt-pg .founding-card p {
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  color: #3a3a3a;
}
.amviro-abt-pg .img-card {
  background: #fefefe;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 7px 28px 0 #f19b0314;
}
.amviro-abt-pg .img-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.amviro-abt-pg .img-card:hover img {
  transform: scale(1.06);
}
.amviro-abt-pg .team-sect {
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px 28px;
  background: #f8f8f8;
}
.amviro-abt-pg .team-hdr {
  text-align: center;
  margin: 0 0 56px;
}
.amviro-abt-pg .team-hdr h2 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: #1a1a1a;
}
.amviro-abt-pg .team-hdr p {
  font-size: 22px;
  line-height: 1.55;
  margin: 0;
  color: #4a4a4a;
  max-width: 780px;
  margin: 0 auto;
}
.amviro-abt-pg .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.amviro-abt-pg .team-member {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 1px 5px 0 #84020c14;
  transition:
    transform 0.26s ease-in-out,
    box-shadow 0.26s ease-in-out;
  position: relative;
}
.amviro-abt-pg .team-member:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 40px 0 #15ffb71f;
}
.amviro-abt-pg .team-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 3px;
  margin: 0 0 16px;
  display: block;
  transition: filter 0.29s cubic-bezier(0.4, 0, 0.2, 1);
}
.amviro-abt-pg .team-member:hover .team-photo {
  filter: brightness(1.05);
}
.amviro-abt-pg .team-member h3 {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
  margin: 0 0 4px;
  color: #1a1a1a;
}
.amviro-abt-pg .team-role {
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 16px;
  color: #84020c;
  font-weight: 500;
}
.amviro-abt-pg .team-bio {
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  color: #3a3a3a;
}
.amviro-abt-pg ::selection {
  background: linear-gradient(90deg, #84020c 0%, #15ffb7 100%);
  color: #fff;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.amviro-abt-pg .story-card:nth-child(1) {
  animation: fadeInUp 0.35s ease-in-out 0.1s both;
}
.amviro-abt-pg .story-card:nth-child(2) {
  animation: fadeInUp 0.35s ease-in-out 0.25s both;
}
.amviro-abt-pg .story-card:nth-child(3) {
  animation: fadeInUp 0.35s ease-in-out 0.4s both;
}
.amviro-abt-pg .team-member:nth-child(1) {
  animation: fadeInUp 0.35s ease-in-out 0.15s both;
}
.amviro-abt-pg .team-member:nth-child(2) {
  animation: fadeInUp 0.35s ease-in-out 0.3s both;
}
.amviro-abt-pg .team-member:nth-child(3) {
  animation: fadeInUp 0.35s ease-in-out 0.45s both;
}
@media (max-width: 1024px) {
  .amviro-abt-pg .hdr-zone-wrap {
    flex-direction: column;
    padding: 28px 16px;
    min-height: auto;
  }
  .amviro-abt-pg .txt-side {
    padding: 28px 0 0;
  }
  .amviro-abt-pg .primary-hdg {
    font-size: 56px;
    margin: 0 0 16px;
  }
  .amviro-abt-pg .story-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .amviro-abt-pg .story-sect,
  .amviro-abt-pg .team-sect {
    padding: 28px 16px;
  }
  .amviro-abt-pg .team-hdr h2 {
    font-size: 28px;
  }
  .amviro-abt-pg .team-hdr p {
    font-size: 16px;
  }
  .amviro-abt-pg .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .amviro-abt-pg .decorative-shape {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 640px) {
  .amviro-abt-pg .primary-hdg {
    font-size: 28px;
  }
  .amviro-abt-pg .story-card h2 {
    font-size: 22px;
  }
  .amviro-abt-pg .founding-card h3,
  .amviro-abt-pg .team-member h3 {
    font-size: 16px;
  }
  .amviro-abt-pg .img-wrap-diagonal {
    min-height: 320px;
  }
  .amviro-abt-pg .img-card img {
    height: 200px;
  }
  .amviro-abt-pg .team-photo {
    height: 180px;
  }
  .amviro-abt-pg .team-hdr {
    margin: 0 0 28px;
  }
}
.amviro-contact-reach {
  background: #fafafa;
  min-height: 100vh;
  position: relative;
  overflow-x: clip;
}
.amviro-contact-reach .cntct-title-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px 28px 28px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.amviro-contact-reach .cntct-title-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(90deg, #84020c05 1px, transparent 1px),
    linear-gradient(0deg, #84020c05 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}
.amviro-contact-reach .title-text-zone {
  position: relative;
  z-index: 2;
}
.amviro-contact-reach .main-title-hdr {
  font-size: 56px;
  line-height: 1.1;
  color: #1a1a1a;
  margin: 0;
  font-weight: 300;
  letter-spacing: -0.02em;
  opacity: 0;
  filter: blur(8px);
  animation: clarifyText 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0.15s forwards;
}
@keyframes clarifyText {
  to {
    opacity: 1;
    filter: blur(0);
  }
}
.amviro-contact-reach .image-decoration-zone {
  position: relative;
  z-index: 2;
  height: 320px;
  opacity: 0;
  filter: blur(12px);
  animation: clarifyImage 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}
@keyframes clarifyImage {
  to {
    opacity: 1;
    filter: blur(0);
  }
}
.amviro-contact-reach .img-primary-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  position: relative;
}
.amviro-contact-reach .img-primary-visual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #84020c14 0%, transparent 60%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.amviro-contact-reach .form-section-container {
  background: #84020c;
  position: relative;
  padding: 56px 28px;
}
.amviro-contact-reach .form-section-container::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 80" preserveAspectRatio="none"><path d="M0,40 Q150,15 300,35 T600,25 T900,45 T1200,30 L1200,80 L0,80 Z" fill="%23fafafa" opacity="1"/></svg>')
    no-repeat center top;
  background-size: 100% 100%;
}
.amviro-contact-reach .form-inner-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 56px;
  align-items: start;
}
.amviro-contact-reach .contact-info-module {
  background: #ffffff14;
  padding: 28px;
  border-radius: 3px;
  backdrop-filter: blur(8px);
  box-shadow: 0 7px 28px 0 #84020c14;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpFade 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
}
@keyframes slideUpFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.amviro-contact-reach .info-block-label {
  font-size: 16px;
  line-height: 1.35;
  color: #ffffffb3;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.amviro-contact-reach .info-block-content {
  font-size: 22px;
  line-height: 1.35;
  color: #fff;
  margin: 0;
}
.amviro-contact-reach .info-block-content a {
  color: #fff;
  text-decoration: none;
  transition: color 0.28s ease-in-out;
}
.amviro-contact-reach .info-block-content a:hover {
  color: #15ffb7;
}
.amviro-contact-reach .contact-info-module + .contact-info-module {
  animation-delay: 0.85s;
}
.amviro-contact-reach .visual-accent-img-container {
  position: relative;
  height: 100%;
  min-height: 400px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpFade 0.4s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
}
.amviro-contact-reach .visual-accent-img-container::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 0;
  width: 60px;
  height: 60px;
  background: #f19b03;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 2;
}
.amviro-contact-reach .accent-image-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 8px 40px 0 #84020c1f;
}
.amviro-contact-reach .form-content-wrapper {
  background: #fff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 8px 40px 0 #84020c1f;
  grid-column: span 3;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpFade 0.38s cubic-bezier(0.4, 0, 0.2, 1) 1.15s forwards;
}
.amviro-contact-reach .form-heading-text {
  font-size: 28px;
  line-height: 1.1;
  color: #1a1a1a;
  margin: 0 0 28px;
  font-weight: 600;
}
.amviro-contact-reach .actual-contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.amviro-contact-reach .form-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.amviro-contact-reach .field-label-text {
  font-size: 16px;
  line-height: 1.35;
  color: #1a1a1a;
  font-weight: 600;
}
.amviro-contact-reach .text-input-element {
  padding: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 3px;
  font-size: 16px;
  line-height: 1.35;
  color: #1a1a1a;
  background: #fff;
  transition:
    border-color 0.26s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}
.amviro-contact-reach .text-input-element::placeholder {
  color: #999;
  transition: opacity 0.3s ease-in-out;
}
.amviro-contact-reach .text-input-element:focus {
  outline: none;
  border-color: #84020c;
  box-shadow: 0 1px 5px 0 #84020c14;
}
.amviro-contact-reach .text-input-element:focus::placeholder {
  opacity: 0;
}
.amviro-contact-reach .budget-range-selector {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.amviro-contact-reach .radio-option-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.amviro-contact-reach .radio-input-hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.amviro-contact-reach .radio-custom-display {
  width: 20px;
  height: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 0;
  position: relative;
  transition:
    border-color 0.27s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.27s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.amviro-contact-reach .radio-input-hidden:checked + .radio-custom-display {
  border-color: #84020c;
  background-color: #84020c;
}
.amviro-contact-reach
  .radio-input-hidden:checked
  + .radio-custom-display::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 0;
}
.amviro-contact-reach .radio-label-text {
  font-size: 16px;
  line-height: 1.35;
  color: #1a1a1a;
  cursor: pointer;
  user-select: none;
}
.amviro-contact-reach .privacy-consent-container {
  display: flex;
  align-items: start;
  gap: 8px;
  margin-top: 8px;
}
.amviro-contact-reach .checkbox-input-element {
  width: 20px;
  height: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 3px;
  appearance: none;
  cursor: pointer;
  transition:
    border-color 0.29s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.29s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}
.amviro-contact-reach .checkbox-input-element:checked {
  border-color: #84020c;
  background-color: #84020c;
}
.amviro-contact-reach .checkbox-input-element:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.amviro-contact-reach .privacy-text-content {
  font-size: 16px;
  line-height: 1.55;
  color: #666;
}
.amviro-contact-reach .privacy-text-content a {
  color: #84020c;
  text-decoration: none;
  transition: color 0.31s ease-in-out;
}
.amviro-contact-reach .privacy-text-content a:hover {
  color: #f19b03;
}
.amviro-contact-reach .submit-button-element {
  background: #84020c;
  color: #fff;
  border: none;
  padding: 16px 28px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
  transition:
    background-color 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.amviro-contact-reach .submit-button-element:hover {
  background-color: #6a0109;
  transform: translateY(-2px);
}
.amviro-contact-reach .submit-button-element::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #15ffb733;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.amviro-contact-reach .submit-button-element:active::before {
  width: 100%;
}
.amviro-contact-reach .btn-icon-svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .amviro-contact-reach .cntct-title-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 16px;
  }
  .amviro-contact-reach .main-title-hdr {
    font-size: 28px;
  }
  .amviro-contact-reach .image-decoration-zone {
    height: 240px;
  }
  .amviro-contact-reach .form-inner-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .amviro-contact-reach .form-content-wrapper {
    grid-column: 1;
  }
  .amviro-contact-reach .form-section-container {
    padding: 28px 16px;
  }
}
@media (max-width: 640px) {
  .amviro-contact-reach .cntct-title-wrap {
    padding: 16px 8px;
    gap: 16px;
  }
  .amviro-contact-reach .main-title-hdr {
    font-size: 22px;
  }
  .amviro-contact-reach .image-decoration-zone {
    height: 180px;
  }
  .amviro-contact-reach .form-section-container {
    padding: 16px 8px;
  }
  .amviro-contact-reach .form-inner-wrapper {
    gap: 16px;
  }
  .amviro-contact-reach .contact-info-module {
    padding: 16px;
  }
  .amviro-contact-reach .form-content-wrapper {
    padding: 16px;
  }
  .amviro-contact-reach .form-heading-text {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .amviro-contact-reach .visual-accent-img-container {
    min-height: 200px;
  }
}
.amviro-news-hub {
  background: #fafafa;
  min-height: 100vh;
  overflow-x: hidden;
}
.amviro-news-hub .title-zone-wrap {
  background: linear-gradient(135deg, #84020c 0%, #84020cd9 100%);
  position: relative;
  overflow: hidden;
  padding: 56px 28px;
}
.amviro-news-hub .bracket-corner-tl {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 56px;
  height: 56px;
  border-top: 3px solid #15ffb780;
  border-left: 3px solid #15ffb780;
}
.amviro-news-hub .bracket-corner-br {
  position: absolute;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-bottom: 3px solid #15ffb780;
  border-right: 3px solid #15ffb780;
}
.amviro-news-hub .title-content-center {
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.amviro-news-hub .title-content-center h1 {
  font-size: 72px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 28px;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.amviro-news-hub .title-content-center .accent-bracket {
  color: #15ffb7;
  font-weight: 400;
}
.amviro-news-hub .title-content-center .intro-desc {
  font-size: 22px;
  line-height: 1.55;
  color: #ffffffeb;
  max-width: 820px;
  margin: 0 auto 28px;
}
.amviro-news-hub .title-img-zone {
  max-width: 1320px;
  margin: 56px auto 0;
  padding: 0 28px;
  position: relative;
}
.amviro-news-hub .focus-img-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 40px 0 #84020c1f;
  max-width: 100%;
  height: 480px;
}
.amviro-news-hub .focus-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  filter: blur(0);
}
.amviro-news-hub .focus-img-container:hover img {
  transform: scale(1.08) translateX(-8px);
}
.amviro-news-hub .split-diagonal-section {
  position: relative;
  background: #fff;
  padding: 56px 28px;
}
.amviro-news-hub .diagonal-svg-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  overflow: hidden;
}
.amviro-news-hub .diagonal-svg-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}
.amviro-news-hub .news-container-main {
  max-width: 1320px;
  margin: 0 auto;
}
.amviro-news-hub .article-featured {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid #84020c1a;
}
.amviro-news-hub .img-featured-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 360px;
  box-shadow: 0 7px 28px 0 #84020c14;
}
.amviro-news-hub .img-featured-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease-in-out;
}
.amviro-news-hub .img-featured-wrap:hover img {
  transform: scale(1.06) translateY(12px);
}
.amviro-news-hub .meta-featured-zone {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.amviro-news-hub .date-published {
  font-size: 16px;
  line-height: 1.35;
  color: #84020c;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.amviro-news-hub .category-tag {
  display: inline-block;
  background: linear-gradient(135deg, #15ffb726 0%, #15ffb70d 100%);
  color: #84020c;
  padding: 8px 16px;
  border-radius: 3px;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 600;
  border: 1px solid #15ffb74d;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.amviro-news-hub .category-tag:hover {
  background: #15ffb7;
  color: #fff;
  border-color: #15ffb7;
  transform: translateY(-2px);
}
.amviro-news-hub .content-featured-text h2 {
  font-size: 56px;
  line-height: 1.1;
  color: #1a1a1a;
  margin: 0 0 16px;
  font-weight: 300;
  letter-spacing: -0.01em;
}
.amviro-news-hub .content-featured-text .excerpt-long {
  font-size: 22px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0 0 28px;
}
.amviro-news-hub .content-featured-text .article-body-preview {
  font-size: 16px;
  line-height: 1.55;
  color: #666;
  margin: 0 0 28px;
}
.amviro-news-hub .cta-read-full {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #84020c;
  color: #fff;
  padding: 16px 28px;
  border-radius: 3px;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out,
    transform 0.26s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 5px 0 #84020c14;
  position: relative;
  overflow: hidden;
}
.amviro-news-hub .cta-read-full::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #15ffb733 50%,
    transparent 100%
  );
  transition: left 0.4s ease-in-out;
}
.amviro-news-hub .cta-read-full:hover::before {
  left: 100%;
}
.amviro-news-hub .cta-read-full:hover {
  background: #a30310;
  box-shadow: 0 7px 28px 0 #84020c14;
  transform: translateY(-2px);
}
.amviro-news-hub .cta-read-full:focus-visible {
  outline: 3px solid #15ffb7 !important;
  outline-offset: 4px !important;
}
.amviro-news-hub .icon-arrow-forward {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.28s ease-in-out;
}
.amviro-news-hub .cta-read-full:hover .icon-arrow-forward {
  transform: translateX(4px);
}
.amviro-news-hub .secondary-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 28px;
}
.amviro-news-hub .article-card-secondary {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 5px 0 #84020c14;
  transition:
    box-shadow 0.3s ease-in-out,
    transform 0.27s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.amviro-news-hub .article-card-secondary:hover {
  box-shadow: 0 7px 28px 0 #84020c14;
  transform: translateY(-4px);
}
.amviro-news-hub .img-secondary-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.amviro-news-hub .img-secondary-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.amviro-news-hub .article-card-secondary:hover .img-secondary-wrap img {
  transform: scale(1.1) translateX(8px);
}
.amviro-news-hub .card-content-zone {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.amviro-news-hub .card-content-zone .date-published {
  margin-bottom: 8px;
}
.amviro-news-hub .card-content-zone h3 {
  font-size: 28px;
  line-height: 1.35;
  color: #1a1a1a;
  margin: 0 0 16px;
  font-weight: 600;
}
.amviro-news-hub .card-content-zone .excerpt-short {
  font-size: 16px;
  line-height: 1.55;
  color: #666;
  margin: 0 0 28px;
  flex-grow: 1;
}
.amviro-news-hub .link-read-more {
  color: #84020c;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    color 0.29s ease-in-out,
    gap 0.29s ease-in-out;
}
.amviro-news-hub .link-read-more:hover {
  color: #15ffb7;
  gap: 16px;
}
.amviro-news-hub .link-read-more:focus-visible {
  outline: 2px solid #15ffb7 !important;
  outline-offset: 4px !important;
}
.amviro-news-hub .icon-chevron {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.29s ease-in-out;
}
.amviro-news-hub .link-read-more:hover .icon-chevron {
  transform: translateX(4px);
}
@media (max-width: 1024px) {
  .amviro-news-hub .title-content-center h1 {
    font-size: 56px;
  }
  .amviro-news-hub .article-featured {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .amviro-news-hub .secondary-articles-grid {
    grid-template-columns: 1fr;
  }
  .amviro-news-hub .focus-img-container {
    height: 360px;
  }
}
@media (max-width: 640px) {
  .amviro-news-hub .title-zone-wrap {
    padding: 28px 16px;
  }
  .amviro-news-hub .title-content-center h1 {
    font-size: 28px;
  }
  .amviro-news-hub .title-content-center .intro-desc {
    font-size: 16px;
  }
  .amviro-news-hub .title-img-zone {
    padding: 0 16px;
    margin: 28px auto 0;
  }
  .amviro-news-hub .focus-img-container {
    height: 240px;
  }
  .amviro-news-hub .split-diagonal-section {
    padding: 28px 16px;
  }
  .amviro-news-hub .article-featured {
    margin-bottom: 28px;
    padding-bottom: 28px;
  }
  .amviro-news-hub .img-featured-wrap {
    height: 240px;
  }
  .amviro-news-hub .content-featured-text h2 {
    font-size: 28px;
  }
  .amviro-news-hub .content-featured-text .excerpt-long {
    font-size: 16px;
  }
  .amviro-news-hub .card-content-zone {
    padding: 16px;
  }
  .amviro-news-hub .secondary-articles-grid {
    gap: 16px;
  }
}
.amviro-news-hub ::selection {
  background: linear-gradient(90deg, #84020c 0%, #15ffb7 100%);
  color: #fff;
}
.amviro-news-hub input::placeholder,
.amviro-news-hub textarea::placeholder {
  transition: opacity 0.3s ease-in-out;
}
.amviro-news-hub input:focus::placeholder,
.amviro-news-hub textarea:focus::placeholder {
  opacity: 0;
}
.amviro-index-wrap {
  background: #fff;
  color: #2a2a2a;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}
.amviro-index-wrap .bento-landing-zone {
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 28px;
  position: relative;
  animation: rotate-reveal-bento 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transform-origin: center center;
}
@keyframes rotate-reveal-bento {
  from {
    opacity: 0;
    transform: rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: rotate(0deg);
  }
}
.amviro-index-wrap .bento-text-cell {
  grid-column: 1;
  grid-row: 1 / 3;
  padding: 56px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #84020c05 0%, #15ffb705 100%);
  border: 1px solid #84020c14;
  border-radius: 12px;
  box-shadow: 0 7px 28px 0 #84020c14;
  position: relative;
}
.amviro-index-wrap .bento-text-cell::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 120px;
  height: 120px;
  border: 1px solid #84020c0f;
  border-radius: 50%;
  pointer-events: none;
}
.amviro-index-wrap .bento-text-cell::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 28px;
  width: 96px;
  height: 96px;
  border: 1px solid #84020c0a;
  border-radius: 50%;
  pointer-events: none;
}
.amviro-index-wrap .numerical-accent {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #84020c;
  margin: 0 0 16px;
}
.amviro-index-wrap .hero-title-main {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #2a2a2a;
  margin: 0 0 28px;
}
.amviro-index-wrap .hero-desc {
  font-size: 22px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0;
}
.amviro-index-wrap .bento-img-cell {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 7px 28px 0 #15ffb714;
  border: 3px solid #fff;
}
.amviro-index-wrap .bento-img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.32s ease-in-out,
    opacity 0.32s ease-in-out;
}
.amviro-index-wrap .bento-img-cell::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #84020c26 0%, transparent 60%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.amviro-index-wrap .bento-img-cell:hover img {
  transform: scale(1.06);
}
.amviro-index-wrap .bento-accent-cell {
  grid-column: 2;
  grid-row: 2;
  background: #84020c;
  padding: 28px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 8px 40px 0 #84020c1f;
}
.amviro-index-wrap .wave-divider-wrap {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.amviro-index-wrap .wave-divider-wrap svg {
  display: block;
  width: 100%;
  height: 80px;
}
.amviro-index-wrap .analysis-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px 28px;
}
.amviro-index-wrap .accent-bar-heading {
  position: relative;
  padding-top: 16px;
  margin-bottom: 28px;
}
.amviro-index-wrap .accent-bar-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: #f19b03;
}
.amviro-index-wrap .analysis-section h2 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #2a2a2a;
  margin: 0 0 28px;
}
.amviro-index-wrap .analysis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 28px;
  animation: rotate-reveal-analysis 0.38s cubic-bezier(0.4, 0, 0.2, 1) 0.15s
    forwards;
  opacity: 0;
  transform: rotate(1deg);
  transform-origin: top left;
}
@keyframes rotate-reveal-analysis {
  from {
    opacity: 0;
    transform: rotate(1deg);
  }
  to {
    opacity: 1;
    transform: rotate(0deg);
  }
}
.amviro-index-wrap .analysis-card {
  background: #fff;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid #84020c1a;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 5px 0 #84020c14;
  position: relative;
}
.amviro-index-wrap .analysis-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px 0 #84020c1f;
  border-color: #84020c;
}
.amviro-index-wrap .analysis-card h3 {
  font-size: 28px;
  line-height: 1.35;
  font-weight: 600;
  color: #84020c;
  margin: 0 0 16px;
}
.amviro-index-wrap .analysis-card p {
  font-size: 16px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0;
}
.amviro-index-wrap .metrics-showcase {
  background: linear-gradient(to bottom, #15ffb708 0%, #fff 100%);
  padding: 56px 28px;
  position: relative;
  overflow: hidden;
}
.amviro-index-wrap .metrics-showcase::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  width: 24px;
  height: 24px;
  background: #84020c0a;
  border-radius: 3px;
  transform: rotate(45deg);
  pointer-events: none;
}
.amviro-index-wrap .metrics-showcase::after {
  content: "";
  position: absolute;
  bottom: 56px;
  right: 120px;
  width: 16px;
  height: 16px;
  background: #f19b030f;
  border-radius: 50%;
  pointer-events: none;
}
.amviro-index-wrap .metrics-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.amviro-index-wrap .metrics-inner h2 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #2a2a2a;
  margin: 0 0 56px;
  text-align: right;
}
.amviro-index-wrap .metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.amviro-index-wrap .metric-card-v2 {
  background: #fff;
  padding: 28px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid transparent;
  transition:
    border-color 0.3s ease-in-out,
    transform 0.27s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 7px 28px 0 #15ffb714;
  animation: rotate-reveal-metric 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
  transform: rotate(-1deg);
}
@keyframes rotate-reveal-metric {
  from {
    opacity: 0;
    transform: rotate(-1deg);
  }
  to {
    opacity: 1;
    transform: rotate(0deg);
  }
}
.amviro-index-wrap .metric-card-v2:nth-child(1) {
  animation-delay: 0.05s;
}
.amviro-index-wrap .metric-card-v2:nth-child(2) {
  animation-delay: 0.1s;
}
.amviro-index-wrap .metric-card-v2:nth-child(3) {
  animation-delay: 0.15s;
}
.amviro-index-wrap .metric-card-v2:hover {
  border-color: #15ffb7;
  transform: translateY(-8px);
}
.amviro-index-wrap .metric-number {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 700;
  color: #84020c;
  margin: 0 0 8px;
}
.amviro-index-wrap .metric-label {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
  color: #2a2a2a;
  margin: 0 0 16px;
}
.amviro-index-wrap .metric-description {
  font-size: 16px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0;
}
.amviro-index-wrap .pencil-divider {
  width: 100%;
  height: 2px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 2" preserveAspectRatio="none"><path d="M0 1 Q 30 0.5,60 1 T 120 1 T 180 1 T 240 1 T 300 1 T 360 1 T 420 1 T 480 1 T 540 1 T 600 1 T 660 1 T 720 1 T 780 1 T 840 1 T 900 1 T 960 1 T 1020 1 T 1080 1 T 1140 1 T 1200 1" stroke="%2384020C" stroke-width="1.5" fill="none" opacity="0.3"/></svg>')
    repeat-x;
  margin: 56px 0;
}
.amviro-index-wrap .program-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px 28px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
}
.amviro-index-wrap .program-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: rotate-reveal-program 0.36s cubic-bezier(0.4, 0, 0.2, 1) 0.2s
    forwards;
  opacity: 0;
  transform: rotate(2deg);
}
@keyframes rotate-reveal-program {
  from {
    opacity: 0;
    transform: rotate(2deg);
  }
  to {
    opacity: 1;
    transform: rotate(0deg);
  }
}
.amviro-index-wrap .program-content h2 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #84020c;
  margin: 0;
}
.amviro-index-wrap .program-content p {
  font-size: 16px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0;
}
.amviro-index-wrap .program-img-col {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 7px 28px 0 #84020c14;
  border: 3px solid #fff;
  animation: rotate-reveal-img1 0.33s cubic-bezier(0.4, 0, 0.2, 1) 0.25s
    forwards;
  opacity: 0;
  transform: rotate(-1.5deg);
}
@keyframes rotate-reveal-img1 {
  from {
    opacity: 0;
    transform: rotate(-1.5deg);
  }
  to {
    opacity: 1;
    transform: rotate(0deg);
  }
}
.amviro-index-wrap .program-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease-in-out;
}
.amviro-index-wrap .program-img-col:hover img {
  transform: scale(1.08);
}
.amviro-index-wrap .program-img-col-2 {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 7px 28px 0 #f19b0314;
  border: 3px solid #fff;
  animation: rotate-reveal-img2 0.34s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
  opacity: 0;
  transform: rotate(1.8deg);
}
@keyframes rotate-reveal-img2 {
  from {
    opacity: 0;
    transform: rotate(1.8deg);
  }
  to {
    opacity: 1;
    transform: rotate(0deg);
  }
}
.amviro-index-wrap .program-img-col-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.29s ease-in-out;
}
.amviro-index-wrap .program-img-col-2:hover img {
  transform: scale(1.07);
}
@media (max-width: 1024px) {
  .amviro-index-wrap .bento-landing-zone {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 16px;
    padding: 28px 16px;
  }
  .amviro-index-wrap .bento-text-cell {
    grid-column: 1;
    grid-row: 1;
    padding: 28px 16px;
  }
  .amviro-index-wrap .bento-img-cell {
    grid-column: 1;
    grid-row: 2;
    min-height: 280px;
  }
  .amviro-index-wrap .bento-accent-cell {
    grid-column: 1;
    grid-row: 3;
  }
  .amviro-index-wrap .numerical-accent {
    font-size: 56px;
  }
  .amviro-index-wrap .hero-title-main {
    font-size: 28px;
  }
  .amviro-index-wrap .hero-desc {
    font-size: 16px;
  }
  .amviro-index-wrap .analysis-section {
    padding: 28px 16px;
  }
  .amviro-index-wrap .analysis-section h2 {
    font-size: 28px;
  }
  .amviro-index-wrap .analysis-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .amviro-index-wrap .metrics-showcase {
    padding: 28px 16px;
  }
  .amviro-index-wrap .metrics-inner h2 {
    font-size: 28px;
    margin-bottom: 28px;
    text-align: left;
  }
  .amviro-index-wrap .metrics-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .amviro-index-wrap .metric-number {
    font-size: 56px;
  }
  .amviro-index-wrap .metric-label {
    font-size: 16px;
  }
  .amviro-index-wrap .program-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 16px;
  }
  .amviro-index-wrap .program-content h2 {
    font-size: 28px;
  }
  .amviro-index-wrap .program-img-col,
  .amviro-index-wrap .program-img-col-2 {
    min-height: 240px;
  }
}
@media (max-width: 640px) {
  .amviro-index-wrap .bento-landing-zone {
    padding: 16px 8px;
    gap: 8px;
  }
  .amviro-index-wrap .bento-text-cell {
    padding: 16px 8px;
  }
  .amviro-index-wrap .numerical-accent {
    font-size: 28px;
  }
  .amviro-index-wrap .hero-title-main {
    font-size: 22px;
  }
  .amviro-index-wrap .analysis-section {
    padding: 16px 8px;
  }
  .amviro-index-wrap .analysis-section h2 {
    font-size: 22px;
  }
  .amviro-index-wrap .analysis-card {
    padding: 16px;
  }
  .amviro-index-wrap .analysis-card h3 {
    font-size: 22px;
  }
  .amviro-index-wrap .metrics-showcase {
    padding: 16px 8px;
  }
  .amviro-index-wrap .metrics-inner h2 {
    font-size: 22px;
  }
  .amviro-index-wrap .metric-card-v2 {
    padding: 16px;
  }
  .amviro-index-wrap .metric-number {
    font-size: 28px;
  }
  .amviro-index-wrap .program-section {
    padding: 16px 8px;
    gap: 16px;
  }
  .amviro-index-wrap .program-content {
    gap: 16px;
  }
  .amviro-index-wrap .program-content h2 {
    font-size: 22px;
  }
}
.amviro-index-wrap ::selection {
  background: linear-gradient(90deg, #84020c 0%, #15ffb7 100%);
  color: #fff;
}
.amviro-index-wrap input::placeholder,
.amviro-index-wrap textarea::placeholder {
  transition: opacity 0.26s ease-in-out;
}
.amviro-index-wrap input:focus::placeholder,
.amviro-index-wrap textarea:focus::placeholder {
  opacity: 0;
}
.amviro-lp-main {
  background: #fff;
  color: #1a1a1a;
  overflow-x: clip;
  width: 100%;
}
.amviro-lp-main * {
  box-sizing: border-box;
}
.amviro-lp-main .pg-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}
.amviro-lp-main .hero-section {
  position: relative;
  background: linear-gradient(168deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 112px 16px 56px;
  overflow: hidden;
}
.amviro-lp-main .hero-section::before {
  content: "";
  position: absolute;
  top: 8%;
  right: 12%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, #84020c0a 0%, transparent 70%);
  pointer-events: none;
}
.amviro-lp-main .hero-section::after {
  content: "";
  position: absolute;
  bottom: 18%;
  left: 8%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, #15ffb70d 0%, transparent 70%);
  pointer-events: none;
}
.amviro-lp-main .hero-content-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.amviro-lp-main .hero-title-block {
  text-align: center;
  margin-bottom: 56px;
}
.amviro-lp-main .hero-title-line-1 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
  color: #2a2a2a;
}
.amviro-lp-main .hero-title-line-2 {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: #84020c;
}
.amviro-lp-main .hero-subtitle {
  font-size: 22px;
  line-height: 1.55;
  color: #4a4a4a;
  max-width: 720px;
  margin: 0 auto;
}
.amviro-lp-main .structure-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #84020c26 50%,
    transparent 100%
  );
  margin: 56px 0;
}
.amviro-lp-main .program-overview-section {
  padding: 56px 16px;
  background: #fff;
}
.amviro-lp-main .overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 28px;
  margin-bottom: 56px;
}
.amviro-lp-main .overview-sidebar {
  background: linear-gradient(145deg, #f9f9f9 0%, #f0f0f0 100%);
  padding: 28px;
  border-radius: 12px;
  border-left: 4px solid #84020c;
  box-shadow: 0 7px 28px 0 #84020c14;
}
.amviro-lp-main .overview-sidebar-heading {
  font-size: 28px;
  line-height: 1.35;
  font-weight: 600;
  margin: 0 0 16px;
  color: #84020c;
}
.amviro-lp-main .sidebar-metric-item {
  margin-bottom: 16px;
}
.amviro-lp-main .sidebar-metric-label {
  font-size: 16px;
  line-height: 1.35;
  color: #6a6a6a;
  margin: 0 0 4px;
}
.amviro-lp-main .sidebar-metric-value {
  font-size: 28px;
  line-height: 1.1;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.amviro-lp-main .overview-intro-column {
  padding: 28px;
}
.amviro-lp-main .overview-intro-heading {
  font-size: 28px;
  line-height: 1.35;
  font-weight: 500;
  margin: 0 0 16px;
  color: #2a2a2a;
}
.amviro-lp-main .overview-intro-text {
  font-size: 16px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0 0 16px;
}
.amviro-lp-main .overview-main-column {
  padding: 28px;
  background: #fafafa;
  border-radius: 12px;
}
.amviro-lp-main .overview-main-heading {
  font-size: 28px;
  line-height: 1.35;
  font-weight: 600;
  margin: 0 0 16px;
  color: #1a1a1a;
}
.amviro-lp-main .overview-main-text {
  font-size: 16px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0 0 16px;
}
.amviro-lp-main .overview-feature-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.amviro-lp-main .overview-feature-item {
  padding: 16px;
  background: #fff;
  border-radius: 3px;
  margin-bottom: 8px;
  border-left: 3px solid #15ffb7;
  transition:
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.amviro-lp-main .overview-feature-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 40px 0 #15ffb71f;
}
.amviro-lp-main .overview-feature-title {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 4px;
}
.amviro-lp-main .overview-feature-description {
  font-size: 16px;
  line-height: 1.55;
  color: #5a5a5a;
  margin: 0;
}
.amviro-lp-main .curriculum-section {
  padding: 56px 16px;
  background: linear-gradient(175deg, #fff 0%, #f7f7f7 100%);
  position: relative;
}
.amviro-lp-main .curriculum-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #84020c 0%, #f19b03 50%, #15ffb7 100%);
  opacity: 0.6;
}
.amviro-lp-main .curriculum-header {
  text-align: center;
  margin-bottom: 56px;
}
.amviro-lp-main .curriculum-heading {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 16px;
  color: #84020c;
}
.amviro-lp-main .curriculum-subheading {
  font-size: 22px;
  line-height: 1.55;
  color: #4a4a4a;
  max-width: 840px;
  margin: 0 auto;
}
.amviro-lp-main .curriculum-modules-wrapper {
  max-width: 1320px;
  margin: 0 auto;
}
.amviro-lp-main .module-accordion {
  margin-bottom: 16px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 5px 0 #84020c14;
  transition: box-shadow 0.32s ease-in-out;
}
.amviro-lp-main .module-accordion:hover {
  box-shadow: 0 8px 40px 0 #84020c1f;
}
.amviro-lp-main .module-toggle-checkbox {
  display: none;
}
.amviro-lp-main .module-header-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px;
  cursor: pointer;
  background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
  transition: background 0.27s cubic-bezier(0.4, 0, 0.2, 1);
}
.amviro-lp-main .module-header-label:hover {
  background: linear-gradient(135deg, #fff5f6 0%, #fef8f8 100%);
}
.amviro-lp-main .module-title-block {
  flex: 1;
}
.amviro-lp-main .module-number {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  color: #84020c;
  margin: 0 0 4px;
}
.amviro-lp-main .module-title {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}
.amviro-lp-main .module-icon-indicator {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0f0f0;
  transition:
    background 0.27s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.27s cubic-bezier(0.4, 0, 0.2, 1);
}
.amviro-lp-main
  .module-toggle-checkbox:checked
  + .module-header-label
  .module-icon-indicator {
  background: #15ffb7;
  transform: rotate(180deg);
}
.amviro-lp-main .module-icon-svg {
  width: 16px;
  height: 16px;
  fill: #4a4a4a;
}
.amviro-lp-main .module-content-panel {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease-in-out,
    padding 0.35s ease-in-out;
}
.amviro-lp-main .module-toggle-checkbox:checked ~ .module-content-panel {
  max-height: 2000px;
  padding: 28px;
  border-top: 1px solid #e8e8e8;
}
.amviro-lp-main .module-content-text {
  font-size: 16px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0 0 16px;
}
.amviro-lp-main .module-topics-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.amviro-lp-main .module-topic-item {
  padding: 8px 16px;
  background: #f9f9f9;
  border-left: 3px solid #f19b03;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.55;
  color: #3a3a3a;
  border-radius: 3px;
}
.amviro-lp-main .instructors-section {
  padding: 56px 16px;
  background: #fff;
}
.amviro-lp-main .instructors-heading {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 300;
  text-align: right;
  margin: 0 0 56px;
  color: #2a2a2a;
  letter-spacing: 0.03em;
}
.amviro-lp-main .instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1320px;
  margin: 0 auto;
}
.amviro-lp-main .instructor-card {
  background: linear-gradient(145deg, #fafafa 0%, #f3f3f3 100%);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 5px 0 #84020c14;
}
.amviro-lp-main .instructor-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #84020c 0%, #f19b03 100%);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
}
.amviro-lp-main .instructor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 40px 0 #84020c1f;
}
.amviro-lp-main .instructor-card:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}
.amviro-lp-main .instructor-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 16px;
  filter: grayscale(30%);
  transition:
    filter 0.34s ease-in-out,
    transform 0.34s ease-in-out;
}
.amviro-lp-main .instructor-card:hover .instructor-img {
  filter: grayscale(0%);
  transform: scale(1.04);
}
.amviro-lp-main .instructor-name {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 4px;
}
.amviro-lp-main .instructor-role {
  font-size: 16px;
  line-height: 1.35;
  color: #84020c;
  font-weight: 500;
  margin: 0 0 16px;
}
.amviro-lp-main .instructor-bio {
  font-size: 16px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0;
}
@media (max-width: 1024px) {
  .amviro-lp-main .overview-grid {
    grid-template-columns: 1fr;
  }
  .amviro-lp-main .hero-title-line-1 {
    font-size: 28px;
  }
  .amviro-lp-main .hero-title-line-2 {
    font-size: 56px;
  }
  .amviro-lp-main .hero-subtitle {
    font-size: 22px;
  }
  .amviro-lp-main .curriculum-heading {
    font-size: 28px;
  }
  .amviro-lp-main .instructors-heading {
    font-size: 28px;
    text-align: center;
  }
  .amviro-lp-main .instructors-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .amviro-lp-main .hero-section {
    padding: 56px 16px 28px;
  }
  .amviro-lp-main .hero-title-line-1 {
    font-size: 22px;
  }
  .amviro-lp-main .hero-title-line-2 {
    font-size: 28px;
  }
  .amviro-lp-main .hero-subtitle {
    font-size: 16px;
  }
  .amviro-lp-main .program-overview-section,
  .amviro-lp-main .curriculum-section,
  .amviro-lp-main .instructors-section {
    padding: 28px 8px;
  }
  .amviro-lp-main .overview-sidebar,
  .amviro-lp-main .overview-intro-column,
  .amviro-lp-main .overview-main-column {
    padding: 16px;
  }
  .amviro-lp-main .module-header-label,
  .amviro-lp-main .module-toggle-checkbox:checked ~ .module-content-panel {
    padding: 16px;
  }
  .amviro-lp-main .overview-grid {
    gap: 16px;
  }
  .amviro-lp-main .structure-divider {
    margin: 28px 0;
  }
}
.amviro-podcast-archive {
  background: #fff;
  min-height: 100vh;
}
.amviro-podcast-archive .hero-title-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding-top: 56px;
  padding-bottom: 112px;
  position: relative;
  overflow: hidden;
}
.amviro-podcast-archive .hero-title-section::before {
  content: "07";
  position: absolute;
  top: 28px;
  right: 56px;
  font-size: 240px;
  font-weight: 300;
  color: #84020c0a;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.amviro-podcast-archive .title-wrapper-max {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}
.amviro-podcast-archive .split-layout-30-70 {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}
.amviro-podcast-archive .left-accent-col {
  width: 30%;
  flex-shrink: 0;
}
.amviro-podcast-archive .right-content-col {
  width: 70%;
  flex-grow: 1;
}
.amviro-podcast-archive .decorative-strokes-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.amviro-podcast-archive .stroke-line {
  height: 3px;
  background: #84020c;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.amviro-podcast-archive .stroke-line:nth-child(1) {
  width: 56px;
}
.amviro-podcast-archive .stroke-line:nth-child(2) {
  width: 42px;
}
.amviro-podcast-archive .stroke-line:nth-child(3) {
  width: 28px;
}
.amviro-podcast-archive .hero-title-section:hover .stroke-line:nth-child(1) {
  width: 72px;
}
.amviro-podcast-archive .hero-title-section:hover .stroke-line:nth-child(2) {
  width: 56px;
}
.amviro-podcast-archive .hero-title-section:hover .stroke-line:nth-child(3) {
  width: 42px;
}
.amviro-podcast-archive .accent-label-text {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.amviro-podcast-archive .main-title-heading {
  font-size: 72px;
  line-height: 1.1;
  color: #212529;
  margin: 0 0 16px;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.amviro-podcast-archive .semantic-split-line {
  font-size: 56px;
  line-height: 1.1;
  color: #84020c;
  margin: 0 0 28px;
  font-weight: 400;
}
.amviro-podcast-archive .subtitle-description {
  font-size: 22px;
  line-height: 1.55;
  color: #495057;
  margin: 0;
}
.amviro-podcast-archive .svg-divider-right {
  width: 100%;
  height: 80px;
  margin-top: -1px;
  display: block;
}
.amviro-podcast-archive .episodes-catalog-section {
  padding: 56px 28px;
  background: #fff;
}
.amviro-podcast-archive .catalog-container-max {
  max-width: 1320px;
  margin: 0 auto;
}
.amviro-podcast-archive .episodes-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 28px;
}
.amviro-podcast-archive .episode-card-wrapper {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 28px;
  position: relative;
  box-shadow: 0 1px 5px 0 #84020c14;
  transition:
    box-shadow 0.28s ease-in-out,
    transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.amviro-podcast-archive .episode-card-wrapper:hover {
  box-shadow: 0 7px 28px 0 #84020c14;
  transform: translateY(-4px);
}
.amviro-podcast-archive .episode-card-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  pointer-events: none;
  transition: border-color 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.amviro-podcast-archive .episode-card-wrapper:hover::after {
  border-color: #84020c;
  animation: trace-border 0.8s ease-in-out;
}
@keyframes trace-border {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  25% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  50% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(100% 100%, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.amviro-podcast-archive .featured-episode-card {
  grid-column: span 3;
  background: linear-gradient(135deg, #fff5f6 0%, #f8f9fa 100%);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 28px;
  align-items: center;
}
.amviro-podcast-archive .episode-image-container {
  width: 100%;
  height: 100%;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.amviro-podcast-archive .episode-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: blur(0px);
}
.amviro-podcast-archive
  .featured-episode-card:hover
  .episode-image-container
  img {
  transform: scale(1.08);
}
.amviro-podcast-archive .episode-meta-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.amviro-podcast-archive .episode-number-badge {
  background: #84020c;
  color: #fff;
  font-size: 16px;
  padding: 4px 16px;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.amviro-podcast-archive .episode-date-text {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.35;
}
.amviro-podcast-archive .episode-title-h3 {
  font-size: 28px;
  line-height: 1.35;
  color: #212529;
  margin: 0 0 16px;
  font-weight: 600;
}
.amviro-podcast-archive .episode-description-text {
  font-size: 16px;
  line-height: 1.55;
  color: #495057;
  margin: 0 0 28px;
}
.amviro-podcast-archive .episode-topics-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.amviro-podcast-archive .topic-tag {
  background: #e9ecef;
  color: #495057;
  font-size: 16px;
  padding: 4px 16px;
  border-radius: 3px;
  transition:
    background 0.26s ease-in-out,
    color 0.26s ease-in-out;
}
.amviro-podcast-archive .episode-card-wrapper:hover .topic-tag {
  background: #15ffb7;
  color: #212529;
}
.amviro-podcast-archive .read-transcript-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #84020c;
  color: #fff;
  font-size: 16px;
  padding: 16px 28px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 600;
  transition:
    background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.amviro-podcast-archive .read-transcript-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #ffffff26;
  transition: width 0.35s ease-in-out;
}
.amviro-podcast-archive .read-transcript-btn:hover::before {
  width: 100%;
}
.amviro-podcast-archive .read-transcript-btn:hover {
  background: #a30310;
  box-shadow: 0 7px 28px 0 #84020c14;
}
.amviro-podcast-archive .btn-icon-svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.amviro-podcast-archive .standard-episode-card .episode-title-h3 {
  font-size: 22px;
}
.amviro-podcast-archive .standard-episode-card .episode-description-text {
  font-size: 16px;
  margin-bottom: 16px;
}
.amviro-podcast-archive .mini-highlight-block {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f19b03;
  color: #fff;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 1px 5px 0 #f19b0314;
}
.amviro-podcast-archive .comparison-matrix-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 8px 40px 0 #84020c1f;
  margin-top: 28px;
}
.amviro-podcast-archive .matrix-title-h4 {
  font-size: 22px;
  line-height: 1.35;
  color: #212529;
  margin: 0 0 28px;
  font-weight: 600;
}
.amviro-podcast-archive .matrix-table {
  width: 100%;
  border-collapse: collapse;
}
.amviro-podcast-archive .matrix-table th {
  background: #f8f9fa;
  color: #495057;
  font-size: 16px;
  font-weight: 600;
  padding: 16px;
  text-align: left;
  border-bottom: 2px solid #e9ecef;
}
.amviro-podcast-archive .matrix-table td {
  padding: 16px;
  font-size: 16px;
  line-height: 1.55;
  color: #495057;
  border-bottom: 1px solid #e9ecef;
}
.amviro-podcast-archive .matrix-table tr:hover {
  background: #f8f9fa;
}
.amviro-podcast-archive .matrix-indicator-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}
.amviro-podcast-archive .indicator-positive {
  background: #15ffb7;
  border-radius: 50%;
  position: relative;
}
.amviro-podcast-archive .indicator-positive::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 6px;
  border-left: 2px solid #212529;
  border-bottom: 2px solid #212529;
  transform: translate(-50%, -60%) rotate(-45deg);
}
.amviro-podcast-archive .indicator-neutral {
  background: #f19b03;
  border-radius: 3px;
}
@media (max-width: 1024px) {
  .amviro-podcast-archive .split-layout-30-70 {
    flex-direction: column;
    gap: 28px;
  }
  .amviro-podcast-archive .left-accent-col,
  .amviro-podcast-archive .right-content-col {
    width: 100%;
  }
  .amviro-podcast-archive .episodes-grid-layout {
    grid-template-columns: 1fr 1fr;
  }
  .amviro-podcast-archive .featured-episode-card {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
  .amviro-podcast-archive .main-title-heading {
    font-size: 56px;
  }
  .amviro-podcast-archive .semantic-split-line {
    font-size: 42px;
  }
}
@media (max-width: 640px) {
  .amviro-podcast-archive .hero-title-section {
    padding-top: 28px;
    padding-bottom: 56px;
  }
  .amviro-podcast-archive .hero-title-section::before {
    font-size: 140px;
    right: 16px;
  }
  .amviro-podcast-archive .episodes-grid-layout {
    grid-template-columns: 1fr;
  }
  .amviro-podcast-archive .featured-episode-card {
    grid-column: span 1;
  }
  .amviro-podcast-archive .main-title-heading {
    font-size: 42px;
  }
  .amviro-podcast-archive .semantic-split-line {
    font-size: 32px;
  }
  .amviro-podcast-archive .subtitle-description {
    font-size: 18px;
  }
  .amviro-podcast-archive .episode-card-wrapper {
    padding: 16px;
  }
  .amviro-podcast-archive .comparison-matrix-wrapper {
    padding: 16px;
    overflow-x: auto;
  }
  .amviro-podcast-archive .matrix-table {
    min-width: 500px;
  }
}
.amviro-podcast-archive ::selection {
  background: linear-gradient(90deg, #84020c 0%, #15ffb7 100%);
  color: #fff;
}
.amviro-podcast-archive input::placeholder,
.amviro-podcast-archive textarea::placeholder {
  transition: opacity 0.27s ease-in-out;
}
.amviro-podcast-archive input:focus::placeholder,
.amviro-podcast-archive textarea:focus::placeholder {
  opacity: 0;
}
.amviro-success-pg {
  background: linear-gradient(to bottom, #fff 0%, #f8f8f8 100%);
  min-height: 100vh;
  padding: 56px 16px;
}
.amviro-success-pg .success-wrapper {
  max-width: 1320px;
  margin: 0 auto;
}
.amviro-success-pg .confirmation-area {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 56px 28px;
  text-align: center;
  margin-bottom: 56px;
  box-shadow: 0 7px 28px 0 #84020c14;
}
.amviro-success-pg .status-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 28px;
  border: 4px solid #15ffb7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.amviro-success-pg .status-icon::before {
  content: "";
  width: 24px;
  height: 42px;
  border-right: 5px solid #15ffb7;
  border-bottom: 5px solid #15ffb7;
  transform: rotate(45deg);
  position: absolute;
  top: 14px;
}
.amviro-success-pg .confirmation-area h1 {
  font-size: 56px;
  line-height: 1.1;
  color: #84020c;
  margin: 0 0 16px;
  font-weight: 600;
}
.amviro-success-pg .confirmation-area .msg-primary {
  font-size: 22px;
  line-height: 1.35;
  color: #2a2a2a;
  margin: 0 0 28px;
}
.amviro-success-pg .confirmation-area .msg-secondary {
  font-size: 16px;
  line-height: 1.55;
  color: #666;
  max-width: 680px;
  margin: 0 auto;
}
.amviro-success-pg .info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 28px;
  margin-bottom: 56px;
}
.amviro-success-pg .info-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  padding: 28px;
  transition:
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.32s ease-in-out;
}
.amviro-success-pg .info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px 0 #84020c1f;
}
.amviro-success-pg .info-card h2 {
  font-size: 22px;
  line-height: 1.35;
  color: #84020c;
  margin: 0 0 16px;
  font-weight: 500;
}
.amviro-success-pg .info-card p {
  font-size: 16px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0;
}
.amviro-success-pg .info-card .detail-label {
  font-size: 16px;
  color: #888;
  margin: 0 0 4px;
}
.amviro-success-pg .info-card .detail-value {
  font-size: 22px;
  color: #2a2a2a;
  font-weight: 600;
  margin: 0 0 16px;
}
.amviro-success-pg .next-steps-section {
  background: linear-gradient(135deg, #84020c08 0%, #15ffb708 100%);
  border-radius: 12px;
  padding: 56px 28px;
  margin-bottom: 56px;
}
.amviro-success-pg .next-steps-section h2 {
  font-size: 28px;
  line-height: 1.35;
  color: #84020c;
  text-align: center;
  margin: 0 0 28px;
  font-weight: 500;
}
.amviro-success-pg .steps-list {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.amviro-success-pg .step-item {
  background: #fff;
  border-left: 4px solid #f19b03;
  padding: 16px 28px;
  border-radius: 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 1px 5px 0 #84020c14;
  transition: border-color 0.27s ease-in-out;
}
.amviro-success-pg .step-item:hover {
  border-left-color: #15ffb7;
}
.amviro-success-pg .step-number {
  width: 36px;
  height: 36px;
  background: #84020c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
}
.amviro-success-pg .step-content h3 {
  font-size: 16px;
  color: #2a2a2a;
  margin: 0 0 4px;
  font-weight: 600;
}
.amviro-success-pg .step-content p {
  font-size: 16px;
  line-height: 1.55;
  color: #666;
  margin: 0;
}
.amviro-success-pg .action-panel {
  background: #fff;
  border: 2px solid #84020c;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}
.amviro-success-pg .action-panel .panel-text h2 {
  font-size: 22px;
  line-height: 1.35;
  color: #84020c;
  margin: 0 0 8px;
  font-weight: 600;
}
.amviro-success-pg .action-panel .panel-text p {
  font-size: 16px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0;
}
.amviro-success-pg .action-panel .btn-group {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.amviro-success-pg .btn-primary-action {
  background: #84020c;
  color: #fff;
  border: none;
  padding: 16px 28px;
  font-size: 16px;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background-color 0.29s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.26s ease-in-out;
}
.amviro-success-pg .btn-primary-action:hover {
  background: #15ffb7;
  color: #2a2a2a;
  transform: scale(1.03);
}
.amviro-success-pg .btn-secondary-action {
  background: transparent;
  color: #84020c;
  border: 2px solid #84020c;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background-color 0.31s ease-in-out,
    color 0.31s ease-in-out;
}
.amviro-success-pg .btn-secondary-action:hover {
  background: #84020c;
  color: #fff;
}
.amviro-success-pg .contact-footer {
  text-align: center;
  padding: 28px 16px 0;
  border-top: 1px solid #e8e8e8;
  margin-top: 56px;
}
.amviro-success-pg .contact-footer h3 {
  font-size: 22px;
  line-height: 1.35;
  color: #2a2a2a;
  margin: 0 0 16px;
  font-weight: 500;
}
.amviro-success-pg .contact-details {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.amviro-success-pg .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #4a4a4a;
}
.amviro-success-pg .contact-item .icon-circle {
  width: 32px;
  height: 32px;
  background: #84020c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: background-color 0.33s ease-in-out;
}
.amviro-success-pg .contact-item:hover .icon-circle {
  background: #f19b03;
}
.amviro-success-pg .contact-item a {
  color: #84020c;
  text-decoration: none;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.amviro-success-pg .contact-item a:hover {
  color: #15ffb7;
}
@media (max-width: 1024px) {
  .amviro-success-pg .info-grid {
    grid-template-columns: 1fr 1fr;
  }
  .amviro-success-pg .action-panel {
    flex-direction: column;
    text-align: center;
  }
  .amviro-success-pg .action-panel .btn-group {
    flex-direction: column;
    width: 100%;
  }
  .amviro-success-pg .btn-primary-action,
  .amviro-success-pg .btn-secondary-action {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .amviro-success-pg {
    padding: 28px 16px;
  }
  .amviro-success-pg .confirmation-area {
    padding: 28px 16px;
    margin-bottom: 28px;
  }
  .amviro-success-pg .confirmation-area h1 {
    font-size: 28px;
  }
  .amviro-success-pg .info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 28px;
  }
  .amviro-success-pg .next-steps-section {
    padding: 28px 16px;
    margin-bottom: 28px;
  }
  .amviro-success-pg .step-item {
    flex-direction: column;
    padding: 16px;
  }
  .amviro-success-pg .action-panel {
    padding: 16px;
  }
  .amviro-success-pg .contact-details {
    flex-direction: column;
    gap: 16px;
  }
}
