@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* ── Backgrounds ── */
  --bg-primary: #050505;
  --bg-card: #262626;
  --bg-card-hover: #262626;
  --bg-darker: #0c0c0e;
  --bg-black: #000000;
  --bg-faq: #121212;
  --bg-testimonial-card: #0d0d0d;
  --bg-contact-card-start: #111517;
  --bg-contact-card-end: #181c1d;

  /* ── Reds ── */
  --color-red: #C72724;
  --color-red-hover: #c7272465;
  --color-red-muted: rgba(230, 43, 43, 0.15);
  --color-red-num: rgba(230, 43, 43, 0.2);
  --color-red-bright: #ff2d2d;
  --color-red-alt: #E53935;
  --color-red-checkbox: #ef4444;
  --color-red-footer-border: #b71c1c;

  /* ── Text ── */
  --text-white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-gray: #c7c7cc;
  --text-light-gray: #d1d5db;
  --text-faq-answer: #a6a6a6;
  --text-testimonial: #b5b5b5;

  /* ── Borders ── */
  --border-color: #242429;
  --border-color-red: #C72724;
  --border-focus: #3a3a42;
  --border-white-08: rgba(255, 255, 255, 0.08);
  --border-white-solid: rgba(255, 255, 255, 1);

  /* ── Submenu ── */
  --submenu-bg: #fff;
  --submenu-text: #111;
  --submenu-hover: #f5f5f5;

  /* ── Misc ── */
  --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition-speed: 0.5s;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  background-color: var(--bg-primary);
  color: var(--text-white);
  font-family: var(--font-family);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

[data-aos] {
  opacity: 0;
  pointer-events: none;
}
[data-aos].aos-animate {
  opacity: 1;
  pointer-events: auto;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ─── LEGAL SECTION ─── */
.legal-section {
  padding: 120px 0 80px;
  min-height: calc(100vh - 72px);
}

.legal-content {
  margin: 0 auto;
}

.legal-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: var(--text-white);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.legal-intro {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 48px;
  font-weight: 400;
}

.legal-text {
  background: var(--bg-card);
  padding: 48px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.legal-text h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-white);
  margin-top: 32px;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 400;
}

.legal-text .contact-info {
  color: var(--color-red);
  font-weight: 500;
}

.legal-text ul {
  list-style: disc;
  margin: 16px 0;
  padding-left: 24px;
}

.legal-text ul li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 400;
  padding-left: 8px;
}

.legal-text ul li:last-child {
  margin-bottom: 0;
}

.legal-text ul li::marker {
  color: var(--color-red);
}

.legal-text h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
  margin-top: 24px;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

/* ─── FOOTER CONTENT FOR LEGAL PAGES ─── */
.footer {
  background: var(--bg-black);
  border-top: 1px solid var(--border-color);
  padding: 32px 0;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--color-red);
}

.footer-links span {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 14px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.container {
  width: 100%;
  max-width: 1440px;
  padding: 0 24px;
  margin: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ─── NAVBAR ─── */
.navbar {
  height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 100;
}
.nav-inner {
  max-width: 1440px;
  margin: auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
}
.logo-icon {
  width: 34px;
  height: 34px;
}
.nav-links {
  display: flex;
  gap: 42px;
}
.nav-links a,
.nav-dd {
  font-size: 14px;
  color: var(--text-white);
  text-decoration: none;
  letter-spacing: 0.8px;
  padding: 28px 0;
  transition: 0.5s;
}
.nav-links a:hover,
.nav-dd:hover {
  color: var(--color-red);
  transition: 0.5s;
}
.nav-cta {
  background: var(--color-red);
  color: var(--text-white);
  text-decoration: none;
  width: 120px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: 0.5s;
}
.nav-cta:hover {
  background: var(--color-red-hover);
  transition: 0.5s;
  transform: translateY(-3px);
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all .3s ease;
  background: #000000;
  backdrop-filter: blur(14px);
}
.navbar.sticky {
  background: var(--bg-black);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
  backdrop-filter: blur(12px);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.dropdown {
  position: relative;
}
.nav-dd {
  cursor: pointer;
}
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--submenu-bg);
  border-radius: 12px;
  padding: 0px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  overflow: hidden;
}
.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu li a {
  display: block;
  padding: 8px 20px;
  color: var(--submenu-text);
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
}
.submenu li a:hover {
  background: var(--submenu-hover);
}
.nav-dd {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-white);
  text-decoration: none;
}
.nav-dd::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-top: -3px;
}
.dropdown:hover .nav-dd::after {
  transform: rotate(225deg);
  margin-top: 3px;
}

