@font-face {
  font-family: 'Senilita';
  src: url('Senilita.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000000;
  color: white;
}

/* INTRO */
#intro {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle, #4d0013, #1a0006, #000000);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 1s ease, visibility 1s ease;
}

.intro-logo {
    width: 350px;
    background: none;
    border-radius: 15px;

}

@keyframes logoIntro {
  0% {
    opacity: 0;
    transform: scale(0.6);
    filter: blur(8px);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hide-intro {
  opacity: 0;
  visibility: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 8%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid rgba(230, 0, 57, 0.3);
}

.brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.brand img {
  width: 100px;
  transition: 0.3s ease;
  cursor: pointer;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 28px;
  font-size: 0.95rem;
  transition: 0.3s;
}

nav a:hover {
  color: #e60039;
}

.menu-wrapper {
  position: relative;
}

.menu-btn {
  background: #e60039;
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s;
}

.menu-btn:hover {
  background: #ff1a53;
  transform: translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: 70px;
  right: 0;

  width: 220px;

  background: rgba(15, 0, 5, 0.95);
  backdrop-filter: blur(20px);

  border: 1px solid rgba(230, 0, 57, 0.35);
  border-radius: 20px;

  padding: 12px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.5),
    0 0 20px rgba(230,0,57,0.15);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);

  transition: all 0.3s ease;

  z-index: 1000;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;

  padding: 14px 16px;

  border-radius: 12px;

  color: white;
  text-decoration: none;

  transition: all 0.25s ease;
}

.dropdown-menu a:hover {
  background: rgba(230, 0, 57, 0.15);

  color: #ff4d73;

  padding-left: 22px;
}



/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
}

#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: #e60039;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #ff1a53;
  transform: translateY(-3px);
}

/* Vision Section */
.vision-section {
    padding: 100px 10%;
    text-align: center;
}

