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

:root {
  --bg: #FAF7F2;
  --bg-alt: #F0EBE1;
  --fg: #1A1A1A;
  --fg-muted: #5C5C5C;
  --accent: #C1440E;
  --accent-dark: #9A350A;
  --green: #1B4332;
  --green-light: #2D6A4F;
  --green-xlight: #D8F3DC;
  --border: #E0D8CC;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 4px;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--green);
}
.section-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin-top: 0.75rem;
  max-width: 520px;
}

/* === LAYOUT === */
.section-header {
  margin-bottom: 3rem;
}

/* === HERO === */
.hero {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem 4rem;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--green-xlight);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--green);
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* === MOCKUP === */
.site-mockup {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}
.mockup-toolbar {
  background: var(--green);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.mockup-dots {
  display: flex;
  gap: 5px;
}
.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}
.mockup-url {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  font-family: 'Courier New', monospace;
  flex: 1;
  text-align: center;
}
.mockup-content {
  padding: 1.5rem;
}
.mockup-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.mockup-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
}
.mockup-links {
  display: flex;
  gap: 1rem;
  font-size: 0.7rem;
  color: var(--fg-muted);
}
.mockup-hero-content {
  background: var(--green);
  border-radius: 8px;
  padding: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}
.mockup-badge {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}
.mockup-h1 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.mockup-p {
  font-size: 0.72rem;
  opacity: 0.8;
  margin-bottom: 0.75rem;
}
.mockup-cta {
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  display: inline-block;
}
.mockup-services {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}
.mockup-service {
  background: var(--bg-alt);
  border-radius: 6px;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--fg);
}
.ms-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.mockup-badge-corner {
  background: var(--accent);
  color: white;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  display: inline-block;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  border-radius: 2px;
}
.site-mockup { position: relative; }

/* === TRUSTBAR === */
.trustbar {
  background: var(--green);
  padding: 1.25rem 2rem;
}
.trustbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trustbar-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.trustbar-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.tag {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-weight: 500;
}

/* === SERVICES === */
.services {
  padding: 5rem 2rem;
  background: var(--bg);
}
.services-inner { max-width: var(--max-w); margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.service-card.featured {
  border-color: var(--green);
  border-width: 2px;
  background: linear-gradient(135deg, var(--white) 0%, #f0faf4 100%);
}
.service-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--green-xlight);
  line-height: 1;
  margin-bottom: 1rem;
}
.service-card.featured .service-num { color: var(--green-xlight); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.service-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-includes li {
  font-size: 0.88rem;
  color: var(--fg);
  padding-left: 1.25rem;
  position: relative;
}
.service-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.service-tag {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* === PRICING === */
.pricing {
  padding: 5rem 2rem;
  background: var(--bg-alt);
}
.pricing-inner { max-width: var(--max-w); margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
}
.price-card-popular {
  border-color: var(--green);
  border-width: 2px;
}
.price-badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--green);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.price-card-upsell { background: var(--green); color: white; border-color: var(--green); }
.price-card-upsell .price-features li { color: rgba(255,255,255,0.85); }
.price-header { margin-bottom: 1.5rem; }
.price-name {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}
.price-card-upsell .price-name { color: rgba(255,255,255,0.6); }
.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.price-card-upsell .price-amount { color: white; }
.price-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 0.4rem;
}
.price-card-upsell .price-tagline { color: rgba(255,255,255,0.7); }
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.price-features li {
  font-size: 0.88rem;
  color: var(--fg);
  padding-left: 1.25rem;
  position: relative;
}
.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.price-card-upsell .price-features li::before { background: #7DD3A8; }
.price-note {
  font-size: 0.75rem;
  color: var(--fg-muted);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.price-card-upsell .price-note { color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.15); }
.pricing-truth {
  background: var(--green);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.truth-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.pricing-truth p {
  color: rgba(255,255,255,0.9);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* === PROCESS === */
.process {
  padding: 5rem 2rem;
  background: var(--bg);
}
.process-inner { max-width: var(--max-w); margin: 0 auto; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green-xlight);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.step-body p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-arrow {
  color: var(--green);
  flex-shrink: 0;
  padding: 0 0.25rem;
  align-self: center;
}

/* === CLOSING === */
.closing {
  padding: 6rem 2rem;
  background: var(--green);
  color: white;
}
.closing-inner { max-width: var(--max-w); margin: 0 auto; }
.closing-content { max-width: 680px; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.closing-body {
  font-size: 1.1rem;
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.closing-cta {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 2rem;
}
.cta-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.cta-contacts {
  font-size: 0.9rem;
  opacity: 0.7;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.cta-sep { opacity: 0.4; }

/* === FOOTER === */
.footer {
  background: var(--fg);
  color: rgba(255,255,255,0.6);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}
.footer-brand p {
  font-size: 0.85rem;
  max-width: 340px;
}
.footer-meta {
  text-align: right;
}
.footer-meta p { font-size: 0.8rem; }
.footer-copy { margin-top: 0.5rem; opacity: 0.4; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); align-self: center; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-meta { text-align: center; }
}

@media (max-width: 600px) {
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .services, .pricing, .process { padding: 3rem 1.5rem; }
  .trustbar { padding: 1rem 1.5rem; }
  .closing { padding: 3rem 1.5rem; }
  .hero-stats { flex-wrap: wrap; }
  .mockup-links { display: none; }
}