:root {
  --bg: #F7F3ED;
  --fg: #1A1A1A;
  --accent: #E8623A;
  --teal: #0A4D4A;
  --teal-light: #0F6B68;
  --cream: #F7F3ED;
  --muted: #7A7269;
  --border: #DDD8D0;
  --widget-bg: #FFFFFF;
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--teal);
}
.nav-tag {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 60px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.hero-headline em {
  color: var(--accent);
  font-style: italic;
}
.hero-sub {
  margin-top: 24px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}

/* Widget */
.hero-aside {
  padding-top: 8px;
}
.hero-widget {
  background: var(--widget-bg);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.widget-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #25D366;
  margin-bottom: 12px;
}
.widget-msg {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
}
.msg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  flex-shrink: 0;
}
.msg-dot.green { background: #25D366; }
.msg-text {
  font-size: 13px;
  color: var(--muted);
}
.widget-bubble {
  background: var(--teal);
  color: white;
  border-radius: 12px 12px 12px 4px;
  padding: 10px 14px;
  font-size: 13px;
  margin: 10px 0 10px 24px;
}
.widget-confirm {
  background: #F0FAF5;
  border: 1px solid #C5E8D6;
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.confirm-icon {
  width: 22px;
  height: 22px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.confirm-text {
  font-size: 12px;
  color: #1A6B3A;
  font-weight: 500;
}
.widget-status {
  margin-top: 14px;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25D366;
}

/* Hero bottom stats */
.hero-bottom {
  display: flex;
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--border);
  padding-top: 36px;
}
.hero-stat {
  flex: 1;
  padding: 0 40px;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--teal);
}
.hero-stat span {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}
.hero-divider {
  width: 1px;
  background: var(--border);
}

/* Proof strip */
.proof {
  background: var(--teal);
  padding: 28px 40px;
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.proof-label {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.proof-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.proof-tags span {
  background: rgba(255,255,255,0.12);
  color: white;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 500;
}

/* Features */
.features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}
.features-header {
  margin-bottom: 60px;
}
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
}
.section-sub {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.feature-row {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.feature-row:nth-child(odd) { padding-right: 40px; border-right: 1px solid var(--border); }
.feature-row:nth-child(even) { padding-left: 40px; }
.feature-row:nth-last-child(-n+2) { border-bottom: none; }
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--teal);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}
.feature-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Services */
.services {
  background: #EEEAE3;
  padding: 100px 40px;
}
.services-header {
  max-width: 1200px;
  margin: 0 auto 52px;
}
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.service-card.featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal);
}
.service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 20px;
}
.service-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 4px;
}
.service-price {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.service-list {
  list-style: none;
}
.service-list li {
  font-size: 14px;
  color: var(--fg);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '→';
  color: var(--accent);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Manifesto */
.manifesto {
  background: var(--teal);
  padding: 100px 40px;
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
}
.manifesto-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 24px;
}
.manifesto-body {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
}
.manifesto-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.manifesto-tags span {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Closing */
.closing {
  background: var(--bg);
  padding: 100px 40px;
  text-align: center;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  line-height: 1.3;
}
.closing-sub {
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* CTA Buttons */
.cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.cta-whatsapp:hover {
  background: #1da851;
  transform: translateY(-1px);
}
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--teal);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--teal);
  transition: background 0.2s, transform 0.2s;
}
.cta-secondary:hover {
  background: #f0f9f8;
  transform: translateY(-1px);
}

/* Footer */
.footer {
  background: #1A1A1A;
  padding: 32px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 900;
  color: white;
}
.footer-desc {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}
.footer-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-aside { order: -1; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-row:nth-child(odd) { border-right: none; padding-right: 0; }
  .feature-row:nth-child(even) { padding-left: 0; }
  .feature-row:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .feature-row:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-bottom { flex-direction: column; gap: 24px; }
  .hero-divider { display: none; }
  .hero-stat { padding: 0; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 600px) {
  .navbar, .hero, .features, .services, .manifesto, .closing { padding-left: 20px; padding-right: 20px; }
  .proof { padding: 20px; }
}