*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: "Roboto Mono", monospace;
      background-color: #f4f7fa;
      color: #1a1a1a;
      overflow-x: hidden;
    }
    
    body {
      min-height: 100vh;
    }
     
    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .home-hero {
      text-align: center;
      padding: 80px 20px 30px;
    }

    .hero-inline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-bottom: 20px;
    }

    .hero-inline img {
      height: 48px;
    }

    .typewriter {
      display: inline-block;
      font-size: 2.8rem;
      color: #0F9D58;
      white-space: nowrap;
      overflow: hidden;
      border-right: 2px solid #0F9D58;
      animation:
        typing 1.35s steps(20) 1 normal both,
        blink-caret 0.7s step-end 3;
    }

    @keyframes typing {
      from { width: 0 }
      to { width: 18ch }
    }

    @keyframes blink-caret {
      0%, 100% { border-color: transparent; }
      50% { border-color: #0F9D58; }
    }

    .cta-button {
      display: inline-block;
      background-color: #1a73e8;
      color: white;
      padding: 14px 30px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: bold;
      font-size: 16px;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin-top: 40px;
    }

    .cta-button:hover {
      background-color: #135fbe;
      transform: translateY(-5px);
    }
    .solution-picker-btn {
  border: none;
  font-family: "Roboto Mono", monospace;
  cursor: pointer;
}

    .carousel-container {
      perspective: 1000px;
      width: 100%;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 300px;
      margin: 60px 0;
      position: relative;
    }

    .carousel {
      position: absolute;
      transform-style: preserve-3d;
      animation: spin 80s linear infinite;
    }

    @keyframes spin {
      from { transform: rotateY(0deg); }
      to { transform: rotateY(360deg); }
    }

    .carousel img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform:
    translate(-50%, -50%)
    rotateY(calc(var(--i) * 36deg))
    translateZ(400px);
  height: 100px;
  cursor: pointer;
  backface-visibility: visible;
  filter:
    drop-shadow(0 14px 24px rgba(0,0,0,0.18))
    saturate(1.05);
  opacity: 0.92;
  transition:
    transform 0.35s ease,
    filter 0.35s ease,
    opacity 0.35s ease;
}

    .carousel img:hover {
  transform:
    translate(-50%, -50%)
    scale(1.16)
    rotateY(calc(var(--i) * 36deg))
    translateZ(420px);
  filter:
    drop-shadow(0 20px 34px rgba(0,0,0,0.24))
    saturate(1.12)
    brightness(1.06);
  opacity: 1;
}

    .hint {
      position: absolute;
      top: 20px;
      left: 20px;
      background-color: #d32f2f;
      color: white;
      font-size: 18px;
      font-weight: bold;
      padding: 10px 16px;
      border-radius: 6px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      z-index: 500;
      display: none;
      animation: blinkHint 1.2s infinite;
    }

    @keyframes blinkHint {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }

    

    

    

    @keyframes ticker {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }

    @media (max-width: 768px) {
      
      
      
      .home-hero { padding-top: 120px; }
      .typewriter { font-size: 2rem; }
      .hero-inline img { height: 40px; }
    }

:root{--page-bg:#f7f4ef;--surface:#fff;--surface-soft:#fbfaf7;--surface-green:#f2f7f3;--text-main:#242321;--text-secondary:#64605b;--text-muted:#817c75;--green:#35594b;--green-hover:#29483c;--blue:#2f6f9f;--blue-hover:#255a82;--border:#e8e1d8;--border-green:#d5e3d8;--shadow-soft:0 18px 55px rgba(48,43,37,.055);--shadow-card:0 10px 34px rgba(48,43,37,.045);--font-main:"Manrope",sans-serif;--font-tech:"Roboto Mono",monospace}
html,body{font-family:var(--font-main)!important;background:radial-gradient(circle at top left,rgba(221,233,224,.52),transparent 34%),radial-gradient(circle at top right,rgba(222,232,239,.48),transparent 30%),var(--page-bg)!important;color:var(--text-main)!important}
body{line-height:1.7;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}

.home-hero{width:min(calc(100% - 48px),1180px);box-sizing:border-box;margin:72px auto 0;padding:72px 38px 58px;position:relative;overflow:hidden;border:1px solid var(--border);border-radius:28px;background:linear-gradient(135deg,rgba(255,255,255,.98),rgba(249,247,243,.98));box-shadow:var(--shadow-soft)}
.home-hero:before{content:"";position:absolute;width:280px;height:280px;top:-150px;left:-110px;border-radius:50%;background:rgba(196,217,202,.42);filter:blur(8px)}.home-hero>*{position:relative;z-index:1}
.hero-inline{gap:18px;margin-bottom:24px}.hero-inline img{height:58px;filter:drop-shadow(0 8px 18px rgba(53,89,75,.12))}.typewriter{color:var(--green);border-right-color:var(--green);font-family:var(--font-main);font-size:clamp(2.8rem,7vw,4.8rem);font-weight:600;line-height:1;letter-spacing:-.055em}.home-hero p{max-width:720px;margin:0 auto;color:var(--text-secondary);font-size:16px;line-height:1.85}
.cta-button{margin-top:34px;padding:15px 28px;border-radius:13px;background:var(--blue);font-family:var(--font-main);font-size:14px;font-weight:700;box-shadow:0 10px 25px rgba(47,111,159,.2)}.cta-button:hover{background:var(--blue-hover);transform:translateY(-2px)}.solution-picker-btn{font-family:var(--font-main)!important}
.carousel-container{
  width:min(calc(100% - 48px),1180px);
  box-sizing:border-box;
  height:320px;
  margin:34px auto 110px;
  border:none;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}.carousel img{filter:drop-shadow(0 10px 18px rgba(48,43,37,.12))}.hint{border-radius:12px;background:#b64a4a;font-family:var(--font-main);font-size:14px}

#faq-button,#contact-float-btn,#reviews-float-btn{border-radius:13px!important;background:rgba(255,255,255,.96)!important;font-family:var(--font-main)!important;box-shadow:0 8px 24px rgba(48,43,37,.12)!important}#faq-button{border-color:#b64a4a!important;color:#b64a4a!important}#contact-float-btn{border-color:var(--blue)!important;color:var(--blue)!important}#contact-float-btn:hover{background:var(--blue)!important;color:#fff!important}#reviews-float-btn{border-color:var(--green)!important;color:var(--green)!important}#reviews-float-btn:hover{background:var(--green)!important;color:#fff!important}
.contact-modal,.review-form-modal,.solution-picker,.reviews-panel{border:1px solid var(--border)!important;border-radius:22px!important;background:rgba(255,255,255,.98)!important;box-shadow:0 24px 70px rgba(48,43,37,.22)!important;font-family:var(--font-main)!important}.contact-modal h3,.review-form-modal h3,.solution-picker h2,.reviews-panel-header h3{color:var(--green)!important;font-family:var(--font-main)!important;font-weight:600;letter-spacing:-.025em}
.contact-modal label,.review-form-modal label,.solution-description-label{font-family:var(--font-main)!important}.contact-modal input,.contact-modal textarea,.review-form-modal input,.review-form-modal textarea,.solution-description{border:1px solid #dcd5cc!important;border-radius:13px!important;background:#fdfcfb!important;font-family:var(--font-main)!important}.contact-modal input:focus,.contact-modal textarea:focus,.review-form-modal input:focus,.review-form-modal textarea:focus,.solution-description:focus{border-color:var(--green)!important;box-shadow:0 0 0 4px rgba(53,89,75,.09)!important}
.contact-method-btn,.solution-option{border-color:#e8e2da!important;border-radius:16px!important;background:var(--surface-soft)!important;font-family:var(--font-main)!important}.contact-method-btn:hover,.solution-option:hover{border-color:#b9cdbf!important;color:var(--green)!important;background:var(--surface-green)!important}.contact-method-btn.active{border-color:var(--green)!important;background:var(--green)!important;color:#fff!important}
.contact-send-btn,.review-submit-btn,.reviews-panel-leave-btn,.solution-discuss-btn{border-radius:13px!important;background:var(--blue)!important;font-family:var(--font-main)!important;box-shadow:0 10px 25px rgba(47,111,159,.18)}.contact-send-btn:hover,.review-submit-btn:hover,.reviews-panel-leave-btn:hover,.solution-discuss-btn:hover{background:var(--blue-hover)!important}.solution-picker-badge,.reviews-panel-badge{border-color:var(--border-green)!important;background:var(--surface-green)!important;color:var(--green)!important;font-family:var(--font-tech)}.solution-back{color:var(--green)!important;font-family:var(--font-main)!important}.solution-picker-progress span.active{background:var(--green)!important}.solution-result-check{border-color:var(--green)!important;color:var(--green)!important}.review-card{border-bottom-color:var(--border)!important}.review-text,.review-author,.review-date{font-family:var(--font-main)}

@media(max-width:768px){.home-hero{width:calc(100% - 24px);box-sizing:border-box;margin-top:72px;padding:42px 18px 34px;border-radius:22px}.hero-inline{gap:12px}.hero-inline img{height:58px}.typewriter{font-size:clamp(2rem,10vw,3rem)}.home-hero p{font-size:14px;line-height:1.7}.carousel-container{width:calc(100% - 24px);box-sizing:border-box;height:230px;margin:20px auto 130px;border-radius:20px}.contact-modal,.review-form-modal,.solution-picker,.reviews-panel{border-radius:18px!important}}

  

@media (max-width: 760px) {
  
}
  html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

#contact-float-btn {
    position: fixed;
    right: 20px;
    bottom: 98px;
    z-index: 1000;

    border: 1px solid #007acc;
    background: rgba(255, 255, 255, 0.96);
    color: #007acc;

    padding: 11px 16px;
    border-radius: 10px;

    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    font-weight: bold;

    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,0.14);

    transition:
      transform 0.2s ease,
      background-color 0.2s ease,
      color 0.2s ease;
  }

  #contact-float-btn:hover {
    background-color: #007acc;
    color: #ffffff;
    transform: translateY(-2px);
  }

  .contact-modal-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 3000;

  align-items: center;
  justify-content: center;

  padding: 20px;
  box-sizing: border-box;

  background: rgba(0, 0, 0, 0);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.3s ease,
    background-color 0.3s ease,
    visibility 0.3s;
}

.contact-modal-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  background: rgba(0, 0, 0, 0.35);
}

.contact-modal {
  position: relative;

  width: 100%;
  max-width: 430px;

  background: #ffffff;
  border: 1px solid #c4d8e6;
  border-radius: 14px;

  padding: 26px;
  box-sizing: border-box;

  box-shadow: 0 16px 45px rgba(0,0,0,0.22);

  font-family: "Roboto Mono", monospace;

  opacity: 0;

  transform:
    translate(180px, 180px)
    scale(0.35);

  transform-origin: bottom right;

  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.22s ease;
}

