/* --- 1. THEME TOKENS --- */
:root {
  --rust: #C4501A;
  --purple: #5B54E8;
  --text-h: #333333;
  --text-b: #606060;
  --bg: #F7F7F7;
  --border: #E8E8E8;
  --dark-border: #D2D2D2;
  --font-sora: 'Sora', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

/* --- 2. RESET --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sora);
  background: white;
  color: var(--text-b);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.2s;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

/* --- 3. LANDING HEADER --- */
.lp-header {
  height: 68px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 20px;
  color: var(--text-h);
}

.dot {
  width: 12px;
  height: 12px;
  background: var(--rust);
  border-radius: 50%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 48px;
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
}

.btn-text-purple {
  color: var(--purple);
  font-weight: 700;
  font-size: 16px;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block; 
}

.btn-text-purple:hover {
  color: #918cf1; 
  transform: translateY(-1px); /* Very subtle lift */
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--dark-border);
  background: #F4F4F4;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 4px #E7B9A3;

  /* Centering Logic */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.sun-svg {
  width: 20px;
  height: 20px;
}

.menu-hamburger {
  display: none;
}

/* --- 4. SECTIONS --- */
section {
  padding: 120px 0;
}

.sec-label {
  color: var(--rust);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 24px;
}

.sec-title {
  font-family: var(--font-serif);
  font-size: 60px;
  color: var(--text-h);
  margin-bottom: 56px;
}

.italic-rust {
  font-style: italic;
  color: var(--rust);
}

.italic-purple {
  font-style: italic;
  color: var(--purple);
}

/* HERO */
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 86px;
  align-items: flex-end;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #DEDDFA;
  border: 1px solid var(--purple);
  border-radius: 24px;
  color: var(--purple);
  font-family: 'Roboto Mono', monospace;
  font-size: 12px;
  margin-bottom: 16px;
}

.badge-dot {
  width: 14px;
  height: 14px;
  background: var(--purple);
  border-radius: 50%;
}

h1 {
  font-family: var(--font-serif);
  font-size: 72px;
  line-height: 1.2;
  color: var(--text-h);
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 48px;
}

.hero-btns {
  display: flex;
  gap: 24px;
}

.btn {
  padding: 14px 32px;
  border-radius: 24px;
  font-weight: 700;
  display: inline-block;
  
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-rust {
  background: var(--rust);
  color: white;
  border: 1px solid transparent; 
}

.btn-rust:hover {
    background-color: #df7b4d; /* A slightly lighter shade of rust */
    transform: translateY(-2px);  
}

.btn-outline {
    background-color: transparent;
  border: 1.5px solid var(--dark-border);
  color: var(--text-h);
}

.btn-outline:hover {
    background-color: #f5ded4; 
    border-color: var(--text-h);
}

.btn-purple {
  background: var(--purple);
  color: white;
}

.btn-purple:hover {
    background-color: #8a85ea; 
    transform: translateX(2px);
}

/* PROCESS */
.process {
  background: #F4F4F4;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-card {
  background: #E8E8E8;
  padding: 24px;
  border-radius: 16px;
  border: 1.5px solid var(--dark-border);
}

.card-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: #A4A4A4;
}

.card-icon {
  font-size: 32px;
  margin: 24px 0;
}

.process-card h3 {
  font-size: 20px;
  color: var(--text-h);
  margin-bottom: 12px;
}


/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  padding: 24px;
  background: #E8E8E8;
  border-radius: 16px;
  border: 1px solid var(--dark-border);
  position: relative;
}

.price-card.highlight {
  background: var(--purple);
  color: white;
  border: none;
}

.amount {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--purple);
  margin: 32px 0 16px;
}

.purple-amount {
  color: #AFABFF;
}

.price-sub {
  font-size: 16px;
  color: #A4A4A4;
  display: block;
}

.white-sub {
  color: #F0EFF8;
}

.popular-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: #F3DCD1;
  border: 1px solid var(--rust);
  padding: 8px 16px;
  border-radius: 24px;
  color: var(--rust);
  font-size: 12px;
  font-family: 'Roboto Mono';
}

/* CTA */
.final-cta {
  padding: 0;
}

.cta-box {
  background: var(--rust);
  height: 553px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.cta-text {
  position: relative;
  z-index: 5;
  max-width: 750px;
  padding: 0 20px;
}

.cta-text h2 {
  font-size: 60px;
  font-family: var(--font-serif);
  margin-bottom: 30px;
}

.italic-orange {
  font-style: italic;
  color: #FF8A5E;
}

.cta-text p {
  font-size: 20px;
  margin-bottom: 56px;
}

.cta-circle {
  position: absolute;
  width: 715px;
  height: 715px;
  background: #E06030;
  opacity: 0.3;
  border-radius: 50%;
}

/* --- 5. LANDING FOOTER --- */
.lp-footer {
  min-height: 80px;
  background: #E8E8E8;
  outline: 1px solid #F4F4F4;
  display: flex;
  align-items: center;

}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-left,
.footer-right {
  width: 300px;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  font-size: 14px;
}

.footer-center {
  color: #A4A4A4;
  font-size: 14px;
  font-weight: 600;
}
.lp-nav a,
.footer-right a {
  opacity: 1;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.lp-nav a:not(.btn-text-purple):hover, 
.footer-right a:hover {
  opacity: 0.7;
  color: var(--rust); 
}

/* --- 6. RESPONSIVE MEDIA QUERIES --- */

/* TABLET (Medium) - Typically 1024px and below */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .sec-title {
    font-size: 48px;
  }

  .hero-grid {
    grid-template-columns: 1fr; 
    text-align: center; /* Center text for tablet */
    gap: 48px;
  }

  .hero-badge {
    justify-content: center;
  }

  h1 {
    font-size: 56px;
  }

  .hero-btns {
    justify-content: center; 
  }

  .hero-image img {
    width: 100%;
    max-width: 500px; /* Prevents image from becoming overly large on tablet */
    margin: 0 auto;
  }

  /* Grid shifts to 2 columns for the steps */
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Pricing shifts to stack or 2+1 layout */
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-left,
  .footer-right {
    width: auto; 
    flex: 1;
  }

  .footer-right {
    justify-content: flex-end;
    gap: 20px;
  }
  
}

/* MOBILE (Small) - Typically 768px and below */
@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }

  /* Header Changes */
  .lp-nav {
    display: none;
    /* Hide desktop links */
  }

  .menu-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .menu-hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text-h);
    border-radius: 2px;
  }

  .header-right {
    gap: 20px;
  }

  /* Hero: Stacks vertically, center aligned */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .hero-badge {
    justify-content: center;
  }

  h1 {
    font-size: 42px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 400px;
  }

  /* Process & Pricing: All cards stack in 1 column */
  .process-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card:last-child {
    grid-column: span 1;
  }

  /* CTA Section */
  .cta-text h2 {
    font-size: 36px;
  }

  .cta-box {
    height: auto;
    padding: 80px 20px;
  }

  /* Footer: Stacks vertically */
  .lp-footer {
    padding: 32px 0;
    align-items: flex-start;
  }

  .footer-flex {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

.footer-left,
.footer-right {
  width: 100%;
}

.footer-left,
.footer-right {
  display: flex;
  justify-content: center;
}

}