/* =========================
   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;
  }
}
/* =========================
   SFTY LEAD MODAL
========================= */

body.is-sfty-lead-open{
  overflow: hidden;
}

.sfty-lead-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  color: #ffffff;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.sfty-lead-modal[aria-hidden="true"]{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.sfty-lead-modal[aria-hidden="false"]{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sfty-lead-modal__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 229, 158, 0.20), rgba(0, 229, 158, 0) 30%),
    radial-gradient(circle at 80% 24%, rgba(157, 211, 255, 0.18), rgba(157, 211, 255, 0) 36%),
    radial-gradient(circle at 52% 88%, rgba(0, 127, 88, 0.18), rgba(0, 127, 88, 0) 38%),
    rgba(5, 9, 15, 0.72);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.sfty-lead-modal__dialog{
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100vw - 34px));
  height: min(760px, calc(100vh - 34px));
  margin: 17px auto;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8, 18, 30, 0.96) 0%, rgba(15, 28, 42, 0.96) 48%, rgba(20, 37, 38, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 38px 120px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 255, 255, 0.035) inset;
  transform: translateY(12px) scale(0.985);
  transition: transform 0.28s ease;
}

.sfty-lead-modal[aria-hidden="false"] .sfty-lead-modal__dialog{
  transform: translateY(0) scale(1);
}

.sfty-lead-modal__dialog::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 26% 8%, rgba(255,255,255,0.10), rgba(255,255,255,0) 30%),
    linear-gradient(90deg, rgba(255,255,255,0.045), rgba(255,255,255,0));
}

.sfty-lead-modal__dialog::after{
  content: "";
  position: absolute;
  left: -40%;
  top: -80%;
  width: 80%;
  height: 220%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.055) 48%,
    rgba(255,255,255,0) 100%
  );
  transform: rotate(18deg);
  animation: sftyLeadSheen 8s ease-in-out infinite;
}

@keyframes sftyLeadSheen{
  0%{
    opacity: 0;
    transform: translateX(-18%) rotate(18deg);
  }

  18%{
    opacity: 1;
  }

  42%{
    opacity: 0;
    transform: translateX(210%) rotate(18deg);
  }

  100%{
    opacity: 0;
    transform: translateX(210%) rotate(18deg);
  }
}

.sfty-lead-modal__close{
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 20;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.07);
  cursor: pointer;
  transition:
    transform 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.sfty-lead-modal__close span{
  position: absolute;
  left: 13px;
  top: 20px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.sfty-lead-modal__close span:first-child{
  transform: rotate(45deg);
}

.sfty-lead-modal__close span:last-child{
  transform: rotate(-45deg);
}

.sfty-lead-modal__close:hover,
.sfty-lead-modal__close:focus-visible{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.24);
  box-shadow:
    0 12px 28px rgba(0,0,0,0.20),
    0 0 20px rgba(255,255,255,0.08);
  outline: none;
}

.sfty-lead-modal__shell{
  position: relative;
  z-index: 3;
  height: 100%;
  display: grid;
  grid-template-columns: 390px 1fr;
}

.sfty-lead-modal__side{
  position: relative;
  padding: 38px 34px;
  border-right: 1px solid rgba(255,255,255,0.09);
  background:
    radial-gradient(circle at 24% 16%, rgba(0, 229, 158, 0.17), rgba(0, 229, 158, 0) 36%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  overflow: hidden;
}

.sfty-lead-modal__side::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.030) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.030) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.60), rgba(0,0,0,0));
  pointer-events: none;
}

.sfty-lead-modal__side::after{
  content: "";
  position: absolute;
  left: -160px;
  bottom: -170px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 158, 0.18);
  box-shadow:
    0 0 90px rgba(0, 229, 158, 0.12),
    inset 0 0 80px rgba(255,255,255,0.04);
  pointer-events: none;
}

.sfty-lead-modal__logo{
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.sfty-lead-modal__side-copy{
  position: relative;
  z-index: 2;
  margin-top: 90px;
}

.sfty-lead-modal__eyebrow{
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, #007F58 0%, #00E59E 100%);
  color: #ffffff;
  font-size: 11px;
  line-height: 1;
  font-weight: 750;
}

.sfty-lead-modal__side h3{
  margin: 0;
  max-width: 320px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 650;
}

.sfty-lead-modal__side p:last-child{
  margin: 22px 0 0;
  max-width: 320px;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}

.sfty-lead-modal__route{
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 34px;
  display: grid;
  gap: 10px;
}

.sfty-lead-route-card{
  min-height: 54px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.055);
  color: rgba(255,255,255,0.84);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 650;
}