.contact-modal-overlay.show .contact-modal {
  opacity: 1;

  transform:
    translate(0, 0)
    scale(1);
}
  .contact-modal h3 {
    margin: 0 0 22px;
    color: #1a1a1a;
    font-size: 20px;
  }

  .contact-modal label {
    display: block;
    margin: 14px 0 6px;

    color: #333;
    font-size: 13px;
    font-weight: bold;
  }

  .contact-modal input,
  .contact-modal textarea {
    width: 100%;
    box-sizing: border-box;

    border: 1px solid #c7d3dd;
    border-radius: 8px;

    padding: 11px 12px;

    font-family: "Roboto Mono", monospace;
    font-size: 14px;

    outline: none;

    transition:
      border-color 0.2s ease,
      box-shadow 0.2s ease;
  }

  .contact-modal textarea {
    resize: vertical;
  }

  .contact-modal input:focus,
  .contact-modal textarea:focus {
    border-color: #007acc;
    box-shadow: 0 0 0 3px rgba(0,122,204,0.10);
  }

  .contact-send-btn {
    width: 100%;

    margin-top: 20px;
    padding: 12px 16px;

    border: none;
    border-radius: 8px;

    background: #1a73e8;
    color: #ffffff;

    font-family: "Roboto Mono", monospace;
    font-size: 14px;
    font-weight: bold;

    cursor: pointer;

    transition:
      background-color 0.2s ease,
      transform 0.2s ease;
  }

  .contact-send-btn:hover {
    background: #135fbe;
    transform: translateY(-1px);
  }

  .contact-close {
    position: absolute;
    top: 10px;
    right: 13px;

    border: none;
    background: transparent;

    color: #777;

    font-size: 26px;
    line-height: 1;

    cursor: pointer;
  }

  .contact-close:hover {
    color: #111;
  }

  #contact-status {
    min-height: 18px;
    margin-top: 12px;

    text-align: center;
    font-size: 12px;
    color: #555;
  }

  .contact-method-options {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.contact-method-btn {
  flex: 1;
  padding: 10px 8px;

  border: 1px solid #c7d3dd;
  border-radius: 8px;

  background: #ffffff;
  color: #444;

  font-family: "Roboto Mono", monospace;
  font-size: 12px;
  font-weight: bold;

  cursor: pointer;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
}

.contact-method-btn:hover {
  border-color: #007acc;
  color: #007acc;
  transform: translateY(-1px);
}

.contact-method-btn.active {
  background: #007acc;
  border-color: #007acc;
  color: #ffffff;
}

#contact-method:disabled {
  background: #f3f5f7;
  color: #999;
  cursor: not-allowed;
}

  @media (max-width: 768px) {
    #contact-float-btn {
      right: 90px;
      bottom: 93px;

      padding: 10px 12px;
      font-size: 12px;
    }

    .contact-modal {
      padding: 22px 18px;
    }
  }
  .turnstile-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.solution-picker-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 2900;

    align-items: center;
    justify-content: center;

    padding: 20px;
    box-sizing: border-box;

    background: rgba(0, 0, 0, 0);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
      opacity 0.3s ease,
      background-color 0.3s ease,
      visibility 0.3s;
  }

  .solution-picker-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    background: rgba(0, 0, 0, 0.35);
  }

  .solution-picker {
    position: relative;

    width: 100%;
    max-width: 850px;

    padding: 34px;

    box-sizing: border-box;

    background: #ffffff;
    border: 1px solid #c4d8e6;
    border-radius: 16px;

    box-shadow: 0 18px 55px rgba(0,0,0,0.24);

    font-family: "Roboto Mono", monospace;

    opacity: 0;

    transform:
      translateY(35px)
      scale(0.92);

    transition:
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.25s ease;
  }

  .solution-picker-overlay.show .solution-picker {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .solution-picker-close {
    position: absolute;

    top: 12px;
    right: 16px;

    border: none;
    background: transparent;

    color: #777;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;
  }

  .solution-picker-close:hover {
    color: #111;
  }

  .solution-picker-badge {
    width: fit-content;

    margin: 0 auto 13px;
    padding: 6px 11px;

    background: #edf6ff;
    border: 1px solid #c9e2f7;
    border-radius: 20px;

    color: #007acc;

    font-size: 11px;
    font-weight: bold;
  }

  .solution-picker h2 {
    margin: 0;

    text-align: center;

    color: #1a1a1a;
    font-size: 25px;
  }

  .solution-picker-subtitle {
    margin: 9px 0 28px;

    text-align: center;

    color: #66727c;
    font-size: 13px;
  }

  .solution-picker-options {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 13px;
  }

  .solution-option {
    min-height: 145px;

    padding: 20px 14px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid #d4dee7;
    border-radius: 12px;

    background: #ffffff;

    font-family: "Roboto Mono", monospace;

    cursor: pointer;

    box-shadow: 0 3px 10px rgba(0,0,0,0.035);

    transition:
      transform 0.22s ease,
      border-color 0.22s ease,
      box-shadow 0.22s ease,
      background-color 0.22s ease;
  }

  .solution-option:hover {
    transform: translateY(-4px);

    border-color: #1a73e8;

    background: #fbfdff;

    box-shadow: 0 10px 25px rgba(26,115,232,0.12);
  }

  .solution-icon {
    min-height: 40px;

    display: flex;
    align-items: center;

    margin-bottom: 9px;

    font-size: 28px;
  }

  .solution-title {
    color: #1a1a1a;

    font-size: 13px;
    font-weight: bold;

    text-align: center;
  }

  .solution-desc {
    margin-top: 7px;

    color: #87929c;

    font-size: 10px;
    line-height: 1.45;

    text-align: center;
  }

  .solution-picker-progress {
    display: flex;
    justify-content: center;

    gap: 7px;

    margin-top: 25px;
  }

  .solution-picker-progress span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #cbd5dd;

    transition: all 0.25s ease;
  }

  .solution-picker-progress span.active {
    width: 18px;

    border-radius: 10px;

    background: #1a73e8;
  }

  .solution-step {
  display: none;

  opacity: 0;
  transform: translateX(25px);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.solution-step.active {
  display: block;

  animation: solutionStepIn 0.32s ease forwards;
}

@keyframes solutionStepIn {
  from {
    opacity: 0;
    transform: translateX(25px);
  }

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

.solution-back {
  position: absolute;
  top: 18px;
  left: 20px;

  border: none;
  background: transparent;

  color: #007acc;

  font-family: "Roboto Mono", monospace;
  font-size: 12px;
  font-weight: bold;

  cursor: pointer;
}

.solution-back:hover {
  color: #005ea8;
}
  .solution-result-check {
  width: 54px;
  height: 54px;

  margin: 2px auto 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid #0F9D58;
  border-radius: 50%;

  color: #0F9D58;

  font-size: 28px;
  font-weight: bold;
}

.solution-result-tools {
  max-width: 650px;

  margin: 14px auto 22px;

  text-align: center;

  color: #66727c;
  font-size: 12px;
  line-height: 1.6;
}

.solution-selected-task {
  max-width: 620px;

  margin: 0 auto 20px;
  padding: 11px 14px;

  box-sizing: border-box;

  background: #f6f9fc;
  border: 1px solid #d9e4ec;
  border-radius: 9px;

  text-align: center;

  font-size: 11px;
  color: #66727c;
}

.solution-selected-task strong {
  margin-left: 6px;
  color: #1a1a1a;
}

.solution-description-label {
  display: block;

  max-width: 620px;

  margin: 0 auto 7px;

  color: #333;

  font-size: 12px;
  font-weight: bold;
}

.solution-description {
  display: block;

  width: 100%;
  max-width: 620px;

  margin: 0 auto;
  padding: 12px;

  box-sizing: border-box;

  border: 1px solid #c7d3dd;
  border-radius: 9px;

  font-family: "Roboto Mono", monospace;
  font-size: 13px;

  resize: vertical;
  outline: none;
}

.solution-description:focus {
  border-color: #007acc;
  box-shadow: 0 0 0 3px rgba(0,122,204,0.10);
}

.solution-discuss-btn {
  display: block;

  margin: 20px auto 0;
  padding: 12px 25px;

  border: none;
  border-radius: 8px;

  background: #1a73e8;
  color: white;

  font-family: "Roboto Mono", monospace;
  font-size: 13px;
  font-weight: bold;

  cursor: pointer;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.solution-discuss-btn:hover {
  background: #135fbe;
  transform: translateY(-2px);
}

  @media (max-width: 768px) {

    .solution-picker-overlay {
      padding: 12px;
    }

    .solution-picker {
      max-height: calc(100vh - 24px);
      overflow-y: auto;

      padding: 27px 15px 22px;
    }

    .solution-picker h2 {
      font-size: 20px;
    }

    .solution-picker-subtitle {
      font-size: 11px;
      margin-bottom: 20px;
    }

    .solution-picker-options {
      grid-template-columns: repeat(2, 1fr);
      gap: 9px;
    }

    .solution-option {
      min-height: 120px;
      padding: 14px 8px;
    }

    .solution-icon {
      font-size: 24px;
    }

    .solution-title {
      font-size: 10px;
    }

    .solution-desc {
      font-size: 8px;
    }
  }

#reviews-float-btn {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);

    z-index: 1000;

    border: 1px solid #0F9D58;
    background: rgba(255, 255, 255, 0.96);
    color: #0F9D58;

    padding: 11px 16px;
    border-radius: 10px;

    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    font-weight: bold;

    cursor: pointer;

    box-shadow: 0 3px 10px rgba(0,0,0,0.14);

    transition:
      transform 0.2s ease,
      background-color 0.2s ease,
      color 0.2s ease;
  }

  #reviews-float-btn:hover {
    background: #0F9D58;
    color: #ffffff;

    transform:
      translateY(-50%)
      translateX(3px);
  }

  @media (max-width: 768px) {
    #reviews-float-btn {
      left: 10px;
      top: auto;
      bottom: 150px;

      transform: none;

      padding: 10px 12px;
      font-size: 12px;
    }

    #reviews-float-btn:hover {
      transform: translateX(2px);
    }
  }

.reviews-panel {
    position: fixed;
    left: 20px;
    top: 50%;

    width: 380px;
    max-height: 70vh;

    padding: 22px;

    box-sizing: border-box;

    background: rgba(255,255,255,0.98);

    border: 1px solid #cfe4d6;
    border-radius: 14px;

    box-shadow: 0 18px 45px rgba(0,0,0,0.18);

    z-index: 2500;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform:
      translate(-35px, -50%)
      scale(0.94);

    transition:
      opacity 0.25s ease,
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.25s;
  }

  .reviews-panel.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform:
      translate(0, -50%)
      scale(1);
  }

  .reviews-panel-close {
    position: absolute;
    top: 10px;
    right: 13px;

    border: none;
    background: transparent;

    color: #777;

    font-size: 24px;
    cursor: pointer;
  }

  .reviews-panel-header {
    margin-bottom: 18px;
  }

  .reviews-panel-badge {
    display: inline-block;

    padding: 5px 9px;
    margin-bottom: 8px;

    border-radius: 20px;

    background: #edf8f1;
    border: 1px solid #cce8d5;

    color: #0F9D58;

    font-size: 10px;
    font-weight: bold;
  }

  .reviews-panel-header h3 {
    margin: 0;

    font-family: "Roboto Mono", monospace;
    font-size: 20px;
  }

  .reviews-panel-list {
    max-height: 430px;
    overflow-y: auto;

    margin-bottom: 16px;
  }

  .reviews-panel-loading {
    padding: 25px 12px;

    text-align: center;

    color: #87929c;

    font-size: 12px;
  }

  .reviews-panel-leave-btn {
    width: 100%;

    padding: 11px 14px;

    border: none;
    border-radius: 8px;

    background: #1a73e8;
    color: #fff;

    font-family: "Roboto Mono", monospace;
    font-size: 12px;
    font-weight: bold;

    cursor: pointer;
  }

  .reviews-panel-leave-btn:hover {
    background: #135fbe;
  }

  @media (max-width: 768px) {
    .reviews-panel {
      left: 10px;
      right: 10px;
      top: 50%;

      width: auto;
      max-height: 72vh;

      transform:
        translateY(-50%)
        scale(0.96);
    }

    .reviews-panel.show {
      transform:
        translateY(-50%)
        scale(1);
    }
  }

.review-card {
    padding: 14px 0;
    border-bottom: 1px solid #e3e8ed;
  }

  .review-card:last-child {
    border-bottom: none;
  }

  .review-stars {
    margin-bottom: 7px;

    color: #f4b400;

    font-size: 15px;
    letter-spacing: 1px;
  }

  .review-text {
  margin: 0 0 8px 0;
  padding: 0;

  color: #333;

  font-size: 12px;
  line-height: 1.45;

  text-align: left;
  text-indent: 0;
  white-space: normal;
  overflow-wrap: break-word;
}

  .review-author {
    color: #1a1a1a;

    font-size: 11px;
    font-weight: bold;
  }
    .review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 12px;
}

.review-date {
  color: #8a949d;

  font-size: 10px;
  white-space: nowrap;
}