/* ─── HERO ─── */
.hero-section {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  margin-top: 80px;
}
.hero-wrapper {
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.hero-wrapper {
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.hero-content {
  max-width: 670px;
  z-index: 5;
}
.hero-title {
  font-size: 72px;
  font-weight: 800;
  line-height: 78px;
  letter-spacing: -2px;
  color: var(--text-white);
}
.hero-title span {
  color: var(--color-red);
}
.hero-desc {
  margin-top: 28px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
  font-weight: 400;
}
.hero-btn-group {
  margin-top: 38px;
  display: flex;
  gap: 16px;
}
.btn-demo {
  width: 150px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red);
  color: var(--text-white);
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  gap: 10px;
  transition: 0.5s;
}
.btn-demo:hover {
  background: var(--color-red-hover);
  transition: 0.5s;
  transform: translateY(-3px);
}
.btn-buy {
  width: 150px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-red);
  color: var(--text-white);
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  gap: 10px;
  transition: all .35s ease;
}
.btn-buy:hover {
  background: var(--color-red);
  box-shadow: 0 8px 24px rgba(199, 39, 36, 0.35);
  transform: translateY(-3px);
}
.btn-buy:hover span img {
  filter: brightness(0) invert(1);
  transition: 0.5s;
}
.hero-btn-group a span {
  display: flex;
}
.hero-image {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
}
.hero-image img {
  width: 760px;
}
.hero-image::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.35), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* ─── FEATURE STRIP ─── */
.feature-strip {
  position: relative;
  z-index: 5;
  margin-top: -40px;
}
.feature-strip-inner {
  height: 106px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset, 0 10px 40px rgba(0, 0, 0, 0.35);
}
.strip-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.strip-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.strip-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-red-bright);
  fill: none;
}
.strip-content {
  display: flex;
  flex-direction: column;
}
.strip-label {
  color: var(--text-white);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 2px;
  letter-spacing: 0;
  text-transform: uppercase;
}
.strip-sub {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
.strip-divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 22px;
  flex-shrink: 0;
}