.sfty-lead-route-card span{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #00E59E;
  box-shadow:
    0 0 0 6px rgba(0,229,158,0.11),
    0 0 18px rgba(0,229,158,0.36);
}

.sfty-lead-modal__main{
  position: relative;
  overflow: hidden;
  height: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 44px 48px 32px;
}

.sfty-lead-modal__main::after{
  content: "";
  position: absolute;
  top: 164px;
  right: 28px;
  bottom: 94px;
  width: 1px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(0,229,158,0),
    rgba(0,229,158,0.45),
    rgba(255,255,255,0.14),
    rgba(0,229,158,0)
  );
  opacity: 0.55;
  pointer-events: none;
}

.sfty-lead-modal__top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding-right: 44px;
}

.sfty-lead-step{
  margin: 0 0 14px;
  color: #00E59E;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.sfty-lead-modal__title{
  margin: 0;
  max-width: 620px;
  color: #ffffff;
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 680;
}

.sfty-lead-modal__subtitle{
  margin: 16px 0 0;
  max-width: 620px;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  line-height: 1.48;
  font-weight: 500;
}

.sfty-lead-progress{
  flex: 0 0 auto;
  display: flex;
  gap: 8px;
  padding-top: 6px;
}

.sfty-lead-progress span{
  width: 28px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  transition:
    width 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.sfty-lead-progress span.is-active{
  width: 42px;
  background: linear-gradient(90deg, #007F58 0%, #00E59E 100%);
  box-shadow: 0 0 18px rgba(0,229,158,0.20);
}

.sfty-lead-form{
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.sfty-lead-content{
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  max-height: 100%;
  padding: 30px 18px 18px 0;
  margin-right: -6px;
  overflow-y: scroll;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,229,158,0.48) rgba(255,255,255,0.055);
  -webkit-overflow-scrolling: touch;
  scroll-behavior: auto;
}

.sfty-lead-content::-webkit-scrollbar{
  width: 5px;
}

.sfty-lead-content::-webkit-scrollbar-track{
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
}

.sfty-lead-content::-webkit-scrollbar-thumb{
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0,229,158,0.82), rgba(0,127,88,0.58));
  box-shadow: 0 0 12px rgba(0,229,158,0.20);
}

.sfty-lead-content::-webkit-scrollbar-thumb:hover{
  background: linear-gradient(180deg, rgba(0,229,158,1), rgba(0,127,88,0.76));
}

.sfty-lead-section{
  margin-top: 18px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.09);
  background:
    radial-gradient(circle at 100% 0%, rgba(0,229,158,0.055), rgba(0,229,158,0) 34%),
    rgba(255,255,255,0.052);
  box-shadow:
    0 14px 34px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.035);
  animation: sftyLeadReveal 0.20s ease both;
}

.sfty-lead-section:first-child{
  margin-top: 0;
}

@keyframes sftyLeadReveal{
  from{
    opacity: 0;
    transform: translateY(4px);
  }

  to{
    opacity: 1;
    transform: translateY(0);
  }
}

.sfty-lead-question{
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 720;
}

.sfty-lead-question span{
  color: #00E59E;
}

.sfty-lead-helper,
.sfty-lead-choice-hint{
  margin: -6px 0 14px;
  max-width: 640px;
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 550;
}

.sfty-lead-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sfty-lead-chip{
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);
  font-family: inherit;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.sfty-lead-chip:hover,
.sfty-lead-chip:focus-visible{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
  color: #ffffff;
  outline: none;
}

.sfty-lead-chip.is-selected{
  background: linear-gradient(90deg, #007F58 0%, #00E59E 100%);
  border-color: rgba(0,229,158,0.45);
  color: #ffffff;
  box-shadow:
    0 14px 30px rgba(0,0,0,0.20),
    0 0 24px rgba(0,229,158,0.12);
}

.sfty-lead-chip.is-selected::after{
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  color: #ffffff;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
}

.sfty-lead-field-head{
  display: flex;
  align-items: center;
  gap: 10px;
}

.sfty-lead-tooltip{
  width: 20px;
  height: 20px;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.70);
  font-size: 12px;
  font-weight: 800;
  cursor: help;
}