.review-form-overlay {
    position: fixed;
    inset: 0;
    z-index: 3200;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;
    box-sizing: border-box;

    background: rgba(0, 0, 0, 0);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
      opacity 0.3s ease,
      background-color 0.3s ease,
      visibility 0.3s;
  }

  .review-form-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    background: rgba(0, 0, 0, 0.35);
  }

  .review-form-modal {
    position: relative;

    width: 100%;
    max-width: 430px;

    padding: 26px;
    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #c4d8e6;
    border-radius: 14px;

    box-shadow: 0 16px 45px rgba(0,0,0,0.22);

    font-family: "Roboto Mono", monospace;

    opacity: 0;

    transform:
      translate(-180px, 60px)
      scale(0.35);

    transform-origin: left center;

    transition:
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.22s ease;
  }

  .review-form-overlay.show .review-form-modal {
    opacity: 1;

    transform:
      translate(0, 0)
      scale(1);
  }

  .review-form-modal h3 {
    margin: 0 0 22px;

    font-size: 20px;
    color: #1a1a1a;
  }

  .review-form-modal label {
    display: block;

    margin: 14px 0 6px;

    color: #333;

    font-size: 13px;
    font-weight: bold;
  }

  .review-form-modal input,
  .review-form-modal textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 11px 12px;

    border: 1px solid #c7d3dd;
    border-radius: 8px;

    font-family: "Roboto Mono", monospace;
    font-size: 14px;

    outline: none;
  }

  .review-form-modal textarea {
    resize: vertical;
  }

  .review-form-modal input:focus,
  .review-form-modal textarea:focus {
    border-color: #007acc;

    box-shadow:
      0 0 0 3px rgba(0,122,204,0.10);
  }

  .review-form-close {
    position: absolute;

    top: 10px;
    right: 13px;

    border: none;
    background: transparent;

    color: #777;

    font-size: 26px;

    cursor: pointer;
  }

  .review-rating {
    display: flex;
    gap: 6px;
  }

  .review-rating button {
    border: none;
    background: transparent;

    padding: 0;

    color: #c7c7c7;

    font-size: 28px;

    cursor: pointer;
  }

  .review-rating button.active {
    color: #f4b400;
  }

  .review-submit-btn {
    width: 100%;

    margin-top: 20px;
    padding: 12px 16px;

    border: none;
    border-radius: 8px;

    background: #1a73e8;
    color: #ffffff;

    font-family: "Roboto Mono", monospace;
    font-size: 14px;
    font-weight: bold;

    cursor: pointer;
  }

  .review-submit-btn:hover {
    background: #135fbe;
  }

  #review-form-status {
    min-height: 18px;

    margin-top: 12px;

    text-align: center;

    font-size: 12px;
  }

  @media (max-width: 768px) {
     
    .home-hero {
      padding: 88px 16px 18px;
    }

    .hero-inline {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 14px;
    }

    .hero-inline img {
      height: 54px;
    }

    .typewriter {
      max-width: 100%;
      font-size: clamp(1.65rem, 8vw, 2.15rem);
      white-space: nowrap;
    }

    .home-hero p {
      max-width: 340px;
      margin: 0 auto;
      padding: 0 8px;
      font-size: 14px;
      line-height: 1.55;
    }

    .cta-button {
      width: min(100%, 320px);
      box-sizing: border-box;
      margin-top: 26px;
      padding: 14px 18px;
      font-size: 15px;
    }

    .carousel-container {
  width: calc(100% - 24px);
  height: 220px;
  margin: 22px auto 42px;
  overflow: hidden;
    }

    .carousel img {
      height: 68px;
      transform:
        translate(-50%, -50%)
        rotateY(calc(var(--i) * 36deg))
        translateZ(165px);
    }

    .carousel img:hover {
      transform:
        translate(-50%, -50%)
        rotateY(calc(var(--i) * 36deg))
        translateZ(165px);
    }

    .hint {
      display: none !important;
    }
   
    #faq-button,
    #contact-float-btn,
    #reviews-float-btn {
      top: auto;
      bottom: 92px;
      height: 44px;
      min-height: 44px;
      box-sizing: border-box;
      border-radius: 12px;
      padding: 0 12px;
      font-size: 11px;
      transform: none;
      box-shadow: 0 3px 12px rgba(0,0,0,0.16);
    }

    #reviews-float-btn {
      left: 10px;
      right: auto;
    }

    #contact-float-btn {
    left: auto;
    right: 10px;
    transform: none;
    white-space: nowrap;
}

    #contact-float-btn:hover {
    transform: none;
}

    #faq-button {
      left: auto;
      right: 10px;
      width: 48px;
      border-radius: 12px;
    }

    #faq-button:hover,
    #reviews-float-btn:hover {
      transform: none;
    }

    .faq-icon {
      font-size: 17px;
    }

    .faq-label {
      font-size: 9px;
    }

    .contact-modal-overlay,
    .review-form-overlay,
    .solution-picker-overlay {
      align-items: flex-start;
      overflow-y: auto;
      padding:
        max(12px, env(safe-area-inset-top))
        10px
        calc(90px + env(safe-area-inset-bottom));
    }

    .contact-modal,
    .review-form-modal,
    .solution-picker {
      width: 100%;
      max-width: 520px;
      max-height: none;
      margin: auto 0;
      border-radius: 14px;
      transform: translateY(18px) scale(0.97);
    }

    .contact-modal-overlay.show .contact-modal,
    .review-form-overlay.show .review-form-modal,
    .solution-picker-overlay.show .solution-picker {
      transform: translateY(0) scale(1);
    }

    .contact-modal,
    .review-form-modal {
      padding: 22px 16px 20px;
    }

    .contact-modal h3,
    .review-form-modal h3 {
      padding-right: 28px;
      font-size: 18px;
    }

    .contact-method-options {
      gap: 6px;
    }

    .contact-method-btn {
      padding: 10px 5px;
      font-size: 10px;
    }

    .contact-modal input,
    .contact-modal textarea,
    .review-form-modal input,
    .review-form-modal textarea,
    .solution-description {
      font-size: 16px;
    }

    .turnstile-wrapper {
      width: 100%;
      overflow: hidden;
    }

    .cf-turnstile {
      transform-origin: center top;
    }

    .reviews-panel {
      left: 10px;
      right: 10px;
      top: 12px;
      bottom: 88px;
      width: auto;
      max-height: none;
      padding: 18px 15px;
      transform: translateY(18px) scale(0.97);
    }

    .reviews-panel.show {
      transform: translateY(0) scale(1);
    }

    .reviews-panel-list {
      max-height: calc(100vh - 250px);
    }

    .solution-picker {
      padding: 52px 13px 22px;
    }

    .solution-picker h2 {
      font-size: 19px;
      line-height: 1.3;
    }

    .solution-picker-subtitle {
      margin: 8px 0 16px;
      font-size: 11px;
      line-height: 1.45;
    }

    .solution-picker-options {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }

    .solution-option {
      min-height: 112px;
      padding: 12px 7px;
    }

    .solution-icon {
      min-height: 30px;
      margin-bottom: 6px;
      font-size: 23px;
    }

    .solution-title {
      font-size: 10px;
      line-height: 1.3;
    }

    .solution-desc {
      margin-top: 5px;
      font-size: 8px;
      line-height: 1.35;
    }

    .solution-back {
      top: 15px;
      left: 13px;
    }

    .solution-picker-close {
      top: 10px;
      right: 12px;
    }

    .solution-result-tools,
    .solution-selected-task,
    .solution-description-label {
      max-width: 100%;
    }
  }

  @media (max-width: 430px) {
    .solution-picker-options {
      grid-template-columns: 1fr;
    }

    .solution-option {
      min-height: 82px;
      display: grid;
      grid-template-columns: 42px 1fr;
      grid-template-rows: auto auto;
      column-gap: 8px;
      text-align: left;
    }

    .solution-icon {
      grid-row: 1 / 3;
      grid-column: 1;
      justify-content: center;
      margin: 0;
    }

    .solution-title,
    .solution-desc {
      grid-column: 2;
      text-align: left;
    }

    .solution-title {
      align-self: end;
      font-size: 11px;
    }

    .solution-desc {
      align-self: start;
      font-size: 9px;
    }

    .cf-turnstile {
      transform: scale(0.88);
    }
  }

    @media (max-width: 360px) {
    .typewriter {
      font-size: 1.45rem;
    }

    #reviews-float-btn,
    #contact-float-btn {
      padding: 0 8px;
      font-size: 10px;
    }

    .cf-turnstile {
      transform: scale(0.80);
    }
  }

  @media (max-width: 768px) {
    
  }

html {
  background: #f7f4ef;
}

body {
  position: relative;
  isolation: isolate;
  background: transparent !important;
  --home-bg-a: url("/home/assets/air1.webp");
  --home-bg-b: url("/home/assets/air2.webp");
  --home-bg-x: 0px;
  --home-bg-y: 0px;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -24px;
  z-index: -2;
  pointer-events: none;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
    transform:
    translate3d(
      var(--home-bg-x),
      var(--home-bg-y),
      0
    )
    scale(var(--home-bg-scale, 1.035));
  transition:
    opacity 2.4s ease,
    transform 0.18s ease-out;
  will-change: opacity, transform;
}

body::before {
  background-image:
    linear-gradient(
      180deg,
      rgba(247, 244, 239, 0.76) 0%,
      rgba(247, 244, 239, 0.68) 42%,
      rgba(247, 244, 239, 0.78) 100%
    ),
    var(--home-bg-a);
  opacity: 1;
}

body::after {
  background-image:
    linear-gradient(
      180deg,
      rgba(247, 244, 239, 0.76) 0%,
      rgba(247, 244, 239, 0.68) 42%,
      rgba(247, 244, 239, 0.78) 100%
    ),
    var(--home-bg-b);
  opacity: 0;
}

body.home-bg-show-b::before {
  opacity: 0;
}

body.home-bg-show-b::after {
  opacity: 1;
}

@media (max-width: 768px) {
  body::before,
  body::after {
    inset: 0;
    transform: scale(1.02);
    transition: opacity 2.4s ease;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after {
    transform: scale(1.02);
    transition: opacity 0.8s linear;
  }
}

.hero-name-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.workspace-peek-btn {
  width: 34px;
  height: 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;

  padding: 0;

  border: 1px solid rgba(53, 89, 75, 0.16);
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.42);
  color: rgba(53, 89, 75, 0.52);

  cursor: pointer;

  opacity: 0.58;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  transition:
    opacity 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.workspace-peek-btn svg {
  width: 15px;
  height: 15px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workspace-peek-btn:hover {
  opacity: 1;

  color: var(--green);

  border-color: rgba(53, 89, 75, 0.28);

  background: rgba(255, 255, 255, 0.78);

  transform:
    translateY(-2px)
    scale(1.04);

  box-shadow:
    0 8px 22px rgba(48, 43, 37, 0.08);
}

.workspace-peek-btn:active {
  transform:
    translateY(0)
    scale(0.97);
}

.workspace-peek-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:
    max(24px, env(safe-area-inset-top))
    24px
    24px;
  background: rgba(7, 13, 10, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.38s ease,
    visibility 0s linear 0.38s,
    backdrop-filter 0.38s ease,
    -webkit-backdrop-filter 0.38s ease;
}

.workspace-peek-overlay[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.38s ease,
    visibility 0s linear 0s,
    backdrop-filter 0.38s ease,
    -webkit-backdrop-filter 0.38s ease;
}

.workspace-peek-window {
  position: relative;
  width: min(1020px, 100%);
  transform: translateY(18px) scale(0.985);
  opacity: 0;
  filter: blur(7px);
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.34s ease,
    filter 0.42s ease;
}

.workspace-peek-overlay[aria-hidden="false"] .workspace-peek-window {
  transform: translateY(0) scale(1);
  opacity: 1;
  filter: blur(0);
}

.workspace-peek-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(224, 235, 230, 0.22);
  border-radius: 50%;
  background: rgba(7, 13, 10, 0.44);
  color: #eef4f0;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease;
}

.workspace-peek-close:hover {
  transform: scale(1.06);
  background: rgba(10, 18, 14, 0.62);
  border-color: rgba(224, 235, 230, 0.32);
}

.workspace-peek-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(210, 225, 216, 0.16);
  border-radius: 30px;
  background: rgba(10, 16, 13, 0.72);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  isolation: isolate;
}

.workspace-peek-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      112deg,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0.05) 18%,
      rgba(255, 255, 255, 0.01) 34%,
      rgba(255, 255, 255, 0.1) 52%,
      rgba(255, 255, 255, 0.02) 66%,
      rgba(255, 255, 255, 0.15) 82%,
      rgba(255, 255, 255, 0.04) 100%
    ),
    radial-gradient(
      circle at 22% 18%,
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.06) 18%,
      transparent 42%
    ),
    radial-gradient(
      circle at 78% 32%,
      rgba(255, 255, 255, 0.14),
      rgba(255, 255, 255, 0.03) 16%,
      transparent 36%
    ),
    radial-gradient(
      circle at 50% 86%,
      rgba(255, 255, 255, 0.12),
      transparent 34%
    );
  mix-blend-mode: screen;
  opacity: 0.72;
  pointer-events: none;
}

.workspace-peek-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(
      90deg,
      rgba(10, 16, 13, 0.22) 0%,
      rgba(10, 16, 13, 0.08) 9%,
      rgba(255, 255, 255, 0.03) 19%,
      rgba(255, 255, 255, 0) 36%,
      rgba(255, 255, 255, 0) 64%,
      rgba(8, 14, 11, 0.08) 76%,
      rgba(8, 14, 11, 0.22) 100%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, 0) 34%,
      rgba(255, 255, 255, 0.06) 66%,
      rgba(6, 11, 8, 0.18) 100%
    );
  pointer-events: none;
}

.workspace-peek-image {
  display: block;

  width: 100%;
  height: auto;

  transform: scale(1.02);

  opacity: 1;

  filter:
    saturate(0.92)
    contrast(0.92)
    brightness(0.88)
    blur(0.6px);

  transition:
    opacity 0.45s ease,
    transform 0.7s ease,
    filter 0.45s ease;
}

.workspace-peek-image.is-switching {
  opacity: 0.78;

  transform:
    scale(1.035);

  filter:
    saturate(0.88)
    contrast(0.9)
    brightness(0.82)
    blur(2px);
}

.workspace-peek-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(10, 16, 13, 0.1) 0%,
      rgba(10, 16, 13, 0.02) 24%,
      rgba(10, 16, 13, 0.08) 60%,
      rgba(10, 16, 13, 0.32) 100%
    ),
    linear-gradient(
      101deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.02) 16%,
      rgba(255, 255, 255, 0) 28%,
      rgba(255, 255, 255, 0.1) 44%,
      rgba(255, 255, 255, 0) 58%,
      rgba(255, 255, 255, 0.08) 76%,
      rgba(255, 255, 255, 0) 100%
    );
  pointer-events: none;
}

.workspace-peek-caption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(219, 231, 224, 0.14);
  border-radius: 999px;
  background: rgba(7, 13, 10, 0.5);
  color: rgba(239, 244, 241, 0.94);
  font-family: var(--font-tech);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.24);
}

.workspace-peek-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5bd67b;
  box-shadow:
    0 0 0 4px rgba(91, 214, 123, 0.14),
    0 0 14px rgba(91, 214, 123, 0.6);
}

@media (max-width: 760px) {
  .workspace-peek-overlay {
    padding:
      max(16px, env(safe-area-inset-top))
      16px
      16px;
  }

  .workspace-peek-window {
    width: 100%;
  }

  .workspace-peek-frame {
    border-radius: 22px;
  }

  .workspace-peek-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .workspace-peek-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: flex-start;
    font-size: 10px;
    padding: 9px 12px;
  }
}
.workspace-peek-btn {
  animation:
    workspacePeekAppear 0.35s ease 8s backwards,
    workspacePeekHint 7s ease-in-out 10s infinite;
}

@keyframes workspacePeekHint {
  0%,
  72%,
  100% {
    box-shadow:
      0 0 0 0 rgba(53, 89, 75, 0);
    border-color:
      rgba(53, 89, 75, 0.16);
    color:
      rgba(53, 89, 75, 0.52);
  }

  78% {
    box-shadow:
      0 0 0 5px rgba(53, 89, 75, 0.08),
      0 0 18px rgba(53, 89, 75, 0.14);
    border-color:
      rgba(53, 89, 75, 0.34);
    color:
      rgba(53, 89, 75, 0.82);
  }

  84% {
    box-shadow:
      0 0 0 10px rgba(53, 89, 75, 0),
      0 0 24px rgba(53, 89, 75, 0);
    border-color:
      rgba(53, 89, 75, 0.2);
    color:
      rgba(53, 89, 75, 0.58);
  }
}

@keyframes workspacePeekAppear {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateY(3px) scale(0.9);
  }

  to {
    opacity: 0.58;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
}

.home-hero {
  --hero-spot-x: 50%;
  --hero-spot-y: 50%;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background:
    radial-gradient(
      circle 260px at var(--hero-spot-x) var(--hero-spot-y),
      rgba(91, 143, 118, 0.15),
      rgba(91, 143, 118, 0.06) 38%,
      transparent 72%
    );

  opacity: 0;

  transition: opacity 0.28s ease;
}

