:root {
  --primary: #e96185;
  --bg: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --card: #fff5f8;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Header */
header {
  max-width: 1200px;
  margin: auto;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header img {
  height: 36px;
}

nav a {
  margin-left: 24px;
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
}

/* Hero */
.hero {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px 100px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 520px;
}

.cta {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 10px 30px rgba(233, 97, 133, 0.25);
}

.hero-card {
  background: var(--card);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Sections */
.features {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}

.features h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 12px;
}

.subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 40px;
}

/* --- Reset default link behavior explicitly --- */
a {
  color: inherit;
  text-decoration: none;
}

a:visited {
  color: inherit;
}

a:hover {
  text-decoration: none;
}

/* --- Demo CTA line --- */
.demo-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 16px;
}

/* --- WhatsApp button --- */
.demo-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366; /* Official WhatsApp green */
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.demo-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

/* --- Call button (border only) --- */
.demo-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease;
}

.demo-call:hover {
  background: var(--primary);
  color: #ffffff;
}

/* --- Icons --- */
.demo-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  color: #6b7280;
  margin: 0px 0px 25px 0px
}

.footer-social-inline {
  display: flex;
  gap: 10px;
}

.footer-social-inline a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease;
}

.footer-social-inline a:hover {
  background: #f9fafb;
  transform: translateY(-1px);
}

.footer-social-inline .social-icon {
  width: 13px;
  height: 13px;
  fill: #374151;
}