.sfty-lead-input-wrap{
  position: relative;
  display: block;
}

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

.sfty-lead-grid--single{
  grid-template-columns: 1fr;
  margin: 18px 0;
}

.sfty-lead-field{
  display: block;
}

.sfty-lead-field span{
  display: block;
  margin: 0 0 9px;
  color: rgba(255,255,255,0.76);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 650;
}

.sfty-lead-input,
.sfty-lead-select,
.sfty-lead-textarea{
  width: 100%;
  min-height: 50px;
  border-radius: 17px;
  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.2;
  outline: none;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.sfty-lead-input{
  padding: 0 16px;
}

.sfty-lead-select{
  padding: 0 12px;
  color-scheme: dark;
}

.sfty-lead-textarea{
  min-height: 110px;
  padding: 15px 16px;
  resize: vertical;
  line-height: 1.45;
}

.sfty-lead-input::placeholder,
.sfty-lead-textarea::placeholder{
  color: rgba(255,255,255,0.42);
}

.sfty-lead-input:focus,
.sfty-lead-select:focus,
.sfty-lead-textarea:focus{
  border-color: rgba(0,229,158,0.48);
  background: rgba(255,255,255,0.105);
  box-shadow: 0 0 0 4px rgba(0,229,158,0.08);
}

.sfty-lead-input-status{
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.sfty-lead-input-wrap.is-valid .sfty-lead-input{
  padding-right: 48px;
  border-color: rgba(0,229,158,0.52);
}

.sfty-lead-input-wrap.is-valid .sfty-lead-input-status{
  background: rgba(0,229,158,0.16);
  color: #00E59E;
}

.sfty-lead-input-wrap.is-warning .sfty-lead-input{
  padding-right: 48px;
  border-color: rgba(255,202,114,0.58);
}

.sfty-lead-input-wrap.is-warning .sfty-lead-input-status{
  background: rgba(255,202,114,0.14);
  color: #FFCA72;
}

.sfty-lead-input-wrap.is-invalid .sfty-lead-input{
  padding-right: 48px;
  border-color: rgba(255,117,117,0.58);
}

.sfty-lead-input-wrap.is-invalid .sfty-lead-input-status{
  background: rgba(255,117,117,0.14);
  color: #FF7575;
}

.sfty-lead-note{
  margin-top: 10px;
  min-height: 18px;
  font-size: 12px;
  line-height: 1.42;
  color: rgba(255,255,255,0.68);
}

.sfty-lead-note.is-valid{
  color: #00E59E;
}

.sfty-lead-note.is-warning{
  color: #FFCA72;
}

.sfty-lead-note.is-error{
  color: #FF8A8A;
}

.sfty-lead-email-actions{
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sfty-lead-email-actions button{
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
}

/* =========================
   PHONE CARD FIX
========================= */

.sfty-lead-phone-card{
  position: relative;
  margin-top: 28px;
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at 100% 0%, rgba(0,229,158,0.08), rgba(0,229,158,0) 34%),
    linear-gradient(180deg, rgba(255,255,255,0.070), rgba(255,255,255,0.044));
  box-shadow:
    0 18px 46px rgba(0,0,0,0.14),
    inset 0 1px 0 rgba(255,255,255,0.045);
  animation: sftyLeadReveal 0.20s ease both;
  clear: both;
}

.sfty-lead-phone-card__inner{
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.sfty-lead-field--phone{
  display: block;
}

.sfty-lead-phone{
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

.sfty-lead-phone .sfty-lead-select,
.sfty-lead-phone .sfty-lead-input{
  min-height: 58px;
  border-radius: 20px;
  font-size: 16px;
}

.sfty-lead-phone .sfty-lead-select{
  text-align: center;
  font-weight: 650;
  background: rgba(255,255,255,0.09);
}

.sfty-lead-phone .sfty-lead-input{
  padding-left: 18px;
  font-weight: 560;
}

.sfty-lead-check{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.76);
  font-size: 12px;
  line-height: 1.4;
  cursor: pointer;
}

.sfty-lead-check input{
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: #00A874;
}

.sfty-lead-check--soft{
  width: 100%;
  min-height: 58px;
  align-items: center;
  padding: 0 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.sfty-lead-check--soft span{
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
}

.sfty-lead-check--soft input{
  width: 18px;
  height: 18px;
  margin: 0;
}

.sfty-lead-check--phone{
  margin-top: 12px;
  width: fit-content;
  min-height: 42px;
}

.sfty-lead-error{
  display: none;
  margin-top: 8px;
  color: #FF8A8A;
  font-size: 11px;
  line-height: 1.3;
  font-style: normal;
}

.sfty-lead-error.is-visible{
  display: block;
}

/* =========================
   SFTY AI MESSAGE COMPOSER
========================= */

.sfty-lead-message-block{
  position: relative;
  margin-top: 32px;
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at 100% 100%, rgba(157,211,255,0.10), rgba(157,211,255,0) 32%),
    rgba(255,255,255,0.055);
  box-shadow:
    0 18px 46px rgba(0,0,0,0.14),
    inset 0 1px 0 rgba(255,255,255,0.045);
  animation: sftyLeadReveal 0.20s ease both;
}

.sfty-lead-message-block::before{
  display: none;
}

.sfty-lead-message-head{
  margin-bottom: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.sfty-lead-ai-pill{
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(0, 191, 130, 0.92);
  color: #ffffff;
  font-size: 10px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: none;
}

.sfty-lead-message-head .sfty-lead-question{
  margin-bottom: 0;
}

.sfty-lead-message-microcopy{
  margin: 0 0 2px;
  max-width: 250px;
  color: rgba(255,255,255,0.52);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 600;
  text-align: right;
}

.sfty-lead-message-box{
  position: relative;
}

.sfty-lead-textarea--ai{
  min-height: 128px;
  padding: 18px 58px 20px 18px;
  border-radius: 21px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.060));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.045),
    0 12px 34px rgba(0,0,0,0.10);
}

.sfty-lead-textarea--ai:hover{
  border-color: rgba(255,255,255,0.17);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.105), rgba(255,255,255,0.070));
}