.home-hero.hero-spotlight-active::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .home-hero::after {
    display: none;
  }
}

.home-hero,
.carousel-container {
  opacity: 0;
  transform: translateY(18px);
}

body.home-ready .home-hero {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-ready .carousel-container {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.75s ease 0.18s,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.18s;
}

@media (prefers-reduced-motion: reduce) {
  .home-hero,
  .carousel-container {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 769px) {
  .home-hero {
    transform-style: preserve-3d;
    will-change: transform;
    transition:
      transform 0.18s ease-out,
      box-shadow 0.28s ease;
  }

  .home-hero.hero-tilt-active {
    box-shadow:
      0 24px 70px rgba(48, 43, 37, 0.09);
  }
}

.hero-sheen {
  position: absolute;
  top: -35%;
  left: -35%;
  width: 28%;
  height: 170%;

  z-index: 0;
  pointer-events: none;

  background:
    linear-gradient(
      105deg,
      transparent 0%,
      rgba(255, 255, 255, 0.04) 30%,
      rgba(255, 255, 255, 0.42) 50%,
      rgba(255, 255, 255, 0.05) 70%,
      transparent 100%
    );

  filter: blur(7px);

  transform:
    translateX(-180%)
    rotate(8deg);

  opacity: 0;
}

body.home-ready .hero-sheen {
  animation:
    heroSheenPass 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.75s 1 both;
}

@keyframes heroSheenPass {
  0% {
    opacity: 0;
    transform:
      translateX(-180%)
      rotate(8deg);
  }

  18% {
    opacity: 0.7;
  }

  78% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;
    transform:
      translateX(650%)
      rotate(8deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-sheen {
    display: none;
  }
}

.solution-picker-btn {
  will-change: transform;
  transition:
    transform 0.16s ease-out,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.solution-picker-btn {
  position: relative;
  isolation: isolate;

  padding: 15px 30px;

  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 14px;

  background:
    linear-gradient(
      135deg,
      #315f52 0%,
      #2f6f86 52%,
      #2f6f9f 100%
    );

  color: #ffffff;

  box-shadow:
    0 12px 28px rgba(35, 74, 88, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);

  letter-spacing: 0.01em;

  overflow: visible;

  transition:
    transform 0.16s ease-out,
    box-shadow 0.28s ease,
    filter 0.28s ease;
}

.solution-picker-btn::before {
  content: "";
  position: absolute;

  inset: -7px;

  z-index: -1;

  border: 1px solid rgba(69, 119, 99, 0);
  border-radius: 19px;

  opacity: 0;

  pointer-events: none;

  animation:
    solutionCtaSignal 9s ease-in-out infinite;
}

.solution-picker-btn:hover {
  filter:
    brightness(1.06)
    saturate(1.06);

  box-shadow:
    0 17px 38px rgba(35, 74, 88, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

@keyframes solutionCtaSignal {
  0%,
  68%,
  100% {
    opacity: 0;
    border-color: rgba(69, 119, 99, 0);
    box-shadow: 0 0 0 0 rgba(69, 119, 99, 0);
  }

  72% {
    opacity: 1;
    border-color: rgba(76, 137, 111, 0.38);
    box-shadow:
      0 0 0 0 rgba(76, 137, 111, 0.22),
      0 0 24px rgba(76, 137, 111, 0.18);
  }

  78% {
    opacity: 0;
    border-color: rgba(76, 137, 111, 0);
    box-shadow:
      0 0 0 12px rgba(76, 137, 111, 0),
      0 0 34px rgba(76, 137, 111, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .solution-picker-btn::before {
    animation: none;
  }
}

.home-solutions-hint {
  position: relative;
  z-index: 1;
}

.home-solutions-hint::after {
  content: "";
  position: absolute;
  inset: -6px -10px;

  z-index: -1;

  border-radius: 10px;

  background:
    radial-gradient(
      circle at center,
      rgba(95, 145, 118, 0.20),
      rgba(95, 145, 118, 0.08) 48%,
      transparent 72%
    );

  opacity: 0;

  transform: scale(0.92);

  pointer-events: none;

  animation:
    solutionsNavPulse 10s ease-in-out infinite;
}

@keyframes solutionsNavPulse {
  0%,
  70%,
  100% {
    opacity: 0;
    transform: scale(0.92);
  }

  74% {
    opacity: 0.9;
    transform: scale(1);
  }

  80% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-solutions-hint::after {
    animation: none;
  }
}

.solution-picker {
  width: min(1120px, calc(100vw - 48px));
  max-width: 1120px;

  padding: 40px 42px 34px;

  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 26px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.88),
      rgba(247, 250, 248, 0.78)
    );

  box-shadow:
    0 32px 90px rgba(24, 36, 31, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);

  backdrop-filter: blur(22px) saturate(1.12);
  -webkit-backdrop-filter: blur(22px) saturate(1.12);
}

.solution-picker-overlay.show {
  background:
    rgba(12, 18, 16, 0.28);
}

@media (max-width: 768px) {
  .solution-picker {
    width: 100%;
    max-width: 100%;

    padding:
      50px
      14px
      24px;

    border-radius: 20px;

    background:
      rgba(255, 255, 255, 0.91);

    backdrop-filter:
      blur(18px);

    -webkit-backdrop-filter:
      blur(18px);
  }
}

.home-estimator-hidden-trigger {
  display: none !important;
}

.solution-estimate-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  margin: 12px auto 0;
  padding: 12px 22px;

  border: 1px solid rgba(53, 89, 75, 0.24);
  border-radius: 13px;

  background:
    rgba(242, 247, 243, 0.78);

  color: var(--green);

  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;

  cursor: pointer;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.solution-estimate-btn:hover {
  transform: translateY(-2px);

  border-color:
    rgba(53, 89, 75, 0.42);

  background:
    rgba(235, 244, 238, 0.96);

  box-shadow:
    0 10px 26px
    rgba(53, 89, 75, 0.12);
}

.solution-estimate-icon {
  font-family: var(--font-tech);
  font-size: 17px;
  line-height: 1;
}

.hero-eyebrow {
  margin: 0 0 22px;

  text-align: center;

  font-family: var(--font-tech);
  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.28em;
  text-transform: uppercase;

  color: rgba(43, 92, 74, 0.64);
}

@media (max-width: 768px) {
  .hero-eyebrow {
    margin-bottom: 16px;
    padding: 0 14px;

    font-size: 9px;
    letter-spacing: 0.19em;
  }
}

.hero-watermark {
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);

  width: 100%;

  text-align: center;

  font-family: var(--font-main);
  font-size: clamp(72px, 9vw, 150px);
  font-weight: 300;
  line-height: 1;

  letter-spacing: 0.04em;

  color: rgba(43, 92, 74, 0.045);

  pointer-events: none;
  user-select: none;

  white-space: nowrap;

  z-index: 0;
}

.home-hero > *:not(.hero-watermark) {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-watermark {
    bottom: -6px;
    font-size: 54px;
    opacity: 0.65;
  }
}

.hero-data-curve {
  position: absolute !important;
  left: auto !important;
  right: 72px !important;
  bottom: 64px !important;

  width: 190px;
  height: 96px;

  opacity: 0.5;

  pointer-events: none;
  z-index: 1;
}

.hero-data-curve svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-data-grid-line {
  fill: none;
  stroke: rgba(43, 92, 74, 0.12);
  stroke-width: 1;
  stroke-dasharray: 3 5;
}

.hero-data-curve-line {
  fill: none;
  stroke: rgba(43, 92, 74, 0.38);
  stroke-width: 1.5;
  stroke-linecap: round;
}

.hero-data-dot {
  fill: rgba(43, 92, 74, 0.72);
}

@media (max-width: 768px) {
  .hero-data-curve {
    display: none;
  }
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;

  width: min(720px, calc(100% - 80px));
  margin: 16px auto 20px;
}

.hero-metric {
  padding: 11px 14px 10px;

  border: 1px solid rgba(43, 92, 74, 0.12);
  border-radius: 14px;

  background:
    rgba(255, 255, 255, 0.44);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  text-align: left;
}

.hero-metric strong {
  display: block;

  margin-bottom: 3px;

  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;

  color: #2b5c4a;
}

.hero-metric span {
  display: block;

  font-size: 10px;
  font-weight: 500;
  line-height: 1.35;

  color: rgba(52, 65, 59, 0.68);
}

@media (max-width: 768px) {
  .hero-metrics {
    grid-template-columns: 1fr;

    width: calc(100% - 28px);
    gap: 8px;

    margin: 14px auto 18px;
  }

  .hero-metric {
    padding: 10px 12px;
    text-align: center;
  }
}
.hero-avatar-orbit {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 92px;
  height: 92px;

  flex: 0 0 92px;
}

.hero-avatar-orbit img {
  position: relative;
  z-index: 3;

  width: 54px;
  height: 54px;

  object-fit: contain;
}

.hero-orbit {
  position: absolute;
  left: 50%;
  top: 50%;

  border: 1px solid rgba(43, 92, 74, 0.11);
  border-radius: 50%;

  transform: translate(-50%, -50%);

  pointer-events: none;
}

.hero-orbit-1 {
  width: 64px;
  height: 64px;
}

.hero-orbit-2 {
  width: 82px;
  height: 82px;
}

.hero-orbit-3 {
  width: 104px;
  height: 104px;
}

.hero-orbit-dot {
  position: absolute;

  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: rgba(43, 92, 74, 0.62);

  box-shadow:
    0 0 0 3px rgba(43, 92, 74, 0.05);

  z-index: 2;
}

.hero-orbit-dot-1 {
  left: 4px;
  top: 44px;
}

.hero-orbit-dot-2 {
  right: 8px;
  top: 20px;
}

.hero-orbit-dot-3 {
  right: 14px;
  bottom: 12px;
}

@media (max-width: 768px) {
  .hero-avatar-orbit {
    width: 70px;
    height: 70px;

    flex-basis: 70px;
  }

  .hero-avatar-orbit img {
    width: 44px;
    height: 44px;
  }

  .hero-orbit-3 {
    width: 82px;
    height: 82px;
  }
}

.home-automation-section {
  width: min(calc(100% - 48px), 1180px);
  margin: 40px auto 80px;
  padding: 38px 34px 34px;

  border: 1px solid rgba(43, 92, 74, 0.12);
  border-radius: 28px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.9),
      rgba(247, 250, 248, 0.8)
    );

  box-shadow:
    0 24px 70px rgba(22, 38, 31, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.home-section-head {
  margin-bottom: 26px;
}

.home-section-kicker {
  margin-bottom: 8px;

  font-family: var(--font-tech);
  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: rgba(43, 92, 74, 0.56);
}

.home-section-head h2 {
  margin: 0;

  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.05;

  color: #244f40;
}

.home-section-head p {
  margin: 10px 0 0;

  font-size: 13px;
  line-height: 1.5;

  color: rgba(42, 55, 49, 0.66);
}

.home-automation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-automation-card {
  display: flex;
  flex-direction: column;

  min-height: 245px;
  padding: 22px 20px 18px;

  border: 1px solid rgba(43, 92, 74, 0.11);
  border-radius: 20px;

  background:
    rgba(255, 255, 255, 0.62);

  box-shadow:
    0 10px 28px rgba(24, 43, 35, 0.07);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.home-automation-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(43, 92, 74, 0.24);

  box-shadow:
    0 18px 40px rgba(24, 43, 35, 0.11);
}

.home-automation-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  margin-bottom: 18px;

  border: 1px solid rgba(43, 92, 74, 0.12);
  border-radius: 15px;

  background:
    rgba(235, 244, 239, 0.78);

  font-family: var(--font-tech);
  font-size: 13px;
  font-weight: 700;

  color: #2b5c4a;
}

.home-automation-card h3 {
  margin: 0 0 10px;

  font-size: 18px;
  font-weight: 650;
  line-height: 1.2;

  color: #244f40;
}

.home-automation-card p {
  margin: 0 0 20px;

  font-size: 12px;
  line-height: 1.55;

  color: rgba(42, 55, 49, 0.7);
}

.home-automation-card a {
  display: inline-flex;
  align-items: center;

  width: fit-content;
  margin-top: auto;
  padding: 8px 12px;

  border: 1px solid rgba(43, 92, 74, 0.13);
  border-radius: 999px;

  background:
    rgba(245, 249, 246, 0.78);

  color: #2b5c4a;

  font-size: 11px;
  font-weight: 700;

  text-decoration: none;

  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.home-automation-card a:hover {
  transform: translateX(3px);

  background:
    rgba(233, 243, 237, 0.95);
}

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

@media (max-width: 640px) {
  .home-automation-section {
    width: calc(100% - 24px);
    margin: 24px auto 56px;
    padding: 24px 14px 18px;

    border-radius: 22px;
  }

  .home-automation-grid {
    grid-template-columns: 1fr;
  }

  .home-automation-card {
    min-height: 0;
  }
}

.home-automation-card {
  position: relative;
  overflow: hidden;
}

.home-automation-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      220px circle at var(--card-x, 50%) var(--card-y, 50%),
      rgba(70, 132, 105, 0.12),
      transparent 68%
    );

  opacity: 0;
  transition: opacity 0.28s ease;

  pointer-events: none;
}

.home-automation-card:hover::before {
  opacity: 1;
}

.home-automation-card > * {
  position: relative;
  z-index: 1;
}

.home-cases-section {
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto 84px;
  padding: 38px 34px 34px;

  border: 1px solid rgba(43, 92, 74, 0.12);
  border-radius: 28px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.9),
      rgba(247, 250, 248, 0.82)
    );

  box-shadow:
    0 24px 70px rgba(22, 38, 31, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.home-cases-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;

  margin-bottom: 26px;
}

.home-cases-head h2 {
  margin: 0;

  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.05;

  color: #244f40;
}

.home-cases-head p {
  margin: 10px 0 0;

  font-size: 13px;
  line-height: 1.5;

  color: rgba(42, 55, 49, 0.66);
}

.home-cases-all {
  flex: 0 0 auto;

  padding: 9px 14px;

  border: 1px solid rgba(43, 92, 74, 0.14);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.56);

  color: #2b5c4a;

  font-size: 11px;
  font-weight: 700;

  text-decoration: none;

  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.home-cases-all:hover {
  transform: translateX(3px);

  background: rgba(235, 244, 239, 0.92);
}

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

.home-case-card {
  overflow: hidden;

  border: 1px solid rgba(43, 92, 74, 0.11);
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.66);

  box-shadow:
    0 12px 32px rgba(24, 43, 35, 0.08);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.home-case-card:hover {
  transform: translateY(-5px);

  border-color: rgba(43, 92, 74, 0.22);

  box-shadow:
    0 20px 44px rgba(24, 43, 35, 0.12);
}

.home-case-media {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 190px;

  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(70, 132, 105, 0.13),
      transparent 68%
    );
}

.home-case-media img {
  width: 92px;
  height: 92px;

  object-fit: contain;

  transition: transform 0.3s ease;
}

.home-case-media-dashboard img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}
.home-case-card:hover .home-case-media img {
  transform: scale(1.06);
}