/* ─── FEATURES SECTION ─── */
.features-section {
  margin: 80px 0 50px;
  background: var(--bg-primary);
}
.features-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
}
.section-tag {
  display: block;
  color: var(--color-red);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 2px;
  margin-bottom: 0px;
}
.features-heading h2 {
  font-size: 48px;
  line-height: 50px;
  font-weight: 500;
  color: var(--text-white);
}
.feature-slider {
  margin: 0 -10px;
  padding-bottom: 20px;
}
.feature-item {
  padding: 0 10px;
}
.feature-thumb {
  position: relative;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.feature-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.feature-item:hover img {
  transform: scale(1.05);
}
.feature-item h3 {
  color: var(--text-white);
  font-size: 20px;
  margin-top: 28px;
  margin-bottom: 12px;
  font-weight: 400;
}
.feature-item p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
}
.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
}
.feature-arrows {
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-prev,
.feature-next {
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.feature-prev i,
.feature-next i {
  font-size: 20px;
  color: var(--text-white);
}
.feature-prev:hover,
.feature-next:hover {
  color: var(--color-red);
}
.feature-prev:hover i,
.feature-next:hover i {
  color: var(--color-red);
}
.custom-pagination .slick-dots {
  display: flex !important;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.custom-pagination .slick-dots li {
  width: 6px;
  height: 6px;
  margin: 0;
}
.custom-pagination .slick-dots li {
  width: 6px;
  height: 6px;
  padding: 0;
  border: none;
  background: var(--text-white);
  border-radius: 100px;
  font-size: 0;
  cursor: pointer;
  opacity: 0.5;
}
.custom-pagination .slick-dots li.slick-active {
  width: 30px;
  background: var(--text-white);
  opacity: 1;
}

/* ─── FAQ ─── */
.faq-section {
  margin: 50px 0 50px;
  background: var(--bg-faq);
  padding: 32px 0;
}
.faq-wrapper {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 40px;
}
.faq-tag {
  display: block;
  margin-bottom: 10px;
  color: var(--color-red);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
}
.faq-heading {
  color: var(--text-white);
  font-size: 48px;
  line-height: 50px;
  font-weight: 500;
}
.faq-content-right {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.faq-card {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0 20px;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-white);
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}
.faq-icon {
  font-size: 24px;
  color: var(--text-white);
  transition: 0.3s;
  font-weight: 400;
}
.faq-answer {
  display: none;
  color: var(--text-faq-answer);
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 0px;
  max-width: 800px;
}
.faq-card.active .faq-answer {
  display: block;
}
.faq-card.active .faq-question {
  color: var(--color-red);
}
.faq-card.active .faq-icon {
  color: var(--color-red);
}
.faq-item.open .faq-question-text {
  color: var(--orange);
}
.feature-arrows.mobile{
  display: none;
}

/* ─── TESTIMONIALS ─── */
.testimonial-section {
  margin: 50px 0 20px;
  background: var(--bg-primary);
  overflow: hidden;
}
.testimonial-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.quote-icon {
  color: var(--color-red);
  font-size: 32px;
  font-weight: 700;
}
.stars {
  color: var(--color-red);
  letter-spacing: 2px;
}
.testimonial-left {
  width: 440px;
  flex-shrink: 0;
}
.section-tag {
  display: block;
  margin-bottom: 10px;
  color: var(--color-red);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author h5 {
  color: var(--text-white);
  font-size: 15px;
}
.testimonial-author span {
  color: var(--color-red);
  font-size: 12px;
}
.testimonial-card p {
  color: var(--text-testimonial);
  font-size: 14px;
  line-height: 20px;
  margin: 25px 0;
  min-height: 80px;
}
.testimonial-title {
  color: var(--text-white);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}
.testimonial-right {
  width: calc(100% - 210px);
  margin-bottom: 40px;
}
.testimonial-item {
  padding: 0 12px;
}

.testimonial-card {
  background: var(--bg-testimonial-card);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  padding: 28px;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-slider .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.testimonial-slider .slick-dots li {
  width: 8px;
  height: 8px;
  margin: 0;
  border: 0;
}
.testimonial-slider .slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  padding: 0;
  font-size: 0;
  line-height: 0;
  border: 0;
  cursor: pointer;
}
.testimonial-slider .slick-dots li button:before {
  display: none;
}
.testimonial-slider .slick-dots li.slick-active button {
  background: var(--color-red);
}

/* ─── CONTACT ─── */
.contact-section {
  margin: 20px 0 60px;
  background: var(--bg-primary);
}
.contact-card {
  background: linear-gradient(90deg, var(--bg-contact-card-start) 0%, var(--bg-contact-card-end) 100%);
  border-radius: 10px;
  padding: 48px 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.contact-content {
  width: 40%;
}
.contact-tag {
  display: block;
  color: var(--color-red-alt);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.contact-heading {
  color: var(--text-white);
  font-size: 48px;
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 25px;
}
.contact-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}
.contact-form-wrap {
  width: 52%;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group input {
  width: 100%;
  height: 56px;
  padding: 0 18px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 4px;
  color: var(--text-white);
  font-size: 16px;
  font-weight: 400;
}
.form-group input::placeholder {
  color: var(--text-white);
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-family);
}
::placeholder {
  font-family: var(--font-family);
}
.form-group input:focus {
  outline: none;
  border-color: var(--color-red-alt);
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 15px;
}
.form-checkbox input[type="checkbox"] {
  display: none;
}
.form-checkbox label {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  color: var(--text-light-gray);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}
.form-checkbox label a {
  color: var(--color-red);
}
.form-checkbox label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 0px;
  background: transparent;
  transition: all 0.25s ease;
}
.form-checkbox label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 6px;
  height: 10px;
  border: solid var(--text-white);
  border-width: 0 1px 1px 0;
  transform: rotate(45deg) scale(0);
  transition: all 0.25s ease;
}
.form-checkbox input:checked+label::before {
  background: var(--color-red-checkbox);
  border-color: var(--color-red-checkbox);
}
.form-checkbox input:checked+label::after {
  transform: rotate(45deg) scale(1);
}
.form-checkbox a {
  color: var(--text-white);
  text-decoration: underline;
}
.form-checkbox a:hover {
  opacity: 0.8;
}
.submit-btn {
  margin: 20px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 52px;
  background: var(--color-red);
  border: none;
  border-radius: 4px;
  color: var(--text-white);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
}
.submit-btn:hover {
  background: var(--color-red-hover);
  transition: 0.5s;
  transform: translateY(-3px);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--bg-black);
  width: 100%;
  border-bottom: 1px solid var(--color-red-footer-border);
  padding: 15px 0 20px;
  margin-top: 25px;
}
.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  max-width: 300px;
}
.footer-logo {
  margin-bottom: 16px;
}
.footer-logo img, .nav-inner img {
  height: 44px;
  width: auto;
  display: block;
}
.footer-description {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin: 0;
}
.footer-center {
  flex: 1;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 100px;
  justify-content: space-between;
}
.footer-email {
  color: var(--text-white);
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: underline;
  transition: 0.3s ease;
}
.footer-email:hover {
  color: var(--color-red);
  transition: 0.5s;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 6px;
}
.footer-links a {
  color: var(--text-white);
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  line-height: 24px;
  transition: 0.5s;
}
.footer-links a:hover {
  color: var(--color-red);
  transition: 0.5s;
}
.footer-links span {
  color: var(--text-white);
  font-size: 16px;
}
.copy-write-section {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
.video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.video-popup.active {
  display: flex;
}
.video-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
}
.video-popup-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  z-index: 2;
}
.video-popup-content video {
  width: 100%;
  height: 500px;
  border: 0;
  border-radius: 16px;
  display: block;
  overflow: hidden;
}
.video-popup-close {
  position: absolute;
  right: -10px;
  top: -45px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--color-red-bright);
  color: var(--text-white);
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}
.play-btn {
  cursor: pointer;
}