.sfty-lead-mic{
  position: absolute;
  right: 16px;
  top: 16px;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.045);
  color: rgba(255,255,255,0.72);
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.sfty-lead-mic__icon{
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.sfty-lead-mic svg{
  width: 17px;
  height: 17px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sfty-lead-mic:hover,
.sfty-lead-mic:focus-visible{
  transform: translateY(-1px);
  color: rgba(255,255,255,0.96);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.075);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03);
  outline: none;
}

.sfty-lead-mic.is-listening{
  color: #ffffff;
  border-color: rgba(0,229,158,0.55);
  background: rgba(0,229,158,0.10);
  box-shadow: 0 0 0 4px rgba(0,229,158,0.08);
}

.sfty-lead-mic__pulse{
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid transparent;
  pointer-events: none;
  opacity: 0;
}

.sfty-lead-mic.is-listening .sfty-lead-mic__pulse{
  border-color: rgba(0,229,158,0.24);
  opacity: 1;
  animation: sftyMicPulseSmall 1.2s ease-out infinite;
}

@keyframes sftyMicPulseSmall{
  0%{
    transform: scale(0.92);
    opacity: 0.8;
  }

  100%{
    transform: scale(1.28);
    opacity: 0;
  }
}

.sfty-lead-typing-hint{
  position: absolute;
  left: 18px;
  bottom: 14px;
  display: flex;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.sfty-lead-message-box:focus-within .sfty-lead-typing-hint{
  opacity: 0.62;
}

.sfty-lead-typing-hint span{
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0,229,158,0.78);
  animation: sftyTypingDot 1.1s ease-in-out infinite;
}

.sfty-lead-typing-hint span:nth-child(2){
  animation-delay: 0.12s;
}

.sfty-lead-typing-hint span:nth-child(3){
  animation-delay: 0.24s;
}

@keyframes sftyTypingDot{
  0%, 100%{
    transform: translateY(0);
    opacity: 0.42;
  }

  50%{
    transform: translateY(-4px);
    opacity: 1;
  }
}