.home-case-content {
  padding: 18px 18px 20px;
}

.home-case-tag {
  display: inline-block;

  margin-bottom: 9px;

  font-family: var(--font-tech);
  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.13em;

  color: rgba(43, 92, 74, 0.58);
}

.home-case-content h3 {
  margin: 0 0 9px;

  font-size: 18px;
  font-weight: 650;
  line-height: 1.22;

  color: #244f40;
}

.home-case-content p {
  margin: 0;

  font-size: 12px;
  line-height: 1.55;

  color: rgba(42, 55, 49, 0.7);
}

@media (max-width: 900px) {
  .home-cases-grid {
    grid-template-columns: 1fr;
  }

  .home-cases-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .home-cases-section {
    width: calc(100% - 24px);
    margin-bottom: 56px;
    padding: 24px 14px 18px;

    border-radius: 22px;
  }
}

.home-final-cta {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;

  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto 72px;
  padding: 42px 44px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;

  background:
    radial-gradient(
      circle at 82% 34%,
      rgba(127, 177, 117, 0.18),
      transparent 38%
    ),
    linear-gradient(
      135deg,
      #153d31 0%,
      #0d2e25 58%,
      #08251e 100%
    );

  box-shadow:
    0 28px 70px rgba(4, 22, 17, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  color: #fff;
}

.home-final-cta::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -140px;

  width: 320px;
  height: 320px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(117, 166, 112, 0.14),
      transparent 70%
    );

  pointer-events: none;
}

.home-final-cta-copy {
  position: relative;
  z-index: 2;
}

.home-final-cta-kicker {
  margin-bottom: 10px;

  font-family: var(--font-tech);
  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.2em;
  text-transform: uppercase;

  color: rgba(184, 221, 180, 0.7);
}

.home-final-cta h2 {
  max-width: 620px;
  margin: 0;

  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 600;
  line-height: 1.05;

  color: #fff;
}

.home-final-cta p {
  max-width: 560px;
  margin: 14px 0 0;

  font-size: 13px;
  line-height: 1.55;

  color: rgba(236, 244, 239, 0.72);
}

.home-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 24px;
}

.home-final-cta-primary,
.home-final-cta-secondary {
  min-height: 46px;
  padding: 0 18px;

  border-radius: 13px;

  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;

  cursor: pointer;

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease;
}

.home-final-cta-primary {
  border: 1px solid rgba(255, 255, 255, 0.8);

  background: rgba(255, 255, 255, 0.96);

  color: #173f33;

  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.16);
}

.home-final-cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);

  background: rgba(255, 255, 255, 0.06);

  color: #f4f8f5;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home-final-cta-primary:hover,
.home-final-cta-secondary:hover {
  transform: translateY(-2px);
}

.home-final-cta-primary:hover {
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.22);
}

.home-final-cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
}

.home-final-cta-visual {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 240px;

  z-index: 2;
}

.home-final-calc {
  position: relative;
  z-index: 3;

  display: grid;
  grid-template-columns:
    repeat(4, 42px);
  gap: 8px;

  padding: 18px;

  border:
    1px solid
    rgba(255, 255, 255, 0.16);

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.16),
      rgba(255, 255, 255, 0.06)
    );

  box-shadow:
    0 22px 45px
    rgba(0, 0, 0, 0.25);

  transform: rotate(7deg);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.home-final-calc-screen {
  position: relative;

  grid-column: 1 / -1;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  height: 40px;

  margin-bottom: 4px;
  padding: 0 10px;

  overflow: hidden;

  border-radius: 8px;

  background:
    linear-gradient(
      90deg,
      rgba(193, 220, 174, 0.78),
      rgba(232, 241, 222, 0.92)
    );

  box-shadow:
    inset 0 0 0 1px
    rgba(255, 255, 255, 0.32);
}

.home-final-calc button {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 38px;

  padding: 0;

  border:
    1px solid
    rgba(255, 255, 255, 0.12);

  border-radius: 9px;

  background:
    rgba(255, 255, 255, 0.12);

  color:
    rgba(255, 255, 255, 0.88);

  font-family: var(--font-tech);
  font-size: 13px;
  font-weight: 700;

  cursor: pointer;

  box-shadow:
    inset 0 1px 0
    rgba(255, 255, 255, 0.08);

  transition:
    transform 0.12s ease,
    background-color 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease;
}

.home-final-calc button:hover {
  background:
    rgba(255, 255, 255, 0.2);

  border-color:
    rgba(255, 255, 255, 0.24);

  transform:
    translateY(-1px);

  box-shadow:
    0 5px 12px
    rgba(0, 0, 0, 0.16),
    inset 0 1px 0
    rgba(255, 255, 255, 0.12);
}

.home-final-calc button:active {
  transform:
    translateY(1px)
    scale(0.96);

  background:
    rgba(184, 221, 180, 0.22);

  box-shadow:
    inset 0 2px 5px
    rgba(0, 0, 0, 0.2);
}

.home-final-calc
button[data-calc="operator"] {
  color: #cde8c6;

  background:
    rgba(138, 188, 126, 0.14);
}

.home-final-calc
button[data-calc="equals"] {
  color: #173f33;

  background:
    rgba(211, 238, 194, 0.9);

  border-color:
    rgba(235, 250, 227, 0.7);
}

.home-final-calc
button[data-calc="clear"] {
  color: #f0d4c6;

  background:
    rgba(190, 107, 77, 0.14);
}

.home-final-bars {
  position: absolute;
  right: 26px;
  bottom: 36px;

  display: flex;
  align-items: flex-end;
  gap: 8px;

  height: 90px;

  z-index: 2;
}

.home-final-bars span {
  display: block;

  width: 26px;

  border-radius: 6px 6px 2px 2px;

  background:
    linear-gradient(
      180deg,
      #9bc176,
      #557e4d
    );

  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.16);
}

.home-final-bars span:nth-child(1) {
  height: 42px;
}

.home-final-bars span:nth-child(2) {
  height: 68px;
}

.home-final-bars span:nth-child(3) {
  height: 88px;

  background:
    linear-gradient(
      180deg,
      #d8e4d1,
      #9bb39d
    );
}

.home-final-chart-line {
  position: absolute;
  left: 14px;
  bottom: 42px;

  width: 170px;
  height: 90px;

  border-left: 3px solid rgba(191, 218, 163, 0.48);
  border-bottom: 3px solid rgba(191, 218, 163, 0.48);

  border-radius: 0 0 0 34px;

  transform: rotate(-18deg);

  opacity: 0.72;
}

.home-final-chart-line::after {
  content: "";
  position: absolute;
  right: -8px;
  top: -5px;

  width: 12px;
  height: 12px;

  border-radius: 50%;

  background: #a9ce83;

  box-shadow:
    0 0 0 5px rgba(169, 206, 131, 0.12);
}

@media (max-width: 820px) {
  .home-final-cta {
    grid-template-columns: 1fr;

    padding: 34px 24px;
  }

  .home-final-cta-visual {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .home-final-cta {
    width: calc(100% - 24px);
    margin-bottom: 54px;
    padding: 28px 18px;

    border-radius: 22px;
  }

  .home-final-cta h2 {
    font-size: 30px;
  }

  .home-final-cta-actions {
    flex-direction: column;
  }

  .home-final-cta-primary,
  .home-final-cta-secondary {
    width: 100%;
  }

  .home-final-cta-visual {
    transform: scale(0.9);
    min-height: 190px;
  }
}

.home-case-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.home-motto {
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto 44px;
  padding: 18px 8px 22px;

  text-align: center;
}

.home-motto-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;

  font-family: var(--font-main);
  text-transform: uppercase;

  letter-spacing: 0.03em;
}

.home-motto-line span {
  font-size: clamp(26px, 3.8vw, 54px);
  font-weight: 300;

  color: rgba(36, 79, 64, 0.42);
}

.home-motto-line strong {
  font-size: clamp(30px, 4.2vw, 62px);
  font-weight: 700;

  color: #244f40;
}

.home-motto p {
  margin: 10px 0 0;

  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;

  letter-spacing: 0.04em;

  color: rgba(42, 55, 49, 0.58);
}

@media (max-width: 640px) {
  .home-motto {
    width: calc(100% - 24px);
    margin-bottom: 34px;
    padding: 10px 6px 16px;
  }

  .home-motto-line {
    gap: 7px;
  }

  .home-motto p {
    font-size: 11px;
  }
}

.workspace-peek-curtain {
  position: absolute;
  top: -3%;
  right: -2%;
  bottom: -3%;

  width: 27%;

  z-index: 3;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(8, 12, 10, 0) 0%,
      rgba(8, 12, 10, 0.18) 10%,
      rgba(7, 11, 9, 0.46) 28%,
      rgba(5, 8, 7, 0.72) 58%,
      rgba(3, 5, 4, 0.9) 100%
    ),
    repeating-linear-gradient(
      94deg,
      rgba(255, 255, 255, 0.025) 0px,
      rgba(255, 255, 255, 0.025) 18px,
      rgba(0, 0, 0, 0.06) 34px,
      rgba(255, 255, 255, 0.015) 58px
    );

  filter: blur(1.4px);

  transform:
    translateX(32%)
    skewX(-2deg);

  opacity: 0;

  transition:
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.7s ease;
}

.workspace-peek-overlay.show .workspace-peek-curtain {
  transform:
    translateX(0)
    skewX(-2deg);

  opacity: 1;
}

.workspace-peek-curtain::before {
  content: "";

  position: absolute;
  left: -34px;
  top: 0;
  bottom: 0;

  width: 70px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.055),
      rgba(0, 0, 0, 0.12)
    );

  filter: blur(10px);

  opacity: 0.9;
}

.workspace-peek-curtain::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      ellipse at 12% 22%,
      rgba(255, 255, 255, 0.055),
      transparent 30%
    ),
    radial-gradient(
      ellipse at 40% 68%,
      rgba(0, 0, 0, 0.2),
      transparent 44%
    );

  opacity: 0.75;
}

@media (max-width: 768px) {
  .workspace-peek-curtain {
    width: 34%;
  }
}
@media (max-width: 768px) {
  .workspace-peek-btn {
    margin-right: 30px;
  }
}

.workspace-peek-progress {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 4px;
}