/********** pricing page css ******************/
.priceing-section,
.priceing-section .hero-wrapper {
  min-height: 400px;
  background-size: contain;
  background-position: right;
  position: relative;
  background-repeat: no-repeat;
}
.priceing-section::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.priceing-section h1 span{
  color: #C72724;
}
.pricing {
  position: relative;
  margin-bottom: 80px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.pricing-card {
  background-color: #1A1C1C;
  border: 1px solid #1A1C1C;
  border-radius: 12px;
  padding: 24px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 12px;
  cursor: pointer;
  transition: transform var(--transition-speed), border-color var(--transition-speed), box-shadow var(--transition-speed);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
.pricing-card.popular {
  border: 2px solid var(--color-red);
}
.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-red);
  color: var(--text-white);
  padding: 6px 45px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: 2px;
  white-space: nowrap;
}
.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--text-gray);
  stroke-width: 2;
  fill: none;
}
.pricing-card.popular .card-icon svg {
  stroke: var(--color-red);
}
.card-title {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.card-subtitle {
  font-size: 14px;
  color: #ffffff;
  display: flex;
  font-weight: 400;
  width: 210px;
}
.card-price {
  margin-bottom: 4px;
}
.price-amount {
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}
.price-billing {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 32px;
  font-weight: 400;
}
.pricing-btn {
  display: block;
  width: 100%;
  padding: 15px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  border-radius: 2px;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition-speed);
  margin-bottom: 40px;
}
.pricing-btn{
  border: 1px solid var(--border-color-red);
  background-color: transparent;
  color: var(--text-white);
  transition: 0.5s;
}
.popular .pricing-btn:hover {
  background-color: var(--color-red);
  transition: 0.5s;
}
.popular .pricing-btn{
  background-color: var(--color-red);
  border: 1px solid var(--border-color-red);
  color: var(--text-white);
  transition: 0.5s;
}
.popular .pricing-btn:hover {
  background-color: transparent;
  transition: 0.5s;
  border: 1px solid var(--border-color-red);
}

