@font-face {
  font-family: "DS-Digital";
  src: url("../public/fonts/DS-DIGIB.ttf") format("truetype");
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  background: #050505;
  color: #ededed;
  font-family: "Geist", Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

img {
  display: block;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Glass */
.glass {
  background: linear-gradient(126.17deg,
      rgba(214, 216, 233, 0.13) -10.75%,
      rgba(255, 255, 255, 0) 138.29%);
  box-shadow: 0 0 2px 0 #cdcdcd99;
  backdrop-filter: blur(90px);
}

.green-glass {
  background: linear-gradient(126.17deg,
      rgba(0, 200, 83, 0.09) -10.75%,
      rgba(0, 200, 83, 0) 138.29%);
  backdrop-filter: blur(90px);
}

.green-glass-without-shadow {
  background: linear-gradient(126.17deg,
      rgba(0, 200, 83, 0.09) -10.75%,
      rgba(0, 200, 83, 0) 138.29%);
}

.light-green-glass {
  background: linear-gradient(126.17deg,
      rgba(0, 255, 163, 0.09) -10.75%,
      rgba(0, 255, 163, 0) 138.29%) !important;
  border: 1px solid #00ffa399 !important;
  /* box-shadow: 0px 0px 4px 0px #00FFA3 !important; */
}

.light-green-glass-without-shadow {
  background: linear-gradient(126.17deg,
      rgba(0, 255, 163, 0.09) -10.75%,
      rgba(0, 255, 163, 0) 138.29%) !important;
  border: 1px solid #00ffa399 !important;
}

.dark-green-glass {
  background: linear-gradient(126.17deg,
      rgba(0, 200, 83, 0.09) -10.75%,
      rgba(0, 200, 83, 0) 138.29%) !important;
  border: 1px solid #00c85399 !important;
  /* box-shadow: 0px 0px 4px 0px #00C853 !important; */
}

.dark-green-glass-without-shadow {
  background: linear-gradient(126.17deg,
      rgba(0, 200, 83, 0.09) -10.75%,
      rgba(0, 200, 83, 0) 138.29%) !important;
  border: 1px solid #00c85399 !important;
}

.yellow-glass {
  background: linear-gradient(126.17deg,
      rgba(212, 255, 0, 0.09) -10.75%,
      rgba(212, 255, 0, 0) 138.29%) !important;
  border: 1px solid #d4ff0099 !important;
  /* box-shadow: 0px 0px 4px 0px #D4FF00 !important; */
}

.yellow-glass-without-shadow {
  background: linear-gradient(126.17deg,
      rgba(212, 255, 0, 0.09) -10.75%,
      rgba(212, 255, 0, 0) 138.29%) !important;
  border: 1px solid #d4ff0099 !important;
}

.orange-glass {
  background: linear-gradient(126.17deg,
      rgba(223, 90, 56, 0.09) -10.75%,
      rgba(223, 90, 56, 0) 138.29%) !important;
  border: 1px solid #df5a3899 !important;
  /* box-shadow: 0px 0px 4px 0px #DF5A38 !important; */
}

.orange-glass-without-shadow {
  background: linear-gradient(126.17deg,
      rgba(223, 90, 56, 0.09) -10.75%,
      rgba(223, 90, 56, 0) 138.29%) !important;
  border: 1px solid #df5a3899 !important;
}

.tab-glass {
  background: linear-gradient(126.17deg,
      rgba(0, 0, 0, 0.25) -10.75%,
      rgba(0, 0, 0, 0.234) 138.29%);
  /* box-shadow: 0 0 2px 0 #05050599; */
  backdrop-filter: blur(90px);
}

.calculator-glass-base {
  background: linear-gradient(126.17deg,
      rgba(214, 216, 233, 0.09) -10.75%,
      rgba(255, 255, 255, 0) 138.29%);
  /* box-shadow: 0 0 2px 0 #cdcdcd99; */
  backdrop-filter: blur(90px);
}

.slide-glass {
  background: linear-gradient(126.17deg,
      rgba(214, 216, 233, 0.09) -10.75%,
      rgba(255, 255, 255, 0) 138.29%);
  backdrop-filter: blur(90px);
  box-shadow: 0 0 68px 0 #0000000d inset;
}

.tg-glass {
  background: linear-gradient(126.17deg,
      rgba(32, 148, 203, 0.18) -10.75%,
      rgba(32, 148, 203, 0) 138.29%);
  box-shadow: 0 0 2px 0 #2094cb99;
  backdrop-filter: blur(90px);
}

.wa-glass {
  background: linear-gradient(126.17deg,
      rgba(34, 197, 96, 0.18) -10.75%,
      rgba(34, 197, 96, 0) 138.29%);
  box-shadow: 0 0 2px 0 #22c56099;
  backdrop-filter: blur(90px);
}

/* Range */
input[type="range"].custom-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 9999px;
  outline: none;
  cursor: pointer;
}

input[type="range"].custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--range-color, #00c853);
  box-shadow: 0 0 10px var(--range-color, #00c853);
  transition:
    transform 0.1s ease,
    box-shadow 0.1s ease;
}

input[type="range"].custom-range::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 0 14px var(--range-color, #00c853);
}

input[type="range"].custom-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  background: var(--range-color, #00c853);
  box-shadow: 0 0 10px var(--range-color, #00c853);
  cursor: pointer;
}

/* Highlighted text */
.ht {
  background: linear-gradient(105.15deg, #00ffa3 -7.84%, #d4ff00 58.6%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Font digital */
.font-digital {
  font-family: "DS-Digital", monospace;
}

/* iti overrides */
.iti {
  width: 100%;
  display: block;
}

.iti__selected-flag {
  padding: 20px !important;
  border: 1px solid white !important;
  border-radius: 8px;
  background-color: transparent !important;
}

.iti__tel-input {
  margin-left: 120px !important;
  padding: 20px !important;
  border: 1px solid white !important;
  border-radius: 8px;
  width: calc(100% - 120px) !important;
}

.iti__country-list {
  background-color: #1a1a1a !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  border-radius: 8px !important;
  margin-top: 8px !important;
}

.iti__country:hover {
  background-color: rgba(255, 255, 255, 0.05) !important;
}

/* No scrollbar */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px !important;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .container {
    overflow: visible;
  }
}

/* Section grid */
.section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .section-grid {
    grid-template-columns: 156px auto;
  }
}

/* Sidebar */
.section-sidebar {
  display: none;
  margin-top: 50px;
}

@media (min-width: 1024px) {
  .section-sidebar {
    display: block;
  }
}

/* ===== HEADER ===== */
.main-header {
  position: sticky;
  top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 32px 0;
  padding: 12px 16px;
  transition: all 0.3s;
  border-radius: 40px;
  z-index: 100;
}

.main-header.menu-open {
  border-radius: 12px 12px 0 0;
}

.hdr-nav-desktop {
  display: none;
  gap: 48px;
  font-size: 16px;
}

@media (min-width: 1024px) {
  .hdr-nav-desktop {
    display: flex;
  }
}

.hdr-nav-desktop a:hover {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.hdr-nav-mobile {
  display: block;
  position: absolute;
  left: 0;
  top: 51px;
  width: 100%;
  font-size: 16px;
  border-radius: 0 0 12px 12px;
  z-index: 50;
  overflow: hidden;
  background: rgba(8, 12, 10, 0.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-top: none;
  transition:
    max-height 0.3s ease-in-out,
    opacity 0.3s ease-in-out,
    padding 0.3s ease-in-out;
  max-height: 0;
  opacity: 0;
  padding: 0 16px;
  pointer-events: none;
}

.hdr-nav-mobile.open {
  max-height: 384px;
  opacity: 1;
  padding: 12px 16px;
  pointer-events: auto;
}

.hdr-nav-mobile li {
  padding: 6px;
  border-bottom: 1px solid rgba(205, 205, 205, 0.3);
}

.hdr-nav-mobile li:last-child {
  border-bottom: none;
}

@media (min-width: 1024px) {
  .hdr-nav-mobile {
    display: none !important;
  }
}

.hdr-right {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hdr-socials {
  display: flex;
  gap: 8px;
}

.hamburger {
  display: block;
  position: relative;
  width: 17px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
}

.hamburger span {
  position: absolute;
  left: 0;
  height: 1.67px;
  background: #282b27;
  border-radius: 4px;
}

.hamburger span:nth-child(1) {
  top: 4px;
  width: 17px;
}

.hamburger span:nth-child(2) {
  top: 8px;
  left: 2px;
  width: 12.35px;
}

.hamburger span:nth-child(3) {
  top: 12px;
  width: 17px;
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

/* ===== STEPS SIDEBAR ===== */
.steps-nav {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  width: 156px;
}

.step-item {
  display: grid;
  grid-template-columns: 12px auto;
  gap: 20px;
  cursor: pointer;
  margin-bottom: 0;
}

.step-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
  transition: all 0.5s;
}

.step-line-track {
  width: 2px;
  flex: 1;
  margin: 4px 0;
  min-height: 60px;
  background: #ffffff;
  position: relative;
  border-radius: 9999px;
  overflow: hidden;
}

.step-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: height 0.7s ease-in-out;
}

.step-text {
  padding-bottom: 24px;
}

.step-scene-label {
  font-weight: 600;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
  transition: color 0.5s;
}

.step-title-text {
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0.1em;
  transition: color 0.5s;
  color: #666;
}

/* ===== MOBILE STEP ===== */
.mobile-step {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
}

@media (min-width: 1024px) {
  .mobile-step {
    display: none;
  }
}

.ms-label {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 100%;
  letter-spacing: 0.2em;
}

.ms-line {
  width: 60px;
  height: 1px;
  display: block;
}

.ms-title {
  color: #d0d3cf;
  font-weight: 200;
  line-height: 100%;
  letter-spacing: 0.2em;
}

/* ===== BUTTON ===== */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  padding: 13.5px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  text-align: center;
}

/* ===== TITLE ===== */
.title-lg {
  font-size: 40px;
  font-weight: 700;
  line-height: 100%;
}

.title-md {
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.05em;
}

/* ===== HERO ===== */
.hero-section {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 160px;
  position: relative;
}

@media (min-width: 768px) {
  .hero-section {
    flex-direction: row;
  }

  .mobile-fix span {
    display: block;
  }
}

@media (min-width: 425px) {
  .hero-section {
    flex-direction: row;
  }

  .mobile-fix span {
    display: block;
  }
}

@media (min-width: 320px) {
  .hero-section {
    flex-direction: row;
  }

  .mobile-fix span {
    display: block;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.hero-img-mobile {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  transform: scaleX(-1);
  margin: 16px 0;
}

.hero-img-desktop {
  display: none;
  width: 60%;
  height: auto;
  border-radius: 16px;
  z-index: 2;
}

@media (min-width: 1024px) {
  .hero-img-mobile {
    display: none;
  }

  .hero-img-desktop {
    display: block;
  }
}

.hero-subtitle {
  color: #a1a1a1;
  text-align: center;
  margin-bottom: 24px;
}

/* ===== PRODUCTS ===== */
.products-section {
  position: relative;
  width: 100%;
  margin-bottom: 160px;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  border-radius: 12px;
  padding: 24px;
}

.card-num-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.card-num {
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.2em;
}

.card-num-line {
  display: block;
  flex: 1;
  height: 1px;
  background: #a1a1a159;
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
}

.card-stats {
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-dot {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.card-stats-text {
  color: #a1a1a1;
}

.card-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* ===== CALCULATOR ===== */
.calculator-section {
  margin-bottom: 160px;
  position: relative;
}

.calc-header-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  margin-bottom: 60px;
}

@media (min-width: 1024px) {
  .calc-header-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.calc-subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 140%;
  margin-top: 24px;
}

@media (min-width: 1024px) {
  .calc-subtitle {
    margin-top: 0;
  }
}

.profit-calc-wrap {
  border-radius: 12px;
  padding: 24px;
}

.profit-calc-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 1024px) {
  .profit-calc-inner {
    grid-template-columns: 1.2fr 1fr;
  }
}

.calc-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  padding-bottom: 12px;
}

.calc-label-text {
  font-weight: 600;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .calc-label-text {
    font-size: 18px;
  }
}

.calc-sep {
  display: block;
  flex: 1;
  height: 1px;
  border: 1px solid #a1a1a1;
}

.calc-adv-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  font-size: 10px;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
}

@media (min-width: 1024px) {
  .calc-adv-toggle {
    font-size: 18px;
  }
}

.toggle-track {
  position: relative;
  width: 36px;
  height: 16px;
  border-radius: 8px;
  background: #a1a1a1;
  transition: background 0.3s;
  flex-shrink: 0;
}

.toggle-track.on {
  background: #00c853;
}

.toggle-thumb {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: white;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: left 0.3s;
}

.toggle-track.on .toggle-thumb {
  left: 16px;
}

.calc-disclaimer {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: #a1a1a1;
  margin-bottom: 30px;
}

.calc-slider-row {
  display: flex;
  justify-content: space-between;
}

.calc-slider-name {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: white;
}

.calc-slider-val {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #00c853;
}

.calc-range-limits {
  font-family: "Roboto", sans-serif;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #a1a1a1;
}

.calc-result-box {
  width: 100%;
  border-radius: 12px;
  padding: 12px;
  background: linear-gradient(126.17deg, rgba(214, 216, 233, 0.09) -10.75%, rgba(255, 255, 255, 0) 138.29%);
  box-shadow: 0px 0px 68px 0px #0000000D inset;

  box-shadow: 0px 0px 2px 0px #CDCDCD99;

  backdrop-filter: blur(90px)
}

.calc-result-container {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.calc-result-label {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #d0d3cf;
  line-height: 100%;
  margin-bottom: 6px;
}

.calc-result-val {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
  color: white;
}

.calc-result-sub {
  color: #a1a1a1;
  font-size: 16px;
}

/* calc tabs */
.calc-tabs-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  margin-top: 24px;
  color: #a1a1a1;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.15px;
}

.calc-tab-item {
  position: relative;
  overflow: hidden;
  padding: 8px;
  text-align: center;
  cursor: pointer;
  transition: color 0.3s;
}

.calc-tab-glow {
  position: absolute;
  bottom: -68px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 70px;
  border-radius: 50%;
  filter: blur(3px);
  transition: background 0.3s;
}

/* segment */
.seg-box {
  position: relative;
  z-index: 10;
  padding: 22px 12px 12px;
  border-radius: 12px;
  width: 100%;
}

.seg-box-lbl {
  position: absolute;
  font-size: 14px;
  border-radius: 6px;
  padding: 3px 6px;
  left: 50%;
  transform: translateX(-50%);
  top: -14px;
  text-align: center;
  color: #a1a1a1;
  font-weight: 600;
  white-space: nowrap;
}

.seg-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  border-radius: 8px;
  padding: 6px;
  border: 1px solid rgba(205, 205, 205, 0.063);
}

.seg-btn {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s;
  color: #a1a1a1;
  background: none;
  border: none;
}

.tier-grid {
  display: flex;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.tier-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 99px;
  border: 1px solid rgba(205, 205, 205, 0.12);
  background: transparent;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s;
  color: #a1a1a1;
}

.tier-radio {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: border 0.3s;
}

.tier-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

.tier-lbl {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

/* adv sliders */
.adv-slider-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4px;
}

.adv-slider-name {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: white;
}

.adv-slider-val {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 24px;
  transition: color 0.3s;
}

.adv-limits {
  font-family: "Roboto", sans-serif;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #a1a1a1;
  font-weight: 500;
}

/* ===== RESULTS ===== */
.results-section {
  margin-bottom: 160px;
  min-width: 0;
  position: relative;
}

.results-tabs-wrap {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6px;
  border-radius: 6px;
  margin-bottom: 30px;
}

.center-fix {
  display: flex;
  justify-content: center;
}

.results-tabs {
  display: inline-flex;
}

.results-tab-item {
  display: flex;
  align-items: center;
}

.results-tab-btn {
  border-radius: 3px;
  width: 60px;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
  padding: 4px;
  text-align: center;
  font-size: 14px;
}

.results-tab-btn.light-green-glass {
  background: linear-gradient(126.17deg,
      rgba(0, 255, 163, 0.09) -10.75%,
      rgba(0, 255, 163, 0) 138.29%) !important;
  border: 1px solid #00ffa399 !important;
}

.results-tab-btn.dark-green-glass {
  background: linear-gradient(126.17deg,
      rgba(0, 200, 83, 0.09) -10.75%,
      rgba(0, 200, 83, 0) 138.29%) !important;
  border: 1px solid #00c85399 !important;
}

.results-tab-btn.yellow-glass {
  background: linear-gradient(126.17deg,
      rgba(212, 255, 0, 0.09) -10.75%,
      rgba(212, 255, 0, 0) 138.29%) !important;
  border: 1px solid #d4ff0099 !important;
}

.results-tab-btn.orange-glass {
  background: linear-gradient(126.17deg,
      rgba(223, 90, 56, 0.09) -10.75%,
      rgba(223, 90, 56, 0) 138.29%) !important;
  border: 1px solid #df5a3899 !important;
}

.results-tab-sep {
  height: 29px;
  width: 1px;
  background: #a1a1a134;
  margin: 0 6px;
}

@media (min-width: 768px) {
  .results-tab-sep {
    margin: 0 12px;
  }
}

.results-subtabs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 8px;
  border: 1px solid rgba(205, 205, 205, 0.063);
  margin-top: 12px;
}

.results-subtab-btn {
  border-radius: 3px;
  padding: 4px 8px;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
  font-size: 14px;
}

.results-subtab-btn.light-green-glass {
  background: linear-gradient(126.17deg,
      rgba(0, 255, 163, 0.09) -10.75%,
      rgba(0, 255, 163, 0) 138.29%);
  border: 1px solid #00ffa399;
}

.results-subtab-btn.dark-green-glass {
  background: linear-gradient(126.17deg,
      rgba(0, 200, 83, 0.09) -10.75%,
      rgba(0, 200, 83, 0) 138.29%);
  border: 1px solid #00c85399;
}

.results-subtab-btn.yellow-glass {
  background: linear-gradient(126.17deg,
      rgba(212, 255, 0, 0.09) -10.75%,
      rgba(212, 255, 0, 0) 138.29%);
  border: 1px solid #d4ff0099;
}

.results-subtab-btn.orange-glass {
  background: linear-gradient(126.17deg,
      rgba(223, 90, 56, 0.09) -10.75%,
      rgba(223, 90, 56, 0) 138.29%);
  border: 1px solid #df5a3899;
}

.results-subtab-sep {
  height: 29px;
  width: 1px;
  background: #a1a1a134;
  margin: 0 12px;
}

.swiper {
  padding-bottom: 56px !important;
  padding-top: 16px !important;
  padding-left: 8px !important;
  padding-right: 8px !important;
  overflow: visible !important;
}

.result-slide {
  width: 288px !important;
  transition: transform 0.3s ease;
  height: auto !important;
}

.result-slide:hover {
  transform: translateY(-8px);
  z-index: 10;
}

/* Swiper controls */
.swiper-button-prev,
.swiper-button-next {
  color: #00ffa3 !important;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 163, 0.3);
  transition: all 0.3s ease;
  top: 45% !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 20px !important;
  font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(0, 255, 163, 0.15);
  box-shadow: 0 0 20px rgba(0, 255, 163, 0.3);
  transform: scale(1.1);
}

.swiper-button-prev {
  left: 10px !important;
}

.swiper-button-next {
  right: 10px !important;
}

@media (max-width: 1024px) {

  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
}

.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: rgba(255, 255, 255, 0.2) !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, #00ffa3) !important;
  width: 10px !important;
  border-radius: 50% !important;
  box-shadow: 0 0 15px var(--swiper-pagination-color, #00ffa3);
}

/* Slide card */
.slide-card {
  width: 288px;
  border-radius: 12px;
  padding: 24px;
  height: 100%;
}

.slide-hdr {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
}

.slide-num {
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.2em;
}

.slide-num-line {
  display: block;
  flex: 1;
  height: 1px;
  background: #a1a1a1;
}

.slide-on-num {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
}

.slide-leads-lbl {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #d0d3cf;
  font-weight: 200;
}

.slide-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.slide-title-txt {
  font-size: 20px;
  font-weight: 600;
  line-height: 122%;
}

.slide-info {
  margin-bottom: 24px;
}

.slide-vertical {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 600;
  line-height: 122%;
  margin-bottom: 18px;
}

.slide-geo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.slide-geo {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.slide-date {
  font-size: 15px;
  color: #d0d3cf;
  line-height: 122%;
}

.slide-speed-box {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 24px;
}

.slide-gauge {
  position: relative;
  width: 100%;
}

.slide-speed-content {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  pointer-events: none;
}

.slide-roi {
  font-family: "DS-Digital", monospace;
  font-size: 30px;
}

.slide-roi-lbl {
  font-family: "Roboto", sans-serif;
  font-size: 23px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.slide-stats-row {
  display: flex;
  justify-content: space-around;
  font-size: 16px;
  margin-bottom: 24px;
}

.slide-stat {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.03em;
}

.slide-stat-val {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.03em;
}

.slide-checklist {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(205, 205, 205, 0.3);
  margin-bottom: 24px;
}

.slide-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.slide-chk-lbl {
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.03em;
  font-weight: 400;
}

.slide-chk-val {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.03em;
}

#contacts {
  position: relative;
}

.contact-png {
  position: absolute;
  right: -45%;
}

@media (max-width: 768px) {
  .contact-png {
    display: none;
  }
}

/* ===== CONTACTS ===== */
.contacts-section {
  margin-bottom: 160px;
  position: relative;
}

.contacts-form {
  /* margin: 0 auto; */
  max-width: 520px;
  padding: 24px;
  border-radius: 12px;
  background: #171515;
}

@media (min-width: 320px) {
  .container {
    padding: 0 5px;
  }

  .contacts-form {
    padding: 13px;
  }
}

.contacts-discount {
  padding: 10px;
  text-align: center;
  font-size: 18px;
  line-height: 140%;
  border-radius: 6px;
  margin-bottom: 24px;
  font-weight: 500;
}

.contacts-form-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 122%;
  text-align: center;
  margin-bottom: 32px;
}

.contacts-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contacts-lbl {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contacts-lbl-text {
  position: absolute;
  top: -15px;
  left: 12px;
  color: #c6cdd4;
  font-size: 14px;
  padding: 0 4px;
  background: #171515;
}

.contacts-input {
  border: 1px solid white;
  padding: 16px;
  border-radius: 8px;
  color: white;
  background: transparent;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}

.contacts-input:focus {
  border-color: #df5a38;
}

.contacts-phone-lbl {
  position: absolute;
  top: -15px;
  left: 15px;
  color: #c6cdd4;
  font-size: 14px;
  padding: 0 4px;
  background: #171515;
  z-index: 2;
}

.contacts-btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-tg-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  color: #2094cb;
  font-weight: 500;
  width: 100%;
  gap: 6px;
  padding: 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
}

.contact-wa-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  color: #22c560;
  font-weight: 500;
  width: 100%;
  gap: 6px;
  padding: 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
}

