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

:root {
  --cream: #FAF8F2;
  --cream-dark: #F0EDE4;
  --teal: #1A3A36;
  --teal-light: #243D3A;
  --amber: #D4843E;
  --amber-light: #E8A05A;
  --amber-dark: #B06B2D;
  --text: #1A2E2C;
  --text-muted: #5A726E;
  --border: rgba(26, 58, 54, 0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--amber); color: white; }

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 600; }

.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--teal);
  line-height: 1.2;
}

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--teal);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--teal); }

/* === HERO === */
.hero {
  position: relative;
  min-height: calc(100vh - 65px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 5rem 2rem 5rem max(2rem, calc((100vw - 1200px) / 2 + 2rem));
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 132, 62, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26, 58, 54, 0.05) 0%, transparent 70%);
  bottom: -100px;
  left: 30%;
}

.hero-shape-3 {
  width: 300px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  top: 40%;
  right: 10%;
  border-radius: 0;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--teal);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-headline em {
  color: var(--amber);
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat { display: flex; flex-direction: column; gap: 0.25rem; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* === SERVICE CARD STACK === */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.service-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 480px;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 4px 24px rgba(26, 58, 54, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 58, 54, 0.14);
}

.card-1 { animation: float 6s ease-in-out infinite; }
.card-2 { animation: float 6s 1.5s ease-in-out infinite; }
.card-3 { animation: float 6s 3s ease-in-out infinite; }
.card-4 { animation: float 6s 4.5s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.card-2 { transform: translateY(12px); }
.card-4 { transform: translateY(6px); }

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon-lawn { background: linear-gradient(135deg, #4A7C59, #2D5E3E); }
.card-icon-leaf { background: linear-gradient(135deg, #6B9B37, #4A7C15); }
.card-icon-truck { background: linear-gradient(135deg, #D4843E, #B06B2D); }
.card-icon-detail { background: linear-gradient(135deg, #3A7CA5, #2A5C7E); }

.card-info { flex: 1; }

.card-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  background: rgba(212, 132, 62, 0.12);
  color: var(--amber-dark);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

/* === HOW IT WORKS === */
.how-it-works {
  padding: 6rem 2rem;
  background: white;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.step-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.1rem;
  color: var(--teal);
  margin-bottom: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
  margin-top: 3rem;
  flex-shrink: 0;
}

/* === SERVICES === */
.services {
  padding: 6rem 2rem;
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  background: white;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26, 58, 54, 0.1);
}

.service-visual {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-visual-pressure { background: linear-gradient(135deg, #4A7C59, #2D5E3E); }
.service-visual-lawn { background: linear-gradient(135deg, #6B9B37, #4A7C15); }
.service-visual-junk { background: linear-gradient(135deg, #D4843E, #B06B2D); }
.service-visual-detail { background: linear-gradient(135deg, #3A7CA5, #2A5C7E); }

.service-item h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.service-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* === TRUST === */
.trust {
  padding: 6rem 2rem;
  background: var(--teal);
  color: white;
}

.trust-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 6rem;
  align-items: center;
}

.trust .section-eyebrow { color: var(--amber-light); }

.trust-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: white;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.trust-body {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.trust-features { display: flex; flex-direction: column; gap: 1.25rem; }

.trust-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.trust-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(212, 132, 62, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.trust-feature strong { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; color: white; }
.trust-feature p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

.trust-stats { display: flex; flex-direction: column; gap: 2rem; }

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

.big-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--amber-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.big-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  max-width: 200px;
  margin: 0 auto;
  line-height: 1.4;
}

/* === CLOSING === */
.closing {
  padding: 8rem 2rem;
  background: var(--cream);
  text-align: center;
}

.closing-inner { max-width: 700px; margin: 0 auto; }

.closing-accent {
  width: 48px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin: 0 auto 2.5rem;
}

.closing-title {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  color: var(--teal);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.closing-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* === FOOTER === */
.footer {
  background: var(--teal);
  color: white;
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo { color: white; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); max-width: 260px; }

.footer-links { display: flex; gap: 4rem; }

.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col strong { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 0.25rem; }
.footer-col a { text-decoration: none; color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: white; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; text-align: center; padding-top: 3rem; }
  .hero-content { max-width: 100%; }
  .hero-sub { max-width: 100%; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .steps { flex-direction: column; align-items: center; gap: 3rem; }
  .step-connector { width: 2px; height: 40px; background: linear-gradient(180deg, var(--amber), transparent); margin-top: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .hero { padding: 3rem 1.5rem; }
  .how-it-works, .services, .trust, .closing { padding: 4rem 1.5rem; }
  .footer { padding: 3rem 1.5rem 1.5rem; }
  .footer-links { gap: 2rem; }
}