/* LeaseEnd Pros — Main Stylesheet */

:root {
  --orange: #E8651A;
  --orange-dark: #C2530E;
  --orange-light: #FF8C42;
  --black: #0D0D0D;
  --dark: #141414;
  --dark2: #1C1C1C;
  --dark3: #242424;
  --white: #FFFFFF;
  --grey: #9A9A9A;
  --light: #F5F2EE;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 5%;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,101,26,0.2);
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem; font-weight: 800; letter-spacing: 1px;
  color: var(--white);
}
.nav-logo span { color: var(--orange); }
.nav-cta {
  background: var(--orange); color: var(--white);
  padding: 10px 22px; border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 1px;
  text-decoration: none; text-transform: uppercase;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--orange-dark); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 5% 80px;
  position: relative; overflow: hidden;
  background: var(--black);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(232,101,26,0.8) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(232,101,26,0.8) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,101,26,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-tag {
  display: inline-block;
  background: rgba(232,101,26,0.15);
  border: 1px solid rgba(232,101,26,0.4);
  color: var(--orange-light);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; padding: 6px 16px; border-radius: 2px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 900; line-height: 0.95;
  text-transform: uppercase; letter-spacing: -1px;
  max-width: 820px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 .orange { color: var(--orange); }
.hero h1 .stroke { -webkit-text-stroke: 2px var(--white); color: transparent; }
.hero-sub {
  margin-top: 28px; max-width: 560px;
  font-size: 1.1rem; line-height: 1.7; color: var(--grey);
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-sub strong { color: var(--white); }
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 40px;
  animation: fadeUp 0.6s 0.3s ease both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: var(--white);
  padding: 16px 32px; border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.1rem; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.2s; box-shadow: 0 8px 32px rgba(232,101,26,0.35);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,101,26,0.45); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  padding: 16px 32px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.1rem; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 40px;
  margin-top: 64px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem; font-weight: 900; color: var(--orange); line-height: 1;
}
.stat-label { font-size: 0.85rem; color: var(--grey); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* ── PAIN ── */
.pain { background: var(--dark2); padding: 100px 5%; position: relative; }
.pain::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--orange));
}
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 16px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; text-transform: uppercase; line-height: 1.1; margin-bottom: 16px;
}
.section-sub { color: var(--grey); font-size: 1rem; line-height: 1.7; max-width: 540px; }
.pain-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px; margin-top: 60px;
}
.pain-card {
  background: var(--dark3); padding: 36px 28px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.pain-card:hover { border-color: var(--orange); background: #2a2a2a; }
.pain-icon { font-size: 2rem; margin-bottom: 16px; }
.pain-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem; font-weight: 700; text-transform: uppercase;
  color: var(--white); margin-bottom: 10px; letter-spacing: 0.5px;
}
.pain-card p { font-size: 0.92rem; color: var(--grey); line-height: 1.65; }

/* ── SERVICES ── */
.services { padding: 100px 5%; background: var(--black); }
.services-header { max-width: 600px; margin-bottom: 60px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.service-card {
  background: var(--dark2); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px; padding: 36px; position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(232,101,26,0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4rem; font-weight: 900; color: rgba(232,101,26,0.12); line-height: 1; margin-bottom: 16px;
}
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem; font-weight: 800; text-transform: uppercase;
  color: var(--white); margin-bottom: 12px; letter-spacing: 0.5px;
}
.service-card p { font-size: 0.93rem; color: var(--grey); line-height: 1.7; margin-bottom: 20px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 0.75rem; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  background: rgba(232,101,26,0.1); border: 1px solid rgba(232,101,26,0.25);
  color: var(--orange-light); padding: 4px 10px; border-radius: 2px;
}

/* ── WHY US ── */
.why { background: var(--dark2); padding: 100px 5%; }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why-guarantee { background: var(--orange); padding: 28px 32px; border-radius: 6px; }
.why-guarantee .g-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem; font-weight: 900; line-height: 1; color: var(--black);
}
.why-guarantee .g-label { font-size: 0.9rem; font-weight: 600; color: rgba(0,0,0,0.7); margin-top: 4px; }
.why-guarantee .g-desc { margin-top: 12px; font-size: 0.9rem; color: rgba(0,0,0,0.8); line-height: 1.6; }
.usp-item { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.usp-item:last-child { border-bottom: none; }
.usp-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(232,101,26,0.12); border: 1px solid rgba(232,101,26,0.25);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.usp-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700; text-transform: uppercase;
  color: var(--white); margin-bottom: 6px; letter-spacing: 0.5px;
}
.usp-text p { font-size: 0.9rem; color: var(--grey); line-height: 1.6; }

/* ── WHO WE SERVE ── */
.who { padding: 100px 5%; background: var(--black); }
.who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2px; margin-top: 60px; }
.who-card { background: var(--dark2); padding: 40px 32px; border-left: 4px solid var(--dark3); transition: border-color 0.3s; }
.who-card:hover { border-left-color: var(--orange); }
.who-icon { font-size: 2.2rem; margin-bottom: 20px; }
.who-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 800; text-transform: uppercase;
  color: var(--white); margin-bottom: 16px;
}
.who-list { list-style: none; }
.who-list li {
  font-size: 0.9rem; color: var(--grey); padding: 5px 0;
  display: flex; gap: 10px; align-items: flex-start; line-height: 1.5;
}
.who-list li::before { content: '▸'; color: var(--orange); flex-shrink: 0; margin-top: 1px; }

