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

:root {
  --orange: #E35B2B;
  --ember: #873112;
  --cream: #F5E7C6;
  --offwhite: #FAF9F4;
  --dark: #222222;
  --font: 'Bricolage Grotesque', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--offwhite);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(250, 249, 244, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(34, 34, 34, 0.06);
}

.brand-logo {
  height: 42px;
  width: auto;
  transition: transform 0.2s;
}

.brand-logo:hover {
  transform: scale(1.02);
}

.nav-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

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

nav a.btn-primary {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--offwhite);
  background: var(--dark);
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

nav a.btn-primary:hover {
  background: var(--orange);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(227, 91, 43, 0.2);
}

/* ── BURGER MENU ── */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.burger-menu span {
  width: 100%;
  height: 2px;
  background-color: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(227, 91, 43, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 231, 198, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(20px, -30px);
  }
}

.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ember);
  background: var(--cream);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  z-index: 1;
  animation: fadeUp 0.6s ease both;
}

h1 {
  font-size: clamp(2.6rem, 8vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 800px;
  z-index: 1;
  animation: fadeUp 0.6s ease 0.1s both;
}

h1 em {
  font-style: normal;
  color: var(--orange);
  position: relative;
}

.subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(34, 34, 34, 0.6);
  max-width: 540px;
  margin-top: 1.5rem;
  line-height: 1.6;
  z-index: 1;
  animation: fadeUp 0.6s ease 0.2s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── EMAIL FORM ── */
.email-form {
  margin-top: 3rem;
  display: flex;
  gap: 0.75rem;
  width: 100%;
  max-width: 480px;
  z-index: 1;
  animation: fadeUp 0.6s ease 0.3s both;
}

.email-form input {
  flex: 1;
  font-family: var(--font);
  font-size: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(34, 34, 34, 0.1);
  border-radius: 12px;
  background: white;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.email-form input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(227, 91, 43, 0.1);
}

.email-form button {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 1rem 2rem;
  background: var(--dark);
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.email-form button:hover {
  background: var(--orange);
  transform: translateY(-1px);
}

.form-note {
  font-size: 0.8rem;
  color: rgba(34, 34, 34, 0.4);
  margin-top: 1rem;
  z-index: 1;
  animation: fadeUp 0.6s ease 0.35s both;
}

.success-msg {
  display: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ember);
  background: var(--cream);
  padding: 1.25rem 2rem;
  border-radius: 12px;
  margin-top: 3rem;
  z-index: 1;
}

/* ── FEATURES ── */
.features {
  padding: 8rem 1.5rem;
  background: var(--dark);
  color: var(--offwhite);
}

.features-header {
  text-align: center;
  margin-bottom: 5rem;
}

.features-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.features-header h2 span {
  color: var(--orange);
}

.features-header p {
  color: rgba(250, 249, 244, 0.4);
  margin-top: 1rem;
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--orange);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ── PROBLEM SECTION ── */
.problem {
  padding: 8rem 1.5rem;
  text-align: center;
}

.problem h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.pain-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 640px;
  margin: 0 auto;
}

.pain-point {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  text-align: left;
  padding: 2rem;
  background: var(--cream);
  border-radius: 20px;
  border-left: 6px solid var(--orange);
}

.pain-point .icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.pain-point .text {
  font-size: 1.05rem;
  line-height: 1.6;
}

.pain-point .text strong {
  color: var(--ember);
  display: block;
  margin-bottom: 0.25rem;
}

/* ── VIP PERKS SECTION ── */
.perks {
  padding: 8rem 1.5rem;
  background: white;
  text-align: center;
}

.perks-header {
  margin-bottom: 5rem;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.perks h2 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.perks h2 span {
  color: var(--ember);
}

.perks p {
  color: rgba(34, 34, 34, 0.5);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.perk-item {
  padding: 3.5rem 2.5rem;
  background: var(--offwhite);
  border-radius: 32px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.perk-item:hover {
  transform: translateY(-10px) scale(1.02);
  background: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.perk-item .perk-icon {
  font-size: 3rem;
  margin-bottom: 2rem;
  display: block;
}

.perk-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.perk-item p {
  font-size: 0.95rem;
  color: rgba(34, 34, 34, 0.5);
  line-height: 1.6;
}

/* ── FINAL CTA ── */
.final-cta {
  padding: 8rem 1.5rem;
  text-align: center;
  background: var(--dark);
  color: var(--offwhite);
  position: relative;
  overflow: hidden;
}

.final-cta-container {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(227, 91, 43, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.final-cta h2 span {
  color: var(--orange);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.15rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.final-cta .email-form {
  margin: 0 auto;
}

/* ── FOOTER ── */
footer {
  padding: 6rem 1.5rem 4rem;
  background: white;
  border-top: 1px solid rgba(34, 34, 34, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin-bottom: 4rem;
}

.footer-logo {
  height: 32px;
  width: auto;
}

.footer-copy {
  font-size: 0.9rem;
  color: rgba(34, 34, 34, 0.4);
}

/* ── LANGUAGE DROPDOWN ── */
.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-dropbtn {
  background: var(--offwhite);
  color: var(--dark);
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(34, 34, 34, 0.1);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.2s;
}

.lang-dropbtn:hover {
  border-color: var(--dark);
}

.globe-icon {
  font-size: 1.1rem;
}

.arrow-icon {
  font-size: 0.7rem;
  opacity: 0.4;
}

.lang-dropdown-content {
  display: none;
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 0.5rem;
  background-color: white;
  min-width: 160px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  z-index: 1;
  border: 1px solid rgba(34, 34, 34, 0.05);
  overflow: hidden;
  padding: 0.5rem;
}

.lang-dropdown-content.show {
  display: block;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lang-opt {
  color: var(--dark);
  padding: 0.75rem 1rem;
  text-decoration: none;
  display: block;
  width: 100%;
  border: none;
  background: none;
  text-align: left;
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.lang-opt:hover {
  background-color: var(--offwhite);
  color: var(--orange);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-content {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--offwhite);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1000;
    padding: 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
  }

  .nav-content.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .nav-link {
    font-size: 1.5rem;
    font-weight: 700;
  }

  .burger-menu {
    display: flex;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .email-form {
    flex-direction: column;
  }

  .email-form button {
    width: 100%;
  }

  .hero {
    padding-top: 6rem;
  }

  h1 {
    font-size: 2.8rem;
  }

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

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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