/* =========================
   RESET
========================= */

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #101317;
}

a{
  color: inherit;
  text-decoration: none;
}


/* =========================
   LAYOUT
========================= */

.container{
  width: calc(100% - 300px);
  max-width: 1400px;
  margin: 0 auto;
}

.section{
  padding: 90px 0;
}

.section--dark{
  background: #121821;
  color: #ffffff;
}

.section--light{
  background: #ffffff;
  color: #101317;
}


/* =========================
   LAYOUT RESPONSIVE
========================= */

@media (max-width: 1200px){
  .container{
    width: calc(100% - 120px);
  }
}

@media (max-width: 980px){
  .container{
    width: min(100% - 32px, 720px);
  }

  .section{
    padding: 70px 0;
  }
}


/* =========================
   TYPOGRAPHY
========================= */

.text-accent{
  color: #008f68;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #008f68;
  border: 1px solid currentColor;
  margin: 0 0 22px;
}

.section-title{
  margin: 0;
  font-size: clamp(36px, 4vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.section-title--center,
.section-description--center{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-description{
  max-width: 760px;
  margin: 26px 0 0;
  font-size: 22px;
  line-height: 1.35;
  color: inherit;
  opacity: 0.78;
}


/* =========================
   BUTTONS & LINKS
========================= */

.btn,
.inline-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
}

.btn{
  min-height: 46px;
  padding: 0 28px;
}

.btn--primary{
  background: #008f68;
  color: #ffffff;
}

.btn--ghost{
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
}

.btn--light{
  background: #ffffff;
  color: #008f68;
}

.btn--footer{
  background: #008f68;
  color: #ffffff;
}

.inline-link{
  margin-top: 28px;
  color: #00c993;
  font-size: 20px;
}


/* =========================
   HEADER
========================= */

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #131924 0%, #171D27 55%, #293030 100%);
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0);
  transition:
    background 0.55s ease,
    backdrop-filter 0.55s ease,
    -webkit-backdrop-filter 0.55s ease,
    border-color 0.55s ease,
    box-shadow 0.55s ease;
  will-change: background, backdrop-filter;
}

.site-header.site-header--scrolled{
  background: linear-gradient(
    90deg,
    rgba(19,25,36,0.74) 0%,
    rgba(23,29,39,0.70) 55%,
    rgba(41,48,48,0.66) 100%
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.045);
  box-shadow: 0 8px 26px rgba(0,0,0,0.12);
}

.site-header__inner{
  width: calc(100% - 300px);
  max-width: 1400px;
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-header__brand{
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease,
    filter 0.28s ease;
  will-change: transform, filter;
}

.site-header__logo{
  display: block;
  height: 36px;
  width: auto;
  transition:
    transform 0.28s ease,
    filter 0.28s ease;
  will-change: transform, filter;
}

.site-header__brand:hover{
  transform: translateY(-2px);
  opacity: 1;
}

.site-header__brand:hover .site-header__logo{
  transform: scale(1.025);
  filter:
    drop-shadow(0 8px 18px rgba(0,0,0,0.22))
    drop-shadow(0 0 12px rgba(255,255,255,0.16));
}

.site-header__brand:active{
  transform: translateY(0) scale(0.99);
}

.site-header__nav{
  display: flex;
  align-items: center;
  gap: 52px;
  font-size: 14px;
  font-weight: 500;
  opacity: 1;
}

.site-header__nav a{
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.28s ease,
    color 0.28s ease,
    opacity 0.28s ease;
  will-change: transform;
}

.site-header__nav a::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #007F58 0%, #00E59E 100%);
  transform: translateX(-50%);
  opacity: 0;
  transition:
    width 0.28s ease,
    opacity 0.28s ease;
}

.site-header__nav a:hover{
  transform: translateY(-2px);
  color: #ffffff;
  opacity: 1;
}

.site-header__nav a:hover::after{
  width: 100%;
  opacity: 1;
}

.site-header__nav a:active{
  transform: translateY(0) scale(0.99);
}

.site-header__cta{
  height: 38px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 30px;
  background: #007F58;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    filter 0.28s ease,
    background 0.28s ease;
  will-change: transform, box-shadow, filter;
}

.site-header__cta:hover,
.site-header__cta:focus-visible{
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.24);
  filter: brightness(1.06);
  outline: none;
}

.site-header__cta:active{
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}


/* =========================
   HEADER RESPONSIVE
========================= */

@media (max-width: 1200px){
  .site-header__inner{
    width: calc(100% - 120px);
  }

  .site-header__nav{
    gap: 32px;
  }
}

@media (max-width: 980px){
  .site-header__inner{
    width: min(100% - 32px, 720px);
  }

  .site-header__nav{
    display: none;
  }

  .site-header__cta{
    transition:
      transform 0.28s ease,
      box-shadow 0.28s ease,
      filter 0.28s ease,
      background 0.28s ease;
  }

  .site-header__brand{
    transition:
      transform 0.28s ease,
      opacity 0.28s ease,
      filter 0.28s ease;
  }

  .site-header__brand:active{
    transform: translateY(0) scale(0.99);
    opacity: 0.92;
  }
}


/* =========================
   HERO
========================= */