/* Pricing Modal */
.pricing-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all .35s ease;
  display: flex;
  align-items: center;
}
.pricing-modal.active {
  opacity: 1;
  visibility: visible;
}
.pricing-modal-overlay {
  position: absolute;
  inset: 0;
  background: #121414CC;
  backdrop-filter: blur(6px);
}
.pricing-modal-content {
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin: 40px auto;
  background: rgb(255 255 255 / 10%);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  overflow: hidden;
  height: fit-content;
  box-shadow: 0px 25px 50px -12px #00000040;
}
.pricing-modal-grid {
  display: grid;
  grid-template-columns: 500px 1fr;
  min-height: 580px;
}
.pricing-modal-left {
  padding: 20px 36px;
  color: #fff;
  background-color: #2A2D2D;
}
.pricing-modal-logo {
  max-width: 150px;
  margin-bottom: 20px;
}
.pricing-modal-title {
  font-size: 32px;
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.pricing-modal-title span {
  color: #d72626;
}
.pricing-modal-text {
  font-size: 16px;
  line-height: 1.1;
  color: #ffffff;
  font-weight: 400;
  max-width: 400px;
}
.pricing-modal-image {
  margin-top: 28px;
}
.pricing-modal-image img {
  width: 378px;
  height: 290px;
  display: block;
  border-radius: 14px;
  object-fit: contain;
}
.pricing-modal-features {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #E5E7EB;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.pricing-feature-item {
  flex: 1;
  text-align: center;
}
.pricing-feature-item img,
.pricing-feature-icon {
  width: 24px;
  height: 24px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-feature-item i {
  font-size: 22px;
  color: #fff;
}
.pricing-feature-item h4 {
  margin: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
}
.pricing-feature-item p {
  margin: 2px 0 0;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
}

.pricing-modal-right {
  padding: 20px 48px;
  color: #fff;
}
.pricing-modal-right h3 {
  font-size: 24px;
  margin-bottom: 4px;
  font-weight: 600;
}
.pricing-modal-right p {
  color: rgba(255,255,255,1);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
.pricing-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing-form-row {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}
.pricing-form label {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
  color: #fff;
  font-weight: 500;
}
.pricing-form input,
.pricing-form select {
  width: 100%;
  height: 43px;
  border: 1px solid rgba(255,255,255,.45);
  background: transparent;
  color: #fff;
  border-radius: 6px;
  padding: 0 16px;
  font-size: 14px;
}
.pricing-form input::placeholder {
  color: rgba(255,255,255,.55);
}
.pricing-form select {
  appearance: none;
  cursor: pointer;
  background-image: url(../images/down-arrows-new.svg)!important;
  background-position: 98% center!important;
  background-repeat: no-repeat!important;
  background-size: 20px;
}
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}
.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

/* Buttons */
.pricing-form-actions {
  display: flex;
  gap: 14px;
  margin-top: 0px;
  border-top: 1px solid #E5E7EB;
  padding-top: 15px;
}
.pricing-btn-cancel {
  width: 160px;
  height: 45px;
  border: 1px solid rgba(255,255,255,.6);
  background: transparent;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
}
.pricing-btn-submit {
  flex: 1;
  height: 45px;
  background: #d72626;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
}
.pricing-form-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-white);
  margin-top: 5px;
  font-weight: 400;
}
.pricing-form-disclaimer svg {
  width: 16px;
  height: 16px;
}
.checkbox-main .form-checkbox {
  margin-top: 0px;
}
.required {
  color: #C72724;
  font-weight: 700;
  margin-left: 2px;
}
input::placeholder{
  font-size: 14px!important;
  line-height: 18px;
  font-weight: 400;
  color: #ffffff!important;
}
.pricing-modal-close {
  position: absolute;
  top: 2px;
  right: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
  z-index: 2;
}
body.modal-open,
html.modal-open {
  overflow: hidden;
  height: 100%;
}
body.menu-open {
  overflow: hidden;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: auto;
}
.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  position: relative;
  padding-left: 25px;
}
.features-list li::before{
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 14px;
  stroke: var(--color-red);
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
  background-image: url(../images/right-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.see-features-link {
  display: inline-flex;
  align-items:left;
  gap: 8px;
  color: var(--color-red);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 40px;
  transition: gap var(--transition-speed);
}
.pricing-form input, .pricing-form select{
  font-family: var(--font-family);
}
.see-features-link:hover {
  gap: 20px;
}
.pricing-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-white);
  margin-top: 40px;
  font-weight: 400;
}
.pricing-disclaimer svg {
  width: 16px;
  height: 16px;
}

