/* ===== Sunny landing page — styles ===== */

:root {
  --sun:        #FFB703;  /* sunshine amber */
  --sun-deep:   #FB8500;  /* warm orange */
  --sky:        #219EBC;  /* sky blue */
  --sky-deep:   #126782;
  --ink:        #1d2b36;  /* warm near-black */
  --muted:      #5c6b75;
  --cream:      #FFF8EC;  /* warm off-white */
  --cream-2:    #FFF1D6;
  --white:      #ffffff;
  --line:       #ece2cf;
  --wa:         #25D366;  /* WhatsApp green */
  --wa-deep:    #1da851;

  --radius:     18px;
  --radius-sm:  12px;
  --shadow:     0 18px 40px -18px rgba(29,43,54,.28);
  --shadow-sm:  0 8px 20px -10px rgba(29,43,54,.25);
  --maxw:       1120px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--sky-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}
.container-narrow { max-width: 760px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  padding: 12px 22px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none !important;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 10px 22px -8px rgba(37,211,102,.6);
}
.btn-primary:hover { background: var(--wa-deep); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--sun); background: var(--cream-2); }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-block { display: flex; justify-content: center; width: 100%; }

.wa-icon {
  width: 18px; height: 18px; flex: none;
  background: currentColor;
  -webkit-mask: var(--wa-mask) center/contain no-repeat;
  mask: var(--wa-mask) center/contain no-repeat;
}
:root {
  --wa-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.057 24l1.687-6.163a11.867 11.867 0 01-1.587-5.945C.16 5.335 5.495 0 12.05 0a11.82 11.82 0 018.413 3.488 11.824 11.824 0 013.48 8.414c-.003 6.557-5.338 11.892-11.893 11.892a11.9 11.9 0 01-5.688-1.448L.057 24zm6.597-3.807c1.676.995 3.276 1.591 5.392 1.592 5.448 0 9.886-4.434 9.889-9.885.002-5.462-4.415-9.89-9.881-9.892-5.452 0-9.887 4.434-9.889 9.884a9.86 9.86 0 001.515 5.26l-.999 3.648 3.973-1.607zm11.387-5.464c-.074-.124-.272-.198-.57-.347-.297-.149-1.758-.868-2.031-.967-.272-.099-.47-.149-.669.149-.198.297-.768.967-.941 1.165-.173.198-.347.223-.644.074-.297-.149-1.255-.462-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.521.151-.172.2-.296.3-.495.099-.198.05-.372-.025-.521-.075-.148-.669-1.612-.916-2.207-.242-.579-.487-.501-.669-.51l-.57-.01c-.198 0-.52.074-.792.372s-1.04 1.016-1.04 2.479 1.065 2.876 1.213 3.074c.149.198 2.095 3.2 5.076 4.487.709.306 1.263.489 1.694.626.712.226 1.36.194 1.872.118.571-.085 1.758-.719 2.006-1.413.247-.694.247-1.289.173-1.413z"/></svg>');
}

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--sun-deep);
  background: var(--cream-2);
  border: 1px solid #ffd98a;
  padding: 2px 8px;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: 4px;
}

