/* ===== CSS VARIABLES ===== */
:root {
  --dark-grey: #8e8e8c;
  --light-grey: #a5a5a5;
  --gold-mat: #dab45e;
  --soft-yellow: #fdd57b;
  --off-white: #fdfdfd;
  --white: #ffffff;
  --black: #000000;
  --border-grey: #e5e5e5;
  --grey-50: #f9f9f9;
  --grey-100: #f3f3f3;
  --grey-400: #9ca3af;
  --grey-500: #6b7280;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: url("../assets/bg.webp");
}

body {
  /* background-color: var(--off-white); */

  color: var(--dark-grey);
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--dark-grey);
  backdrop-filter: blur(8px);
  background: rgba(253, 253, 253, 0);
}

.nav-logo {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: var(--dark-grey);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-button {
  background: transparent;
  border: 2px solid var(--grey-400);
  color: var(--grey-400);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  letter-spacing: 0.05em;
}

.lang-button:hover {
  background-color: var(--grey-400);
  color: var(--white);
  transform: translateY(-2px);
}

.nav-button {
  background-color: var(--gold-mat);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.nav-button:hover {
  background-color: #c9a655;
  transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.video-sequence {
  position: relative;
  height: 800vh;
}

.scrolly-video-container {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  /* background-image: url("./bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
  border-bottom: 1px solid var(--dark-grey);
}

.bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url("./bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
  z-index: 0;
  backdrop-filter: blur(16px);
  background-color: var(--soft-yellow);
}

.hero-canvas {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.content-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 1;
  padding: 2rem;
}

#step-2,
#step-3 {
  opacity: 0;
  align-items: center;
  text-align: center;
}

@media (min-width: 1440px) {
  #step-2,
  #step-3 {
    align-items: flex-end;
    text-align: left;
  }
}

#step-2 {
  /* display: inline-block;
  position: absolute;
  top: 10%;
  left: 0%;
  text-align: left; */
  /* background-color: red; */
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
  color: var(--dark-grey);
  /* text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 2px 8px rgba(69, 60, 0, 0.6),
    0 0 40px rgba(0, 0, 0, 0.3); */
  padding: 1rem 2rem;
  border-radius: 16px;
  background: white;
}

.hero-title-light {
  color: var(--light-grey);
}

.hero-subtitle {
  font-size: 1rem;
  margin-top: 1rem;
  font-weight: 300;
  color: var(--gold-mat);
  /* text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 2px 8px rgba(69, 60, 0, 0.6),
    0 0 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px); */
  padding: 0.75rem 1.5rem;
  border-radius: 16px;
  background: var(--white);
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-grey);
  /* text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 2px 8px rgba(69, 60, 0, 0.6),
    0 0 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px); */
  padding: 0.5rem 1rem;
  border-radius: 16px;
  /* background: linear-gradient(
    135deg,
    rgba(253, 253, 253, 0.15) 0%,
    rgba(253, 253, 253, 0.05) 100%
  ); */
  background: var(--white);
}

.step-title-gold {
  color: var(--gold-mat);
}

.step-text {
  font-size: 0.875rem;
  margin-top: 1rem;
  max-width: 42rem;
  /* text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 2px 8px rgba(69, 60, 0, 0.6),
    0 0 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px); */
  padding: 0.5rem 1rem;
  border-radius: 16px;
  /* background: linear-gradient(
    135deg,
    rgba(253, 253, 253, 0.15) 0%,
    rgba(253, 253, 253, 0.05) 100%
  ); */
  background: var(--white);
}

/* Responsive hero text */
@media (min-width: 768px) {
  .hero-title {
    font-size: 5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .step-title {
    font-size: 2.5rem;
  }

  .step-text {
    font-size: 1rem;
  }
}

@media (min-width: 1440px) {
  .hero-title {
    font-size: 6rem;
  }

  .hero-subtitle {
    font-size: 1.875rem;
  }
}

/* ===== FEATURES SECTION ===== */
.section-features {
  padding: 6rem 1.5rem;
  background-color: var(--off-white);
  position: relative;
  z-index: 10;
}

.container {
  max-width: 72rem;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.section-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold-mat);
  /* text-transform: uppercase; */
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-grey);
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .section-features {
    padding: 6rem 5rem;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-title {
    font-size: 3rem;
    margin-bottom: 4rem;
  }
}

@media (min-width: 1440px) {
  .section-title {
    font-size: 3.5rem;
  }
}

/* ===== SOFT CARDS ===== */
.soft-card {
  background: var(--off-white);
  border-radius: 20px;
  box-shadow: 10px 10px 30px #d1d1d1, -10px -10px 30px var(--white);
  transition: transform 0.3s ease;
  padding: 2.5rem;
}

.soft-card:hover {
  transform: translateY(-5px);
}

.icon-wrapper {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(253, 213, 123, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold-mat);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--dark-grey);
}

.card-text {
  font-size: 0.875rem;
  color: var(--light-grey);
  line-height: 1.75;
}

/* ===== PRICING SECTION ===== */
.section-pricing {
  padding: 6rem 1.5rem;
  background-color: var(--white);
  border-top: 1px solid var(--grey-100);
  overflow-x: hidden;
  max-width: 100%;
}

.pricing-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark-grey);
  margin-bottom: 2.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: left;
  max-width: 100%;
}