/* Add-ons Section */
.addons {
  margin: 60px 0;
}
.addons-container {
  background-color: #131617;
  border: 1px solid #333535;
  border-radius: var(--border-radius-lg);
  padding: 24px 32px;
  display: grid;
  grid-template-columns: 0.5fr 1.40fr;
  gap: 32px;

}
.addons-info {
  display: flex;
  flex-direction: column;
}
.section-tag {
  color: var(--color-red);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.addons-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.addon-card {
  border: 1px solid #333535;
  border-radius: 4px;
  padding: 24px 24px;
  display: flex;
  flex-direction: row;
  gap: 15px;
  transition: border-color var(--transition-speed), transform var(--transition-speed);
}
.addon-card:hover {
  border-color: var(--border-focus);
  transform: translateY(-2px);
}
.addon-icon {
  margin-bottom: 20px;
}
.addon-icon img {
  width: 24px;
  height: 24px;
  stroke: var(--color-red);
  stroke-width: 1.5;
  fill: none;
}
.addon-content {
  width: 165px;
}
.addon-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.addon-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1;
  margin-bottom: 25px;
  font-weight: 400;
}
.addon-price {
  margin-top: auto;
  font-size: 32px;
  font-weight: 600;
  display: flex;
  align-items: baseline;
}
.addon-price span.price-unit {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 4px;
  font-weight: 400;
}

/* How It Works Section */
.how-it-works {
  margin: 64px 0 20px;
}
.how-it-works-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 48px;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}
.step-card {
  background-color: #0E0E0E;
  border: 1px solid #0E0E0E;
  border-radius:12px;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  transition: transform var(--transition-speed);
}
.step-card:hover {
  transform: translateY(-2px);
}
.step-num-icon {
  display: flex;
  align-items: center;
  gap: 12px;
}
.step-num {
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-red-num);
}
.step-icon img {
  width: 24px;
  height: 24px;
}
.step-text {
  display: flex;
  flex-direction: column;
  width: 60%;
}
.step-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1;
  font-weight: 400;
}
.step-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
}
.step-arrow svg {
  width: 22px;
  height: 22px;
}

/* Trust Badges Container */
.trust-badges-bar {
  margin: 22px 0;
  background-color: #0E0E0E;
  border: 1px solid #333535;
  border-radius: 12px;
  padding: 32px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
}
.trust-badge-item:not(:last-child) {
  border-right: 1px solid var(--border-color);
}
.trust-badge-icon img {
  width: 24px;
  height: 24px;
}
.trust-badge-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trust-badge-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.trust-badge-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1;
  font-weight: 400;
}