.workspace-peek-progress span {
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background:
    rgba(239, 244, 241, 0.28);

  transition:
    width 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

.workspace-peek-progress span.active {
  width: 14px;

  border-radius: 999px;

  background:
    rgba(108, 219, 137, 0.92);

  box-shadow:
    0 0 10px
    rgba(91, 214, 123, 0.42);
}

.hero-avatar-orbit {
  cursor: pointer;
  user-select: none;
}

.hero-avatar-orbit.easter-click-1 {
  animation: heroAvatarEasterTap 0.34s ease;
}

.hero-avatar-orbit.easter-click-2 {
  animation: heroAvatarEasterPulse 0.52s ease;
}

.hero-avatar-orbit.easter-unlocked {
  animation: heroAvatarEasterUnlock 0.72s ease;
}

.hero-easter-terminal {
  position: fixed;
  left: 50%;
  top: 50%;

  z-index: 6200;

  width: min(460px, calc(100vw - 32px));

  padding: 22px 24px;

  border: 1px solid rgba(116, 224, 145, 0.36);
  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      rgba(5, 17, 12, 0.96),
      rgba(8, 29, 20, 0.94)
    );

  color: #8be9a5;

  font-family: var(--font-tech);
  font-size: 15px;
  line-height: 1.7;

  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.42),
    0 0 42px rgba(91, 214, 123, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  opacity: 0;

  transform:
    translate(-50%, -46%)
    scale(0.94);

  pointer-events: none;

  transition:
    opacity 0.32s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-easter-terminal.show {
  opacity: 1;

  transform:
    translate(-50%, -50%)
    scale(1);
}

.hero-easter-terminal::before {
  content: "●  ●  ●";

  display: block;

  margin-bottom: 14px;

  color: rgba(139, 233, 165, 0.72);

  font-size: 9px;
  letter-spacing: 4px;
}

.hero-easter-terminal strong {
  display: block;

  margin-bottom: 5px;

  color: #a6f2b9;

  font-size: 19px;
  font-weight: 700;
}

.hero-easter-terminal span {
  color: rgba(166, 242, 185, 0.72);
}

.hero-easter-cursor {
  display: inline-block;

  width: 7px;
  height: 15px;

  margin-left: 4px;

  vertical-align: -2px;

  background: #8be9a5;

  animation: heroEasterCursor 0.72s steps(1) infinite;
}

@keyframes heroAvatarEasterTap {
  50% {
    transform: scale(0.94);
  }
}

@keyframes heroAvatarEasterPulse {
  50% {
    filter:
      drop-shadow(
        0 0 12px rgba(53, 89, 75, 0.28)
      );
  }
}

@keyframes heroAvatarEasterUnlock {
  35% {
    transform: scale(1.07);
    filter:
      drop-shadow(
        0 0 18px rgba(71, 151, 105, 0.42)
      );
  }

  100% {
    transform: scale(1);
  }
}

@keyframes heroEasterCursor {
  0%,
  49% {
    opacity: 1;
  }

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

@media (max-width: 768px) {
  .hero-easter-terminal {
    width: calc(100vw - 28px);

    padding: 19px 18px;

    border-radius: 16px;

    font-size: 13px;
  }

  .hero-easter-terminal strong {
    font-size: 17px;
  }
}

@media (min-width: 769px) {
  .home-push-scene {
    position: relative;

    width: 100%;
    height: var(--home-scene-height);

    display: flow-root;
  }

    .home-push-scene > .home-hero,
    .home-push-scene > .carousel-container,
    .home-push-scene > .home-automation-section,
    .home-push-scene > .home-cases-section,
    .home-push-scene > .home-final-cta,
    .home-push-scene > .home-process-metaphors {
    position: sticky;
    top: 82px;

    z-index: 2;
  }

  .home-push-scene-hero {
    padding-top: 72px;
  }

  .home-push-scene-hero > .home-hero {
    margin-top: 0;
  }

  .home-push-scene-carousel {
    padding-top: 0;
    margin-top: -440px;
    margin-bottom: 110px;
  }

  .home-push-scene-carousel >
  .carousel-container {
    margin-top: 0;
    margin-bottom: 0;
    transform: translateY(0);
  }

  .home-push-scene-carousel >
  .carousel-container {
    margin-top: 0;
    margin-bottom: 0;
  }

  .home-push-scene-automation {
    padding-top: 40px;
    margin-bottom: 80px;
  }

  .home-push-scene-automation >
  .home-automation-section {
    margin-top: 0;
    margin-bottom: 0;
  }

  .home-push-scene-cases {
    margin-bottom: 84px;
  }

  .home-push-scene-cases >
  .home-cases-section {
    margin-top: 0;
    margin-bottom: 0;
  }

  .home-push-scene-final {
    margin-bottom: 80px;
  }
  
  .home-push-scene-final >
  .home-final-cta {
    margin-top: 0;
  }

  .home-push-scene-process {
    margin-bottom: 84px;
  }
  
  .home-push-scene-process >
  .home-process-metaphors {
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media (min-width: 769px) {
  .home-final-calc {
    --calc-x: 0px;
    --calc-y: 0px;

    transform:
      translate3d(
        var(--calc-x),
        var(--calc-y),
        0
      )
      rotate(7deg);

    transition:
      filter 0.3s ease,
      box-shadow 0.3s ease;
  }

  .home-final-calc-screen {
    position: relative;
    overflow: hidden;

    transition:
      background 0.28s ease,
      box-shadow 0.28s ease,
      filter 0.28s ease;
  }

  .home-final-calc-screen::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
      linear-gradient(
        105deg,
        transparent 20%,
        rgba(
          255,
          255,
          255,
          0.68
        ) 48%,
        transparent 76%
      );

    transform:
      translateX(-150%);

    opacity: 0;
  }

  .home-final-calc.is-calculator-ready {
    filter:
      drop-shadow(
        0 14px 20px
        rgba(0, 0, 0, 0.22)
      );
  }

  .home-final-calc.is-calculator-ready
  .home-final-calc-screen {
    background:
      linear-gradient(
        90deg,
        rgba(
          205,
          238,
          181,
          0.98
        ),
        rgba(
          242,
          250,
          232,
          1
        )
      );

    box-shadow:
      0 0 18px
      rgba(
        193,
        231,
        164,
        0.34
      ),
      inset 0 0 0 1px
      rgba(
        255,
        255,
        255,
        0.5
      );
  }

  .home-final-calc.is-calculator-ready
  .home-final-calc-screen::after {
    opacity: 1;

    animation:
      homeCalcScan
      1.25s
      ease
      infinite;
  }

  .home-final-calc.is-calculator-booting {
    animation:
      homeCalcBoot
      0.32s
      cubic-bezier(
        0.22,
        1,
        0.36,
        1
      );
  }

  .home-final-calc.is-calculator-booting
  .home-final-calc-screen {
    filter:
      brightness(1.28);

    box-shadow:
      0 0 28px
      rgba(
        206,
        242,
        177,
        0.56
      );
  }
}

@keyframes homeCalcScan {
  from {
    transform:
      translateX(-150%);
  }

  to {
    transform:
      translateX(150%);
  }
}

@keyframes homeCalcBoot {
  0% {
    scale: 1;
  }

  48% {
    scale: 1.045;
  }

  100% {
    scale: 1;
  }
}
.home-final-calc-value {
  display: block;

  max-width: 100%;

  overflow: hidden;

  font-family: var(--font-tech);
  font-size: 15px;
  font-weight: 700;

  line-height: 1;
  letter-spacing: 0.04em;

  color:
    rgba(
      34,
      76,
      56,
      0.9
    );

  text-align: right;
  white-space: nowrap;

  text-shadow:
    0 1px 0
    rgba(
      255,
      255,
      255,
      0.5
    );

  z-index: 2;
}

.home-final-calc {
  grid-template-columns:
    repeat(4, 42px);

  grid-template-areas:
    "screen screen screen screen"
    "clear zero nine eight"
    "seven six five four"
    "three two one plus"
    "equals minus multiply divide";
}

.home-final-calc-screen {
  grid-area: screen;
}

.calc-clear {
  grid-area: clear;
}

.calc-0 {
  grid-area: zero;
}

.calc-9 {
  grid-area: nine;
}

.calc-8 {
  grid-area: eight;
}

.calc-7 {
  grid-area: seven;
}

.calc-6 {
  grid-area: six;
}

.calc-5 {
  grid-area: five;
}

.calc-4 {
  grid-area: four;
}

.calc-3 {
  grid-area: three;
}

.calc-2 {
  grid-area: two;
}

.calc-1 {
  grid-area: one;
}

.calc-plus {
  grid-area: plus;
}

.calc-equals {
  grid-area: equals;
}

.calc-minus {
  grid-area: minus;
}

.calc-multiply {
  grid-area: multiply;
}

.calc-divide {
  grid-area: divide;
}

.home-process-metaphors {
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto 84px;
  padding: 38px 34px 28px;

  border: 1px solid rgba(43, 92, 74, 0.12);
  border-radius: 28px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.92),
      rgba(247, 250, 248, 0.84)
    );

  box-shadow:
    0 24px 70px rgba(22, 38, 31, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.home-process-metaphors-head {
  margin-bottom: 24px;
}

.home-process-metaphors-head h2 {
  margin: 0;

  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 600;
  line-height: 1.05;

  color: #244f40;
}

.home-process-metaphors-head p {
  margin: 10px 0 0;

  font-size: 13px;
  line-height: 1.55;

  color: rgba(42, 55, 49, 0.66);
}

.home-process-stage {
  position: relative;

  overflow: hidden;

  border: 1px solid rgba(43, 92, 74, 0.12);
  border-radius: 24px;

  background: #13231d;

  box-shadow:
    0 20px 52px rgba(16, 30, 24, 0.18);
}

.home-process-slides {
  position: relative;

  aspect-ratio: 16 / 9;

  overflow: hidden;
}

.home-process-slide {
  position: absolute;
  inset: 0;

  opacity: 0;
  visibility: hidden;

  transform: scale(1.018);

  transition:
    opacity 0.58s ease,
    visibility 0.58s ease,
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-process-slide.is-active {
  opacity: 1;
  visibility: visible;

  transform: scale(1);
}

.home-process-slide::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(5, 12, 9, 0.02) 0%,
      rgba(5, 12, 9, 0.08) 48%,
      rgba(5, 12, 9, 0.68) 100%
    );

  pointer-events: none;
}

.home-process-slide img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.home-process-caption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 22px;

  z-index: 2;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.home-process-caption span {
  flex: 0 0 auto;

  padding: 7px 10px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;

  background: rgba(5, 12, 9, 0.34);

  color: rgba(255, 255, 255, 0.72);

  font-family: var(--font-tech);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home-process-caption strong {
  max-width: 680px;

  color: #ffffff;

  font-size: clamp(22px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.08;

  text-align: right;

  text-shadow:
    0 3px 18px rgba(0, 0, 0, 0.34);
}

.home-process-arrow {
  position: absolute;
  top: 50%;

  z-index: 5;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;

  background: rgba(6, 14, 10, 0.38);
  color: rgba(255, 255, 255, 0.92);

  font-family: var(--font-tech);
  font-size: 22px;

  cursor: pointer;

  transform: translateY(-50%);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease;
}

.home-process-arrow:hover {
  background: rgba(6, 14, 10, 0.58);

  border-color: rgba(255, 255, 255, 0.34);
}

.home-process-arrow-prev {
  left: 18px;
}

.home-process-arrow-next {
  right: 18px;
}

.home-process-arrow-prev:hover {
  transform:
    translateY(-50%)
    translateX(-2px);
}

.home-process-arrow-next:hover {
  transform:
    translateY(-50%)
    translateX(2px);
}

.home-process-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  margin-top: 18px;
}

.home-process-dots button {
  width: 7px;
  height: 7px;

  padding: 0;

  border: none;
  border-radius: 999px;

  background: rgba(43, 92, 74, 0.22);

  cursor: pointer;

  transition:
    width 0.26s ease,
    background-color 0.26s ease,
    transform 0.26s ease;
}

.home-process-dots button:hover {
  transform: scale(1.18);
}

.home-process-dots button.is-active {
  width: 24px;

  background: #35594b;
}

.home-process-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  margin-top: 20px;
  padding-top: 20px;

  border-top: 1px solid rgba(43, 92, 74, 0.1);
}

.home-process-footer p {
  max-width: 620px;

  margin: 0;

  color: rgba(42, 55, 49, 0.66);

  font-size: 12px;
  line-height: 1.55;
}

.home-process-footer a {
  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;

  padding: 10px 15px;

  border: 1px solid rgba(43, 92, 74, 0.16);
  border-radius: 999px;

  background: rgba(242, 247, 243, 0.84);

  color: #2b5c4a;

  font-size: 11px;
  font-weight: 700;

  text-decoration: none;

  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.home-process-footer a:hover {
  transform: translateX(3px);

  background: rgba(233, 243, 237, 0.98);
  border-color: rgba(43, 92, 74, 0.28);
}

@media (max-width: 760px) {
  .home-process-metaphors {
    width: calc(100% - 24px);

    margin-bottom: 56px;

    padding: 24px 14px 20px;

    border-radius: 22px;
  }

  .home-process-metaphors-head {
    margin-bottom: 18px;
  }

  .home-process-metaphors-head h2 {
    font-size: 30px;
  }

  .home-process-stage {
    border-radius: 18px;
  }

  .home-process-slides {
  aspect-ratio: 3 / 4;
}

  .home-process-slide img {
    object-position: center;
  }

  .home-process-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;

    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .home-process-caption strong {
  max-width: 100%;

  font-size: 22px;
  line-height: 1.08;

  text-align: left;
}

  .home-process-arrow {
  width: 34px;
  height: 34px;

  font-size: 16px;

  background:
    rgba(6, 14, 10, 0.28);
}

  .home-process-arrow-prev {
    left: 10px;
  }

  .home-process-arrow-next {
    right: 10px;
  }

  .home-process-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .home-process-footer a {
    width: 100%;

    justify-content: center;
  }
  .home-process-footer {
  padding-bottom: 58px;
}

.home-process-footer a {
  min-height: 44px;

  background:
    rgba(233, 243, 237, 0.96);

  border-color:
    rgba(43, 92, 74, 0.24);
}
}

@media (prefers-reduced-motion: reduce) {
  .home-process-slide,
  .home-process-arrow,
  .home-process-dots button,
  .home-process-footer a {
    transition: none;
  }
}

#reviews-float-btn,
#contact-float-btn {
  min-width: 230px;
  min-height: 58px;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 10px 12px;

  border: 1px solid rgba(43, 92, 74, 0.16) !important;
  border-radius: 18px !important;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.94),
      rgba(247, 250, 248, 0.9)
    ) !important;

  color: #244f40 !important;

  box-shadow:
    0 16px 38px rgba(18, 34, 27, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.76) !important;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  font-family: var(--font-main) !important;

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease !important;
}

#reviews-float-btn:hover,
#contact-float-btn:hover {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.98),
      rgba(238, 246, 241, 0.96)
    ) !important;

  border-color:
    rgba(43, 92, 74, 0.28) !important;

  color: #244f40 !important;

  box-shadow:
    0 20px 44px rgba(18, 34, 27, 0.19),
    inset 0 1px 0 rgba(255, 255, 255, 0.86) !important;
}

#reviews-float-btn:hover {
  transform:
    translateY(-50%)
    translateX(4px);
}

#contact-float-btn:hover {
  transform:
    translateY(-3px);
}

.float-action-icon {
  width: 36px;
  height: 36px;

  flex: 0 0 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(43, 92, 74, 0.14);
  border-radius: 12px;

  background:
    rgba(233, 243, 237, 0.9);

  color: #2b5c4a;

  font-family: var(--font-tech);
  font-size: 15px;
  font-weight: 700;
}

