/* =========================================================
   LEMON TOUR FRANCHISE — STYLE.CSS
   Dark corporate editorial — McKinsey meets luxury real estate
   Mobile-first | Bricolage Grotesque 800 + DM Sans
   ========================================================= */

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

:root {
  --black: #08090D;
  --black-light: #0E1016;
  --black-card: #12141B;
  --gray-dark: #1A1D26;
  --gray-mid: #2A2D38;
  --gray-text: #8B8F9E;
  --white: #F5F5F7;
  --wh: #FFFFFF;
  --gold: #E8A838;
  --gold-dim: #C48A2A;
  --gold-glow: rgba(232, 168, 56, .12);
  --blue: #2B3FBB;
  --fd: 'Bricolage Grotesque', sans-serif;
  --fb: 'DM Sans', sans-serif;
  --nav-h: 68px;
  --px: 20px;
  --ease: cubic-bezier(.25, .46, .45, .94);
  --ease-out: cubic-bezier(.16, 1, .3, 1)
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: var(--fb);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

button {
  cursor: pointer;
  border: none;
  font-family: var(--fb)
}

input,
select {
  font-family: var(--fb)
}

ul {
  list-style: none
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--px)
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out)
}

.reveal.v {
  opacity: 1;
  transform: none
}

.reveal-d1 {
  transition-delay: .08s
}

.reveal-d2 {
  transition-delay: .16s
}

.reveal-d3 {
  transition-delay: .24s
}

.reveal-d4 {
  transition-delay: .32s
}

.reveal-d5 {
  transition-delay: .4s
}

/* ---- STICKY NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(8, 9, 13, .7);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  will-change: transform
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.nav-logo {
  height: 38px;
  width: auto
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s, transform .15s, box-shadow .2s
}

.nav-cta:hover {
  background: #f0b44a;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(232, 168, 56, .3)
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(43, 63, 187, .1) 0%, transparent 70%);
  pointer-events: none
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 40px 0 60px
}

.hero-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding: 5px 14px;
  border: 1px solid rgba(232, 168, 56, .25);
  background: rgba(232, 168, 56, .05)
}

.hero h1 {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: -.025em;
  color: var(--wh);
  margin-bottom: 20px
}

.hero h1 .gold {
  color: var(--gold)
}

.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: var(--gray-text);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 32px
}

.hero-profit {
  margin-bottom: 36px;
  padding: 16px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(232, 168, 56, .04)
}

.hero-profit p {
  font-size: .95rem;
  color: var(--white);
  line-height: 1.7;
  font-weight: 500
}

.hero-profit strong {
  color: var(--gold);
  font-weight: 700
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s, transform .15s, box-shadow .2s
}

.hero-cta:hover {
  background: #f0b44a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 168, 56, .3)
}

.hero-cta svg {
  width: 18px;
  height: 18px;
  transition: transform .2s
}

.hero-cta:hover svg {
  transform: translateX(4px)
}

.hero-line {
  position: absolute;
  right: var(--px);
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: .25;
  display: none
}

/* ---- STATS ---- */
.stats {
  padding: 56px 0;
  border-top: 1px solid rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  background: var(--black-light)
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: center
}

.stat-item {
  padding: 12px 0
}

.stat-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.stat-number {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--gold);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 6px
}

.stat-label {
  font-size: .82rem;
  color: var(--gray-text);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 500
}

/* ---- BENEFITS ---- */
.benefits {
  padding: 80px 0
}

.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding: 5px 12px;
  border: 1px solid rgba(232, 168, 56, .2);
  background: rgba(232, 168, 56, .04)
}

.section-headline {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--wh);
  margin-bottom: 48px;
  max-width: 520px
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px
}

.benefit-card {
  padding: 28px 24px;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, .05);
  position: relative;
  overflow: hidden;
  transition: border-color .25s, transform .25s;
  will-change: transform
}

.benefit-card:hover {
  border-color: rgba(232, 168, 56, .18);
  transform: translateY(-2px)
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  opacity: 0;
  transition: opacity .25s
}

.benefit-card:hover::before {
  opacity: 1
}

.benefit-num {
  font-family: var(--fd);
  font-weight: 800;
  font-size: .8rem;
  color: var(--gold);
  letter-spacing: .12em;
  margin-bottom: 12px
}

.benefit-title {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--wh);
  margin-bottom: 8px;
  line-height: 1.3
}

