h3 {
  margin: 40px 0 0;
}
ul {
  list-style-type: none;
  padding: 0;
}
a {
  color: #42b983;
}
input {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
}
input:not([type="checkbox"]):not([type="tel"]) {
  width: 100%;
  min-height: 35px;
  outline: none;
  position: relative;
  z-index: 3;
  background-position: 50% 50%;
  background-repeat: no-repeat !important;
  border: 1px solid #bbb;
  border-radius: 5px;
}
.addition a {
  color: #42b983;
}
.addition .cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5px 20px;
  background: #333;
  font-family:
    Open Sans,
    Helvetica,
    Arial,
    sans-serif;
  color: #fff;
  display: none;
  z-index: 9999;
  line-height: 1.5;
}
.addition .cookie-bar * {
  font-size: 16px !important;
  line-height: 1.2 !important;
}
.addition .cookie-bar.active {
  display: inherit;
}
.addition .cookie-bar-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
}
.addition #cookie-bar-link {
  font-size: 12px;
}
.addition .cookie-bar-buttons {
  text-align: center;
}
.addition #cookie-bar-btn {
  padding: 10px 20px;
  background: #49c63b;
  border: unset;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
}
.addition button {
  outline: none;
}
.addition .pop-outer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 999;
  display: none;
}
.addition .pop-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
}
.addition .pop-inner {
  height: 80%;
  position: relative;
  z-index: 101;
  background: #fff;
  max-width: 80%;
}
.addition .pop-inner__in {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  max-width: 100%;
  max-height: 100%;
  padding: 20px 40px;
  line-height: 150%;
}
.addition .pop-close,
.addition .pop-inner__in {
  color: #000;
}
.addition .pop-close {
  position: absolute;
  right: 40px;
  top: 20px;
  cursor: pointer;
  z-index: 5;
}
.addition .alterlink {
  font-family:
    Open Sans,
    Helvetica,
    Arial,
    sans-serif;
  cursor: pointer;
  font-size: 14px;
}
.addition .alterlink:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1100px) {
  .addition .cookie-bar * {
    font-size: 14px !important;
  }
}
@media screen and (max-width: 768px) {
  .addition .cookie-bar * {
    font-size: 12px !important;
  }
  .addition .pop-inner {
    max-width: 100%;
  }
  .addition .pop-inner__in {
    padding: 20px;
  }
  .addition .pop-close {
    right: 20px;
  }
}
@media screen and (max-width: 425px) {
  .addition #cookie-bar-btn {
    padding: 7px 9px;
  }
  .addition .fullscreen-cookie-text {
    display: none;
  }
}
:root {
  --bg: #000;
  --card: #0e0e10;
  --text: #ffffff;
  --muted: #b8b8c0;
  --muted-2: #8a8a93;
  --green: #39c34a;
  --green-dark: #2ba53a;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo img {
  height: 85px;
  width: auto;
}
.hero {
  padding: 70px 0 80px;
  background:
    radial-gradient(
      900px 500px at 78% 35%,
      rgba(57, 195, 74, 0.1),
      transparent 60%
    ),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.hero h1 b {
  font-weight: 800;
}
.hero .date {
  font-weight: 800;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #111;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 46px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.08);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 255, 255, 0.18);
}
.hero-cta {
  margin-top: 38px;
}
.hero-img {
  display: flex;
  justify-content: center;
}
.hero-img img {
  max-height: 430px;
  width: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
}
.register {
  padding: 30px 0 60px;
}
.register-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.video-box {
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  line-height: 0;
}
.video-box video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}
.form-box {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  padding: 50px 30px 34px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.form-tab {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #edd739;
  color: #111;
  font-weight: 700;
  font-size: 15px;
  padding: 11px 30px;
  border-radius: 999px;
  white-space: nowrap;
}
.form-box h4 {
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  margin: 4px 0 24px;
  line-height: 1.45;
}
.form-note {
  text-align: center;
  color: var(--muted-2);
  font-size: 12px;
  margin-top: 14px;
}
.ticker {
  overflow: hidden;
  white-space: nowrap;
  background: linear-gradient(
    90deg,
    #f7931a,
    #e2467a,
    #7a3df0,
    #2f8fff,
    #39c34a
  );
  padding: 14px 0;
}
.ticker-track {
  display: inline-flex;
  gap: 48px;
  animation: scroll 30s linear infinite;
  will-change: transform;
}
.ticker:hover .ticker-track {
  animation-play-state: paused;
}
.ticker span {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.offers {
  padding: 60px 0;
}
.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.offers-phone {
  display: flex;
  justify-content: center;
}
.offers-phone img {
  max-height: 560px;
  width: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
}
.offers-content h2 {
  text-align: center;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.offers-content h2 .brand {
  display: block;
}
.calculator {
  background: #1b1b1f;
  padding: 34px 24px;
  border-radius: 20px;
  margin: 0 auto 30px;
  max-width: 500px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.calc-labels {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 500;
}
.calc-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  background: #333;
  border-radius: 4px;
  outline: none;
  margin-bottom: 16px;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(57, 195, 74, 0.6);
  transition: transform 0.1s;
}
.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.calc-current {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.calc-results {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.calc-result-item {
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  font-size: 17px;
  color: #fff;
  font-weight: 500;
}
.calc-result-item span {
  color: var(--green);
  font-weight: 700;
  margin-left: 6px;
}
.content {
  padding: 50px 0 20px;
}
.content h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  margin: 42px 0 18px;
  letter-spacing: 0.3px;
}
.content p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 18px;
}
.content .lead {
  color: #fff;
  font-weight: 500;
}
.feature-list {
  list-style: none;
  margin: 14px 0 26px;
}
.feature-list li {
  color: var(--muted);
  font-size: 15px;
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  color: var(--green);
  font-weight: 800;
}
.spec {
  max-width: 480px;
  margin: 34px auto;
  border: 1px solid rgba(124, 92, 255, 0.4);
  border-radius: 12px;
  overflow: hidden;
}
.spec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(124, 92, 255, 0.25);
}
.spec-row:last-child {
  border-bottom: none;
}
.spec-row > div {
  padding: 14px 18px;
  font-size: 15px;
}
.spec-row .k {
  background: rgba(124, 92, 255, 0.08);
  color: #fff;
  font-weight: 500;
  border-right: 1px solid rgba(124, 92, 255, 0.25);
}
.spec-row .v {
  color: var(--muted);
}
.final-cta {
  padding: 30px 0 20px;
  text-align: left;
  max-width: 1180px;
  margin: 0 auto;
}
footer {
  text-align: center;
}
footer img {
  height: 100px;
  opacity: 0.9;
}
@media (max-width: 900px) {
  .hero {
    padding: 40px 0 50px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .hero-img {
    order: -1;
  }
  footer {
    display: flex;
  }
  .hero-img img {
    max-height: 320px;
  }
  .hero-cta {
    display: flex;
    justify-content: center;
  }
  .register-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 460px;
  }
  .final-cta {
    text-align: center;
  }
  .offers-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .offers-phone img {
    max-height: 440px;
  }
}
@media (max-width: 560px) {
  .container {
    padding: 0 18px;
  }
  .final-cta {
    text-align: center;
  }
  footer {
    display: flex;
  }
  .hero h1 {
    font-size: 28px;
  }
  .btn {
    width: 100%;
    max-width: 340px;
    padding: 15px;
  }
  .spec-row > div {
    padding: 12px 12px;
    font-size: 14px;
  }
  .ticker span {
    font-size: 13px;
  }
  .form-box {
    padding: 46px 18px 28px;
  }
  .hero-img img {
    max-height: 280px;
  }
}
body {
  transition: opacity ease-in 0.2s;
}
input[type="range"] {
  padding: 0px !important;
  min-height: 0px !important;
}
