
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* Marketing site — standalone stylesheet (do NOT pair with styles.css) */
*, *::before, *::after {
  box-sizing: border-box;
}

body.marketing {
  margin: 0;
  background: #f0ebe3 !important;
  color: #1c1c1c !important;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.marketing a.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25rem;
  color: #1e88e5 !important;
}

body.marketing a.logo span {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: #1e88e5 !important;
  color: #1e88e5 !important;
}

body.marketing a.logo .logo-accent,
body.marketing .logo-accent {
  -webkit-text-fill-color: #ff9800 !important;
  color: #ff9800 !important;
}

body.marketing header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(240, 235, 227, 0.95) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: none !important;
  padding: 14px 0;
}

body.marketing .logo-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
}

/* ========== Marketing site — WhatsApp-inspired light layout ========== */
body.marketing {
  background: #f0ebe3;
  color: #1c1c1c;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

body.marketing .container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(240, 235, 227, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-nav {
  display: flex;
  gap: 24px;
}

.site-nav a {
  color: #3d3d3d;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: #1e88e5;
}

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.logo-accent {
  color: #ff9800;
}

body.marketing .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

body.marketing .btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
}

body.marketing .btn-primary {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

body.marketing .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

body.marketing .btn-outline {
  background: transparent;
  color: #1c1c1c;
  border: 2px solid rgba(0, 0, 0, 0.15);
}

body.marketing .btn-outline:hover {
  border-color: #1e88e5;
  color: #1e88e5;
}

body.marketing .btn-ghost {
  background: transparent;
  color: #3d3d3d;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.wa-hero {
  padding: 48px 0 64px;
}

.wa-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.wa-hero-copy h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: #111;
}

.headline-accent {
  background: linear-gradient(135deg, #1e88e5, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wa-lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #4a4a4a;
  max-width: 480px;
  margin-bottom: 28px;
}

.wa-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.wa-note {
  font-size: 0.9rem;
  color: #777;
}

.wa-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.wa-phone-frame {
  width: min(100%, 320px);
  border-radius: 32px;
  padding: 12px;
  background: linear-gradient(145deg, #2a2a2a, #111);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.wa-phone-screen {
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(30, 136, 229, 0.2) 0%, transparent 55%),
    linear-gradient(180deg, #0f1520 0%, #161b28 100%);
  min-height: 380px;
  padding: 16px;
}

.wa-phone-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.wa-phone-header img {
  border-radius: 8px;
}

.wa-chat-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 40px;
}

.wa-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.4;
}

.wa-bubble.in {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.1);
  color: #f0f0f0;
  border-bottom-left-radius: 4px;
}

.wa-bubble.out {
  align-self: flex-end;
  background: rgba(255, 152, 0, 0.35);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.wa-float {
  position: absolute;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
}

.wa-float-1 {
  top: 12%;
  right: 0;
}

.wa-float-2 {
  bottom: 18%;
  left: 0;
}

.wa-features {
  padding: 48px 0 64px;
  background: #fff;
}

.wa-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.wa-feature {
  text-align: center;
  padding: 24px 16px;
}

.wa-feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.wa-feature h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #111;
}

.wa-feature p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.wa-bottom-cta {
  padding: 64px 0;
  text-align: center;
}

.wa-bottom-inner {
  max-width: 520px;
}

.wa-cta-logo {
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 12px 32px rgba(255, 152, 0, 0.2);
}

.wa-bottom-inner h2 {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.wa-bottom-inner p {
  color: #555;
  margin-bottom: 24px;
}

.site-footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.85);
  padding: 40px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-logo {
  border-radius: 10px;
}

.footer-creator {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: #ff9800;
  font-weight: 600;
}

body.marketing .footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

body.marketing .footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 600;
}

body.marketing .footer-links a:hover {
  color: #ff9800;
}

body.marketing .copyright {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-apps-coming,
.wa-apps-coming {
  text-align: center;
  font-size: 0.8rem;
  color: #888;
  margin: 12px 0 0;
}

body.marketing .footer-apps-coming {
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 8px;
}

.site-nav a.nav-active {
  color: #1e88e5;
}

/* ——— Inner pages (legal, about) ——— */
.marketing-main {
  padding: 32px 0 56px;
  background: #f0ebe3;
  min-height: 50vh;
}

.marketing-legal {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #333;
  line-height: 1.65;
}

.marketing-legal h1 {
  font-size: 1.75rem;
  color: #111;
  margin: 0 0 8px;
}

.marketing-legal .effective-date {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.marketing-legal h2 {
  font-size: 1.2rem;
  color: #1e88e5;
  margin-top: 28px;
  margin-bottom: 10px;
}

.marketing-legal h3 {
  font-size: 1.05rem;
  color: #222;
  margin-top: 20px;
}

.marketing-legal p,
.marketing-legal li {
  color: #444;
  margin-bottom: 12px;
}

.marketing-legal a {
  color: #ff9800;
  font-weight: 600;
  text-decoration: none;
}

.marketing-legal a:hover {
  text-decoration: underline;
}

.marketing-legal .contact-section {
  margin-top: 24px;
  padding: 16px 18px;
  background: #f8f6f2;
  border-radius: 12px;
  border-left: 4px solid #ff9800;
}

.marketing-legal ul,
.marketing-legal ol {
  margin-left: 1.25rem;
  margin-bottom: 16px;
}

/* About page */
.marketing-about {
  max-width: 720px;
}

.about-hero {
  text-align: center;
  margin-bottom: 32px;
  padding: 8px 0 0;
  background: transparent;
}

.about-logo {
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(255, 152, 0, 0.2);
}

.about-hero h1 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 12px;
}

.about-lead {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 22px;
  margin-bottom: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.about-card h2 {
  font-size: 1.15rem;
  color: #1e88e5;
  margin: 0 0 12px;
}

.about-card p {
  color: #444;
  margin: 0;
  line-height: 1.65;
}

.about-values {
  margin: 0;
  padding-left: 1.2rem;
  color: #444;
}

.about-values li {
  margin-bottom: 8px;
}

.about-cta {
  text-align: center;
  padding: 32px 16px;
  margin-top: 24px;
}

.about-cta h2 {
  font-size: 1.35rem;
  color: #111;
}

.about-cta p {
  color: #666;
}

@media (max-width: 900px) {
  .wa-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .wa-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .wa-cta-row {
    justify-content: center;
  }

  .wa-hero-visual {
    min-height: 360px;
  }

  .wa-float {
    display: none;
  }

  .wa-feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-nav {
    display: none;
  }

  .header-inner {
    justify-content: center;
  }

  .header-cta {
    width: 100%;
    justify-content: center;
  }
}