.hero{
  min-height: 594px;
  display: flex;
  align-items: center;
  padding: 34px 0 72px;
  background: linear-gradient(90deg, #131924 0%, #171D27 55%, #293030 100%);
  color: #ffffff;
  overflow: hidden;
}

.hero__inner{
  display: grid;
  grid-template-columns: minmax(0, 508px) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.hero__content{
  max-width: 508px;
  position: relative;
  z-index: 5;
}

.hero__title{
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero__title-main,
.hero__title-accent{
  display: block;
  margin: 0;
  font-size: 36px;
  line-height: 47px;
  font-weight: 600;
  letter-spacing: 0;
}

.hero__title-main{
  background: linear-gradient(90deg, #999999 0%, #FFFFFF 78%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero__title-accent{
  background: linear-gradient(90deg, #007F58 0%, #00E59E 83%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero__subtitle{
  max-width: 508px;
  margin: 20px 0 0;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
}

.hero__actions{
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
  position: relative;
  z-index: 8;
}

.hero__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  height: 42px;
  padding: 0 22px;
  border-radius: 30px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  box-shadow: 0 6px 18px rgba(0,0,0,0.14);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    filter 0.28s ease,
    background 0.28s ease,
    opacity 0.2s ease;
  will-change: transform, box-shadow, filter;
}

.hero__btn:hover,
.hero__btn:focus-visible{
  opacity: 0.96;
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(0,0,0,0.24);
  filter: brightness(1.06);
  outline: none;
}

.hero__btn:active{
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.hero__btn--primary{
  background: #007F58;
  color: #ffffff;
  box-shadow:
    0 8px 20px rgba(0,127,88,0.16),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero__btn--primary:hover,
.hero__btn--primary:focus-visible{
  box-shadow:
    0 16px 38px rgba(0,0,0,0.24),
    0 0 24px rgba(0,229,158,0.16);
}

.hero__btn-icon{
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}


/* =========================
   HERO RESPONSIVE
========================= */

@media (max-width: 1200px){
  .hero__inner{
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero__content{
    max-width: 100%;
  }

  .hero__subtitle{
    max-width: 760px;
  }

  .hero__actions{
    flex-wrap: wrap;
  }
}

@media (max-width: 980px){
  .hero__btn{
    transition:
      transform 0.28s ease,
      box-shadow 0.28s ease,
      filter 0.28s ease,
      background 0.28s ease,
      opacity 0.2s ease;
  }

  .hero__inner{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px){
  .hero{
    min-height: auto;
    padding: 44px 0 48px;
  }

  .hero__inner{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .hero__content{
    display: contents;
    max-width: none;
  }

  .hero__title{
    order: 1;
    width: 100%;
  }

  .hero__title-main,
  .hero__title-accent{
    font-size: 32px;
    line-height: 1.2;
  }

  .hero__subtitle{
    order: 2;
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.5;
  }

  .hero__actions{
    order: 4;
    margin-top: 28px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero__btn{
    width: min(220px, 54vw);
    min-width: 0;
  }
}


/* =========================
   HERO ASK EXPAND
========================= */

.hero__ask{
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 9;
  flex: 0 0 auto;
}

.hero__ask-toggle{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: 42px;
  width: 154px;
  padding: 0 8px 0 22px;
  border: 0;
  border-radius: 30px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  color: #ffffff;
  background: linear-gradient(90deg, #007F58 0%, #0560AB 100%);
  box-shadow:
    0 8px 20px rgba(0,127,88,0.16),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transition:
    width 0.56s cubic-bezier(.16, 1, .3, 1),
    transform 0.34s ease,
    box-shadow 0.34s ease,
    filter 0.34s ease,
    background 0.34s ease;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.hero__ask-toggle:hover,
.hero__ask-toggle:focus-visible{
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 16px 38px rgba(0,0,0,0.24),
    0 0 24px rgba(0,229,158,0.16);
  outline: none;
}

.hero__ask-toggle:active{
  transform: translateY(-1px) scale(0.99);
}

.hero__ask.is-open .hero__ask-toggle{
  width: clamp(540px, 50vw, 780px);
  background: linear-gradient(90deg, #0560AB 0%, #087B91 44%, #007F58 100%);
}

.hero__ask-label{
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
  transition:
    transform 0.24s ease,
    opacity 0.18s ease;
}

.hero__ask.is-open .hero__ask-label{
  opacity: 0;
  transform: translateX(-8px);
  pointer-events: none;
}

.hero__ask-panel{
  position: absolute;
  left: 22px;
  right: 54px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.30s ease 0.16s,
    transform 0.34s cubic-bezier(.16, 1, .3, 1) 0.14s;
  min-width: 0;
}

.hero__ask.is-open .hero__ask-panel{
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.hero__ask-chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  max-width: 190px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.96);
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 0 0 auto;
}

.hero__ask-input{
  position: relative;
  min-width: 0;
  flex: 1 1 auto;
  height: 28px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__ask-typed{
  display: block;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  color: rgba(255,255,255,0.94);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0;
}

.hero__ask-caret{
  width: 1px;
  height: 17px;
  margin-left: 3px;
  background: rgba(255,255,255,0.88);
  animation: heroAskBlink 1s step-end infinite;
  flex: 0 0 auto;
}

@keyframes heroAskBlink{
  0%, 45%{
    opacity: 1;
  }

  46%, 100%{
    opacity: 0;
  }
}

.hero__ask-icon{
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 18px rgba(0,0,0,0.16),
    inset 0 1px 0 rgba(255,255,255,0.9);
  z-index: 3;
  flex: 0 0 auto;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.hero__ask-icon img{
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.hero__ask.is-open .hero__ask-icon{
  box-shadow:
    0 8px 22px rgba(0,0,0,0.18),
    0 0 18px rgba(255,255,255,0.20),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.hero__ask.is-open .hero__ask-toggle::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.04) 0%,
      rgba(255,255,255,0.00) 22%,
      rgba(255,255,255,0.07) 56%,
      rgba(255,255,255,0.00) 100%
    );
  pointer-events: none;
}


/* =========================
   HERO ASK EXPAND RESPONSIVE
========================= */

@media (max-width: 1200px){
  .hero__ask.is-open .hero__ask-toggle{
    width: min(680px, calc(100vw - 72px));
  }
}

@media (max-width: 767px){
  .hero__ask{
    width: min(220px, 54vw);
  }

  .hero__ask-toggle{
    width: 100%;
    min-width: 0;
    justify-content: center;
    padding: 0 46px;
  }

  .hero__ask-label{
    justify-content: center;
    text-align: center;
    font-size: 14px;
  }

  .hero__ask-icon{
    right: 5px;
  }

  .hero__ask.is-open{
    width: 100%;
  }

  .hero__ask.is-open .hero__ask-toggle{
    width: 100%;
    justify-content: flex-start;
    padding: 0 8px 0 22px;
  }

  .hero__ask.is-open .hero__ask-label{
    justify-content: flex-start;
    text-align: left;
  }

  .hero__ask-panel{
    left: 18px;
    right: 48px;
    gap: 10px;
  }

  .hero__ask-chip{
    display: none;
  }

  .hero__ask-typed{
    font-size: 13px;
  }
}


/* =========================
   HERO MAP / FLOW
========================= */

.hero__visual{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 420px;
  margin-right: -150px;
  position: relative;
  z-index: 1;
}

.hero__map-wrap{
  position: relative;
  width: min(980px, 72vw);
  max-width: none;
}

.hero__map{
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
  opacity: 0.96;
}

.hero__flow{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.hero__flow-path{
  fill: none;
  stroke: url(#heroFlowGradient);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 8 10;
  opacity: 0.82;
  filter: drop-shadow(0 0 8px rgba(0,229,158,0.55));
  animation: heroFlowDash 4.8s linear infinite;
}

.hero__flow-path-soft{
  fill: none;
  stroke: rgba(0,229,158,0.18);
  stroke-width: 9;
  stroke-linecap: round;
  opacity: 0.9;
  filter: blur(3px);
}

.hero__flow-node{
  fill: #00E59E;
  stroke: rgba(255,255,255,0.92);
  stroke-width: 2;
  filter: drop-shadow(0 0 10px rgba(0,229,158,0.75));
}

.hero__flow-node--ny{
  fill: #7FE7FF;
}

.hero__flow-pulse{
  fill: none;
  stroke: rgba(0,229,158,0.45);
  stroke-width: 2;
  transform-origin: center;
  animation: heroPulse 2.4s ease-out infinite;
}

.hero__flow-pulse--ny{
  stroke: rgba(127,231,255,0.45);
  animation-delay: 1.1s;
}

.hero__flow-packet{
  fill: #ffffff;
  filter:
    drop-shadow(0 0 10px rgba(255,255,255,0.95))
    drop-shadow(0 0 18px rgba(0,229,158,0.8));
  offset-path: path("M 678 268 C 606 198, 486 160, 318 198");
  offset-rotate: 0deg;
  animation: heroPacketMove 3.4s ease-in-out infinite;
}

.hero__flow-label{
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  fill: rgba(255,255,255,0.82);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.45));
}

@keyframes heroFlowDash{
  from{
    stroke-dashoffset: 0;
  }

  to{
    stroke-dashoffset: -72;
  }
}

@keyframes heroPulse{
  0%{
    r: 8;
    opacity: 0.9;
  }

  70%{
    r: 28;
    opacity: 0;
  }

  100%{
    r: 28;
    opacity: 0;
  }
}

@keyframes heroPacketMove{
  0%{
    offset-distance: 0%;
    opacity: 0;
  }

  10%{
    opacity: 1;
  }

  86%{
    opacity: 1;
  }

  100%{
    offset-distance: 100%;
    opacity: 0;
  }
}


/* =========================
   HERO MAP / FLOW RESPONSIVE
========================= */

@media (max-width: 1200px){
  .hero__visual{
    justify-content: center;
    min-height: auto;
    margin-right: 0;
  }

  .hero__map-wrap{
    width: min(100%, 720px);
  }
}

@media (max-width: 767px){
  .hero__visual{
    order: 3;
    width: 100%;
    margin-top: 30px;
    justify-content: center;
  }

  .hero__map-wrap{
    width: 100%;
  }

  .hero__flow-label{
    display: none;
  }
}
/* =========================
   TRUST
========================= */

.trust{
  padding: 78px 0 88px;
  background: #F7F7F5;
}

.trust__title{
  margin: 0;
  text-align: center;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0;
  color: #000000;
}

.trust__grid{
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.trust-card{
  position: relative;
  min-height: 250px;
  padding: 26px 32px 28px;
  border-radius: 40px;
  background: linear-gradient(180deg, #EEF4EC 0%, #E6F3EC 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  box-shadow: 0 6px 22px rgba(0,0,0,0.05);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease,
    filter 0.35s ease;
  will-change: transform, box-shadow, filter;
}

.trust-card::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(
      circle at 22% 18%,
      rgba(255,255,255,0.72),
      rgba(255,255,255,0) 34%
    );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.trust-card:hover,
.trust-card:focus-visible{
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.10);
  filter: brightness(1.01);
  outline: none;
}

.trust-card:hover::after,
.trust-card:focus-visible::after{
  opacity: 1;
}

.trust-card:active{
  transform: translateY(-2px) scale(0.997);
  box-shadow: 0 10px 26px rgba(0,0,0,0.10);
  filter: brightness(1.01);
}

.trust-card:active::after{
  opacity: 1;
}

.trust-card__icon-box{
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 18px;
  background: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.trust-card:hover .trust-card__icon-box,
.trust-card:focus-visible .trust-card__icon-box{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.trust-card:active .trust-card__icon-box{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.trust-card__icon{
  width: 60px;
  height: 60px;
  display: block;
  object-fit: contain;
}

.trust-card__label{
  margin: 0;
  font-size: 30px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
  color: #000000;
}

.trust-card__value{
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(0,0,0,0.82);
  max-width: 92%;
}


/* =========================
   TRUST RESPONSIVE
========================= */

@media (max-width: 1180px){
  .trust__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px){
  .trust-card{
    transition:
      transform 0.35s ease,
      box-shadow 0.35s ease,
      background 0.35s ease,
      filter 0.35s ease;
  }
}

@media (max-width: 767px){
  .trust{
    padding: 58px 0 64px;
  }

  .trust__title{
    font-size: 26px;
  }

  .trust__grid{
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trust-card{
    min-height: auto;
    padding: 22px 22px 24px;
    border-radius: 28px;
  }

  .trust-card__icon-box{
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 16px;
    margin-bottom: 20px;
  }

  .trust-card__icon{
    width: 60px;
    height: 60px;
  }

  .trust-card__label{
    font-size: 26px;
  }

  .trust-card__value{
    margin-top: 14px;
    font-size: 17px;
    max-width: 100%;
  }
}
/* =========================
   PROBLEM
========================= */

.problem{
  position: relative;
  padding: 84px 0 86px;
  background: linear-gradient(90deg, #091320 0%, #0A1422 56%, #142231 100%);
  color: #ffffff;
  overflow: hidden;
}

.problem::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 88% 44%,
      rgba(255,255,255,0.055) 0%,
      rgba(255,255,255,0) 38%
    );
}

.problem__inner{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 82px;
  align-items: start;
}

.problem__content{
  max-width: 680px;
  padding-top: 36px;
}

.problem__title{
  margin: 0;
  max-width: 680px;
  font-size: 30px;
  line-height: 1.16;
  font-weight: 500;
  letter-spacing: 0;
  background: linear-gradient(90deg, #999999 0%, #FFFFFF 76%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.problem__description{
  margin: 30px 0 0;
  max-width: 610px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(255,255,255,0.92);
}

.problem__cta{
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 28px;
  border-radius: 999px;
  background: #007F58;
  color: #FFFFFF;
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow:
    0 8px 20px rgba(0,127,88,0.16),
    inset 0 1px 0 rgba(255,255,255,0.08);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    filter 0.28s ease,
    background-color 0.28s ease;
  will-change: transform, box-shadow, filter;
}

.problem__cta:hover,
.problem__cta:focus-visible{
  transform: translateY(-3px);
  box-shadow:
    0 16px 38px rgba(0,0,0,0.24),
    0 0 24px rgba(0,229,158,0.16);
  filter: brightness(1.06);
  outline: none;
}

.problem__cta:active{
  transform: translateY(-1px) scale(0.99);
  box-shadow:
    0 8px 20px rgba(0,0,0,0.18),
    0 0 16px rgba(0,229,158,0.12);
  filter: brightness(1.04);
}

.problem__list{
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 10px;
  max-width: 760px;
}

.problem-row{
  position: relative;
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 18px 16px;
  margin-left: -18px;
  border-radius: 20px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition:
    transform 0.30s ease,
    box-shadow 0.30s ease,
    background 0.30s ease,
    border-color 0.30s ease;
}

.problem-row::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.055) 0%,
      rgba(255,255,255,0.018) 55%,
      rgba(0,229,158,0.055) 100%
    );
  border: 1px solid rgba(255,255,255,0.075);
  opacity: 0;
  transition: opacity 0.30s ease;
  pointer-events: none;
}

.problem-row:hover,
.problem-row:focus-visible{
  transform: translateY(-4px);
  box-shadow:
    0 18px 42px rgba(0,0,0,0.18),
    0 0 28px rgba(0,229,158,0.055);
  outline: none;
}

.problem-row:hover::before,
.problem-row:focus-visible::before{
  opacity: 1;
}

.problem-row:active{
  transform: translateY(-2px) scale(0.998);
  box-shadow:
    0 14px 34px rgba(0,0,0,0.18),
    0 0 24px rgba(0,229,158,0.055);
}

.problem-row:active::before{
  opacity: 1;
}

.problem-row__dot{
  position: relative;
  z-index: 1;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: #00B884;
  opacity: 1;
  box-shadow:
    0 0 0 4px rgba(0,184,132,0.08),
    0 0 12px rgba(0,184,132,0.18);
  transition:
    transform 0.30s ease,
    box-shadow 0.30s ease,
    background 0.30s ease,
    opacity 0.30s ease;
}

.problem-row:hover .problem-row__dot,
.problem-row:focus-visible .problem-row__dot,
.problem-row:active .problem-row__dot{
  opacity: 1;
  background: #00E59E;
  transform: scale(1.12);
  box-shadow:
    0 0 0 5px rgba(0,229,158,0.12),
    0 0 18px rgba(0,229,158,0.42);
}

.problem-row__content{
  position: relative;
  z-index: 1;
  min-width: 0;
  transition:
    transform 0.30s ease,
    filter 0.30s ease;
}

.problem-row:hover .problem-row__content,
.problem-row:focus-visible .problem-row__content,
.problem-row:active .problem-row__content{
  transform: translateY(-2px);
}

.problem-row__label{
  margin: 0;
  font-size: 16px;
  line-height: 1.24;
  font-weight: 500;
  letter-spacing: 0;
  color: #FFFFFF;
  transition:
    color 0.30s ease,
    opacity 0.30s ease,
    transform 0.30s ease;
}

.problem-row__value{
  margin: 7px 0 0;
  font-size: 13px;
  line-height: 1.38;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(255,255,255,0.72);
  transition:
    color 0.30s ease,
    opacity 0.30s ease,
    transform 0.30s ease;
}

.problem-row:hover .problem-row__value,
.problem-row:focus-visible .problem-row__value,
.problem-row:active .problem-row__value{
  color: rgba(255,255,255,0.86);
}


/* =========================
   PROBLEM RESPONSIVE
========================= */

@media (max-width: 1180px){
  .problem__inner{
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .problem__content{
    max-width: 100%;
    padding-top: 0;
  }

  .problem__title{
    max-width: 760px;
  }

  .problem__description{
    max-width: 680px;
  }

  .problem__list{
    max-width: 760px;
    padding-top: 0;
  }
}

@media (max-width: 980px){
  .problem__inner{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px){
  .problem{
    padding: 58px 0 66px;
  }

  .problem__inner{
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .problem__content{
    display: contents;
  }

  .problem__title{
    order: 1;
    max-width: 100%;
    font-size: 26px;
    line-height: 1.18;
  }

  .problem__description{
    order: 2;
    max-width: 100%;
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.5;
  }

  .problem__list{
    order: 3;
    margin-top: 34px;
    max-width: 100%;
    gap: 15px;
  }

  .problem__cta{
    order: 4;
    width: fit-content;
    margin-top: 34px;
    min-height: 42px;
    padding: 0 22px;
    font-size: 14px;
  }

  .problem-row{
    gap: 12px;
    padding: 14px 14px 15px;
    margin-left: -14px;
    border-radius: 18px;
  }

  .problem-row__label{
    font-size: 15px;
  }

  .problem-row__value{
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.42;
  }
}
/* =========================
   SOLUTION
========================= */

.solution{
  position: relative;
  padding: 92px 0 132px;
  background: #F7F7F5;
  overflow: hidden;
  isolation: isolate;
}

.solution::before{
  content: "";
  position: absolute;
  top: -230px;
  left: -235px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    circle,
    rgba(0, 168, 116, 0.18) 0%,
    rgba(0, 168, 116, 0.10) 30%,
    rgba(157, 211, 255, 0.08) 54%,
    rgba(157, 211, 255, 0) 76%
  );
}

.solution__inner{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 92px;
  align-items: center;
}

.solution__content{
  max-width: 560px;
}

.solution__eyebrow{
  margin: 0 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 14px;
  border-radius: 999px;
  background: #007F58;
  color: #FFFFFF;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.solution__title{
  margin: 0;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: 0;
  color: #000000;
}

.solution__title-main,
.solution__title-accent{
  display: block;
}

.solution__title-accent{
  color: #3B7F5C;
}

.solution__description{
  margin: 30px 0 0;
  max-width: 520px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(0,0,0,0.82);
}

.solution__points{
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}

.solution__points li{
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(0,0,0,0.88);
}

.solution__points li::before{
  content: "вњ“";
  position: absolute;
  left: 0;
  top: 0;
  color: #3FA06E;
  font-weight: 600;
}


/* =========================
   SOLUTION RESPONSIVE
========================= */

@media (max-width: 1180px){
  .solution__inner{
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .solution__content{
    max-width: 100%;
  }

  .solution__description{
    max-width: 620px;
  }
}

@media (max-width: 980px){
  .solution__inner{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px){
  .solution{
    padding: 62px 0 72px;
  }

  .solution::before{
    top: -120px;
    left: -150px;
    width: 430px;
    height: 430px;
  }

  .solution__inner{
    gap: 42px;
  }

  .solution__eyebrow{
    margin-bottom: 20px;
  }

  .solution__title{
    font-size: 34px;
    line-height: 1.14;
  }

  .solution__description{
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.5;
  }

  .solution__points{
    margin-top: 28px;
    gap: 6px;
  }

  .solution__points li{
    font-size: 14px;
    line-height: 1.45;
  }
}


/* =========================
   SOLUTION
========================= */

.solution{
  position: relative;
  padding: 92px 0 132px;
  background: #F7F7F5;
  overflow: hidden;
  isolation: isolate;
}

.solution::before{
  content: "";
  position: absolute;
  top: -230px;
  left: -235px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    circle,
    rgba(0, 168, 116, 0.18) 0%,
    rgba(0, 168, 116, 0.10) 30%,
    rgba(157, 211, 255, 0.08) 54%,
    rgba(157, 211, 255, 0) 76%
  );
}

.solution__inner{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 92px;
  align-items: center;
}

.solution__content{
  max-width: 560px;
}

.solution__eyebrow{
  margin: 0 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 14px;
  border-radius: 999px;
  background: #007F58;
  color: #FFFFFF;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.solution__title{
  margin: 0;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: 0;
  color: #000000;
}

.solution__title-main,
.solution__title-accent{
  display: block;
}

.solution__title-accent{
  color: #3B7F5C;
}

.solution__description{
  margin: 30px 0 0;
  max-width: 520px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(0,0,0,0.82);
}

.solution__points{
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}

.solution__points li{
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(0,0,0,0.88);
}

.solution__points li::before{
  content: "";
  position: absolute;
  left: 1px;
  top: 2px;
  width: 6px;
  height: 10px;
  border-right: 2px solid #3FA06E;
  border-bottom: 2px solid #3FA06E;
  transform: rotate(45deg);
  border-radius: 1px;
}


/* =========================
   SOLUTION RESPONSIVE
========================= */

@media (max-width: 1180px){
  .solution__inner{
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .solution__content{
    max-width: 100%;
  }

  .solution__description{
    max-width: 620px;
  }
}

@media (max-width: 767px){
  .solution{
    padding: 62px 0 72px;
  }

  .solution::before{
    top: -120px;
    left: -150px;
    width: 430px;
    height: 430px;
  }

  .solution__inner{
    gap: 42px;
  }

  .solution__eyebrow{
    margin-bottom: 20px;
  }

  .solution__title{
    font-size: 34px;
    line-height: 1.14;
  }

  .solution__description{
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.5;
  }

  .solution__points{
    margin-top: 28px;
    gap: 6px;
  }

  .solution__points li{
    font-size: 14px;
    line-height: 1.45;
  }

  .solution__points li::before{
    top: 2px;
    width: 6px;
    height: 10px;
  }
}


/* =========================
   SOLUTION VISUAL
========================= */

.solution-visual{
  display: flex;
  justify-content: center;
  align-items: center;
}

.solution-visual__canvas{
  position: relative;
  width: 100%;
  max-width: 720px;
  min-height: 460px;
  transform: translateY(42px);
}

.solution-visual__canvas::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 246px;
  width: 1px;
  height: 82px;
  background: linear-gradient(
    180deg,
    rgba(16,18,20,0.13) 0%,
    rgba(16,18,20,0.07) 100%
  );
  transform: translateX(-50%);
  z-index: 1;
}

.solution-visual__canvas::after{
  content: "";
  position: absolute;
  right: -105px;
  top: 96px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    circle,
    rgba(0, 168, 116, 0.13) 0%,
    rgba(157, 211, 191, 0.075) 34%,
    rgba(157, 211, 191, 0.035) 56%,
    rgba(157, 211, 191, 0) 74%
  );
}

.solution-visual__inputs{
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 2;
}

.solution-visual__input{
  position: absolute;
  min-width: 70px;
  text-align: center;
}

.solution-visual__input-label{
  position: relative;
  z-index: 2;
  display: inline-block;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
  color: #101214;
  white-space: nowrap;
}

.solution-visual__input-line{
  position: absolute;
  top: 38px;
  left: 50%;
  width: 1px;
  background: rgba(16,18,20,0.16);
  transform-origin: top center;
}

.solution-visual__input--1{
  top: 0;
  left: 8%;
}

.solution-visual__input--1 .solution-visual__input-line{
  height: 82px;
  transform: translateX(-50%) rotate(-33deg);
}

.solution-visual__input--2{
  top: 48px;
  left: 22%;
}

.solution-visual__input--2 .solution-visual__input-line{
  height: 54px;
  transform: translateX(-50%) rotate(-29deg);
}

.solution-visual__input--3{
  top: 0;
  left: 43%;
}

.solution-visual__input--3 .solution-visual__input-line{
  height: 70px;
  transform: translateX(-50%) rotate(0deg);
}

.solution-visual__input--4{
  top: 48px;
  left: 58%;
}

.solution-visual__input--4 .solution-visual__input-line{
  height: 54px;
  transform: translateX(-50%) rotate(29deg);
}

.solution-visual__input--5{
  top: 0;
  right: 7%;
}

.solution-visual__input--5 .solution-visual__input-line{
  height: 82px;
  transform: translateX(-50%) rotate(33deg);
}

.solution-visual__layer-wrap{
  position: absolute;
  top: 188px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.solution-visual__layer{
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  background: #EAF3EE;
  border: 1px solid rgba(72,157,116,0.72);
  box-shadow:
    0 8px 18px rgba(63,134,95,0.045),
    inset 0 1px 0 rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
  color: #101214;
  text-align: center;
  white-space: nowrap;
}

.solution-visual__layer::before,
.solution-visual__layer::after{
  display: none;
  content: none;
}

.solution-visual__outputs{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 54px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
  z-index: 2;
}

.solution-visual__output{
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 36px;
}

.solution-visual__output-line{
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 26px;
  background: rgba(16,18,20,0.14);
  transform: translateX(-50%);
}

.solution-visual__output-pill{
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 22px;
  border-radius: 999px;
  background: #F8FBF9;
  border: 1px solid rgba(74,157,116,0.72);
  box-shadow:
    0 8px 18px rgba(63,134,95,0.05),
    inset 0 1px 0 rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
  color: #101214;
  white-space: nowrap;
}


/* =========================
   SOLUTION VISUAL RESPONSIVE
========================= */

@media (max-width: 1180px){
  .solution-visual{
    justify-content: flex-start;
  }

  .solution-visual__canvas{
    max-width: 760px;
    transform: none;
  }
}

@media (max-width: 767px){
  .solution-visual__canvas{
    min-height: 430px;
    transform: none;
  }

  .solution-visual__canvas::before{
    top: 216px;
    height: 76px;
  }

  .solution-visual__canvas::after{
    width: 360px;
    height: 360px;
    right: -140px;
    top: 70px;
  }

  .solution-visual__inputs{
    top: 24px;
    height: 128px;
  }

  .solution-visual__input-label{
    font-size: 13px;
  }

  .solution-visual__input--1{
    left: 0;
  }

  .solution-visual__input--2{
    left: 14%;
  }

  .solution-visual__input--3{
    left: 40%;
  }

  .solution-visual__input--4{
    left: 59%;
  }

  .solution-visual__input--5{
    right: 0;
  }

  .solution-visual__layer-wrap{
    top: 166px;
  }

  .solution-visual__layer{
    min-height: 56px;
    padding: 0 20px;
    max-width: 100%;
    text-align: center;
    white-space: normal;
    font-size: 14px;
    line-height: 1.25;
  }

  .solution-visual__outputs{
    bottom: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 12px;
  }

  .solution-visual__output{
    padding-top: 34px;
  }

  .solution-visual__output-line{
    height: 24px;
  }

  .solution-visual__output-pill{
    min-height: 34px;
    padding: 0 18px;
    font-size: 13px;
  }
}

/* =========================
   WORKFLOW
========================= */

.workflow{
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #09101A 0%, #0B1320 46%, #09101A 100%);
  color: #FFFFFF;
}

.workflow__inner{
  position: relative;
  z-index: 2;
  padding: 50px 0 68px;
}

.workflow__intro{
  max-width: 920px;
}

.workflow .eyebrow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0 12px;
  margin: 0 0 18px;
  border: 1px solid rgba(255,255,255,0.92);
  border-radius: 999px;
  color: #FFFFFF;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.workflow .section-title{
  margin: 0 0 22px;
  max-width: 760px;
  font-size: 30px;
  line-height: 1.22;
  font-weight: 500;
  letter-spacing: 0;
  background: linear-gradient(90deg, #999999 0%, #CFCFCF 44%, #FFFFFF 77%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.workflow .section-description{
  margin: 0 0 24px;
  max-width: 720px;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  line-height: 1.42;
  font-weight: 400;
  letter-spacing: 0;
}

.workflow .inline-link{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0;
  background: linear-gradient(90deg, #00A874 5%, #87D6BD 58%, #FFFFFF 88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.workflow .inline-link::after{
  content: "";
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  transform: rotate(45deg);
  margin-top: 1px;
}

.workflow .inline-link:hover{
  opacity: 0.92;
  transform: translateX(2px);
}

.workflow__steps{
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.workflow-card{
  position: relative;
  min-height: 240px;
  padding: 34px 12px 0;
  border: none;
  background: transparent;
  border-radius: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  isolation: isolate;
}

.workflow-card > *{
  position: relative;
  z-index: 3;
}

.workflow-card__number{
  display: block;
  margin: 0 0 8px;
  color: #00A874;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}

.workflow-card__title{
  margin: 0 0 10px;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: 0;
}

.workflow-card__description{
  margin: 0 auto;
  max-width: 210px;
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  line-height: 1.34;
  font-weight: 400;
  letter-spacing: 0;
}

/* base subtle circle */
.workflow-card::before{
  content: "";
  position: absolute;
  left: 50%;
  top: calc(50% - 24px);
  width: 236px;
  height: 236px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  border: 3px solid rgba(255,255,255,0.035);
  box-shadow: 0 0 38px rgba(0,168,116,0.055);
  background: transparent;
  animation: workflow-ring-active 10s linear infinite;
}

/* rotating luminous segment */
.workflow-card::after{
  content: "";
  position: absolute;
  left: 50%;
  top: calc(50% - 24px);
  width: 236px;
  height: 236px;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  z-index: 2;
  pointer-events: none;
  opacity: 0;

  background: conic-gradient(
    from 0deg,
    rgba(0,168,116,0.00) 0deg,
    rgba(0,168,116,0.00) 205deg,
    rgba(0,168,116,0.12) 230deg,
    rgba(0,168,116,0.42) 258deg,
    rgba(0,168,116,0.82) 286deg,
    rgba(135,214,189,0.98) 314deg,
    rgba(255,255,255,0.92) 328deg,
    rgba(135,214,189,0.86) 342deg,
    rgba(0,168,116,0.50) 354deg,
    rgba(0,168,116,0.00) 360deg
  );

  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 4px),
    #000 calc(100% - 3px)
  );
  mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 4px),
    #000 calc(100% - 3px)
  );

  filter: drop-shadow(0 0 14px rgba(0,168,116,0.18));

  animation:
    workflow-ring-spin 1.55s linear infinite,
    workflow-ring-active 10s linear infinite;
}

/* sequential: 1 → 2 → 3 → 4 → 5 */
.workflow-card:nth-child(1)::before{ animation-delay: 0s; }
.workflow-card:nth-child(1)::after{ animation-delay: 0s, 0s; }

.workflow-card:nth-child(2)::before{ animation-delay: 2s; }
.workflow-card:nth-child(2)::after{ animation-delay: 0s, 2s; }

.workflow-card:nth-child(3)::before{ animation-delay: 4s; }
.workflow-card:nth-child(3)::after{ animation-delay: 0s, 4s; }

.workflow-card:nth-child(4)::before{ animation-delay: 6s; }
.workflow-card:nth-child(4)::after{ animation-delay: 0s, 6s; }

.workflow-card:nth-child(5)::before{ animation-delay: 8s; }
.workflow-card:nth-child(5)::after{ animation-delay: 0s, 8s; }

@keyframes workflow-ring-spin{
  from{
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to{
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes workflow-ring-active{
  0%{
    opacity: 0;
  }
  2%{
    opacity: 1;
  }
  17%{
    opacity: 1;
  }
  20%{
    opacity: 0;
  }
  100%{
    opacity: 0;
  }
}


/* =========================
   WORKFLOW RESPONSIVE
========================= */

@media (max-width: 1280px){
  .workflow__steps{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 34px;
  }
}

@media (max-width: 980px){
  .workflow__inner{
    padding: 48px 0 68px;
  }

  .workflow .section-title{
    font-size: 26px;
    max-width: 100%;
  }

  .workflow .section-description{
    max-width: 100%;
  }

  .workflow__steps{
    margin-top: 64px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 16px;
  }

  .workflow-card{
    min-height: 240px;
    padding-top: 34px;
  }

  .workflow-card::before,
  .workflow-card::after{
    width: 210px;
    height: 210px;
  }

  .workflow .inline-link{
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .workflow .inline-link:focus-visible{
    opacity: 0.92;
    transform: translateX(2px);
    outline: none;
  }

  .workflow .inline-link:active{
    opacity: 0.92;
    transform: translateX(2px) scale(0.99);
  }
}

@media (max-width: 640px){
  .workflow .section-title{
    font-size: 22px;
    line-height: 1.22;
  }

  .workflow .section-description{
    font-size: 14px;
  }

  .workflow__steps{
    grid-template-columns: 1fr;
  }

  .workflow-card{
    min-height: 220px;
    padding-top: 30px;
  }

  .workflow-card::before,
  .workflow-card::after{
    width: 216px;
    height: 216px;
  }
}
/* =========================
   WHY SFTY
========================= */

.why-sfty{
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
}

.why-sfty .container{
  position: relative;
  z-index: 2;
}

.why-sfty::before{
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,168,116,0.18) 0%, rgba(0,168,116,0) 72%);
  pointer-events: none;
  z-index: 1;
}

.why-sfty::after{
  content: "";
  position: absolute;
  left: -180px;
  bottom: -180px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157,211,255,0.26) 0%, rgba(157,211,255,0) 74%);
  pointer-events: none;
  z-index: 1;
}

.why-sfty .section-title{
  margin: 0 auto;
  max-width: 920px;
  text-align: center;
  font-size: 30px;
  line-height: 1.16;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #101317;
}

.why-sfty .section-description{
  margin: 16px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  color: #4B5563;
}

.why-sfty__grid{
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.why-card{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 390px;
  padding: 34px 28px 34px;
  border-radius: 20px;
  background: #F9F9F9;
  border: none;
  box-shadow:
    0 18px 42px rgba(16,19,23,0.045),
    0 3px 12px rgba(16,19,23,0.025);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.why-card:hover{
  transform: translateY(-4px);
  box-shadow:
    0 22px 46px rgba(16,19,23,0.08),
    0 6px 18px rgba(16,19,23,0.05);
}

.why-card__icon-wrap{
  width: 64px;
  height: 64px;
  border-radius: 40px;
  background: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 24px rgba(16,19,23,0.05),
    inset 0 1px 0 rgba(255,255,255,0.9);
  flex: 0 0 auto;
}

.why-card__icon{
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.why-card__title{
  margin: 28px 0 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #111111;
}

.why-card__divider{
  display: block;
  width: 100%;
  height: 0;
  margin: 18px 0 18px;
  border-top: 0.5px solid #A0A0A0;
  opacity: 0.9;
}

.why-card__text{
  margin: 0;
  font-size: 16px;
  line-height: 1.32;
  font-weight: 400;
  color: #1B1F23;
}


/* =========================
   WHY SFTY RESPONSIVE
========================= */

@media (max-width: 980px){
  .why-sfty__grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1199px){
  .why-sfty__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-card{
    min-height: 290px;
  }
}

@media (max-width: 767px){
  .why-sfty .section-title{
    font-size: 26px;
  }

  .why-sfty .section-description{
    font-size: 14px;
  }

  .why-sfty__grid{
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }

  .why-card{
    min-height: auto;
    padding: 20px 18px 22px;
    border-radius: 18px;
  }

  .why-card__icon-wrap{
    width: 58px;
    height: 58px;
  }

  .why-card__icon{
    width: 28px;
    height: 28px;
  }

  .why-card__title{
    margin-top: 22px;
    font-size: 18px;
  }

  .why-card__text{
    font-size: 18px;
  }
}

/* =========================
   AUTHORITY
========================= */
.authority{
  position: relative;
  padding: 112px 0 210px;
  overflow: hidden;
  color: #FFFFFF;
  background: linear-gradient(
    90deg,
    #161B23 0%,
    #161B23 70%,
    #313F55 100%
  );
}

.authority::before{
  display: none;
  content: none;
}

.authority::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: #FFFFFF;
  z-index: 1;
}

.authority__inner{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 92px;
  align-items: center;
}

.authority__content{
  max-width: 620px;
}

.authority__eyebrow{
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 14px;
  border-radius: 999px;
  background: #007F58;
  color: #FFFFFF;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.authority__title{
  margin: 0;
  max-width: 590px;
  font-size: 36px;
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: 0;
  background: linear-gradient(90deg, #999999 0%, #D6D6D6 56%, #FFFFFF 88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.authority__description{
  margin: 28px 0 0;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.42;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(255,255,255,0.86);
}

.authority__link{
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  background: linear-gradient(90deg, #00A874 0%, #87D6BD 58%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  transition:
    transform 0.26s ease,
    opacity 0.26s ease,
    filter 0.26s ease;
}

.authority__link::after{
  content: "";
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  transform: rotate(45deg);
  margin-top: 1px;
}

.authority__link:hover,
.authority__link:focus-visible{
  transform: translateX(3px);
  opacity: 0.94;
  filter: brightness(1.04);
  outline: none;
}

.authority__link:active{
  transform: translateX(3px) scale(0.99);
  opacity: 0.94;
  filter: brightness(1.04);
}

.authority__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 18px;
}

.authority-card{
  position: relative;
  min-height: 128px;
  padding: 24px 28px 24px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.035);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition:
    transform 0.30s ease,
    box-shadow 0.30s ease,
    filter 0.30s ease,
    border-color 0.30s ease;
  will-change: transform, box-shadow, filter;
}

/* две левые плашки — ровный цвет */
.authority-card--1,
.authority-card--3{
  background: #2F3C50;
}

/* две правые плашки — градиент, темнее справа */
.authority-card--2,
.authority-card--4{
  background: linear-gradient(90deg, #2F3C50 0%, #273344 48%, #171C24 100%);
}

.authority-card::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 20% 18%,
      rgba(255,255,255,0.06) 0%,
      rgba(255,255,255,0) 38%
    );
  opacity: 0;
  transition: opacity 0.30s ease;
}

.authority-card:hover,
.authority-card:focus-visible{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.075);
  box-shadow:
    0 20px 46px rgba(0,0,0,0.22),
    0 0 28px rgba(0,168,116,0.045);
  filter: brightness(1.035);
  outline: none;
}

.authority-card:hover::before,
.authority-card:focus-visible::before{
  opacity: 1;
}

.authority-card:active{
  transform: translateY(-2px) scale(0.998);
  border-color: rgba(255,255,255,0.075);
  box-shadow:
    0 20px 46px rgba(0,0,0,0.22),
    0 0 28px rgba(0,168,116,0.045);
  filter: brightness(1.035);
}

.authority-card:active::before{
  opacity: 1;
}

.authority-card__title{
  position: relative;
  z-index: 1;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0;
}

.authority-card__title::after{
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-top: 2px solid rgba(255,255,255,0.92);
  border-right: 2px solid rgba(255,255,255,0.92);
  transform: rotate(45deg);
  margin-top: 1px;
  transition: transform 0.26s ease;
}

.authority-card:hover .authority-card__title::after,
.authority-card:focus-visible .authority-card__title::after,
.authority-card:active .authority-card__title::after{
  transform: translateX(3px) rotate(45deg);
}

.authority-card__text{
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  max-width: 94%;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  line-height: 1.36;
  font-weight: 400;
  letter-spacing: 0;
}


/* =========================
   AUTHORITY RESPONSIVE
========================= */

@media (max-width: 980px){
  .authority__inner,
  .authority__grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px){
  .authority__inner{
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .authority__content{
    max-width: 760px;
  }

  .authority__title{
    max-width: 720px;
  }

  .authority__description{
    max-width: 620px;
  }

  .authority__grid{
    max-width: 760px;
  }
}

@media (max-width: 767px){
  .authority{
    padding: 62px 0 130px;
  }

  .authority__inner{
    gap: 36px;
  }

  .authority__title{
    font-size: 30px;
    line-height: 1.18;
  }

  .authority__description{
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.45;
  }

  .authority__link{
    margin-top: 24px;
    font-size: 15px;
  }

  .authority__grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .authority-card{
    min-height: 118px;
    padding: 22px 22px 22px;
  }
}
/* =========================
   ASK SFTY
========================= */

.ask-sfty{
  position: relative;
  padding: 200px 0 112px;
  overflow: hidden;
  color: #FFFFFF;
  background: #101722;
}

.ask-sfty__inner{
  text-align: center;
  position: relative;
  z-index: 2;
}

.ask-sfty__title{
  margin: 0 0 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 10px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0;
  color: #FFFFFF;
}

.ask-sfty__title-accent{
  background: linear-gradient(90deg, #007F58 0%, #00E59E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.ask-sfty__bar{
  max-width: 1040px;
  min-height: 62px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2F3B4F 0%, #202732 100%);
  box-shadow:
    0 12px 32px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.04);
  text-align: left;
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    filter 0.26s ease;
}

.ask-sfty__bar:hover,
.ask-sfty__bar:focus-within{
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    0 18px 42px rgba(0,0,0,0.24),
    0 0 22px rgba(0,229,158,0.055),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.ask-sfty__icon{
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  opacity: 0.72;
  background: url("/img/ask_sfty/ask-icon.png") center/contain no-repeat;
}

.ask-sfty__inline-chip{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: #293243;
  color: rgba(255,255,255,0.80);
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
}

.ask-sfty__inline-chip[hidden]{
  display: none !important;
}

.ask-sfty__input{
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: rgba(255,255,255,0.80);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  padding: 0;
}

.ask-sfty__input::placeholder{
  color: rgba(255,255,255,0.80);
}

.ask-sfty__mic{
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.ask-sfty__mic img{
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: 0.70;
}

.ask-sfty--listening .ask-sfty__mic img{
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(0,229,158,0.45));
}

.ask-sfty--listening .ask-sfty__inline-chip{
  background: linear-gradient(90deg, #007F58 0%, #00E59E 100%);
  color: #FFFFFF;
}

.ask-sfty__chips{
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ask-sfty__chips button{
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  background: #293243;
  color: rgba(255,255,255,0.80);
  font-family: inherit;
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.ask-sfty__chips button:hover,
.ask-sfty__chips button:focus-visible{
  transform: translateY(-1px);
  background: #32405A;
  color: #FFFFFF;
  outline: none;
}

.ask-sfty__chips button:active{
  transform: translateY(0) scale(0.99);
  background: #32405A;
  color: #FFFFFF;
}

.ask-sfty__chips button.is-active{
  background: #344463;
  color: #FFFFFF;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.ask-sfty__helper{
  margin: 82px 0 0;
  font-size: 10px;
  line-height: 1.4;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}


/* =========================
   ASK SFTY RESPONSIVE
========================= */

@media (max-width: 991px){
  .ask-sfty{
    padding: 92px 0 96px;
  }

  .ask-sfty__title{
    font-size: 30px;
    margin-bottom: 28px;
  }

  .ask-sfty__bar{
    min-height: 58px;
    padding: 10px 16px;
  }

  .ask-sfty__helper{
    margin-top: 110px;
  }
}

@media (max-width: 767px){
  .ask-sfty{
    padding: 76px 0 84px;
  }

  .ask-sfty__title{
    font-size: 26px;
    line-height: 1.22;
    gap: 0 8px;
    margin-bottom: 24px;
  }

  .ask-sfty__bar{
  min-height: 56px;
  padding: 9px 14px 9px 20px;
  gap: 10px;
}

  .ask-sfty__bar:active{
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow:
      0 18px 42px rgba(0,0,0,0.24),
      0 0 22px rgba(0,229,158,0.055),
      inset 0 1px 0 rgba(255,255,255,0.06);
  }

  .ask-sfty__inline-chip{
    display: none !important;
  }

  .ask-sfty__input{
    font-size: 15px;
  }

  .ask-sfty__chips{
    gap: 10px;
  }

  .ask-sfty__chips button{
    padding: 9px 14px;
    font-size: 12px;
  }

  .ask-sfty__helper{
    margin-top: 84px;
    font-size: 10px;
  }
}
/* =========================
   FAQ
========================= */

.faq{
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  color: #111111;
}

.faq::before{
  content: "";
  position: absolute;
  top: -170px;
  left: -170px;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0,168,116,0.18) 0%,
    rgba(157,211,255,0.18) 36%,
    rgba(255,255,255,0) 72%
  );
  pointer-events: none;
  z-index: 1;
}

.faq__inner{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 90px;
  align-items: start;
}

.faq__intro{
  max-width: 620px;
}

.faq__eyebrow{
  margin: 0 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 14px;
  border-radius: 999px;
  background: #007F58;
  color: #FFFFFF;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.faq__title{
  margin: 0;
  max-width: 600px;
  font-size: 42px;
  line-height: 1.14;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #050505;
}

.faq__title span{
  display: block;
}

.faq__title-accent{
  color: #007F58;
}

.faq__description{
  margin: 30px 0 0;
  max-width: 560px;
  font-size: 14px;
  line-height: 1.38;
  font-weight: 400;
  color: #191919;
}

.faq__list{
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 50px;
}

.faq-item{
  position: relative;
  border: 0;
  padding: 0;
}

.faq-item summary{
  position: relative;
  list-style: none;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  column-gap: 24px;
  min-height: 42px;
  padding: 0;
  cursor: pointer;
  color: #111111;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
  transition:
    transform 0.24s ease,
    color 0.24s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.faq-item summary::-webkit-details-marker{
  display: none;
}

.faq-item__dot{
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0,168,116,0.48);
  transition:
    transform 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.faq-item__question{
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 0;
  border-radius: 999px;
  transition:
    padding 0.24s ease,
    background 0.24s ease,
    font-weight 0.24s ease,
    transform 0.24s ease,
    color 0.24s ease;
}

.faq-item:not([open]) summary:hover,
.faq-item:not([open]) summary:focus-visible,
.faq-item:not([open]) summary:active{
  transform: translateX(3px);
  outline: none;
}

.faq-item:not([open]) summary:hover .faq-item__dot,
.faq-item:not([open]) summary:focus-visible .faq-item__dot,
.faq-item:not([open]) summary:active .faq-item__dot{
  background: rgba(0,168,116,0.72);
  box-shadow: 0 0 18px rgba(0,168,116,0.18);
}

.faq-item:not([open]) summary:hover .faq-item__question,
.faq-item:not([open]) summary:focus-visible .faq-item__question,
.faq-item:not([open]) summary:active .faq-item__question{
  color: #050505;
}

.faq-item[open] summary{
  font-weight: 600;
}

.faq-item[open] .faq-item__dot{
  background: #00A874;
  box-shadow:
    0 0 0 8px rgba(0,168,116,0.10),
    0 0 20px rgba(0,168,116,0.22);
}

.faq-item[open] .faq-item__question{
  padding: 8px 22px;
  background: #F3F3F3;
  font-weight: 600;
}

.faq-item__answer{
  margin: 12px 0 6px 50px;
  max-width: 610px;
  padding: 18px 24px;
  border-radius: 30px;
  background: #F3F3F3;
}

.faq-item__answer p{
  margin: 0;
  font-size: 12px;
  line-height: 1.36;
  font-weight: 400;
  color: #1B1B1B;
}


/* =========================
   FAQ RESPONSIVE
========================= */

@media (max-width: 980px){
  .faq__inner{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px){
  .faq__inner{
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .faq__list{
    padding-top: 0;
  }
}

@media (max-width: 767px){
  .faq__inner{
    gap: 34px;
  }

  .faq__eyebrow{
    margin-bottom: 24px;
  }

  .faq__title{
    font-size: 32px;
    line-height: 1.16;
  }

  .faq__description{
    margin-top: 22px;
  }

  .faq__list{
    gap: 12px;
  }

  .faq-item summary{
    grid-template-columns: 22px minmax(0, 1fr);
    column-gap: 14px;
    font-size: 15px;
  }

  .faq-item__dot{
    width: 14px;
    height: 14px;
  }

  .faq-item[open] .faq-item__question{
    padding: 8px 16px;
  }

  .faq-item__answer{
    margin-left: 36px;
    padding: 16px 18px;
    border-radius: 24px;
  }
}
/* =========================
   FINAL CTA
========================= */

.final-cta{
  background: #FFFFFF;
}

.final-cta__panel{
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  align-items: center;
  gap: 56px;
  padding: 44px 72px;
  border-radius: 30px;
  background: linear-gradient(
    90deg,
    #007F58 0%,
    #00A874 100%
  );
  color: #FFFFFF;
  overflow: hidden;
}

.final-cta__visual{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.final-cta__visual img{
  display: block;
  width: 100%;
  max-width: 330px;
  height: auto;
  object-fit: contain;
  opacity: 0.52;
}

.final-cta__content{
  max-width: 560px;
  justify-self: center;
  text-align: center;
}

.final-cta__title{
  margin: 0;
  max-width: 560px;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 600;
  letter-spacing: 0;
  color: #FFFFFF;
}

.final-cta__description{
  margin: 24px auto 34px;
  max-width: 540px;
  font-size: 16px;
  line-height: 1.42;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(255,255,255,0.88);
}

.final-cta__button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 30px;
  border-radius: 999px;
  background: #FFFFFF;
  color: #007F58;
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
  will-change: transform, box-shadow, filter;
}

.final-cta__button:hover,
.final-cta__button:focus-visible{
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(0,0,0,0.14),
    inset 0 1px 0 rgba(255,255,255,0.9);
  filter: brightness(1.02);
  outline: none;
}

.final-cta__button:active{
  transform: translateY(0) scale(0.99);
  box-shadow:
    0 8px 20px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.9);
  filter: brightness(0.99);
}


/* =========================
   FINAL CTA RESPONSIVE
========================= */

@media (max-width: 980px){
  .final-cta__panel{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px){
  .final-cta__panel{
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 28px;
    text-align: center;
  }

  .final-cta__visual{
    min-height: auto;
  }

  .final-cta__visual img{
    max-width: 260px;
    margin: 0 auto;
  }

  .final-cta__content{
    max-width: 100%;
    justify-self: center;
  }

  .final-cta__title,
  .final-cta__description{
    max-width: 100%;
  }

  .final-cta__button{
    margin: 0 auto;
  }
}

@media (max-width: 767px){
  .final-cta__panel{
    padding: 34px 22px;
    border-radius: 24px;
  }

  .final-cta__title{
    font-size: 22px;
    line-height: 1.24;
  }

  .final-cta__description{
    margin: 20px auto 28px;
    font-size: 15px;
    line-height: 1.42;
  }

  .final-cta__button{
    min-height: 46px;
    padding: 0 24px;
    font-size: 14px;
  }
}
/* =========================
   FOOTER
========================= */

.site-footer{
  position: relative;
  overflow: hidden;
  padding: 86px 0 72px;
  color: #FFFFFF;
  background: linear-gradient(
    90deg,
    #161B23 0%,
    #161B23 55%,
    #313F55 100%
  );
}

.site-footer__inner{
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 96px;
  align-items: start;
}

.site-footer__left{
  min-width: 0;
}

.site-footer__logo{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
}

.site-footer__logo img{
  display: block;
  width: 176px;
  height: auto;
  object-fit: contain;
}

.site-footer__description{
  margin: 46px 0 36px;
  max-width: 620px;
  font-size: 16px;
  line-height: 1.34;
  font-weight: 400;
  color: rgba(255,255,255,0.86);
}

.site-footer__columns{
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 46px;
  max-width: 820px;
}

.site-footer__column h3{
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: rgba(255,255,255,0.96);
}

.site-footer__column a{
  display: block;
  width: fit-content;
  margin: 0 0 9px;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 400;
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  transition:
    color 0.22s ease,
    transform 0.22s ease,
    opacity 0.22s ease;
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible{
  color: #FFFFFF;
  transform: translateX(2px);
  outline: none;
}

.site-footer__column a:active{
  color: #FFFFFF;
  transform: translateX(2px) scale(0.99);
}

.site-footer__notice{
  margin: 76px 0 0;
  max-width: 900px;
  font-size: 12px;
  line-height: 1.32;
  font-weight: 400;
  color: rgba(255,255,255,0.70);
}

.site-footer__right{
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  text-align: right;
  width: 100%;
  margin-left: auto;
}

.site-footer__right > *{
  margin-left: auto;
}

.site-footer__contact{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 95px;
  margin-bottom: 84px;
}

.site-footer__contact p{
  margin: 0 0 26px;
  max-width: 360px;
  font-size: 16px;
  line-height: 1.28;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
}

.site-footer__cta{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 44px;
  min-width: 206px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  color: #FFFFFF;
  background:
    linear-gradient(#243248, #243248) padding-box,
    linear-gradient(90deg, #007F58 0%, #00E59E 100%) border-box;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  box-shadow:
    0 12px 28px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    filter 0.24s ease;
  will-change: transform, box-shadow, filter;
}

.site-footer__cta span:first-child{
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  background: linear-gradient(90deg, #00A874 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.site-footer__cta-arrow{
  width: 12px;
  height: 12px;
  border-top: 3px solid #FFFFFF;
  border-right: 3px solid #FFFFFF;
  transform: rotate(45deg);
  opacity: 0.95;
  transition: transform 0.24s ease;
}

.site-footer__cta:hover,
.site-footer__cta:focus-visible{
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    0 18px 38px rgba(0,0,0,0.20),
    0 0 22px rgba(0,229,158,0.08);
  outline: none;
}

.site-footer__cta:hover .site-footer__cta-arrow,
.site-footer__cta:focus-visible .site-footer__cta-arrow{
  transform: translateX(2px) rotate(45deg);
}

.site-footer__cta:active{
  transform: translateY(0) scale(0.99);
  filter: brightness(1.03);
  box-shadow:
    0 10px 24px rgba(0,0,0,0.16),
    0 0 18px rgba(0,229,158,0.06);
}

.site-footer__cta:active .site-footer__cta-arrow{
  transform: translateX(2px) rotate(45deg);
}

.site-footer__socials{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 40px;
  margin: 0 0 52px auto;
}

.site-footer__socials a{
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.92;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    filter 0.22s ease;
}

.site-footer__socials a:hover,
.site-footer__socials a:focus-visible{
  opacity: 1;
  transform: translateY(-2px);
  filter: drop-shadow(0 0 8px rgba(0,229,158,0.22));
  outline: none;
}

.site-footer__socials a:active{
  opacity: 1;
  transform: translateY(0) scale(0.96);
  filter: drop-shadow(0 0 8px rgba(0,229,158,0.22));
}

.site-footer__socials img{
  display: block;
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.site-footer__copyright{
  margin: 0;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 400;
  color: rgba(255,255,255,0.70);
  text-align: right;
}


/* =========================
   FOOTER RESPONSIVE
========================= */

@media (max-width: 1180px){
  .site-footer__inner{
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .site-footer__right{
    min-height: auto;
    align-items: flex-start;
    text-align: left;
    margin-left: 0;
  }

  .site-footer__right > *{
    margin-left: 0;
  }

  .site-footer__contact{
    align-items: flex-start;
    margin-top: 0;
    margin-bottom: 46px;
  }

  .site-footer__socials{
    justify-content: flex-start;
    margin-left: 0;
  }

  .site-footer__copyright{
    text-align: left;
  }
}

@media (max-width: 980px){
  .site-footer__inner{
    grid-template-columns: 1fr;
  }

  .site-footer__columns{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px){
  .site-footer{
    padding: 64px 0 54px;
  }

  .site-footer__inner{
    gap: 34px;
  }

  .site-footer__logo img{
    width: 150px;
  }

  .site-footer__description{
    margin: 34px 0 30px;
    font-size: 15px;
  }

  .site-footer__columns{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 34px;
  }

  .site-footer__notice{
    margin-top: 44px;
  }

  .site-footer__contact{
    margin-top: 0;
    margin-bottom: 44px;
  }

  .site-footer__contact p{
    margin-bottom: 24px;
    font-size: 15px;
  }

  .site-footer__cta{
    margin-left: 0;
    align-self: flex-start;
  }

  .site-footer__socials{
    gap: 28px;
    margin: 0 0 52px 0;
  }
}