.sfty-lead-suggestions{
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.sfty-lead-suggestion{
  width: 100%;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.070), rgba(255,255,255,0.042));
  color: rgba(255,255,255,0.62);
  font-family: inherit;
  font-size: 11px;
  line-height: 1.42;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  transition:
    transform 0.18s ease,
    color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.sfty-lead-suggestion span{
  min-width: 74px;
  height: 28px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(0,229,158,0.10);
  color: rgba(0,229,158,0.92);
  font-size: 9px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sfty-lead-suggestion strong{
  display: block;
  min-width: 0;
  color: inherit;
  font-size: 12px;
  line-height: 1.42;
  font-weight: 650;
}

.sfty-lead-suggestion:hover,
.sfty-lead-suggestion:focus-visible{
  transform: translateY(-1px);
  color: rgba(255,255,255,0.88);
  background:
    linear-gradient(90deg, rgba(0,229,158,0.075), rgba(255,255,255,0.060));
  border-color: rgba(0,229,158,0.20);
  box-shadow: 0 12px 26px rgba(0,0,0,0.14);
  outline: none;
}

.sfty-lead-voice-note{
  margin: 11px 0 0;
  color: rgba(255,255,255,0.46);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 600;
}

.sfty-lead-voice-note.is-active{
  color: #00E59E;
}

.sfty-lead-voice-note.is-error{
  color: #FF8A8A;
}

/* =========================
   STEP 4 SUMMARY / CONSENTS
========================= */

.sfty-lead-summary{
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 14% 0%, rgba(0,229,158,0.14), rgba(0,229,158,0) 30%),
    rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 18px 46px rgba(0,0,0,0.14);
}

.sfty-lead-summary__label{
  margin: 0 0 8px;
  color: #00E59E;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
}

.sfty-lead-summary h3{
  margin: 0 0 22px;
  max-width: 620px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 650;
}