.float-action-copy {
  min-width: 0;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  text-align: left;
}

.float-action-copy strong {
  color: #244f40;

  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.float-action-copy small {
  margin-top: 3px;

  color: rgba(42, 55, 49, 0.58);

  font-size: 9px;
  font-weight: 500;
  line-height: 1.2;

  white-space: nowrap;
}

.float-action-arrow {
  margin-left: auto;

  color: rgba(43, 92, 74, 0.46);

  font-family: var(--font-tech);
  font-size: 14px;
}

.reviews-panel {
  width: 420px;

  padding: 26px 24px 22px;

  border: 1px solid rgba(43, 92, 74, 0.14) !important;
  border-radius: 24px !important;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(248, 250, 248, 0.96)
    ) !important;

  box-shadow:
    0 28px 70px rgba(16, 28, 23, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.84) !important;

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.reviews-panel-header {
  margin-bottom: 16px;
}

.reviews-panel-badge,
.form-modal-kicker {
  width: fit-content;

  margin-bottom: 10px;

  color: rgba(43, 92, 74, 0.6) !important;

  font-family: var(--font-tech);
  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reviews-panel-header h3,
.contact-modal h3,
.review-form-modal h3 {
  margin: 0;

  color: #244f40 !important;

  font-family: var(--font-main) !important;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.08;

  letter-spacing: -0.03em;
}

.reviews-panel-intro,
.form-modal-intro {
  margin: 9px 0 0;

  color: rgba(42, 55, 49, 0.62);

  font-size: 11px;
  line-height: 1.55;
}

.reviews-panel-trust {
  display: flex;
  align-items: center;
  gap: 11px;

  margin: 18px 0 16px;
  padding: 13px 14px;

  border: 1px solid rgba(43, 92, 74, 0.11);
  border-radius: 16px;

  background:
    rgba(242, 247, 243, 0.76);
}

.reviews-panel-trust-mark {
  width: 36px;
  height: 36px;

  flex: 0 0 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: #2f5a49;
  color: #ffffff;

  font-size: 15px;
}

.reviews-panel-trust > div:last-child {
  display: flex;
  flex-direction: column;
}

.reviews-panel-trust strong {
  color: #244f40;

  font-size: 11px;
  font-weight: 700;
}

.reviews-panel-trust span {
  margin-top: 2px;

  color: rgba(42, 55, 49, 0.56);

  font-size: 9px;
}

.reviews-panel-list {
  max-height: 390px;

  margin: 0;

  padding-right: 4px;
}

.review-card {
  margin-bottom: 10px;
  padding: 15px 15px 13px;

  border: 1px solid rgba(43, 92, 74, 0.09) !important;
  border-radius: 16px;

  background:
    rgba(255, 255, 255, 0.72);

  box-shadow:
    0 8px 24px rgba(28, 42, 35, 0.045);
}

.review-card:last-child {
  margin-bottom: 0;
}

.review-stars {
  margin-bottom: 8px;

  color: #c99522;

  font-size: 13px;
  letter-spacing: 1px;
}

.review-text {
  margin-bottom: 10px;

  color: rgba(32, 43, 38, 0.82);

  font-family: var(--font-main) !important;
  font-size: 11px;
  line-height: 1.55;
}

.review-author {
  color: #244f40;

  font-family: var(--font-main) !important;
  font-size: 10px;
  font-weight: 700;
}

.review-date {
  color: rgba(42, 55, 49, 0.44);

  font-family: var(--font-main) !important;
  font-size: 9px;
}

.reviews-panel-footer {
  margin-top: 16px;
  padding-top: 16px;

  border-top: 1px solid rgba(43, 92, 74, 0.1);
}

.reviews-panel-footer-copy {
  display: flex;
  flex-direction: column;

  margin-bottom: 10px;
}

.reviews-panel-footer-copy strong {
  color: #244f40;

  font-size: 11px;
  font-weight: 700;
}

.reviews-panel-footer-copy span {
  margin-top: 2px;

  color: rgba(42, 55, 49, 0.55);

  font-size: 10px;
}

.reviews-panel-leave-btn,
.review-submit-btn,
.contact-send-btn {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 46px;

  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 14px !important;

  background:
    linear-gradient(
      135deg,
      #315f52 0%,
      #2f6f86 100%
    ) !important;

  color: #ffffff !important;

  font-family: var(--font-main) !important;
  font-size: 11px;
  font-weight: 700;

  box-shadow:
    0 12px 28px rgba(35, 74, 88, 0.19) !important;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.reviews-panel-leave-btn:hover,
.review-submit-btn:hover,
.contact-send-btn:hover {
  transform: translateY(-2px);

  filter: brightness(1.05);

  box-shadow:
    0 16px 34px rgba(35, 74, 88, 0.25) !important;
}

.contact-modal,
.review-form-modal {
  max-width: 500px;

  padding: 30px 28px 26px;

  border: 1px solid rgba(43, 92, 74, 0.14) !important;
  border-radius: 24px !important;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(248, 250, 248, 0.97)
    ) !important;

  box-shadow:
    0 30px 80px rgba(16, 28, 23, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.84) !important;
}

.form-field {
  margin-top: 18px;
}

.form-field label {
  margin: 0 0 7px;

  color: rgba(33, 46, 40, 0.82) !important;

  font-family: var(--font-main) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
}

.contact-modal input,
.contact-modal textarea,
.review-form-modal input,
.review-form-modal textarea {
  width: 100%;

  padding: 12px 13px;

  border: 1px solid rgba(43, 92, 74, 0.14) !important;
  border-radius: 13px !important;

  background:
    rgba(255, 255, 255, 0.82) !important;

  color: #27342f;

  font-family: var(--font-main) !important;
  font-size: 13px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72);

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.contact-modal textarea,
.review-form-modal textarea {
  min-height: 120px;

  resize: vertical;
}

.contact-modal input:focus,
.contact-modal textarea:focus,
.review-form-modal input:focus,
.review-form-modal textarea:focus {
  border-color:
    rgba(43, 92, 74, 0.34) !important;

  background:
    #ffffff !important;

  box-shadow:
    0 0 0 4px rgba(53, 89, 75, 0.08) !important;
}

.contact-method-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 8px;

  margin-bottom: 9px;
}

.contact-method-btn {
  min-height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 0 10px;

  border: 1px solid rgba(43, 92, 74, 0.12) !important;
  border-radius: 12px !important;

  background:
    rgba(247, 250, 248, 0.9) !important;

  color: rgba(42, 55, 49, 0.74) !important;

  font-family: var(--font-main) !important;
  font-size: 10px;
  font-weight: 700;

  box-shadow: none !important;
}

.contact-method-btn:hover {
  transform: none;

  border-color:
    rgba(43, 92, 74, 0.26) !important;

  background:
    rgba(237, 245, 240, 0.96) !important;

  color: #2b5c4a !important;
}

.contact-method-btn.active {
  border-color: #35594b !important;

  background: #35594b !important;

  color: #ffffff !important;
}

.review-rating {
  display: flex;
  gap: 6px;
}

.review-rating button {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: 1px solid rgba(43, 92, 74, 0.08);
  border-radius: 10px;

  background:
    rgba(247, 250, 248, 0.74);

  color: rgba(43, 92, 74, 0.22);

  font-size: 18px;

  transition:
    transform 0.16s ease,
    color 0.16s ease,
    background-color 0.16s ease,
    border-color 0.16s ease;
}

.review-rating button:hover {
  transform: translateY(-2px);

  color: #c99522;

  border-color:
    rgba(201, 149, 34, 0.24);

  background:
    rgba(255, 249, 232, 0.9);
}

.review-rating button.active {
  color: #c99522;

  border-color:
    rgba(201, 149, 34, 0.28);

  background:
    rgba(255, 248, 226, 0.96);
}

.form-security {
  margin-top: 18px;
  padding-top: 14px;

  border-top: 1px solid rgba(43, 92, 74, 0.08);
}

.form-security > span {
  display: block;

  margin-bottom: 8px;

  color: rgba(42, 55, 49, 0.48);

  font-size: 9px;
  font-weight: 600;
}

.turnstile-wrapper {
  justify-content: flex-start;
}

.contact-modal-note {
  margin-top: 11px;

  text-align: center;

  color: rgba(42, 55, 49, 0.48);

  font-size: 9px;
}

.reviews-panel-close,
.review-form-close,
.contact-close {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: 1px solid rgba(43, 92, 74, 0.08);
  border-radius: 50%;

  background:
    rgba(247, 250, 248, 0.8);

  color: rgba(42, 55, 49, 0.56);

  font-size: 19px;
  line-height: 1;
}

.reviews-panel-close:hover,
.review-form-close:hover,
.contact-close:hover {
  background:
    rgba(235, 244, 238, 0.96);

  color: #244f40;
}

@media (max-width: 768px) {
  #reviews-float-btn,
  #contact-float-btn {
    min-width: 0;
    min-height: 50px;

    padding: 7px 9px;

    border-radius: 15px !important;
  }

  .float-action-copy small,
  .float-action-arrow {
    display: none;
  }

  .float-action-copy strong {
    font-size: 10px;
  }

  .float-action-icon {
    width: 32px;
    height: 32px;

    flex-basis: 32px;

    border-radius: 10px;

    font-size: 13px;
  }

  .reviews-panel {
    width: auto;

    left: 10px;
    right: 10px;

    padding: 22px 16px 18px;

    border-radius: 20px !important;
  }

  .reviews-panel-header h3,
  .contact-modal h3,
  .review-form-modal h3 {
    font-size: 23px;
  }

  .contact-modal,
  .review-form-modal {
    padding: 26px 16px 22px;

    border-radius: 20px !important;
  }

  .contact-method-options {
    grid-template-columns: 1fr;
  }

  .contact-method-btn {
    justify-content: flex-start;

    padding: 0 13px;
  }

  .turnstile-wrapper {
    justify-content: center;
  }
}

#reviews-float-btn,
#contact-float-btn {
  min-width: 206px;
  min-height: 54px;

  display: flex;
  align-items: center;
  gap: 11px;

  padding: 8px 11px;

  border: 1px solid rgba(43, 92, 74, 0.16) !important;
  border-radius: 17px !important;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.95),
      rgba(245, 249, 247, 0.9)
    ) !important;

  color: #244f40 !important;

  font-family: var(--font-main) !important;

  box-shadow:
    0 14px 34px rgba(20, 34, 28, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.82) !important;

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  overflow: hidden;

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease !important;
}

#reviews-float-btn::before,
#contact-float-btn::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      120px circle at 18% 50%,
      rgba(92, 151, 123, 0.12),
      transparent 72%
    );

  opacity: 0;

  pointer-events: none;

  transition: opacity 0.24s ease;
}

#reviews-float-btn:hover::before,
#contact-float-btn:hover::before {
  opacity: 1;
}

#reviews-float-btn:hover,
#contact-float-btn:hover {
  border-color:
    rgba(43, 92, 74, 0.28) !important;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.99),
      rgba(237, 245, 240, 0.97)
    ) !important;

  color: #244f40 !important;

  box-shadow:
    0 18px 40px rgba(20, 34, 28, 0.19),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

#reviews-float-btn {
  left: 18px;
}

#reviews-float-btn:hover {
  transform:
    translateY(-50%)
    translateX(4px);
}

#contact-float-btn {
  right: 18px;
}

#contact-float-btn:hover {
  transform: translateY(-3px);
}

#reviews-float-btn .float-action-icon,
#contact-float-btn .float-action-icon {
  position: relative;
  z-index: 1;

  width: 34px;
  height: 34px;

  flex: 0 0 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(43, 92, 74, 0.13);
  border-radius: 11px;

  background:
    linear-gradient(
      145deg,
      rgba(231, 242, 235, 0.98),
      rgba(242, 247, 244, 0.92)
    );

  color: #2b5c4a;

  font-family: var(--font-tech);
  font-size: 14px;
  font-weight: 700;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

#reviews-float-btn .float-action-copy,
#contact-float-btn .float-action-copy {
  position: relative;
  z-index: 1;

  min-width: 0;

  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;

  text-align: left;
}

#reviews-float-btn .float-action-copy strong,
#contact-float-btn .float-action-copy strong {
  color: #244f40;

  font-size: 11px;
  font-weight: 700;
  line-height: 1.18;

  letter-spacing: -0.01em;
}

#reviews-float-btn .float-action-copy small,
#contact-float-btn .float-action-copy small {
  margin-top: 3px;

  color: rgba(42, 55, 49, 0.5);

  font-size: 8px;
  font-weight: 500;
  line-height: 1.2;

  white-space: nowrap;
}

#reviews-float-btn .float-action-arrow,
#contact-float-btn .float-action-arrow {
  position: relative;
  z-index: 1;

  margin-left: auto;

  color: rgba(43, 92, 74, 0.42);

  font-family: var(--font-tech);
  font-size: 12px;

  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

#reviews-float-btn:hover .float-action-arrow,
#contact-float-btn:hover .float-action-arrow {
  transform: translateX(3px);

  color: #2b5c4a;
}

