:root {
  --green: #1B4332;
  --green-light: #2D6A4F;
  --green-surface: #D8F3DC;
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --cream: #F8F5F0;
  --cream-dark: #EDE8E0;
  --text: #1A1A1A;
  --text-muted: #5C5C5C;
  --white: #FFFFFF;
}

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

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;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.2;
}

/* HERO */
.hero {
  background: var(--green);
  color: var(--white);
  padding: 80px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: center;
  min-height: 560px;
}

.hero-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--white);
  font-style: italic;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-number {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
}

.trust-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* HERO ILLUSTRATION */
.hero-illustration {
  position: relative;
  height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
}

.hero-card {
  background: var(--white);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-card-1 {
  width: 160px;
  height: 180px;
  animation: float1 6s ease-in-out infinite;
}

.hero-card-2 {
  width: 140px;
  height: 140px;
  animation: float2 7s ease-in-out infinite;
}

.hero-card-3 {
  width: 90px;
  height: 160px;
  animation: float1 8s ease-in-out infinite reverse;
}

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

.card-line {
  height: 8px;
  border-radius: 4px;
  background: var(--cream);
}
.card-line-long { width: 100%; }
.card-line-med { width: 75%; }
.card-line-short { width: 50%; }

.card-dot-row {
  display: flex;
  gap: 6px;
  margin-top: auto;
}
.card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cream);
}
.card-dot-active { background: var(--gold); }

.card-bar-group {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  flex: 1;
  padding-top: 20px;
}
.card-bar {
  flex: 1;
  background: var(--cream-dark);
  border-radius: 3px;
  min-height: 20px;
}
.card-bar-highlight { background: var(--gold); }
.card-label {
  font-size: 9px;
  color: var(--text-muted);
  margin-top: 6px;
}

.phone-mock {
  display: flex;
  justify-content: center;
  padding-top: 10px;
}
.phone-screen {
  width: 50px;
  height: 80px;
  background: var(--cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-indicator {
  font-size: 9px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-surface);
  padding: 2px 6px;
  border-radius: 3px;
}

/* PROBLEM */
.problem { background: var(--cream-dark); padding: 80px 40px; }
.problem-inner { max-width: 900px; margin: 0 auto; }
.problem-label, .services-label, .process-label, .pricing-label, .diff-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.problem-headline {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--green);
  margin-bottom: 48px;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  color: var(--text);
}
.problem-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* SERVICES */
.services { padding: 80px 40px; }
.services-inner { max-width: 900px; margin: 0 auto; }
.services-headline {
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--green);
  margin-bottom: 48px;
  max-width: 600px;
}
.services-list { display: flex; flex-direction: column; gap: 0; }
.service-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--cream-dark);
  align-items: start;
}
.service-row:first-child { border-top: 1px solid var(--cream-dark); }
.service-marker {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  padding-top: 2px;
}
.service-content h3 {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 6px;
}
.service-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* PROCESS */
.process { background: var(--green); padding: 80px 40px; color: var(--white); }
.process-inner { max-width: 900px; margin: 0 auto; }
.process .process-label { color: var(--gold); }
.process-headline {
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--white);
  margin-bottom: 48px;
  font-style: italic;
}
.process-steps { display: flex; align-items: center; gap: 0; }
.step { flex: 1; }
.step-number {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.step-body h3 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
}
.step-body p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.step-connector {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 30px;
}

/* PRICING */
.pricing { padding: 80px 40px; }
.pricing-inner { max-width: 900px; margin: 0 auto; }
.pricing-headline {
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--green);
  margin-bottom: 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
}
.pricing-card-featured {
  background: var(--green);
  color: var(--white);
  border: none;
  transform: scale(1.04);
}
.featured-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.pricing-card-name {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.pricing-card-price {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
}
.pricing-card-featured .pricing-card-price { color: var(--gold); }
.per-month { font-size: 18px; font-weight: 400; }
.pricing-card-tag {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.pricing-card-featured .pricing-card-tag { color: rgba(255,255,255,0.6); }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.8); }

/* DIFFERENTIATORS */
.differentiators { background: var(--cream-dark); padding: 80px 40px; }
.diff-inner { max-width: 900px; margin: 0 auto; }
.diff-headline {
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--green);
  margin-bottom: 48px;
  max-width: 600px;
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}
.diff-item h3 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--green);
  margin-bottom: 8px;
}
.diff-item p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

/* CLOSING */
.closing {
  background: var(--green);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.closing-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Fraunces', serif;
  font-size: 160px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.02em;
}
.closing-headline {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  margin-bottom: 24px;
  font-style: italic;
  line-height: 1.25;
}
.closing-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* FOOTER */
.footer { background: var(--text); padding: 48px 40px; }
.footer-inner { max-width: 900px; margin: 0 auto; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-logo {
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--green);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.footer-name {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }
  .hero-illustration { display: none; }
  .hero-headline { font-size: 34px; }
  .hero-trust-row { flex-wrap: wrap; gap: 20px; }
  .problem-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 24px; }
  .step-connector { width: 2px; height: 24px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card-featured { transform: none; }
  .diff-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { padding: 48px 20px; }
  .problem { padding: 60px 20px; }
  .services { padding: 60px 20px; }
  .process { padding: 60px 20px; }
  .pricing { padding: 60px 20px; }
  .differentiators { padding: 60px 20px; }
  .closing { padding: 72px 20px; }
  .footer { padding: 40px 20px; }
}