:root {
  --ruby-primary: #9b111e;
  --ruby-light: #d62235;
  --ruby-dark: #4a0404;
  --ruby-glow: rgba(214, 34, 53, 0.3);
  --gold-accent: #ffd700;
  --gold-dark: #b8860b;
  --bg-dark: #0d0d0d;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222;
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --font-main: 'Outfit', 'Inter', sans-serif;
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ==================== HEADER ==================== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ruby-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.logo-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--ruby-light), var(--gold-accent));
  transform: rotate(45deg);
  border-radius: 5px;
  box-shadow: 0 0 10px var(--ruby-glow);
}

.logo span {
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.3rem 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ruby-light);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ruby-light);
}

.header-download-btn {
  background: linear-gradient(135deg, var(--ruby-primary), var(--ruby-light));
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  box-shadow: 0 4px 15px rgba(155, 17, 30, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.header-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 17, 30, 0.6);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==================== BUTTONS ==================== */
.download-btn {
  background: linear-gradient(135deg, var(--ruby-primary), var(--ruby-light));
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(155, 17, 30, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(155, 17, 30, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--gold-accent);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--gold-accent);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--gold-accent);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

/* ==================== MAIN ==================== */
main {
  margin-top: 65px;
}

/* ==================== HERO ==================== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  /* min-height: 85vh; */
  gap: 3rem;
}

.hero-text {
  flex: 0.8;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #fff 30%, var(--gold-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text .subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-text .tagline {
  font-size: 0.95rem;
  color: var(--gold-accent);
  margin-top: 1.5rem;
  font-style: italic;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.carousel-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 15px;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(214, 34, 53, 0.4);
  overflow: hidden;
}

.carousel-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-track img {
  display: block;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.carousel-dot.active {
  background: var(--ruby-light);
  box-shadow: 0 0 8px rgba(214, 34, 53, 0.6);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-18px);
  }
}

/* ==================== SECTION LAYOUT ==================== */
.section {
  padding: 5rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-dark {
  background: var(--bg-card);
}

.section-full {
  padding: 5rem 2rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--gold-accent);
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== WHY CHOOSE US (Feature Cards) ==================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--ruby-light), var(--gold-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(214, 34, 53, 0.2);
}

.feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--ruby-light);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--ruby-light);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
}

.testimonial-card p {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.2rem;
  padding-top: 1.5rem;
  line-height: 1.7;
}

.testimonial-card .author {
  color: var(--gold-accent);
  font-weight: 700;
  font-style: normal;
}

/* ==================== INTRO / CTA SECTION ==================== */
.intro-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem;
}

.intro-section h2 {
  font-size: 2rem;
  color: var(--gold-accent);
  margin-bottom: 1rem;
}

.intro-section p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.cta-banner {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--ruby-dark) 0%, var(--bg-dark) 100%);
}

.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--gold-accent);
}

.cta-banner p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== PAGE CONTAINER (Sub pages) ==================== */
.page-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-header h1 {
  font-size: 2.8rem;
  color: var(--ruby-light);
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.page-content h2 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  margin-top: 2.5rem;
  color: var(--gold-accent);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.page-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  margin-top: 1.5rem;
  color: var(--ruby-light);
}

.page-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.page-content ul,
.page-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.8rem;
}

.page-content li {
  margin-bottom: 0.6rem;
  list-style-type: disc;
  color: var(--text-secondary);
  line-height: 1.7;
}

.page-content ol li {
  list-style-type: decimal;
}

.page-content strong {
  color: var(--text-primary);
}

/* ==================== FAQ ACCORDION ==================== */
.faq-item {
  background: var(--bg-card);
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.faq-question {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-question .arrow {
  transition: transform 0.3s ease;
  color: var(--ruby-light);
  font-size: 1.2rem;
}

.faq-item.open .faq-question .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

/* ==================== PROMO CARDS ==================== */
.promo-card {
  background: linear-gradient(135deg, var(--ruby-dark), rgba(155, 17, 30, 0.3));
  padding: 2.5rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.promo-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.promo-card h2 {
  color: var(--gold-accent);
  margin-top: 0;
  border: none;
  font-size: 1.5rem;
}

.promo-card p {
  color: rgba(255, 255, 255, 0.85);
}

/* ==================== CONTACT FORM ==================== */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-form-wrap {
  flex: 1;
  min-width: 280px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ruby-light);
}

.contact-form button {
  background: linear-gradient(135deg, var(--ruby-primary), var(--ruby-light));
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 17, 30, 0.5);
}

/* ==================== SOCIAL CHANNELS ==================== */
.social-channels {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--ruby-light);
  color: white;
  border-color: var(--ruby-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(214, 34, 53, 0.4);
}

/* ==================== POINTS TABLE ==================== */
.points-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  border-radius: 10px;
  overflow: hidden;
}

.points-table th,
.points-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.points-table th {
  background: var(--ruby-dark);
  color: var(--gold-accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.points-table td {
  color: var(--text-secondary);
  background: var(--bg-card);
}

.points-table tr:hover td {
  background: var(--bg-card-hover);
}

/* ==================== FOOTER ==================== */
footer {
  background: var(--bg-card);
  padding: 4rem 2rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 2rem;
}

.footer-col {
  min-width: 200px;
}

.footer-col h4 {
  color: var(--gold-accent);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--ruby-light);
}

.footer-col p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col ul li {
  margin-bottom: 0.7rem;
}

.footer-col ul li a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--ruby-light);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  header {
    padding: 0.6rem 1rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(13, 13, 13, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: left 0.3s ease;
  }

  .nav-links.active {
    left: 0;
  }

  .header-download-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1.5rem;
    min-height: auto;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    margin-top: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-col p {
    margin: 0 auto;
  }

  .contact-grid {
    flex-direction: column;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  header {
    padding: 0.5rem 0.75rem;
  }

  .logo {
    font-size: 1rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .page-header h1 {
    font-size: 1.6rem;
  }

  .download-btn,
  .btn-secondary {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
  }

  .header-download-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
  }
}