@media (max-width: 768px) {
  #reviews-float-btn,
  #contact-float-btn {
    min-width: 0;
    width: auto;
    min-height: 48px;
    height: 48px;

    gap: 7px;

    padding: 6px 9px;

    border-radius: 15px !important;
  }

  #reviews-float-btn {
    left: 10px;
  }

  #contact-float-btn {
    right: 10px;
  }

  #reviews-float-btn .float-action-icon,
  #contact-float-btn .float-action-icon {
    width: 30px;
    height: 30px;

    flex-basis: 30px;

    border-radius: 9px;

    font-size: 12px;
  }

  #reviews-float-btn .float-action-copy small,
  #contact-float-btn .float-action-copy small,
  #reviews-float-btn .float-action-arrow,
  #contact-float-btn .float-action-arrow {
    display: none;
  }

  #reviews-float-btn .float-action-copy strong,
  #contact-float-btn .float-action-copy strong {
    font-size: 10px;
    white-space: nowrap;
  }

  #reviews-float-btn:hover,
  #contact-float-btn:hover {
    transform: none;
  }
}
@media (max-width: 768px) {
  .reviews-panel {
    top: 76px;
    bottom: 76px;

    max-height: none;

    padding:
      20px
      14px
      16px;

    overflow: hidden;
  }

  .reviews-panel-header {
    margin-bottom: 12px;
  }

  .reviews-panel-intro {
    font-size: 10px;
    line-height: 1.45;
  }

  .reviews-panel-trust {
    margin: 12px 0;
    padding: 11px 12px;
  }

  .reviews-panel-list {
    max-height:
      calc(
        100vh -
        355px
      );

    overflow-y: auto;
  }

  .review-card {
    padding:
      13px
      12px
      11px;
  }

  .reviews-panel-footer {
    margin-top: 12px;
    padding-top: 12px;
  }

  .contact-modal {
    padding:
      22px
      14px
      18px;
  }

  .form-modal-intro {
    margin-top: 6px;

    font-size: 10px;
    line-height: 1.4;
  }

  .form-field {
    margin-top: 13px;
  }

  .contact-modal textarea {
    min-height: 100px;
  }

  .form-security {
    margin-top: 14px;
    padding-top: 11px;
  }

  .contact-modal-note {
    margin-top: 8px;
  }
}

.home-call-booking {
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto 84px;
}

.home-call-booking-inner {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 34px;

  padding: 38px 40px;

  border: 1px solid rgba(43, 92, 74, 0.14);
  border-radius: 28px;

  background:
    radial-gradient(
      420px circle at 10% 10%,
      rgba(181, 217, 197, 0.24),
      transparent 70%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.96),
      rgba(247, 250, 248, 0.92)
    );

  box-shadow:
    0 26px 60px rgba(16, 28, 23, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.home-call-booking-copy {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-call-booking-copy h2 {
  margin: 10px 0 14px;

  max-width: 720px;

  color: #244f40;

  font-family: var(--font-main);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.02;

  letter-spacing: -0.04em;
}

.home-call-booking-copy > p {
  max-width: 640px;

  margin: 0;

  color: rgba(42, 55, 49, 0.66);

  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.6;
}

.home-call-booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 24px;
}

.home-call-booking-btn,
.home-call-message-btn {
  min-height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 0 18px;

  border-radius: 14px;

  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.home-call-booking-btn {
  border: 1px solid rgba(255, 255, 255, 0.14);

  background:
    linear-gradient(
      135deg,
      #315f52 0%,
      #2f6f86 100%
    );

  color: #ffffff;

  box-shadow:
    0 12px 28px rgba(35, 74, 88, 0.2);
}

.home-call-booking-btn:hover {
  transform: translateY(-2px);

  box-shadow:
    0 16px 34px rgba(35, 74, 88, 0.26);
}

.home-call-message-btn {
  border: 1px solid rgba(43, 92, 74, 0.14);

  background:
    rgba(255, 255, 255, 0.72);

  color: #2b5c4a;
}

.home-call-message-btn:hover {
  transform: translateY(-2px);

  border-color: rgba(43, 92, 74, 0.28);

  background:
    rgba(247, 250, 248, 0.98);
}

.home-call-booking-note {
  margin-top: 14px;

  color: rgba(42, 55, 49, 0.46);

  font-size: 9px;
  font-weight: 600;
}

.home-call-booking-preview {
  position: relative;
  z-index: 2;

  min-height: 320px;

  display: flex;
  flex-direction: column;

  padding: 22px;

  border: 1px solid rgba(43, 92, 74, 0.12);
  border-radius: 22px;

  background:
    linear-gradient(
      150deg,
      rgba(247, 250, 248, 0.96),
      rgba(237, 245, 240, 0.9)
    );

  box-shadow:
    0 18px 36px rgba(26, 42, 35, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.home-call-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  color: rgba(43, 92, 74, 0.46);

  font-family: var(--font-tech);
  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.12em;
}

.home-call-preview-date {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: end;
  justify-content: center;
  gap: 10px;

  margin: 34px 0 24px;
}

.home-call-preview-date strong {
  color: #244f40;

  font-family: var(--font-main);
  font-size: 74px;
  font-weight: 500;
  line-height: 0.9;

  letter-spacing: -0.06em;
}

.home-call-preview-date span {
  padding-bottom: 7px;

  color: rgba(42, 55, 49, 0.48);

  font-family: var(--font-tech);
  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.1em;
}

.home-call-preview-times {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.home-call-preview-times span {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 38px;

  border: 1px solid rgba(43, 92, 74, 0.12);
  border-radius: 11px;

  background:
    rgba(255, 255, 255, 0.74);

  color: #2b5c4a;

  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 700;
}

.home-call-preview-times span:nth-child(2) {
  border-color: rgba(43, 92, 74, 0.28);

  background:
    rgba(231, 242, 235, 0.98);

  box-shadow:
    0 8px 18px rgba(43, 92, 74, 0.08);
}

.home-call-preview-status {
  display: flex;
  align-items: center;
  gap: 8px;

  margin-top: auto;
  padding-top: 18px;

  color: rgba(42, 55, 49, 0.54);

  font-size: 9px;
  font-weight: 600;
}

.home-call-preview-status > span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #4b8b6d;

  box-shadow:
    0 0 0 5px rgba(75, 139, 109, 0.09);
}

.call-booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 3600;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 24px;

  background:
    rgba(10, 17, 14, 0.52);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.call-booking-overlay.show {
  display: flex;
}

.call-booking-modal {
  position: relative;

  width: min(900px, 100%);
  max-height: calc(100vh - 48px);

  overflow-y: auto;

  padding: 30px 30px 26px;

  border: 1px solid rgba(43, 92, 74, 0.14);
  border-radius: 26px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(248, 250, 248, 0.97)
    );

  box-shadow:
    0 34px 90px rgba(16, 28, 23, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.call-booking-close {
  position: absolute;
  top: 16px;
  right: 16px;

  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: 1px solid rgba(43, 92, 74, 0.08);
  border-radius: 50%;

  background:
    rgba(247, 250, 248, 0.82);

  color: rgba(42, 55, 49, 0.56);

  font-size: 19px;

  cursor: pointer;
}

.call-booking-modal h3 {
  margin: 0;

  max-width: 640px;

  color: #244f40;

  font-family: var(--font-main);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.06;

  letter-spacing: -0.03em;
}

.call-booking-intro {
  max-width: 660px;

  margin: 9px 0 0;

  color: rgba(42, 55, 49, 0.6);

  font-size: 11px;
  line-height: 1.55;
}

.call-booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
  gap: 18px;

  margin-top: 24px;
}

.call-booking-calendar-area,
.call-booking-time-area {
  padding: 18px;

  border: 1px solid rgba(43, 92, 74, 0.1);
  border-radius: 18px;

  background:
    rgba(248, 251, 249, 0.76);
}

.call-calendar-header {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 8px;

  margin-bottom: 14px;
}

.call-calendar-header strong {
  text-align: center;

  color: #244f40;

  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
}

.call-calendar-header button {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: 1px solid rgba(43, 92, 74, 0.1);
  border-radius: 10px;

  background:
    rgba(255, 255, 255, 0.8);

  color: #2b5c4a;

  cursor: pointer;
}

.call-calendar-weekdays,
.call-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.call-calendar-weekdays {
  margin-bottom: 6px;
}

.call-calendar-weekdays span {
  text-align: center;

  color: rgba(42, 55, 49, 0.4);

  font-size: 8px;
  font-weight: 700;
}

.call-calendar-days button,
.call-calendar-days span {
  aspect-ratio: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 600;
}

.call-calendar-days button {
  border: 1px solid transparent;

  background:
    rgba(255, 255, 255, 0.7);

  color: #2d4d41;

  cursor: pointer;

  transition:
    transform 0.16s ease,
    background 0.16s ease,
    border-color 0.16s ease;
}

.call-calendar-days button:hover {
  transform: translateY(-1px);

  border-color: rgba(43, 92, 74, 0.2);

  background:
    rgba(237, 245, 240, 0.96);
}

.call-calendar-days button.is-selected {
  border-color: #35594b;

  background: #35594b;

  color: #ffffff;
}

.call-calendar-days button:disabled {
  opacity: 0.28;

  cursor: not-allowed;
}

.call-booking-time-title {
  margin-bottom: 12px;

  color: #244f40;

  font-size: 11px;
  font-weight: 700;
}

.call-booking-times {
  display: grid;
  gap: 8px;
}

.call-booking-times button {
  min-height: 38px;

  border: 1px solid rgba(43, 92, 74, 0.11);
  border-radius: 11px;

  background:
    rgba(255, 255, 255, 0.76);

  color: #2b5c4a;

  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 700;

  cursor: pointer;

  transition:
    background 0.16s ease,
    border-color 0.16s ease,
    transform 0.16s ease;
}

.call-booking-times button:hover {
  transform: translateY(-1px);

  border-color:
    rgba(43, 92, 74, 0.24);

  background:
    rgba(237, 245, 240, 0.96);
}

.call-booking-times button.is-selected {
  border-color: #35594b;

  background: #35594b;

  color: #ffffff;
}

.call-booking-time-note {
  margin-top: 12px;

  color: rgba(42, 55, 49, 0.46);

  font-size: 8px;
  line-height: 1.45;
}

.call-booking-person {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 14px;

  margin-top: 6px;
}

.call-booking-person .form-field:last-child {
  grid-column: 1 / -1;
}

.call-booking-person input,
.call-booking-person textarea {
  width: 100%;

  padding: 12px 13px;

  border: 1px solid rgba(43, 92, 74, 0.14);
  border-radius: 13px;

  background:
    rgba(255, 255, 255, 0.82);

  color: #27342f;

  font-family: var(--font-main);
  font-size: 13px;
}

.call-booking-person textarea {
  min-height: 90px;

  resize: vertical;
}

.call-booking-submit {
  width: 100%;
  min-height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  margin-top: 16px;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;

  background:
    linear-gradient(
      135deg,
      #315f52 0%,
      #2f6f86 100%
    );

  color: #ffffff;

  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;

  box-shadow:
    0 12px 28px rgba(35, 74, 88, 0.19);

  cursor: pointer;
}

#call-booking-status {
  min-height: 16px;

  margin-top: 10px;

  text-align: center;

  font-size: 9px;
}

@media (max-width: 760px) {
  .home-call-booking {
    width: calc(100% - 24px);
    margin-bottom: 56px;
  }

  .home-call-booking-inner {
    grid-template-columns: 1fr;
    gap: 20px;

    padding: 24px 14px 18px;

    border-radius: 22px;
  }

  .home-call-booking-copy h2 {
    font-size: 32px;
  }

  .home-call-booking-copy > p {
    font-size: 12px;
  }

  .home-call-booking-actions {
    flex-direction: column;
  }

  .home-call-booking-btn,
  .home-call-message-btn {
    width: 100%;
  }

  .home-call-booking-preview {
    min-height: 250px;

    padding: 18px;

    border-radius: 18px;
  }

  .home-call-preview-date {
    margin: 26px 0 20px;
  }

  .home-call-preview-date strong {
    font-size: 60px;
  }

  .call-booking-overlay {
    align-items: flex-start;

    padding: 10px;
  }

  .call-booking-modal {
    width: 100%;
    max-height: calc(100vh - 20px);

    padding: 24px 14px 18px;

    border-radius: 20px;
  }

  .call-booking-modal h3 {
    padding-right: 34px;

    font-size: 25px;
  }

  .call-booking-layout {
    grid-template-columns: 1fr;
    gap: 12px;

    margin-top: 18px;
  }

  .call-booking-calendar-area,
  .call-booking-time-area {
    padding: 14px;

    border-radius: 16px;
  }

  .call-booking-times {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .call-booking-person {
    grid-template-columns: 1fr;
  }

  .call-booking-person .form-field:last-child {
    grid-column: auto;
  }
}

.call-booking-modal .turnstile-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-booking-modal .form-security > span {
  text-align: center;
}

@media (max-width: 760px) {
  .call-booking-close {
    position: fixed;

    top: calc(76px + env(safe-area-inset-top));
    right: 16px;

    z-index: 3705;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(43, 92, 74, 0.16);

    background:
      rgba(255, 255, 255, 0.96);

    color: #244f40;

    box-shadow:
      0 10px 28px rgba(16, 28, 23, 0.18);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .call-booking-close:hover {
    background:
      rgba(238, 246, 241, 0.98);
  }
}

.home-hero__tagline strong {
  display: block;
  margin-top: 5px;
  color: var(--text-secondary);
  -webkit-text-fill-color: currentColor;
  background: none;
  animation: none;
}

.home-section-head h2,
.home-cases-head h2,
.home-process-metaphors-head h2,
.home-call-booking-copy h2,
.home-motto-line strong {
  color: transparent !important;
  -webkit-text-fill-color: transparent;
  background:
    linear-gradient(
      90deg,
      #ff3f91 0%,
      #ff52ae 20%,
      #e159ff 45%,
      #a768ff 68%,
      #5d9dff 100%
    );
  background-size: 180% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  animation:
    homeGradientShift
    8s ease-in-out infinite;
}

.typewriter {
  color: var(--green) !important;
  -webkit-text-fill-color: var(--green);
  background: none;
  border-right-color: var(--green);

  animation:
    typing 1.35s steps(20) 1 normal both,
    blink-caret 0.7s step-end 3;
}

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

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}
