@keyframes pdot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.6);
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-left {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-right {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.88);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes pop-in {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(87, 187, 255, 0);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(87, 187, 255, 0.12);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes progress-fill {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@keyframes bounce-x {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes card-enter {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
  background: #070B14;
  color: #C8D8EE;
  overflow-x: hidden;
  line-height: 1.6;
}

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

::selection {
  background: rgba(87, 187, 255, 0.3);
  color: #FFFFFF;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: #070B14;
}

::-webkit-scrollbar-thumb {
  background: #57BBFF;
  border-radius: 2px;
}

.animate-me {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(0.25, 1, 0.5, 1), transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}
.animate-me.in-view {
  opacity: 1;
  transform: translateY(0);
}
.animate-me:nth-child(1) {
  transition-delay: 0s;
}
.animate-me:nth-child(2) {
  transition-delay: 0.07s;
}
.animate-me:nth-child(3) {
  transition-delay: 0.14s;
}
.animate-me:nth-child(4) {
  transition-delay: 0.21s;
}
.animate-me:nth-child(5) {
  transition-delay: 0.28s;
}
.animate-me:nth-child(6) {
  transition-delay: 0.35s;
}
.animate-me:nth-child(7) {
  transition-delay: 0.42s;
}
.animate-me:nth-child(8) {
  transition-delay: 0.49s;
}
.animate-me:nth-child(9) {
  transition-delay: 0.56s;
}
.animate-me:nth-child(10) {
  transition-delay: 0.63s;
}
.animate-me:nth-child(11) {
  transition-delay: 0.7s;
}
.animate-me:nth-child(12) {
  transition-delay: 0.77s;
}
.animate-me:nth-child(13) {
  transition-delay: 0.84s;
}
.animate-me:nth-child(14) {
  transition-delay: 0.91s;
}
.animate-me:nth-child(15) {
  transition-delay: 0.98s;
}
.animate-me:nth-child(16) {
  transition-delay: 1.05s;
}
.animate-me--left {
  transform: translateX(-32px);
}
.animate-me--left.in-view {
  transform: translateX(0);
}
.animate-me--right {
  transform: translateX(32px);
}
.animate-me--right.in-view {
  transform: translateX(0);
}
.animate-me--scale {
  transform: scale(0.9);
}
.animate-me--scale.in-view {
  transform: scale(1);
}
.animate-me--fade {
  transform: none;
}
.animate-me--fade.in-view {
  transform: none;
}

.dark-tech-dp-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (min-width: 1280px) {
  .dark-tech-dp-wrap {
    max-width: 1100px;
    padding: 0 64px;
  }
}
@media (min-width: 1536px) {
  .dark-tech-dp-wrap {
    max-width: 1320px;
    padding: 0 100px;
  }
}
@media (min-width: 1920px) {
  .dark-tech-dp-wrap {
    max-width: 1600px;
    padding: 0 140px;
  }
}
@media (max-width: 1023px) {
  .dark-tech-dp-wrap {
    padding: 0 24px;
  }
}
@media (max-width: 767px) {
  .dark-tech-dp-wrap {
    padding: 0 18px;
  }
}
@media (max-width: 479px) {
  .dark-tech-dp-wrap {
    padding: 0 14px;
  }
}

.dark-tech-dp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(7, 11, 20, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(87, 187, 255, 0.15);
  transition: padding 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s;
}
.dark-tech-dp-nav.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.dark-tech-dp-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dark-tech-dp-nav__logo {
  transition: opacity 0.2s;
}
.dark-tech-dp-nav__logo svg {
  height: 30px;
  width: auto;
}
.dark-tech-dp-nav__logo:hover {
  opacity: 0.85;
}
@media (max-width: 479px) {
  .dark-tech-dp-nav__logo svg {
    height: 24px;
  }
}
.dark-tech-dp-nav__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #8BA4C4;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}
.dark-tech-dp-nav__back i {
  font-size: 11px;
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}
.dark-tech-dp-nav__back:hover {
  color: #FFFFFF;
  border-color: rgba(87, 187, 255, 0.15);
  background: rgba(87, 187, 255, 0.06);
  transform: translateX(-2px);
}
.dark-tech-dp-nav__back:hover i {
  transform: translateX(-3px);
}

.dark-tech-dp-header {
  padding: 56px 0 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dark-tech-dp-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #57BBFF, transparent);
  animation: fade-up 0.8s cubic-bezier(0.25, 1, 0.5, 1) both;
}
.dark-tech-dp-header::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(87, 187, 255, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.dark-tech-dp-header__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #57BBFF;
  background: rgba(87, 187, 255, 0.08);
  border: 1px solid rgba(87, 187, 255, 0.2);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 18px;
  animation: fade-up 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.1s both;
  position: relative;
  z-index: 2;
}
.dark-tech-dp-header__tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #57BBFF;
  animation: pdot 2s infinite;
  flex-shrink: 0;
}
.dark-tech-dp-header__title {
  font-size: 42px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  animation: fade-up 0.65s cubic-bezier(0.25, 1, 0.5, 1) 0.2s both;
}
@media (max-width: 1023px) {
  .dark-tech-dp-header__title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .dark-tech-dp-header__title {
    font-size: 28px;
  }
}
@media (max-width: 479px) {
  .dark-tech-dp-header__title {
    font-size: 24px;
    letter-spacing: -0.02em;
  }
}
.dark-tech-dp-header__sub {
  font-size: 16px;
  color: #8BA4C4;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 2;
  animation: fade-up 0.65s cubic-bezier(0.25, 1, 0.5, 1) 0.3s both;
}
@media (max-width: 767px) {
  .dark-tech-dp-header__sub {
    font-size: 14px;
    max-width: 100%;
  }
}

.dark-tech-dp-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  padding: 0 16px;
  overflow-x: auto;
  animation: fade-up 0.65s cubic-bezier(0.25, 1, 0.5, 1) 0.4s both;
}
@media (max-width: 767px) {
  .dark-tech-dp-progress {
    margin-bottom: 36px;
    padding: 0 8px;
  }
}
@media (max-width: 479px) {
  .dark-tech-dp-progress {
    margin-bottom: 28px;
  }
}
.dark-tech-dp-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.dark-tech-dp-progress__step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(87, 187, 255, 0.15);
  background: #0C1628;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #8BA4C4;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}
@media (max-width: 479px) {
  .dark-tech-dp-progress__step-num {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
}
.dark-tech-dp-progress__step-label {
  font-size: 10px;
  color: #8BA4C4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: color 0.3s;
}
@media (max-width: 767px) {
  .dark-tech-dp-progress__step-label {
    font-size: 9px;
  }
}
@media (max-width: 479px) {
  .dark-tech-dp-progress__step-label {
    display: none;
  }
}
.dark-tech-dp-progress__step.active .dark-tech-dp-progress__step-num {
  border-color: #57BBFF;
  background: rgba(87, 187, 255, 0.15);
  color: #57BBFF;
  transform: scale(1.12);
  animation: glow-pulse 2s infinite;
}
.dark-tech-dp-progress__step.active .dark-tech-dp-progress__step-label {
  color: #57BBFF;
  font-weight: 700;
}
.dark-tech-dp-progress__step.done .dark-tech-dp-progress__step-num {
  border-color: #34D399;
  background: rgba(52, 211, 153, 0.15);
  color: #34D399;
  transform: scale(1);
}
.dark-tech-dp-progress__step.done .dark-tech-dp-progress__step-label {
  color: #34D399;
}
.dark-tech-dp-progress__line {
  width: 52px;
  height: 2px;
  background: rgba(87, 187, 255, 0.15);
  flex-shrink: 0;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.dark-tech-dp-progress__line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #34D399;
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.dark-tech-dp-progress__line.done::after {
  width: 100%;
}
@media (min-width: 1280px) {
  .dark-tech-dp-progress__line {
    width: 80px;
  }
}
@media (min-width: 1536px) {
  .dark-tech-dp-progress__line {
    width: 120px;
  }
}
@media (max-width: 767px) {
  .dark-tech-dp-progress__line {
    width: 36px;
  }
}
@media (max-width: 479px) {
  .dark-tech-dp-progress__line {
    width: 20px;
  }
}

.dark-tech-dp-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 80px;
}
@media (min-width: 1280px) {
  .dark-tech-dp-form {
    gap: 32px;
  }
}
@media (min-width: 1536px) {
  .dark-tech-dp-form {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .dark-tech-dp-form {
    gap: 18px;
  }
}

.dark-tech-dp-card {
  background: #0C1628;
  border: 1px solid rgba(87, 187, 255, 0.15);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  transition: border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (min-width: 1280px) {
  .dark-tech-dp-card {
    padding: 36px 40px;
  }
}
@media (min-width: 1536px) {
  .dark-tech-dp-card {
    padding: 44px 52px;
    border-radius: 24px;
  }
}
@media (max-width: 767px) {
  .dark-tech-dp-card {
    padding: 24px 18px;
    border-radius: 16px;
  }
}
@media (max-width: 479px) {
  .dark-tech-dp-card {
    padding: 20px 14px;
  }
}
.dark-tech-dp-card:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}
.dark-tech-dp-card--active {
  border-color: rgba(87, 187, 255, 0.45);
  box-shadow: 0 0 0 1px rgba(87, 187, 255, 0.1), 0 8px 40px rgba(87, 187, 255, 0.06);
}
.dark-tech-dp-card--done {
  border-color: rgba(52, 211, 153, 0.3);
}
.dark-tech-dp-card__step-badge {
  position: absolute;
  top: -11px;
  left: 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 100px;
  background: #57BBFF;
  color: #070B14;
  transition: background 0.3s;
}
@media (max-width: 479px) {
  .dark-tech-dp-card__step-badge {
    left: 14px;
  }
}
.dark-tech-dp-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dark-tech-dp-card__title i {
  color: #57BBFF;
  font-size: 16px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (max-width: 767px) {
  .dark-tech-dp-card__title {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .dark-tech-dp-card__title {
    font-size: 15px;
  }
}
.dark-tech-dp-card:hover .dark-tech-dp-card__title i {
  transform: scale(1.2) rotate(-5deg);
}
.dark-tech-dp-card__desc {
  font-size: 13px;
  color: #8BA4C4;
  margin-bottom: 24px;
  line-height: 1.65;
}
@media (max-width: 767px) {
  .dark-tech-dp-card__desc {
    font-size: 12px;
    margin-bottom: 18px;
  }
}

.dark-tech-dp-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.dark-tech-dp-field:last-child {
  margin-bottom: 0;
}
.dark-tech-dp-field label {
  font-size: 13px;
  font-weight: 600;
  color: #C8D8EE;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.dark-tech-dp-field input[type=text],
.dark-tech-dp-field input[type=email],
.dark-tech-dp-field input[type=password],
.dark-tech-dp-field input[type=url],
.dark-tech-dp-field textarea,
.dark-tech-dp-field select {
  background: rgba(7, 11, 20, 0.6);
  border: 1px solid rgba(87, 187, 255, 0.15);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #FFFFFF;
  width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s, transform 0.2s;
  outline: none;
  resize: vertical;
}
.dark-tech-dp-field input[type=text]::placeholder,
.dark-tech-dp-field input[type=email]::placeholder,
.dark-tech-dp-field input[type=password]::placeholder,
.dark-tech-dp-field input[type=url]::placeholder,
.dark-tech-dp-field textarea::placeholder,
.dark-tech-dp-field select::placeholder {
  color: rgba(139, 164, 196, 0.7);
}
.dark-tech-dp-field input[type=text]:hover,
.dark-tech-dp-field input[type=email]:hover,
.dark-tech-dp-field input[type=password]:hover,
.dark-tech-dp-field input[type=url]:hover,
.dark-tech-dp-field textarea:hover,
.dark-tech-dp-field select:hover {
  border-color: rgba(87, 187, 255, 0.3);
  background: rgba(7, 11, 20, 0.8);
}
.dark-tech-dp-field input[type=text]:focus,
.dark-tech-dp-field input[type=email]:focus,
.dark-tech-dp-field input[type=password]:focus,
.dark-tech-dp-field input[type=url]:focus,
.dark-tech-dp-field textarea:focus,
.dark-tech-dp-field select:focus {
  border-color: rgba(87, 187, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(87, 187, 255, 0.1);
  background: rgba(26, 43, 74, 0.2);
  transform: translateY(-1px);
}
@media (max-width: 479px) {
  .dark-tech-dp-field input[type=text],
  .dark-tech-dp-field input[type=email],
  .dark-tech-dp-field input[type=password],
  .dark-tech-dp-field input[type=url],
  .dark-tech-dp-field textarea,
  .dark-tech-dp-field select {
    padding: 10px 14px;
    font-size: 13px;
  }
}
.dark-tech-dp-field textarea {
  min-height: 90px;
}
.dark-tech-dp-field__hint {
  font-size: 11px;
  color: #8BA4C4;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.dark-tech-dp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (min-width: 1280px) {
  .dark-tech-dp-row {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .dark-tech-dp-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.dark-tech-dp-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(7, 11, 20, 0.5);
  border: 1px solid rgba(87, 187, 255, 0.15);
  border-radius: 12px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
  user-select: none;
}
.dark-tech-dp-toggle:hover {
  border-color: rgba(87, 187, 255, 0.4);
  background: rgba(7, 11, 20, 0.7);
  transform: translateX(3px);
}
.dark-tech-dp-toggle:active {
  transform: scale(0.99);
}
.dark-tech-dp-toggle__switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.dark-tech-dp-toggle__switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.dark-tech-dp-toggle__switch input:checked + .dark-tech-dp-toggle__track {
  background: rgba(87, 187, 255, 0.25);
  border-color: rgba(87, 187, 255, 0.5);
}
.dark-tech-dp-toggle__switch input:checked + .dark-tech-dp-toggle__track .dark-tech-dp-toggle__thumb {
  transform: translateX(20px);
  background: #57BBFF;
  box-shadow: 0 0 8px rgba(87, 187, 255, 0.5);
}
.dark-tech-dp-toggle__switch__track {
  display: block;
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(87, 187, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  cursor: pointer;
}
.dark-tech-dp-toggle__switch__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #8BA4C4;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dark-tech-dp-toggle__label {
  font-size: 14px;
  color: #C8D8EE;
  font-weight: 600;
  transition: color 0.2s;
}
.dark-tech-dp-toggle__sub {
  font-size: 12px;
  color: #8BA4C4;
  margin-left: auto;
}
@media (max-width: 479px) {
  .dark-tech-dp-toggle__sub {
    display: none;
  }
}

.dark-tech-dp-radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dark-tech-dp-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(7, 11, 20, 0.5);
  border: 1px solid rgba(87, 187, 255, 0.15);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}
.dark-tech-dp-radio::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(87, 187, 255, 0.06) 50%, transparent 60%);
  background-size: 200% auto;
  opacity: 0;
  transition: opacity 0.2s;
}
.dark-tech-dp-radio:hover {
  border-color: rgba(87, 187, 255, 0.4);
  transform: translateX(4px);
}
.dark-tech-dp-radio:hover::before {
  opacity: 1;
  animation: shimmer 0.7s linear;
}
.dark-tech-dp-radio:active {
  transform: translateX(2px) scale(0.99);
}
.dark-tech-dp-radio.selected {
  border-color: rgba(87, 187, 255, 0.55);
  background: rgba(87, 187, 255, 0.07);
  transform: translateX(4px);
}
.dark-tech-dp-radio input[type=radio] {
  display: none;
}
.dark-tech-dp-radio__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(87, 187, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.25s, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dark-tech-dp-radio__dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #57BBFF;
  opacity: 0;
  transform: scale(0);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dark-tech-dp-radio.selected .dark-tech-dp-radio__dot {
  border-color: #57BBFF;
  transform: scale(1.1);
}
.dark-tech-dp-radio.selected .dark-tech-dp-radio__dot::after {
  opacity: 1;
  transform: scale(1);
}
.dark-tech-dp-radio__label {
  font-size: 14px;
  font-weight: 600;
  color: #C8D8EE;
  flex: 1;
  transition: color 0.2s;
}
@media (max-width: 479px) {
  .dark-tech-dp-radio__label {
    font-size: 13px;
  }
}
.dark-tech-dp-radio.selected .dark-tech-dp-radio__label {
  color: #FFFFFF;
}
.dark-tech-dp-radio__desc {
  font-size: 12px;
  color: #8BA4C4;
}
@media (max-width: 479px) {
  .dark-tech-dp-radio__desc {
    display: none;
  }
}

.dark-tech-dp-server-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  border-radius: 12px;
  border: 1px solid rgba(87, 187, 255, 0.15);
  overflow: hidden;
}
.dark-tech-dp-server-table th {
  background: rgba(7, 11, 20, 0.7);
  padding: 11px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8BA4C4;
  border-bottom: 1px solid rgba(87, 187, 255, 0.15);
  white-space: nowrap;
}
.dark-tech-dp-server-table th:first-child {
  width: 48px;
}
@media (max-width: 767px) {
  .dark-tech-dp-server-table th {
    padding: 9px 12px;
    font-size: 10px;
  }
}
.dark-tech-dp-server-table td {
  padding: 13px 16px;
  font-size: 13px;
  color: #C8D8EE;
  border-bottom: 1px solid rgba(87, 187, 255, 0.06);
  vertical-align: middle;
  transition: color 0.2s;
}
.dark-tech-dp-server-table td:last-child {
  color: #F5CE82;
  font-weight: 700;
}
@media (max-width: 767px) {
  .dark-tech-dp-server-table td {
    padding: 11px 12px;
    font-size: 12px;
  }
}
.dark-tech-dp-server-table tr:last-child td {
  border-bottom: none;
}
.dark-tech-dp-server-table tbody tr {
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}
.dark-tech-dp-server-table tbody tr:hover {
  background: rgba(87, 187, 255, 0.05);
}
.dark-tech-dp-server-table tbody tr:hover td {
  color: #FFFFFF;
}
.dark-tech-dp-server-table tbody tr:hover td:last-child {
  color: #57BBFF;
}
.dark-tech-dp-server-table tbody tr.selected {
  background: rgba(87, 187, 255, 0.09);
}
.dark-tech-dp-server-table tbody tr.selected td {
  color: #FFFFFF;
}
.dark-tech-dp-server-table tbody tr.selected td:last-child {
  color: #57BBFF;
  font-size: 14px;
}
.dark-tech-dp-server-table .dark-tech-dp-server-radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(87, 187, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}
.dark-tech-dp-server-table .dark-tech-dp-server-radio::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #57BBFF;
  opacity: 0;
  transform: scale(0);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dark-tech-dp-server-table tr.selected .dark-tech-dp-server-radio {
  border-color: #57BBFF;
  transform: scale(1.1);
}
.dark-tech-dp-server-table tr.selected .dark-tech-dp-server-radio::after {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 479px) {
  .dark-tech-dp-server-table th:nth-child(4), .dark-tech-dp-server-table td:nth-child(4) {
    display: none;
  }
}

.dark-tech-dp-addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.dark-tech-dp-addon {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(7, 11, 20, 0.5);
  border: 1px solid rgba(87, 187, 255, 0.15);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.dark-tech-dp-addon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #57BBFF, #A78BFA);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.dark-tech-dp-addon:hover {
  border-color: rgba(87, 187, 255, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.dark-tech-dp-addon:hover::before {
  transform: scaleX(1);
}
.dark-tech-dp-addon:active {
  transform: translateY(-1px);
}
.dark-tech-dp-addon.selected {
  border-color: rgba(87, 187, 255, 0.55);
  background: rgba(87, 187, 255, 0.07);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(87, 187, 255, 0.12);
}
.dark-tech-dp-addon.selected::before {
  transform: scaleX(1);
}
.dark-tech-dp-addon input[type=checkbox] {
  display: none;
}
.dark-tech-dp-addon__check {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 2px solid rgba(87, 187, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: #070B14;
  font-size: 10px;
}
.dark-tech-dp-addon__check i {
  opacity: 0;
  transform: scale(0) rotate(-20deg);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dark-tech-dp-addon.selected .dark-tech-dp-addon__check {
  background: #57BBFF;
  border-color: #57BBFF;
  transform: scale(1.1);
  box-shadow: 0 0 8px rgba(87, 187, 255, 0.4);
}
.dark-tech-dp-addon.selected .dark-tech-dp-addon__check i {
  opacity: 1;
  transform: scale(1) rotate(0);
}
.dark-tech-dp-addon__icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(87, 187, 255, 0.1);
  border: 1px solid rgba(87, 187, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #57BBFF;
  flex-shrink: 0;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dark-tech-dp-addon:hover .dark-tech-dp-addon__icon {
  background: rgba(87, 187, 255, 0.18);
  transform: scale(1.1) rotate(-5deg);
}
.dark-tech-dp-addon.selected .dark-tech-dp-addon__icon {
  background: rgba(87, 187, 255, 0.2);
  transform: scale(1.05);
}
.dark-tech-dp-addon__body {
  flex: 1;
  min-width: 0;
}
.dark-tech-dp-addon__name {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2px;
  transition: color 0.2s;
}
@media (max-width: 479px) {
  .dark-tech-dp-addon__name {
    font-size: 12px;
  }
}
.dark-tech-dp-addon__note {
  font-size: 11px;
  color: #8BA4C4;
  line-height: 1.4;
}
@media (max-width: 479px) {
  .dark-tech-dp-addon__note {
    display: none;
  }
}
.dark-tech-dp-addon__price {
  font-size: 13px;
  font-weight: 700;
  color: #F5CE82;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
  transition: color 0.2s, transform 0.2s;
}
.dark-tech-dp-addon.selected .dark-tech-dp-addon__price {
  color: #57BBFF;
  transform: scale(1.05);
}

.dark-tech-dp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
@media (min-width: 1536px) {
  .dark-tech-dp-pricing-grid {
    gap: 28px;
  }
}
@media (max-width: 1023px) {
  .dark-tech-dp-pricing-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}
@media (max-width: 767px) {
  .dark-tech-dp-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
  }
}

.dark-tech-dp-price-card {
  background: #0C1628;
  border: 1px solid rgba(87, 187, 255, 0.15);
  border-radius: 18px;
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s;
}
.dark-tech-dp-price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}
.dark-tech-dp-price-card--setup {
  border-color: rgba(245, 206, 130, 0.3);
  background: linear-gradient(160deg, rgba(245, 206, 130, 0.05) 0%, #0C1628 50%);
}
.dark-tech-dp-price-card--setup:hover {
  box-shadow: 0 16px 48px rgba(245, 206, 130, 0.08);
}
.dark-tech-dp-price-card--monthly {
  border-color: rgba(87, 187, 255, 0.4);
  background: linear-gradient(160deg, rgba(87, 187, 255, 0.06) 0%, #0C1628 50%);
}
.dark-tech-dp-price-card--monthly:hover {
  box-shadow: 0 16px 48px rgba(87, 187, 255, 0.1);
}
.dark-tech-dp-price-card--total {
  border-color: rgba(52, 211, 153, 0.3);
  background: linear-gradient(160deg, rgba(52, 211, 153, 0.04) 0%, #0C1628 50%);
}
.dark-tech-dp-price-card--total:hover {
  box-shadow: 0 16px 48px rgba(52, 211, 153, 0.08);
}
.dark-tech-dp-price-card__badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dark-tech-dp-price-card__badge i {
  font-size: 11px;
}
.dark-tech-dp-price-card--setup .dark-tech-dp-price-card__badge {
  color: #F5CE82;
}
.dark-tech-dp-price-card--monthly .dark-tech-dp-price-card__badge {
  color: #57BBFF;
}
.dark-tech-dp-price-card--total .dark-tech-dp-price-card__badge {
  color: #34D399;
}
.dark-tech-dp-price-card__label {
  font-size: 11px;
  color: #8BA4C4;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dark-tech-dp-price-card__amount {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (max-width: 1279px) {
  .dark-tech-dp-price-card__amount {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .dark-tech-dp-price-card__amount {
    font-size: 32px;
  }
}
.dark-tech-dp-price-card:hover .dark-tech-dp-price-card__amount {
  transform: scale(1.04);
}
.dark-tech-dp-price-card--setup .dark-tech-dp-price-card__amount {
  color: #F5CE82;
}
.dark-tech-dp-price-card--monthly .dark-tech-dp-price-card__amount {
  color: #57BBFF;
}
.dark-tech-dp-price-card--total .dark-tech-dp-price-card__amount {
  color: #34D399;
}
.dark-tech-dp-price-card__period {
  font-size: 11px;
  color: #8BA4C4;
  margin-bottom: 14px;
}
.dark-tech-dp-price-card__divider {
  height: 1px;
  background: rgba(87, 187, 255, 0.15);
  margin: 12px 0;
}
.dark-tech-dp-price-card__line-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.dark-tech-dp-price-card__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
}
.dark-tech-dp-price-card__item span:first-child {
  color: #8BA4C4;
  flex: 1;
  line-height: 1.4;
}
.dark-tech-dp-price-card__item span:last-child {
  color: #C8D8EE;
  font-weight: 600;
  white-space: nowrap;
}
.dark-tech-dp-price-card__item--heading span {
  color: #C8D8EE !important;
  font-weight: 700 !important;
  font-size: 12px;
}
.dark-tech-dp-price-card__item--feature span {
  color: #8BA4C4;
  font-size: 12px;
}
.dark-tech-dp-price-card__total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(87, 187, 255, 0.15);
  font-size: 13px;
  font-weight: 700;
}
.dark-tech-dp-price-card__total-row span:first-child {
  color: #C8D8EE;
}
.dark-tech-dp-price-card__total-row span:last-child {
  color: #34D399;
}
.dark-tech-dp-price-card__note {
  font-size: 11px;
  color: #8BA4C4;
  margin-top: 10px;
  line-height: 1.5;
  font-style: italic;
}

.dark-tech-dp-payment__info-box {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(87, 187, 255, 0.07);
  border: 1px solid rgba(87, 187, 255, 0.2);
  border-radius: 10px;
  margin-bottom: 24px;
  font-size: 13px;
  color: #8BA4C4;
  line-height: 1.6;
  transition: border-color 0.2s, background 0.2s;
}
.dark-tech-dp-payment__info-box:hover {
  border-color: rgba(87, 187, 255, 0.35);
  background: rgba(87, 187, 255, 0.1);
}
.dark-tech-dp-payment__info-box i {
  color: #57BBFF;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}
.dark-tech-dp-payment__stripe-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 1280px) {
  .dark-tech-dp-payment__stripe-row {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .dark-tech-dp-payment__stripe-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.dark-tech-dp-payment__stripe-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.dark-tech-dp-payment__stripe-field label {
  font-size: 13px;
  font-weight: 600;
  color: #C8D8EE;
}
.dark-tech-dp-payment__stripe-field--full {
  grid-column: 1/-1;
}
.dark-tech-dp-payment__stripe-input {
  background: rgba(7, 11, 20, 0.6);
  border: 1px solid rgba(87, 187, 255, 0.15);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #FFFFFF;
  width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s, transform 0.2s;
  outline: none;
}
.dark-tech-dp-payment__stripe-input::placeholder {
  color: rgba(139, 164, 196, 0.7);
}
.dark-tech-dp-payment__stripe-input:hover {
  border-color: rgba(87, 187, 255, 0.3);
  background: rgba(7, 11, 20, 0.8);
}
.dark-tech-dp-payment__stripe-input:focus {
  border-color: rgba(87, 187, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(87, 187, 255, 0.1);
  background: rgba(26, 43, 74, 0.2);
  transform: translateY(-1px);
}
.dark-tech-dp-payment__secure {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #8BA4C4;
  margin-bottom: 20px;
}
.dark-tech-dp-payment__secure i {
  color: #34D399;
}
.dark-tech-dp-payment__billing-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 1280px) {
  .dark-tech-dp-payment__billing-note {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .dark-tech-dp-payment__billing-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.dark-tech-dp-payment__bill-item {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid;
  font-size: 12px;
  line-height: 1.6;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.2s;
}
.dark-tech-dp-payment__bill-item:hover {
  transform: translateY(-2px);
}
.dark-tech-dp-payment__bill-item--setup {
  background: rgba(245, 206, 130, 0.06);
  border-color: rgba(245, 206, 130, 0.2);
  color: #8BA4C4;
}
.dark-tech-dp-payment__bill-item--setup strong {
  color: #F5CE82;
  display: block;
  margin-bottom: 4px;
}
.dark-tech-dp-payment__bill-item--setup:hover {
  box-shadow: 0 6px 20px rgba(245, 206, 130, 0.08);
}
.dark-tech-dp-payment__bill-item--monthly {
  background: rgba(87, 187, 255, 0.06);
  border-color: rgba(87, 187, 255, 0.2);
  color: #8BA4C4;
}
.dark-tech-dp-payment__bill-item--monthly strong {
  color: #57BBFF;
  display: block;
  margin-bottom: 4px;
}
.dark-tech-dp-payment__bill-item--monthly:hover {
  box-shadow: 0 6px 20px rgba(87, 187, 255, 0.08);
}

.dark-tech-dp-account__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  color: #8BA4C4;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dark-tech-dp-account__divider::before, .dark-tech-dp-account__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(87, 187, 255, 0.15);
}

.dark-tech-dp-deploy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, #57BBFF, #3aa8f0);
  color: #070B14;
  font-family: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}
.dark-tech-dp-deploy-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
  background-size: 200% auto;
  opacity: 0;
  transition: opacity 0.3s;
}
.dark-tech-dp-deploy-btn i {
  font-size: 18px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dark-tech-dp-deploy-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(87, 187, 255, 0.45);
}
.dark-tech-dp-deploy-btn:hover::before {
  opacity: 1;
  animation: shimmer 0.8s linear;
}
.dark-tech-dp-deploy-btn:hover i {
  transform: translateY(-2px) rotate(-15deg);
}
.dark-tech-dp-deploy-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(87, 187, 255, 0.3);
}
.dark-tech-dp-deploy-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
@media (max-width: 767px) {
  .dark-tech-dp-deploy-btn {
    font-size: 15px;
    padding: 16px 24px;
  }
}
@media (max-width: 479px) {
  .dark-tech-dp-deploy-btn {
    font-size: 14px;
    padding: 14px 20px;
  }
}

.dark-tech-dp-success {
  display: none;
  text-align: center;
  padding: 56px 32px;
  background: #0C1628;
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 20px;
}
@media (max-width: 767px) {
  .dark-tech-dp-success {
    padding: 40px 20px;
  }
}
.dark-tech-dp-success__icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.12);
  border: 2px solid rgba(52, 211, 153, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: #34D399;
  animation: pop-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.dark-tech-dp-success__title {
  font-size: 28px;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  animation: fade-up 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.2s both;
}
@media (max-width: 767px) {
  .dark-tech-dp-success__title {
    font-size: 22px;
  }
}
.dark-tech-dp-success__msg {
  font-size: 15px;
  color: #8BA4C4;
  line-height: 1.75;
  max-width: 460px;
  margin: 0 auto 24px;
  animation: fade-up 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.3s both;
}
@media (max-width: 767px) {
  .dark-tech-dp-success__msg {
    font-size: 14px;
  }
}
.dark-tech-dp-success__email {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #57BBFF;
  background: rgba(87, 187, 255, 0.1);
  border: 1px solid rgba(87, 187, 255, 0.25);
  border-radius: 8px;
  padding: 8px 20px;
  animation: fade-up 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.4s both;
  transition: background 0.2s, transform 0.2s;
}
.dark-tech-dp-success__email:hover {
  background: rgba(87, 187, 255, 0.18);
  transform: scale(1.02);
}
.dark-tech-dp-success.visible {
  display: block;
}

.dark-tech-dp-hidden {
  display: none !important;
}

.dark-tech-dp-section-note {
  font-size: 12px;
  color: #8BA4C4;
  font-style: italic;
  margin-top: 14px;
  line-height: 1.55;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(245, 206, 130, 0.04);
  border: 1px solid rgba(245, 206, 130, 0.12);
}
.dark-tech-dp-section-note i {
  color: #F5CE82;
  margin-right: 5px;
}

.dark-tech-dp-total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: rgba(245, 206, 130, 0.07);
  border: 1px solid rgba(245, 206, 130, 0.22);
  border-radius: 12px;
  margin-top: 16px;
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s;
  animation: scale-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.dark-tech-dp-total-bar:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 206, 130, 0.08);
}
.dark-tech-dp-total-bar__label {
  font-size: 14px;
  font-weight: 700;
  color: #C8D8EE;
}
.dark-tech-dp-total-bar__label span {
  font-size: 12px;
  font-weight: 400;
  color: #8BA4C4;
  margin-left: 6px;
}
.dark-tech-dp-total-bar__amount {
  font-size: 20px;
  font-weight: 900;
  color: #F5CE82;
  letter-spacing: -0.02em;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dark-tech-dp-total-bar:hover .dark-tech-dp-total-bar__amount {
  transform: scale(1.05);
}

.dark-tech-dp-stripe-element {
  background: rgba(7, 11, 20, 0.6);
  border: 1px solid rgba(87, 187, 255, 0.15);
  border-radius: 10px;
  padding: 13px 16px;
  transition: border-color 0.25s, box-shadow 0.25s;
  min-height: 44px;
}
.dark-tech-dp-stripe-element.StripeElement--focus {
  border-color: rgba(87, 187, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(87, 187, 255, 0.1);
}
.dark-tech-dp-stripe-element.StripeElement--invalid {
  border-color: rgba(234, 62, 46, 0.6);
  box-shadow: 0 0 0 3px rgba(234, 62, 46, 0.1);
}
.dark-tech-dp-stripe-element.StripeElement--complete {
  border-color: rgba(52, 211, 153, 0.4);
}

.dark-tech-dp-stripe-error {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(234, 62, 46, 0.08);
  border: 1px solid rgba(234, 62, 46, 0.25);
  border-radius: 8px;
  color: rgb(243.3130434783, 147.5913043478, 138.6869565217);
  font-size: 13px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.dark-tech-dp-stripe-error::before {
  content: "\f06a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  flex-shrink: 0;
}

.dark-tech-dp-inline-error {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(234, 62, 46, 0.08);
  border: 1px solid rgba(234, 62, 46, 0.25);
  border-radius: 8px;
  color: #f07070;
  font-size: 13px;
  margin-top: 14px;
  animation: shake-in 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.dark-tech-dp-inline-error i {
  font-size: 12px;
  flex-shrink: 0;
}

@keyframes shake-in {
  0% {
    opacity: 0;
    transform: translateY(-6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.dark-tech-dp-account__divider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8BA4C4;
  margin: 28px 0 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(87, 187, 255, 0.15);
}
.dark-tech-dp-account__divider-sub {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: #8BA4C4;
}
.dark-tech-dp-account__divider-sub a {
  color: #57BBFF;
  font-weight: 700;
  margin-left: 4px;
}
.dark-tech-dp-account__divider-sub a:hover {
  text-decoration: underline;
}

.dark-tech-dp-signedin {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  margin-top: 24px;
  background: rgba(52, 211, 153, 0.06);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 14px;
}
.dark-tech-dp-signedin__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #34D399;
  flex-shrink: 0;
}
.dark-tech-dp-signedin__title {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}
.dark-tech-dp-signedin__title span {
  color: #34D399;
}
.dark-tech-dp-signedin__sub {
  font-size: 13px;
  color: #8BA4C4;
  line-height: 1.6;
}

.dark-tech-dp-inline-error {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(234, 62, 46, 0.08);
  border: 1px solid rgba(234, 62, 46, 0.25);
  border-radius: 8px;
  color: #f07070;
  font-size: 13px;
  margin-top: 14px;
  animation: shake-in 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.dark-tech-dp-inline-error i {
  font-size: 12px;
  flex-shrink: 0;
}

@keyframes shake-in {
  0% {
    opacity: 0;
    transform: translateY(-6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=darkTechShop.css.map */