.eyebrow {
  color: var(--sun-deep);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  margin: 0 0 10px;
}

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,248,236,.85);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: 18px;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none !important; }
.brand-logo { border-radius: 10px; }
.brand-name { font-weight: 800; font-size: 21px; color: var(--ink); letter-spacing: -.01em; }
.nav { display: flex; gap: 26px; margin-left: 14px; }
.nav a { color: var(--ink); font-weight: 600; font-size: 15px; }
.nav a:hover { color: var(--sun-deep); text-decoration: none; }
.nav-cta { margin-left: auto; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; padding: 9px;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span { height: 3px; background: var(--ink); border-radius: 2px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 460px at 78% -8%, rgba(255,183,3,.30), transparent 60%),
    radial-gradient(900px 420px at 10% 110%, rgba(33,158,188,.16), transparent 60%),
    var(--cream);
  padding: 64px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  margin: 6px 0 18px;
  letter-spacing: -.02em;
  font-weight: 800;
}
.hero-copy .accent {
  background: linear-gradient(90deg, var(--sun-deep), var(--sun));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { font-size: 18px; color: var(--muted); max-width: 30em; margin: 0 0 26px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-points {
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  list-style: none; padding: 0; margin: 0;
  color: var(--muted); font-weight: 600; font-size: 15px;
}

/* Phone mockup */
.hero-phone { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative; z-index: 2;
  width: 300px;
  background: #0d1620;
  border-radius: 38px;
  padding: 12px;
  box-shadow: var(--shadow);
}
.phone-notch {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 26px; background: #0d1620; border-radius: 0 0 16px 16px; z-index: 3;
}
.chat {
  background: #ECE5DD;
  border-radius: 28px;
  overflow: hidden;
  display: flex; flex-direction: column;
  height: 540px;
}
.chat-header {
  background: var(--sky-deep);
  color: #fff;
  display: flex; align-items: center; gap: 10px;
  padding: 28px 14px 12px;
}
.chat-avatar img { background: #fff; border-radius: 50%; padding: 3px; }
.chat-meta { display: flex; flex-direction: column; line-height: 1.2; }
.chat-meta strong { font-size: 15px; }
.chat-meta span { font-size: 12px; opacity: .85; }
.chat-body {
  flex: 1; padding: 16px 12px; display: flex; flex-direction: column; gap: 10px;
  overflow: hidden;
  background-image: radial-gradient(rgba(0,0,0,.03) 1px, transparent 1px);
  background-size: 18px 18px;
}
.bubble {
  max-width: 82%;
  padding: 9px 12px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.45;
  box-shadow: 0 1px 1px rgba(0,0,0,.08);
}
.bubble.in { align-self: flex-end; background: #DCF8C6; border-top-right-radius: 4px; }
.bubble.out { align-self: flex-start; background: #fff; border-top-left-radius: 4px; }
.chat-input {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; background: #F0F0F0;
  color: #8a8a8a; font-size: 13px;
}
.chat-input span { flex: 1; background: #fff; border-radius: 999px; padding: 8px 14px; }
.chat-input .send { width: 34px; height: 34px; border-radius: 50%; background: var(--wa); }

.blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .55; z-index: 1; }
.blob-1 { width: 180px; height: 180px; background: var(--sun); top: -20px; right: 6px; }
.blob-2 { width: 150px; height: 150px; background: var(--sky); bottom: -10px; left: 0; opacity: .35; }

/* ===== Sections ===== */
.section { padding: 78px 0; }
.section-tint { background: var(--white); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section-head h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  margin: 0 0 8px; letter-spacing: -.02em; font-weight: 800;
}
.section-sub { color: var(--muted); font-size: 17px; margin: 12px 0 0; }
.price-note { color: var(--muted); font-size: 13px; margin: 14px 0 0; font-style: italic; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.section-tint .step { background: var(--cream); }
.step-num {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  font-weight: 800; font-size: 20px; color: #fff;
  background: linear-gradient(135deg, var(--sun), var(--sun-deep));
  margin-bottom: 14px;
}
.step h3 { margin: 0 0 8px; font-size: 19px; }
.step p { margin: 0; color: var(--muted); }

/* Features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.feature-ico {
  font-size: 30px; width: 54px; height: 54px;
  display: grid; place-items: center;
  background: var(--white); border-radius: 14px;
  border: 1px solid var(--line);
  margin-bottom: 14px;
}
.feature h3 { margin: 0 0 6px; font-size: 18px; }
.feature p { margin: 0; color: var(--muted); font-size: 15px; }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
/* Two-tier layout (Free + Sunny Pro): two centered cards, not stretched full width. */
.pricing-2col { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 720px; margin: 0 auto; }
.plan {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.plan-featured {
  border: 2px solid var(--sun);
  box-shadow: 0 24px 50px -22px rgba(251,133,0,.5);
  transform: translateY(-6px);
}
.plan-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--sun-deep), var(--sun));
  color: #fff; font-weight: 800; font-size: 12px;
  padding: 5px 14px; border-radius: 999px; letter-spacing: .03em;
  white-space: nowrap;
}
.plan-name { margin: 0 0 6px; font-size: 20px; }
.plan-price { margin: 0 0 4px; }
.plan-price .amount { font-size: 34px; font-weight: 800; letter-spacing: -.02em; }
.plan-price .per { color: var(--muted); font-weight: 600; }
.plan-tag { color: var(--muted); font-size: 14px; margin: 0 0 18px; }
.plan-feats { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.plan-feats li { padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: 15px; }
.plan-feats li:last-child { border-bottom: none; }
.plan-foot { margin: 12px 0 0; color: var(--muted); font-size: 13px; text-align: center; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 20px;
}
.faq summary {
  cursor: pointer; font-weight: 700; font-size: 16px;
  padding: 14px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--sun-deep); font-weight: 700; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 16px; color: var(--muted); }

/* Final CTA */
.cta-final {
  text-align: center;
  padding: 76px 0;
  background:
    radial-gradient(700px 320px at 50% -30%, rgba(255,183,3,.4), transparent 65%),
    linear-gradient(135deg, var(--sky-deep), var(--sky));
  color: #fff;
}
.cta-final h2 { font-size: clamp(26px, 3.6vw, 40px); margin: 0 0 10px; font-weight: 800; }
.cta-final p { font-size: 18px; opacity: .92; margin: 0 0 26px; }

/* Footer */
.site-footer { background: var(--ink); color: #d7dee3; padding: 48px 0 26px; }
.footer-inner {
  display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { max-width: 320px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { color: #9fb0bb; margin: 12px 0 0; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 24px; align-content: flex-start; }
.footer-nav a { color: #cdd8df; font-weight: 600; }
.footer-nav a:hover { color: var(--sun); text-decoration: none; }
.footer-bottom { padding-top: 22px; }
.footer-bottom p { color: #8fa0ab; font-size: 14px; margin: 0; }
.footer-bottom a, .footer-brand a { color: var(--sun); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-phone { order: -1; }
  .steps, .features, .pricing { grid-template-columns: 1fr; }
  .plan-featured { transform: none; }
  .nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .site-header.open .nav {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 8px 22px 16px; margin: 0;
  }
  .site-header.open .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .site-header.open .nav-cta {
    display: inline-flex; position: absolute; top: 78px; right: 22px; z-index: 60;
  }
}

@media (max-width: 520px) {
  .hero { padding: 40px 0 56px; }
  .section { padding: 56px 0; }
  .phone { width: 270px; }
  .hero-actions .btn { flex: 1; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .btn:hover, .feature:hover { transform: none; }
}