.vision-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.vision-section p {
    max-width: 900px;
    margin: 15px auto;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Process Section */
.process-section {
    padding: 100px 10%;
    text-align: center;
}

.process-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.process-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.process-card {
  background: linear-gradient(180deg, #1a0006, #000000);
  border: 1px solid rgba(230, 0, 57, 0.35);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px;
    transition: 0.3s ease;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(230, 0, 57, 0.35);
}

.process-card span {
  color: #ff1a53;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 0 0 15px rgba(255, 26, 83, 0.4);
}

.process-card h3 {
    margin-bottom: 15px;
}

.process-card p {
    line-height: 1.7;
}

.no-pressure {
    display: inline-block;
    margin-bottom: 20px;
    padding: 12px 24px;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;

    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.process-section h2 {
    margin-top: 10px;
    margin-bottom: 20px;
}

/* PLANS */
.plans {
  padding: 100px 8%;
  background: #080004;
  text-align: center;
}

.plans h2,
.contact h2 {
  font-size: 2.7rem;
  margin-bottom: 10px;
}

.section-text {
  color: #bbb;
  margin-bottom: 50px;
}

.plan-container {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.plan-card {
  background: linear-gradient(180deg, #1a0006, #000000);
  border: 1px solid rgba(230, 0, 57, 0.35);
  border-radius: 20px;
  width: 300px;
  padding: 35px 25px;
  transition: 0.3s;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(230, 0, 57, 0.35);
}

.featured {
  border: 2px solid #e60039;
}

.plan-card h3 {
  font-size: 1.7rem;
  margin-bottom: 15px;
}

.price {
  font-size: 2rem;
  color: #ff1a53;
  margin-bottom: 25px;
  font-weight: bold;
}

.plan-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.plan-card li {
  margin: 12px 0;
  color: #ddd;
}

.plan-btn {
  display: inline-block;
  border: 1px solid #e60039;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.plan-btn:hover {
  background: #e60039;
}

/* CONTACT */
.contact {
  padding: 100px 8%;
  text-align: center;
  background: linear-gradient(135deg, #4d0013, #000000);
}

.contact p {
  color: #ddd;
  margin: 20px 0 30px;
}

.section-container {
  width: min(1100px, 90%);
  margin: auto;
}

.vision,
.services,
.process {
  padding: 100px 0;
  text-align: center;
}

.vision h2,
.services h2,
.process h2 {
  font-family: 'Senilita', sans-serif;
  font-size: 3rem;
  margin-bottom: 25px;
}

.vision p {
  max-width: 800px;
  margin: auto;
  color: #d5d5d5;
  line-height: 1.8;
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.service-card {
  background: rgba(77, 0, 19, 0.3);
  border: 1px solid rgba(230, 0, 57, 0.25);
  border-radius: 20px;
  padding: 30px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(230,0,57,0.2);
}

.service-card h3 {
  font-family: 'Senilita', sans-serif;
  margin-bottom: 15px;
}

/* Process */

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.process-step {
  padding: 30px;
}

.process-step span {
  display: block;
  font-size: 3rem;
  color: #e60039;
  font-weight: bold;
  margin-bottom: 15px;
}

.process-step h3 {
  font-family: 'Senilita', sans-serif;
  margin-bottom: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  nav a {
    margin: 0 10px;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero {
    padding-top: 120px;
  }
}

.hero h1,
.plans h2,
.contact h2,
.plan-card h3,
.vision-section h2,
.process-section h2 {
  font-family: 'Senilita', sans-serif;
  letter-spacing: 1px;
}

.solution-section {
    padding: 100px 8%;
    background: #080004;
    text-align: center;
}

.solution-section h2 {
    font-family: 'Senilita', sans-serif;
    letter-spacing: 1px;
    font-size: 2.7rem;
    margin-bottom: 15px;
}

.solution-text {
    max-width: 750px;
    margin: 0 auto 50px;
    color: #bbb;
    line-height: 1.8;
    font-size: 1.05rem;
}

.calendly-container {
    background: linear-gradient(180deg, #1a0006, #000000);
    border: 1px solid rgba(230, 0, 57, 0.35);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(230, 0, 57, 0.15);
}

.plan-card,
.process-card {
  position: relative;
  overflow: hidden;
}

.plan-card::before,
.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 26, 83, 0.12),
    transparent
  );
  transform: translateX(-100%);
  transition: 0.6s ease;
  pointer-events: none;
}

.plan-card:hover::before,
.process-card:hover::before {
  transform: translateX(100%);
}

.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal.fade-out {
  opacity: 0;
  transform: translateY(-35px);
}

.services-split-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1050px;
  margin: 50px auto 0;
  background: linear-gradient(180deg, #1a0006, #000000);
  border: 1px solid rgba(230, 0, 57, 0.35);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(230, 0, 57, 0.15);
}

.services-side {
  padding: 45px;
  text-align: left;
}

.services-side:first-child {
  border-right: 1px solid rgba(230, 0, 57, 0.35);
}

.services-side h3 {
  font-family: 'Senilita', sans-serif;
  letter-spacing: 1px;
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.services-side ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-side li {
  color: #ddd;
  margin: 16px 0;
  font-size: 1rem;
}

.services-split-card:hover {
  box-shadow: 0 0 35px rgba(230, 0, 57, 0.3);
}

.builder-card,
.addons-card {
  max-width: 950px;
  margin: 60px auto 0;
  padding: 35px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.builder-card {
  background: linear-gradient(135deg, #111, #1f1f1f);
  color: white;
  position: relative;
  overflow: hidden;
}

.builder-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -60px;
  right: -60px;
}

.builder-card-content {
  position: relative;
  z-index: 2;
}

.addons-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.mini-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  font-size: 0.85rem;
  font-weight: bold;
}

.builder-card,
.addons-card {
  max-width: 950px;
  margin: 70px auto 0;
  padding: 40px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 20px 55px rgba(230, 0, 57, 0.18);
}

.builder-card {
  background:
    radial-gradient(circle at top right, rgba(230, 0, 57, 0.35), transparent 35%),
    linear-gradient(135deg, #160007, #000000);
  color: white;
  border: 1px solid rgba(230, 0, 57, 0.35);
  position: relative;
  overflow: hidden;
}

.addons-card {
  background: linear-gradient(180deg, #1a0006, #000000);
  color: white;
  border: 1px solid rgba(230, 0, 57, 0.35);
}

.addons-card h3,
.addons-card p,
.addons-card div {
  color: white;
}

.mini-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(230, 0, 57, 0.18);
  color: #ff4d73;
  font-size: 0.85rem;
  font-weight: 700;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.addons-grid div {
  background: rgba(255, 255, 255, 0.06);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(230, 0, 57, 0.25);
}

.addons-grid strong {
  display: block;
  margin-top: 8px;
  color: #ff4d73;
}

.custom-note {
  margin-top: 25px;
  color: #ddd;
}

#orderButtons button {
  border: none;
  background: #111;
  color: white;
  padding: 12px 20px;
  border-radius: 999px;
  margin: 6px;
  cursor: pointer;
  font-weight: bold;
}

#orderButtons button:hover {
  transform: translateY(-2px);
}

.faq-nav-btn {
  text-decoration: none;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  border: 1px solid rgba(230, 0, 57, 0.35);
  background: rgba(255,255,255,0.05);
  transition: all 0.3s ease;
  font-weight: 600;
}

.faq-nav-btn:hover {
  background: #e60039;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(230,0,57,0.35);
}

.faq-nav-btn {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);

  text-decoration: none;
  color: white;

  padding: 12px 20px;
  border-radius: 30px;

  border: 1px solid rgba(230, 0, 57, 0.35);
  background: rgba(255,255,255,0.05);

  font-weight: 600;

  transition: all 0.3s ease;
}

.faq-nav-btn:hover {
  background: #e60039;
  transform: translateY(-50%) translateY(-2px);
  box-shadow: 0 0 15px rgba(230,0,57,0.35);
}

/* Scroll animation */
.reveal-card {
  opacity: 0;
  transform: translateY(70px) scale(0.95);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 700px) {
  .addons-grid {
    grid-template-columns: 1fr;
  }

  .builder-card,
  .addons-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .services-split-card {
    grid-template-columns: 1fr;
  }

  .services-side:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(230, 0, 57, 0.35);
  }

  .services-side {
    padding: 35px 25px;
  }
}

@media (max-width: 768px) {

  #hero-video {
    object-fit: contain;
    background: #000;
  }

}

@media (max-width: 768px) {
  .navbar {
    justify-content: space-between;
    padding: 16px 6%;
  }

  .brand {
    position: static;
    transform: none;
  }

  .brand img {
    width: 75px;
  }

  .menu-wrapper {
    position: relative;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 5%;
    height: 82px;
  }

  .menu-wrapper {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
  }

  .menu-btn {
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .brand img {
    width: 72px;
  }

  .faq-nav-btn {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 13px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .dropdown-menu {
    top: 62px;
    left: 0;
    right: auto;
    width: 220px;
  }
}