@media (min-width: 768px) {
  .pricing-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (min-width: 1440px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  border: 1px solid var(--border-grey);
  padding: 1.5rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
  min-width: 0;
  max-width: 100%;
}

@media (min-width: 768px) {
  .pricing-card {
    padding: 2rem;
  }
}

.pricing-card:hover {
  border-color: var(--gold-mat);
}

.pricing-card-popular {
  border-color: var(--gold-mat);
  background-color: var(--white);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .pricing-card-popular {
    transform: translateY(-1rem);
  }
}

.pricing-card-alt {
  background-color: var(--grey-50);
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--gold-mat);
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-bottom-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.pricing-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--light-grey);
}

.pricing-card-title-gold {
  color: var(--gold-mat);
}

.pricing-card-price {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0.5rem;
  color: var(--dark-grey);
}

.pricing-card-features {
  margin-top: 1.5rem;
  list-style: none;
}

.pricing-card-features li {
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--grey-500);
}

.pricing-card-popular .pricing-card-features li {
  color: var(--dark-grey);
}

/* ===== CTA SECTION ===== */
.section-cta {
  padding: 6rem 1.5rem;
  background-color: var(--grey-500);
  color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
}

.cta-container {
  max-width: 48rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.cta-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.cta-subtitle {
  text-align: center;
  color: var(--grey-100);
  margin-bottom: 3rem;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.5rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }
}

.cta-form {
  background-color: var(--white);
  color: var(--dark-grey);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gold-mat);
}

.radio-group {
  display: flex;
  gap: 1rem;
}

.radio-option {
  flex: 1;
  cursor: pointer;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-content {
  border: 2px solid var(--border-grey);
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.radio-content:hover {
  background-color: var(--grey-50);
}

.radio-option input[type="radio"]:checked + .radio-content {
  border-color: var(--gold-mat);
  background-color: rgba(253, 213, 123, 0.2);
}

.form-select,
.form-input,
textarea.form-input {
  width: 100%;
  border: 2px solid var(--border-grey);
  border-radius: 0.5rem;
  padding: 0.75rem;
  outline: none;
  transition: border-color 0.3s ease;
  background-color: transparent;
  font-family: inherit;
  resize: vertical;
}

.form-select:focus,
.form-input:focus,
textarea.form-input:focus {
  border-color: var(--gold-mat);
}

.form-button {
  width: 100%;
  background-color: var(--gold-mat);
  color: var(--white);
  font-weight: 700;
  padding: 1rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
}

.form-button:hover {
  background-color: #c9a655;
  transform: scale(1.01);
}

.form-disclaimer {
  font-size: 0.75rem;
  text-align: center;
  color: var(--grey-400);
  margin-top: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  padding: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--light-grey);
}

/* ===== UTILITY CLASSES ===== */
.gold-gradient-text {
  background: linear-gradient(90deg, var(--gold-mat), var(--soft-yellow));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