.benefit-desc {
  font-size: .88rem;
  color: var(--gray-text);
  line-height: 1.65
}

/* ---- WHY SECTION (social proof / urgency) ---- */
.why-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, .05)
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px
}

.why-card {
  padding: 28px 24px;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.why-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(232, 168, 56, .08);
  border: 1px solid rgba(232, 168, 56, .15);
  display: flex;
  align-items: center;
  justify-content: center
}

.why-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold)
}

.why-card h3 {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1rem;
  color: var(--wh);
  margin-bottom: 6px;
  line-height: 1.3
}

.why-card p {
  font-size: .88rem;
  color: var(--gray-text);
  line-height: 1.65
}

/* ---- FORM ---- */
.form-section {
  padding: 80px 0 60px;
  background: var(--black-light);
  border-top: 1px solid rgba(255, 255, 255, .05)
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px
}

.form-info {
  max-width: 460px
}

.form-info .section-headline {
  margin-bottom: 16px
}

.form-info-desc {
  font-size: .95rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 24px
}

.form-urgency {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(232, 168, 56, .05);
  border: 1px solid rgba(232, 168, 56, .15)
}

.form-urgency svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0
}

.form-urgency span {
  font-size: .85rem;
  color: var(--white);
  font-weight: 500
}

.form-card {
  padding: 32px 24px;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, .07)
}

.form-group {
  margin-bottom: 18px
}

.form-label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 6px
}

.form-input,
.form-select {
  width: 100%;
  padding: 13px 14px;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, .08);
  color: var(--white);
  font-size: .92rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none
}

.form-input::placeholder {
  color: var(--gray-mid)
}

.form-input:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow)
}

.form-input.error,
.form-select.error {
  border-color: #D94444;
  box-shadow: 0 0 0 3px rgba(217, 68, 68, .12)
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B8F9E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px
}

.phone-wrapper {
  display: flex;
  align-items: stretch
}

.phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 12px;
  background: var(--gray-dark);
  border: 1px solid rgba(255, 255, 255, .08);
  border-right: none;
  color: var(--gray-text);
  font-size: .88rem;
  font-weight: 600;
  white-space: nowrap
}

.phone-wrapper .form-input {
  border-left: none
}

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 6px;
  transition: background .2s, transform .15s, box-shadow .2s;
  position: relative;
  overflow: hidden
}

.form-submit:hover {
  background: #f0b44a;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(232, 168, 56, .28)
}

.form-submit:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none
}

.form-submit .spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top-color: var(--black);
  border-right-color: var(--black);
  border-radius: 50%;
  animation: spin .55s linear infinite;
  margin: 0 auto
}

.form-submit.loading .btn-text {
  visibility: hidden
}

.form-submit.loading .spinner {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg)
  }
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 20px
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  color: var(--gray-text);
  letter-spacing: .02em
}

.trust-item svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0
}

.form-success {
  display: none;
  text-align: center;
  padding: 44px 20px
}

.form-success.show {
  display: block
}

.form-success svg {
  width: 52px;
  height: 52px;
  color: var(--gold);
  margin: 0 auto 18px
}

.form-success h3 {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--wh);
  margin-bottom: 8px
}

.form-success p {
  color: var(--gray-text);
  font-size: .92rem;
  line-height: 1.6
}

/* Shake */
@keyframes shake {

  0%,
  100% {
    transform: translateX(0)
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-4px)
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(4px)
  }
}

.shake {
  animation: shake .45s ease-in-out
}

/* ---- RESPONSIVE ---- */
@media(min-width:640px) {
  :root {
    --px: 32px
  }

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

  .stat-item {
    border-bottom: none !important;
    padding: 16px 0
  }

  .stat-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, .05)
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:960px) {
  :root {
    --px: 48px
  }

  .hero-content {
    max-width: 620px
  }

  .hero-line {
    display: block
  }

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

  .form-layout {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start
  }

  .form-card {
    padding: 40px 32px
  }
}

@media(min-width:1200px) {
  :root {
    --px: 64px
  }

  .hero-content {
    max-width: 700px
  }

  .form-layout {
    gap: 80px
  }
}

::selection {
  background: var(--gold);
  color: var(--black)
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  background: var(--black)
}

::-webkit-scrollbar-thumb {
  background: var(--gray-mid)
}