/* Download Section & System Requirements */
.download-section {
  background-color: #1A1C1C;
  border: 1px solid #1A1C1C;
  border-radius: 12px;
  padding: 55px 24px;
  margin: 64px 0;
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr;
  gap: 8px;
  align-items: center;
}
.download-info {
  display: flex;
  flex-direction: column;
}
.download-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.download-desc {
  font-size: 18px;
  color: #ffffff;
  line-height: 28px;
  font-weight: 400;
}
.download-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.download-visual img {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}
.sys-req {
  display: flex;
  flex-direction: column;
  border: 1px solid #333535;
  background-color: #1A1C1C;
  border-radius: 4px;
  padding: 24px 24px;
}
.sys-req-title {
  color: var(--color-red);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.sys-req-table {
  width: 100%;
  border-collapse: collapse;
}
.sys-req-table tr {
  border-bottom: 1px solid var(--border-color);
}
.sys-req-table tr:last-child {
  border-bottom: none;
}
.sys-req-table td {
  padding: 10px 0;
  font-size: 14px;
}
.sys-req-label {
  color: #ffffff;
  font-weight: 400;
  width: 35%;
  font-size: 14px;
  line-height: 1;
}
.sys-req-value {
  color: var(--text-gray);
  font-weight: 500;
  text-align: right;
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-modal.active {
  opacity: 1;
  visibility: visible;
}
.success-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(8px);
}
.success-modal-content {
  position: relative;
  width: 100%;
  max-width: 490px;
  margin: 80px auto;
  padding: 40px;
  text-align: center;
  border-radius: 8px;
  background:rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255,255,255,.1);
  height: fit-content;
}
.success-modal-close {
  position: absolute;
  top: 6px;
  right: 15px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}
.modal-open{
  overflow: hidden;
}
.success-logo {
  max-width: 170px;
  margin: 0 auto 10px;
  display: block;
}
.success-check img {
  width: 100px;
  margin: 0 auto 25px;
}
.success-title {
  font-size: 40px;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 800;
}
.success-subtitle {
  color: #C72724;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.success-text {
  color: rgba(255,255,255,.85);
  font-size: 16px;
  line-height: 20px;
  max-width: 100%;
  margin: 0 auto;
  font-weight: 400;
}
.success-text span {
  color: #C72724;
  font-weight: 600;
}
.success-divider {
  width: 70px;
  height: 1px;
  background: rgba(255,255,255,.4);
  margin: 35px auto;
}
.success-mail img {
  width: 65px;
  margin-bottom: 20px;
}
.success-mail {
  display: flex;
  justify-content: center;
}
.success-description {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  line-height: 20px;
  max-width: 100%;
  margin: 0 auto 35px;
  font-weight: 400;
}
.success-btn {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 6px;
  background: #D62521;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}
.phone-input-group {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 8px;
}
.country-code {
  width: 80px!important;
  height: 48px;
  border: none;
  border:0px!important;
  border-right: 1px solid rgba(255,255,255,0.3)!important;
  background-color: #F9FAFB33!important;
  color: #fff;
  padding: 0 12px;
  outline: none;
  appearance: none;
  border-radius: 0!important;
  background-image: url(../images/down-arrows-new.svg)!important;
  background-position: 95% center!important;
  background-repeat: no-repeat!important;
  background-size: 20px;
}
.contact-form .phone-input-group{
  margin-top: 0;
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 4px;
}
.contact-form .country-code{
  background-color: transparent!important;
  background-position: 92% center !important;
  border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
}
.contact-form .country-code {
  width: 65px!important;
  height: 56px;
}
.country-code option, .pricing-form select option{
  color: #000!important;
}
.phone-number {
  flex: 1;
  height: 48px;
  border: none!important;
  background: transparent;
  color: #fff;
  padding: 0 16px;
  outline: none;
}
.phone-number::placeholder, .pricing-form select option{
  color: rgba(255,255,255,0.6);
}
.legal-content a{
  text-decoration: underline;
  transition: all 0.3s ease;
}
.legal-content a:hover{
  text-decoration: none;
  transition: all 0.3s ease;
}