/* ── COVERAGE ── */
.coverage { background: var(--dark2); padding: 80px 5%; }
.coverage-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 60px; }
.coverage-text { flex: 1; min-width: 280px; }
.coverage-areas { flex: 1; min-width: 280px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.area-pill {
  background: var(--dark3); border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 16px; border-radius: 4px; font-size: 0.9rem; color: var(--white);
  display: flex; align-items: center; gap: 8px; transition: border-color 0.2s;
}
.area-pill:hover { border-color: var(--orange); }
.area-pill::before { content: '📍'; font-size: 0.8rem; }

/* ── PROCESS ── */
.process { padding: 100px 5%; background: var(--black); }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; margin-top: 60px; }
.step { padding: 40px 28px; border-right: 1px solid rgba(255,255,255,0.06); }
.step:last-child { border-right: none; }
.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5rem; font-weight: 900; color: rgba(232,101,26,0.15); line-height: 1; margin-bottom: 12px;
}
.step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem; font-weight: 700; text-transform: uppercase;
  color: var(--white); margin-bottom: 10px;
}
.step p { font-size: 0.88rem; color: var(--grey); line-height: 1.65; }

/* ── BILINGUAL ── */
.bilingual { background: var(--orange); padding: 80px 5%; }
.bilingual-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.bilingual h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; text-transform: uppercase;
  color: var(--black); line-height: 1.1; margin-bottom: 16px;
}
.bilingual p { color: rgba(0,0,0,0.75); font-size: 1rem; line-height: 1.7; }
.bm-points { list-style: none; }
.bm-points li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.1);
  font-size: 0.95rem; color: rgba(0,0,0,0.85); line-height: 1.5;
}
.bm-points li::before { content: '✓'; font-weight: 700; color: var(--black); flex-shrink: 0; }

/* ── CTA ── */
.cta-section { padding: 120px 5%; background: var(--black); text-align: center; position: relative; overflow: hidden; }
.cta-glow {
  position: absolute; bottom: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,101,26,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; text-transform: uppercase; line-height: 1; margin-bottom: 20px;
}
.cta-section h2 .orange { color: var(--orange); }
.cta-section p { color: var(--grey); font-size: 1.1rem; line-height: 1.7; max-width: 520px; margin: 0 auto 40px; }
.cta-wa {
  display: inline-flex; align-items: center; gap: 14px;
  background: #25D366; color: var(--white);
  padding: 20px 48px; border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1.3rem; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.2s; box-shadow: 0 8px 40px rgba(37,211,102,0.3);
}
.cta-wa:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(37,211,102,0.4); }
.cta-note { margin-top: 20px; font-size: 0.85rem; color: var(--grey); }

/* ── FOOTER ── */
#site-footer {
  background: var(--dark2); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 5%; display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center; gap: 20px;
}
.footer-brand { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--white); }
.footer-brand span { color: var(--orange); }
.footer-copy { font-size: 0.82rem; color: var(--grey); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.85rem; color: var(--grey); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }

/* ── FLOATING WA ── */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
  text-decoration: none; font-size: 1.8rem;
  animation: pulse 2s infinite; transition: transform 0.2s;
}
.float-wa:hover { transform: scale(1.1); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 50px rgba(37,211,102,0.7); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .why-inner, .bilingual-inner { grid-template-columns: 1fr; gap: 48px; }
  .pain-grid, .services-grid, .who-grid, .process-steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .hero-stats { gap: 24px; }
  #site-nav { padding: 14px 5%; }
}