.contact-tg-btn.active {
  border: 2px solid #2094cb;
  box-shadow: 0 0 12px rgba(32, 148, 203, 0.5);
}

.contact-wa-btn.active {
  border: 2px solid #22c560;
  box-shadow: 0 0 12px rgba(34, 197, 96, 0.5);
}

/* ===== FOOTER ===== */
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 24px;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-tagline {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-align: center;
  line-height: 140%;
  color: #a1a1a1;
  margin-bottom: 24px;
}

.footer-nav {
  display: flex;
  color: #d0d3cf;
  font-size: 11px;
  gap: 12px;
  font-weight: 200;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: white;
}

.footer-legal {
  display: flex;
  color: #d0d3cf;
  font-size: 11px;
  gap: 12px;
  font-weight: 200;
  margin-bottom: 24px;
}

.footer-divider {
  box-shadow: 3px -5px 0 0.1px #a1a1a1;
  height: 1px;
  width: 100%;
}

.footer-copy {
  font-family: "Roboto", sans-serif;
  text-align: center;
  color: #a1a1a1;
  font-size: 11px;
  line-height: 140%;
  margin: 24px;
}

/* gradient bg */
.grad-bg {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  filter: blur(27px);
  z-index: -1;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(0deg);
}

@media (min-width: 1024px) {
  .grad-bg {
    transform: translate(-50%, -50%) rotate(100deg);
  }
}

.phone-input.iti {
  width: 100%;
  color: #fff !important;
  display: block;
}

.iti__tel-input {
  color: #fff;
}

input[type="tel"]::placeholder {
  color: #fff;
}

.iti__country-list {
  background-color: #1a1a1a !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  border-radius: 8px !important;
  margin-top: 8px !important;
}

.iti__country:hover {
  background-color: rgba(255, 255, 255, 0.05) !important;
}

.iti__selected-flag {
  background-color: transparent !important;
  padding-left: 16px !important;
}

input[type="tel"] {
  background: transparent;
  border: 1px solid white;
  border-radius: 8px;
  padding: 12px;
  outline: none;
}


.contacts-input:-webkit-autofill,
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #171515 inset !important;
  -webkit-text-fill-color: white !important;
}