.sfty-lead-summary dl{
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.sfty-lead-summary dl div{
  min-height: 60px;
  padding: 12px 14px;
  border-radius: 17px;
  background: rgba(0,0,0,0.16);
}

.sfty-lead-summary dl div:last-child:nth-child(odd){
  grid-column: 1 / -1;
}

.sfty-lead-summary dt{
  margin: 0 0 6px;
  color: rgba(255,255,255,0.48);
  font-size: 11px;
  line-height: 1.2;
}

.sfty-lead-summary dd{
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  line-height: 1.34;
  font-weight: 650;
  word-break: break-word;
}

.sfty-lead-consents{
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.sfty-lead-submit-note{
  margin: 14px 0 0;
  color: #FFCA72;
  font-size: 12px;
}

/* =========================
   THANK YOU SCREEN — FINAL
========================= */

.sfty-lead-modal.is-complete .sfty-lead-modal__top{
  display: none;
}

.sfty-lead-modal.is-complete .sfty-lead-content{
  padding-top: 0;
  padding-bottom: 18px;
}

.sfty-lead-modal.is-complete .sfty-lead-bottom{
  display: none;
}

.sfty-lead-thanks{
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.sfty-lead-thanks--rich{
  padding: 2px 4px 24px 0;
}

.sfty-lead-thanks__hero{
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
}

.sfty-lead-thanks__mark{
  width: 58px;
  height: 58px;
  margin: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #007F58 0%, #00E59E 100%);
  color: #ffffff;
  font-size: 27px;
  font-weight: 900;
  box-shadow:
    0 18px 36px rgba(0,0,0,0.24),
    0 0 34px rgba(0,229,158,0.22);
}

.sfty-lead-thanks__eyebrow{
  margin: 0 0 8px;
  color: rgba(255,255,255,0.64);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
}

.sfty-lead-thanks h3{
  margin: 0;
  max-width: 650px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.12;
  font-weight: 720;
  letter-spacing: -0.035em;
}

.sfty-lead-thanks__hero p:not(.sfty-lead-thanks__eyebrow){
  margin: 12px 0 0;
  max-width: 680px;
  color: rgba(255,255,255,0.70);
  font-size: 14px;
  line-height: 1.48;
  font-weight: 500;
}

/* 
  THANK YOU FIX:
  верхние 4 раскрытые блока идут широкими горизонтальными карточками друг под другом:
  1) Request context
  2) What happens next
  3) Segment fit
  4) Based on your selected interest
  Relevant materials ниже остаётся сеткой.
*/
.sfty-lead-thanks__layout,
.sfty-lead-thanks__layout--top{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}

.sfty-lead-thanks-card{
  width: 100%;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at 100% 0%, rgba(0,229,158,0.08), rgba(0,229,158,0) 36%),
    linear-gradient(180deg, rgba(255,255,255,0.070), rgba(255,255,255,0.045));
  box-shadow:
    0 16px 40px rgba(0,0,0,0.13),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.sfty-lead-thanks-card--context{
  border-color: rgba(0,229,158,0.16);
}

.sfty-lead-thanks-card--next{
  background:
    radial-gradient(circle at 100% 0%, rgba(0,229,158,0.06), rgba(0,229,158,0) 36%),
    rgba(255,255,255,0.052);
}

.sfty-lead-thanks-card--value{
  grid-column: auto;
}

.sfty-lead-thanks-card--interest{
  background:
    radial-gradient(circle at 100% 0%, rgba(157,211,255,0.08), rgba(157,211,255,0) 36%),
    rgba(255,255,255,0.052);
}

.sfty-lead-thanks-card h4{
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 760;
  letter-spacing: -0.015em;
}

/* Request context: строки горизонтальные, одна под другой */
.sfty-lead-thanks-context{
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.sfty-lead-thanks-context div{
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 46px;
  padding: 11px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,0.15);
}

.sfty-lead-thanks-context dt{
  margin: 0;
  color: rgba(255,255,255,0.46);
  font-size: 11px;
  line-height: 1.3;
  font-weight: 650;
}

.sfty-lead-thanks-context dd{
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
  word-break: break-word;
}

/* Остальные раскрытые блоки — широкие, но содержание аккуратно внутри */
.sfty-lead-thanks-card--next .sfty-lead-thanks-list,
.sfty-lead-thanks-card--value .sfty-lead-thanks-list,
.sfty-lead-thanks-card--interest .sfty-lead-thanks-list{
  grid-template-columns: 1fr;
}

.sfty-lead-thanks-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.sfty-lead-thanks-list li{
  position: relative;
  padding-left: 21px;
  color: rgba(255,255,255,0.70);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 560;
}

.sfty-lead-thanks-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00E59E;
  box-shadow:
    0 0 0 5px rgba(0,229,158,0.10),
    0 0 18px rgba(0,229,158,0.18);
}

.sfty-lead-materials{
  margin-top: 18px;
}

.sfty-lead-resource-grid{
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.sfty-lead-resource{
  min-height: 76px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.042));
}

.sfty-lead-resource span{
  display: block;
  width: 18px;
  height: 4px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #00E59E;
}

.sfty-lead-resource h4{
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-size: 13px;
  line-height: 1.32;
  font-weight: 650;
}

.sfty-lead-thanks__actions{
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.sfty-lead-thanks__button{
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-family: inherit;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.sfty-lead-thanks__button--primary{
  border: 0;
  background: linear-gradient(90deg, #007F58 0%, #00E59E 100%);
  box-shadow:
    0 16px 34px rgba(0,0,0,0.22),
    0 0 24px rgba(0,229,158,0.12);
}

.sfty-lead-thanks__button:hover,
.sfty-lead-thanks__button:focus-visible{
  transform: translateY(-2px);
  outline: none;
}

/* =========================
   BOTTOM NAV
========================= */

.sfty-lead-bottom{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.09);
}

.sfty-lead-back,
.sfty-lead-next{
  min-height: 48px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    opacity 0.18s ease;
}

.sfty-lead-back{
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.76);
}

.sfty-lead-next{
  min-width: 180px;
  margin-left: auto;
  padding: 0 26px;
  border: 0;
  background: linear-gradient(90deg, #007F58 0%, #00E59E 100%);
  color: #ffffff;
  box-shadow:
    0 16px 36px rgba(0,0,0,0.25),
    0 0 24px rgba(0,229,158,0.10);
}

.sfty-lead-back:hover,
.sfty-lead-next:hover,
.sfty-lead-back:focus-visible,
.sfty-lead-next:focus-visible{
  transform: translateY(-2px);
  outline: none;
}

.sfty-lead-next:hover,
.sfty-lead-next:focus-visible{
  box-shadow:
    0 18px 38px rgba(0,0,0,0.28),
    0 0 30px rgba(0,229,158,0.16);
}

.sfty-lead-next:disabled{
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

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

@media (max-width: 980px){
  .sfty-lead-modal__dialog{
    width: min(720px, calc(100vw - 24px));
    height: min(820px, calc(100vh - 24px));
    margin: 12px auto;
  }

  .sfty-lead-modal__shell{
    grid-template-columns: 1fr;
  }

  .sfty-lead-modal__side{
    display: none;
  }

  .sfty-lead-modal__main{
    padding: 36px 28px 26px;
  }

  .sfty-lead-modal__main::after{
    right: 15px;
  }

  .sfty-lead-thanks__layout,
  .sfty-lead-thanks__layout--top{
    grid-template-columns: 1fr;
  }

  .sfty-lead-resource-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px){
  .sfty-lead-modal__dialog{
    width: calc(100vw - 16px);
    height: calc(100vh - 16px);
    margin: 8px auto;
    border-radius: 26px;
  }

  .sfty-lead-modal__main{
    padding: 30px 18px 20px;
  }

  .sfty-lead-modal__main::after{
    top: 150px;
    right: 8px;
    bottom: 86px;
  }

  .sfty-lead-modal__top{
    display: block;
    padding-right: 42px;
  }

  .sfty-lead-modal__title{
    font-size: 27px;
    line-height: 1.12;
  }

  .sfty-lead-modal__subtitle{
    font-size: 13px;
  }

  .sfty-lead-progress{
    margin-top: 20px;
  }

  .sfty-lead-content{
    padding-top: 22px;
    padding-right: 12px;
    margin-right: -4px;
  }

  .sfty-lead-section,
  .sfty-lead-phone-card,
  .sfty-lead-message-block{
    padding: 18px;
    border-radius: 22px;
  }

  .sfty-lead-chip{
    min-height: 36px;
    padding: 0 13px;
    font-size: 11px;
    white-space: normal;
  }

  .sfty-lead-grid,
  .sfty-lead-summary dl{
    grid-template-columns: 1fr;
  }

  .sfty-lead-summary dl div:last-child:nth-child(odd){
    grid-column: auto;
  }

  .sfty-lead-phone{
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .sfty-lead-phone .sfty-lead-select,
  .sfty-lead-phone .sfty-lead-input{
    min-height: 52px;
    font-size: 14px;
  }

  .sfty-lead-message-head{
    display: block;
  }

  .sfty-lead-message-microcopy{
    margin-top: 8px;
    max-width: none;
    text-align: left;
  }

  .sfty-lead-suggestion{
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .sfty-lead-suggestion span{
    justify-self: start;
  }

  .sfty-lead-textarea--ai{
    padding: 16px 54px 18px 16px;
  }

  .sfty-lead-mic{
    width: 32px;
    height: 32px;
    right: 14px;
    top: 14px;
  }

  .sfty-lead-mic svg{
    width: 16px;
    height: 16px;
  }

  .sfty-lead-bottom{
    position: sticky;
    bottom: 0;
    margin: 0 -18px -20px;
    padding: 14px 18px 20px;
    background:
      linear-gradient(180deg, rgba(14,22,33,0) 0%, rgba(14,22,33,0.96) 24%, rgba(14,22,33,0.98) 100%);
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .sfty-lead-back,
  .sfty-lead-next{
    min-height: 46px;
    font-size: 13px;
  }

  .sfty-lead-next{
    min-width: 0;
    flex: 1;
  }

  .sfty-lead-thanks__hero{
    grid-template-columns: 1fr;
  }

  .sfty-lead-thanks h3{
    font-size: 22px;
  }

  .sfty-lead-thanks-context div{
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .sfty-lead-thanks-card{
    padding: 16px;
    border-radius: 20px;
  }

  .sfty-lead-resource-grid{
    grid-template-columns: 1fr;
  }
}

@media (hover: none){
  .sfty-lead-chip:hover,
  .sfty-lead-back:hover,
  .sfty-lead-next:hover,
  .sfty-lead-modal__close:hover,
  .sfty-lead-mic:hover,
  .sfty-lead-suggestion:hover,
  .sfty-lead-thanks__button:hover{
    transform: none;
  }
}