:root {
    --cream: #FFF8F0;
    --ink: #2D2A26;
    --ink-soft: #4A423A;
    --orange: #FF8A4C;
    --orange-dark: #E06D2E;
    --gold: #FFC93C;
    --muted: #8C7A6B;
    --border: #F0E6D8;
    --card: #FFFFFF;
    --green: #1E8E3E;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Poppins', sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.5;
  }
  .material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
    vertical-align: middle;
    line-height: 1;
  }
  a { color: inherit; text-decoration: none; }
  .wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
  section { padding: 88px 0; }
  h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    background: #FFF0E2; color: var(--orange-dark);
    font-size: 12.5px; font-weight: 700; letter-spacing: 0.02em;
    padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
  }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: inherit; font-weight: 600; font-size: 14.5px;
    padding: 13px 26px; border-radius: 12px; cursor: pointer;
    border: none; transition: transform 0.12s ease, box-shadow 0.12s ease;
  }
  .btn-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(255,138,76,0.35); }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255,138,76,0.42); }
  .btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
  .btn-ghost:hover { border-color: var(--orange); color: var(--orange-dark); }

  /* ---- Nav ---- */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,248,240,0.9); backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
  }
  nav .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; }
  .logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 17px; }
  .logo img { display: block; border-radius: 6px; }
  .nav-links { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 500; color: var(--ink-soft); }
  .nav-links a:hover { color: var(--orange-dark); }
  .nav-cta { display: flex; align-items: center; gap: 14px; }

  .nav-toggle {
    display: none; flex-direction: column; justify-content: center; gap: 4px;
    width: 36px; height: 36px; border: none; background: transparent; cursor: pointer; padding: 0;
  }
  .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

  .mobile-menu {
    display: none; flex-direction: column; gap: 2px;
    border-top: 1px solid var(--border); background: var(--card);
    padding: 8px 28px 18px;
  }
  .mobile-menu a { padding: 12px 0; font-size: 14.5px; font-weight: 500; border-bottom: 1px solid var(--border); }
  .mobile-menu a:last-child { border-bottom: none; margin-top: 8px; }
  .mobile-menu.open { display: flex; }

  @media (max-width: 760px) {
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
  }

  /* ---- Hero ---- */
  .hero { padding-top: 76px; padding-bottom: 40px; }
  .hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
  @media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
  .hero h1 { font-size: 46px; line-height: 1.12; margin-bottom: 20px; }
  .hero h1 .accent { color: var(--orange); }
  .hero p.lead { font-size: 16.5px; color: var(--ink-soft); max-width: 460px; margin-bottom: 30px; }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
  .hero-note { font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 6px; }

  /* ---- Signature: live mock chat widget ---- */
  .demo-frame {
    background: var(--card); border: 1px solid var(--border); border-radius: 20px;
    box-shadow: 0 24px 60px rgba(45,42,38,0.10);
    overflow: hidden; width: 100%; max-width: 360px; margin: 0 auto;
  }
  .demo-header {
    background: var(--ink); color: #fff; padding: 16px 18px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .demo-header-title { font-weight: 600; font-size: 14px; }
  .demo-header-sub { font-size: 11px; color: #C9C1B6; margin-top: 2px; display: flex; align-items: center; gap: 5px; }
  .demo-dot { width: 6px; height: 6px; border-radius: 50%; background: #58D68D; display: inline-block; }
  .demo-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; min-height: 300px; }
  .demo-msg { max-width: 78%; padding: 9px 13px; border-radius: 13px; font-size: 12.5px; opacity: 0; transform: translateY(6px); animation: msgIn 0.35s ease forwards; }
  .demo-msg.visitor { align-self: flex-end; background: var(--ink); color: #fff; border-bottom-right-radius: 4px; }
  .demo-msg.agent { align-self: flex-start; background: var(--cream); border: 1px solid var(--border); border-bottom-left-radius: 4px; }
  @keyframes msgIn { to { opacity: 1; transform: translateY(0); } }
  .demo-typing { align-self: flex-start; display: flex; gap: 4px; padding: 10px 13px; background: var(--cream); border: 1px solid var(--border); border-radius: 13px; border-bottom-left-radius: 4px; opacity: 0; }
  .demo-typing.show { opacity: 1; }
  .demo-typing span { width: 5px; height: 5px; border-radius: 50%; background: var(--muted); animation: bounce 1s infinite ease-in-out; }
  .demo-typing span:nth-child(2) { animation-delay: 0.15s; }
  .demo-typing span:nth-child(3) { animation-delay: 0.3s; }
  @keyframes bounce { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-4px); } }
  .demo-inputbar { border-top: 1px solid var(--border); padding: 12px; display: flex; gap: 8px; }
  .demo-input-fake { flex: 1; background: var(--cream); border-radius: 10px; padding: 9px 12px; font-size: 12px; color: var(--muted); }
  .demo-send { width: 34px; height: 34px; border-radius: 10px; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

  /* ---- Trust strip ---- */
  .trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--card); }
  .trust-strip .wrap { padding: 22px 28px; display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
  .trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--ink-soft); }
  .trust-item .material-symbols-outlined { color: var(--orange); font-size: 19px; }

  /* ---- Section heading ---- */
  .section-head { text-align: center; max-width: 560px; margin: 0 auto 52px; }
  .section-head h2 { font-size: 32px; margin-bottom: 12px; }
  .section-head p { color: var(--ink-soft); font-size: 15px; }

  /* ---- Features ---- */
  .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  @media (max-width: 860px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
  .feature-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
  .feature-icon { width: 40px; height: 40px; border-radius: 11px; background: #FFF0E2; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
  .feature-icon .material-symbols-outlined { color: var(--orange-dark); font-size: 21px; }
  .feature-card h3 { font-size: 15px; margin-bottom: 6px; }
  .feature-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

  /* ---- Anywhere-in-the-world band ---- */
  .anywhere { background: var(--ink); color: #fff; border-radius: 24px; }
  .anywhere .wrap { padding: 64px 40px; }
  .anywhere-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
  @media (max-width: 820px) { .anywhere-grid { grid-template-columns: 1fr; } }
  .anywhere h2 { color: #fff; font-size: 30px; margin-bottom: 16px; }
  .anywhere p { color: #C9C1B6; font-size: 14.5px; margin-bottom: 22px; }
  .city-row { display: flex; flex-wrap: wrap; gap: 10px; }
  .city-pill { display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); padding: 8px 14px; border-radius: 999px; font-size: 12.5px; }
  .city-pill .demo-dot { background: var(--gold); }
  .login-mock { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 24px; }
  .login-mock-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 13px; }
  .login-mock-row:last-child { border-bottom: none; }
  .login-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
  .login-status { margin-left: auto; font-size: 11px; color: #58D68D; display: flex; align-items: center; gap: 5px; }

  /* ---- Pricing ---- */
  .pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
  @media (max-width: 980px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .pricing-grid { grid-template-columns: 1fr; } }
  .billing-toggle { display: flex; justify-content: center; align-items: center; gap: 4px; background: var(--card); border: 1.5px solid var(--border); border-radius: 999px; padding: 5px; width: fit-content; margin: 0 auto 34px; }
  .toggle-option { position: relative; border: none; background: transparent; cursor: pointer; font-family: inherit; font-size: 13.5px; font-weight: 600; color: var(--muted); padding: 9px 20px; border-radius: 999px; transition: color 0.2s, background 0.2s; display: flex; align-items: center; gap: 8px; }
  .toggle-option.active { background: var(--orange); color: #fff; }
  .toggle-option .save-tag { background: var(--gold); color: #4A3600; font-size: 10.5px; font-weight: 800; padding: 3px 9px; border-radius: 999px; letter-spacing: 0.2px; box-shadow: 0 2px 8px rgba(255,201,60,0.5); }
  .toggle-option.active .save-tag { box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
  .price-card { background: var(--card); border: 1.5px solid var(--border); border-radius: 18px; padding: 26px 22px; display: flex; flex-direction: column; position: relative; transition: border-color 0.2s, box-shadow 0.2s; }
  .price-card.is-annual { border-color: var(--gold); box-shadow: 0 16px 40px rgba(255,201,60,0.18); }
  .price-card.is-annual.featured { border-color: var(--gold); }
  .price-card.is-annual .price-amount .amt { color: var(--orange-dark); }

  .faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; margin: 0 auto; }
  .faq-item { background: var(--card); border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
  .faq-item.is-open { border-color: var(--orange); box-shadow: 0 12px 32px rgba(255,138,76,0.14); }
  .faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none; border: none; text-align: left; font-family: inherit; font-size: 15.5px; font-weight: 600; color: var(--ink); padding: 18px 22px; cursor: pointer; }
  .faq-icon { flex-shrink: 0; color: var(--orange); font-size: 22px; transition: transform 0.25s ease; }
  .faq-item.is-open .faq-icon { transform: rotate(135deg); color: var(--orange-dark); }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 22px; }
  .faq-item.is-open .faq-answer { max-height: 260px; padding: 0 22px 20px; }
  .faq-answer p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }
  .faq-answer code { background: var(--border); padding: 2px 6px; border-radius: 6px; font-size: 13px; }
  .faq-cta { text-align: center; margin-top: 30px; font-size: 14.5px; color: var(--muted); }
  .faq-cta-link { background: none; border: none; font-family: inherit; font-size: 14.5px; font-weight: 700; color: var(--orange-dark); cursor: pointer; padding: 0; margin-left: 6px; }
  .faq-cta-link:hover { text-decoration: underline; }
  .price-card.featured { border-color: var(--orange); box-shadow: 0 16px 40px rgba(255,138,76,0.16); }
  .price-badge { position: absolute; top: -12px; left: 22px; background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 999px; }
  .price-name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
  .price-sub { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
  .price-amount { font-size: 28px; font-weight: 800; margin-bottom: 2px; }
  .price-amount span { font-size: 13px; font-weight: 500; color: var(--muted); }
  .price-amount-usd { font-size: 12px; color: var(--muted); margin-bottom: 18px; }
  .price-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; flex: 1; }
  .price-features li { font-size: 12.5px; color: var(--ink-soft); display: flex; align-items: flex-start; gap: 7px; }
  .price-features .material-symbols-outlined { color: var(--green); font-size: 16px; margin-top: 1px; flex-shrink: 0; }
  .price-card .btn { width: 100%; justify-content: center; }

  /* ---- Get Started / Payment ---- */
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 50px; }
  @media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
  .step-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 22px; }
  .step-num { width: 30px; height: 30px; border-radius: 9px; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; margin-bottom: 14px; }
  .step-card h3 { font-size: 14px; margin-bottom: 6px; }
  .step-card p { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

  .pay-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  @media (max-width: 760px) { .pay-panel { grid-template-columns: 1fr; } }
  .pay-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 26px; }
  .pay-card h3 { font-size: 15.5px; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
  .pay-card h3 .material-symbols-outlined { color: var(--orange-dark); font-size: 19px; }
  .pay-card p.pay-sub { font-size: 12.5px; color: var(--muted); margin-bottom: 18px; }
  .qr-box { width: 160px; height: 160px; margin: 0 auto 14px; background: var(--cream); border: 1.5px dashed var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 11px; color: var(--muted); padding: 10px; }
  .bank-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 12.5px; }
  .bank-row:last-child { border-bottom: none; }
  .bank-row .label { color: var(--muted); }
  .bank-row .value { font-weight: 600; }
  .whatsapp-note { margin-top: 16px; background: #FFF0E2; border-radius: 12px; padding: 14px 16px; font-size: 12.5px; color: var(--ink-soft); display: flex; gap: 10px; align-items: flex-start; }
  .whatsapp-note .material-symbols-outlined { color: var(--orange-dark); flex-shrink: 0; margin-top: 1px; }

  /* ---- Footer CTA ---- */
  .footer-cta { text-align: center; }
  .footer-cta h2 { font-size: 30px; margin-bottom: 14px; }
  .footer-cta p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 26px; }
  footer { border-top: 1px solid var(--border); padding: 30px 0; }
  footer .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: var(--muted); }

  .chat-promo { background: #FFF0E2; border-radius: 24px; }
  .chat-promo .wrap { padding: 46px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
  .chat-promo-text h3 { font-size: 19px; margin-bottom: 6px; }
  .chat-promo-text p { font-size: 13.5px; color: var(--ink-soft); max-width: 480px; }

  .chat-promo-graphic { position: relative; width: 120px; height: 120px; flex-shrink: 0; align-self: center; }
  .cpg-ring { position: absolute; inset: 0; border: 1px dashed #E3B98F; border-radius: 50%; }
  .cpg-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 52px; height: 52px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; }
  .cpg-center .material-symbols-outlined { color: #fff; font-size: 22px; }
  .cpg-node { position: absolute; width: 32px; height: 32px; border-radius: 50%; background: var(--card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
  .cpg-node .material-symbols-outlined { color: var(--orange); font-size: 16px; }
  .cpg-node-top { top: -2px; left: 50%; transform: translate(-50%,0); }
  .cpg-node-left { bottom: 2px; left: -2px; }
  .cpg-node-right { bottom: 2px; right: -2px; }

  code.edit-tag { background: #FFF0E2; color: var(--orange-dark); padding: 1px 6px; border-radius: 5px; font-size: 10.5px; font-weight: 700; }

  /* ---- Legal pages (privacy.html, terms.html) — scoped to .legal-page
     so these rules never leak into unrelated tags on other pages ---- */
  .legal-page .wrap { max-width: 760px; padding: 60px 28px 100px; }
  .legal-page h1 { font-size: 30px; margin-bottom: 6px; }
  .legal-page .updated { color: var(--muted); font-size: 13px; margin-bottom: 36px; }
  .legal-page h2 { font-size: 18px; margin: 34px 0 10px; }
  .legal-page p, .legal-page li { font-size: 14px; color: var(--ink-soft); margin-bottom: 10px; }
  .legal-page ul { padding-left: 20px; margin-bottom: 12px; }
  .legal-page .back { display: inline-block; margin-bottom: 24px; font-size: 13px; color: var(--muted); text-decoration: none; }
  .legal-page a { color: var(--orange); }

  footer { background: var(--cream); border-top: 1px solid var(--border); padding: 48px 0 20px; }
  .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-brand .logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 16px; color: var(--ink); margin-bottom: 10px; }
  .footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 260px; }
  .footer-col h4 { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; color: var(--muted); margin-bottom: 14px; }
  .footer-col a { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-soft); text-decoration: none; margin-bottom: 12px; }
  .footer-col a:hover { color: var(--orange); }
  .foot-tag { font-size: 9.5px; font-weight: 700; padding: 1px 7px; border-radius: 999px; text-transform: uppercase; }
  .foot-tag.free { background: #E7F7EC; color: var(--green); }
  .footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 12.5px; color: var(--muted); }
  @media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }