﻿:root {
  --green: #28bbd1;
  --green-dark: #0e5a6b;
  --cream: #fbf7ef;
  --ink: #1c2b23;
  --muted: #5d6f64;
  --line: #e5ded0;
  --gold: #c9a24b;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(14, 90, 107, .08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 15px;
}
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 .5em; }
h1, h2 { font-weight: 500; letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.skip { position: absolute; left: -9999px; top: 0; background: var(--green); color: #fff; padding: .5em 1em; z-index: 99; }
.skip:focus { left: 0; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.accent { color: var(--green); font-family: 'Poppins', system-ui, sans-serif; font-weight: 300; }

.kicker {
  text-transform: uppercase; letter-spacing: .18em; font-size: .78rem;
  font-weight: 500; color: var(--gold); margin: 0 0 .6em;
}
.byline { color: var(--muted); font-style: italic; }
.sub { color: var(--muted); max-width: 620px; }
.center { text-align: center; }
.center .sub { margin-left: auto; margin-right: auto; }
.small { font-size: .85rem; }

/* Buttons */
.btn {
  display: inline-block; padding: .75em 1.5em; border-radius: 999px;
  font-weight: 500; font-size: .95rem; cursor: pointer; border: 0;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 6px 18px rgba(40, 187, 209, .35); }
.btn-primary:hover { box-shadow: 0 10px 24px rgba(40, 187, 209, .4); }
.btn-wa { background: var(--green); color: #fff; box-shadow: 0 6px 18px rgba(40, 187, 209, .3); }
.btn-ghost { background: transparent; color: var(--green); border: 2px solid var(--green); }

/* Header */
.site-head { position: sticky; top: 0; z-index: 50; background: rgba(251, 247, 239, .92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.head-inner { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.logo { display: flex; align-items: center; gap: 9px; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 10px; background: var(--green);
  color: #fff; display: grid; place-items: center; font-weight: 500; font-size: 1.05rem;
}
.logo-text { font-weight: 500; font-size: .95rem; line-height: 1.1; display: flex; flex-direction: column; }
.logo-text small { font-weight: 400; font-size: .6rem; color: var(--muted); letter-spacing: .05em; }
.nav { display: flex; gap: 2px; align-items: center; }
.nav a { padding: .35em .65em; border-radius: 8px; font-weight: 500; color: var(--ink); font-size: .85rem; }
.nav a:hover { background: #f1ead9; }
.nav .btn { padding: .5em 1em; font-size: .85rem; }

/* Bottom nav (mobile app-like) */
.bottom-nav { display: none; }

/* Hero */
.hero { padding: clamp(2rem, 4vw, 3rem) 0 clamp(2.5rem, 6vw, 4rem); }
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: stretch; }
.hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); color: #0098b0; }
.hero h1 .accent { color: inherit; font-family: inherit; font-weight: 500; }
.lede { font-size: .85rem; color: var(--muted); max-width: 460px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 1.5em 0; }
.hero-cta .btn { font-size: .85rem; }
.hero-mini { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--muted); font-size: .9rem; font-weight: 400; }
.hero-card { position: relative; display: flex; }
.hero-card img { border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.card-chip {
  position: absolute; bottom: 16px; left: 16px; background: rgba(255,255,255,.95);
  padding: .5em 1em; border-radius: 999px; font-weight: 500; font-size: .85rem; color: var(--green);
}

/* Sections */
.section { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.section.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.triple { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tile, .prod, .pkg, .card, .about-card, .aud {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
}
.tile { padding: 0; overflow: hidden; }
.tile-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.tile-ic { font-size: 1.6rem; }
.tile h3 { font-size: 1.1rem; margin: 1.2rem 24px .5rem; }
.tile p { color: var(--muted); font-size: .94rem; margin: 0 24px 1.5rem; }

/* Progress bars */
.progress-list { display: flex; flex-direction: column; gap: 22px; }
.prog-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; font-weight: 500; }
.prog-num { color: var(--green); font-weight: 500; font-size: 1.3rem; }
.prog-track { height: 14px; background: #e8e2d4; border-radius: 999px; overflow: hidden; box-shadow: inset 0 1px 3px rgba(0,0,0,.08); }
.prog-fill {
  height: 100%; border-radius: 999px; width: 100%;
  background: linear-gradient(90deg, var(--green), #7ee6f2);
  transform: scaleX(0); transform-origin: left;
}
.prog.go .prog-fill { animation: fillbar 1.4s cubic-bezier(.22,.9,.32,1) forwards; }
@keyframes fillbar { to { transform: scaleX(1); } }
.prog:nth-child(1) .prog-num { color: #0098b0; }
.prog:nth-child(1) .prog-fill { background: linear-gradient(90deg, #0098b0, #5ee0f0); }
.prog:nth-child(2) .prog-num { color: #c9a24b; }
.prog:nth-child(2) .prog-fill { background: linear-gradient(90deg, #b3892f, #f0d77e); }
.prog:nth-child(3) .prog-num { color: #e2604f; }
.prog:nth-child(3) .prog-fill { background: linear-gradient(90deg, #d84b39, #f2a29a); }
.prog-fill::after {
  content: ''; position: absolute; inset: 0; border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.35), transparent);
}
.prog-track { position: relative; }
.prog-fill { position: absolute; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.frame img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* Products */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.prod-grid.big { grid-template-columns: repeat(4, 1fr); }
.prod, .pkg { text-align: center; display: flex; flex-direction: column; }
.prod-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 12px; margin-bottom: 14px; }
.prod-head { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.prod-size { font-size: 1.05rem; font-weight: 500; color: var(--green); }
.prod-price { font-size: 1.3rem; font-weight: 500; letter-spacing: -.02em; }
.prod-note { color: var(--muted); font-size: .88rem; text-align: left; margin: .2em 0 1em; }
.prod-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: auto; }
.btn-sm { padding: .4em .6em; font-size: .78rem; }
.btn-sm.btn-wa, .btn-sm.btn-ghost { width: 100%; text-align: center; }

.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pkg { text-align: center; }
.pkg h3 { font-size: 1rem; }
.pkg-price { font-size: 1.6rem; font-weight: 500; color: var(--green); }
.pkg-items { color: var(--muted); margin-bottom: 1em; }
.pkg .prod-img { aspect-ratio: 3/4; }

/* Stats */
.stat-row { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; margin-top: 1.5em; }
.stat { text-align: center; }
.stat strong { display: block; font-size: 2.4rem; color: var(--green); font-weight: 500; }
.stat span { color: var(--muted); font-weight: 400; }

/* Features / benefits */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-grid > div { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; font-size: 1.5rem; }
.feature-grid h3 { font-size: 1.02rem; }
.feature-grid p { color: var(--muted); font-size: .92rem; margin: 0; }

.benefit-list { list-style: none; padding: 0; margin: 0; }
.benefit-list li { display: flex; gap: 14px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); }
.benefit-list strong { display: block; }
.benefit-list small { color: var(--muted); }

.audience { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.aud { display: flex; flex-direction: column; gap: 2px; font-size: 1.3rem; }
.aud strong { font-size: .95rem; }
.aud small { color: var(--muted); }

/* Notes / wholesale */
.note-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; max-width: 700px; margin: 1.5em auto; }
.terms { text-align: left; }
.wholesale { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 1.2em 0; }
.wholesale div { background: var(--cream); border: 1px dashed var(--line); border-radius: 12px; padding: 14px; }
.wholesale strong { display: block; color: var(--green); }

/* Testimonials — slide */
.slide { position: relative; max-width: 680px; margin: 2rem auto 0; overflow: hidden; border-radius: var(--radius); }
.slide-track { display: flex; transition: transform .5s ease; }
.testi {
  flex: 0 0 100%; box-sizing: border-box; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--shadow); color: inherit; text-decoration: none;
}
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }
.testi blockquote { margin: 0; font-size: .88rem; line-height: 1.6; }
.slide-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%;
  background: rgba(255,255,255,.9); color: var(--dark); font-size: 1.2rem; line-height: 1;
  cursor: pointer; display: grid; place-items: center; transition: background .2s;
}
.slide-nav:hover { background: var(--green); color: #fff; border-color: var(--green); }
.slide-nav.prev { left: 10px; }
.slide-nav.next { right: 10px; }
.slide-dots { display: flex; gap: 6px; justify-content: center; margin-top: 14px; }
.slide-dot {
  width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0;
  background: #cfd8dc; cursor: pointer; transition: background .2s;
}
.slide-dot.active { background: var(--green); width: 20px; border-radius: 4px; }
.testi-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: #fff;
  display: grid; place-items: center; font-weight: 500; font-size: 1rem; flex-shrink: 0;
}
.testi-who strong { display: block; font-size: .95rem; }
.testi-who small { color: var(--muted); font-size: .8rem; }

/* Quote / location */
.quote h2 { font-family: 'Poppins', system-ui, sans-serif; font-weight: 300; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.loc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }

/* Page head */
.page-head { padding: clamp(2.5rem, 6vw, 4rem) 0 1rem; }
.page-head h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); max-width: 700px; }
.page-head p:not(.kicker) { color: var(--muted); max-width: 640px; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { overflow: hidden; padding: 0; transition: transform .15s ease, box-shadow .15s ease; display: block; color: inherit; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card-body { padding: 20px; }
.card-body h3 { font-size: 1.05rem; }
.card-body p { color: var(--muted); font-size: .92rem; }
.card-body small { color: var(--muted); }
.chip {
  display: inline-block; background: #dff4f9; color: var(--green); font-size: .72rem;
  font-weight: 500; text-transform: uppercase; letter-spacing: .08em;
  padding: .25em .7em; border-radius: 999px; margin-bottom: .7em;
}

/* Post */
.post { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.post-inner { max-width: 720px; }
.post-head { margin-bottom: 1.5em; }
.post-head h1 { font-size: clamp(1.5rem, 3.5vw, 2rem); }
.post-hero { border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 1.5em; aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.post-body { font-size: .9rem; }
.post-body h2, .post-body h3 { margin-top: 1.5em; }
.post-body img { border-radius: 12px; }
.post-body blockquote { border-left: 4px solid var(--gold); margin: 1.2em 0; padding: .4em 1em; color: var(--muted); background: #fff; border-radius: 0 12px 12px 0; }
.post-body pre { background: var(--ink); color: #fff; padding: 1em; border-radius: 12px; overflow-x: auto; }
.post-body code { background: #eef2ee; padding: .15em .4em; border-radius: 6px; }
.post-body pre code { background: none; padding: 0; }
.post-share { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 2em; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 6px; }
.contact-info > div { display: flex; gap: 14px; align-items: flex-start; padding: 14px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.contact-info strong { display: block; }
.contact-info a, .contact-info span { color: var(--ink); }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.contact-form label { font-weight: 500; font-size: .9rem; display: block; margin-top: 1em; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: .7em .9em; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; background: var(--cream); margin-top: .3em;
}
.contact-form button { margin-top: 1.2em; }

/* Footer */
.site-foot { background: var(--green-dark); color: #dcebe1; padding: 3rem 0 1rem; margin-top: 2rem; }
.site-foot .logo-mark.dark { background: var(--gold); color: var(--green-dark); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.4fr 1fr; gap: 2rem; }
.site-foot a { color: #fff; display: block; padding: .2em 0; }
.site-foot h4 { color: #fff; margin-bottom: .6em; }
.site-foot p { margin: .3em 0; }
.foot-bot { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.15); margin-top: 2rem; padding-top: 1rem; font-size: .85rem; flex-wrap: wrap; gap: 8px; }
.foot-bot a { color: #bcd7c5; }

/* WhatsApp float */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 8px 20px rgba(0,0,0,.25); z-index: 60;
}
.wa-float svg { width: 30px; height: 30px; }

/* Responsive */
@media (max-width: 900px) {
  .head-inner { height: 56px; }
  .nav { display: none; }
  body { padding-bottom: 66px; }
  .bottom-nav {
    display: grid; grid-template-columns: repeat(5, 1fr);
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: var(--green); border-top: 1px solid rgba(255,255,255,.25);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .bottom-nav a {
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    padding: 8px 4px 7px; color: #fff; font-size: .68rem; font-weight: 400;
  }
  .bottom-nav a svg { width: 22px; height: 22px; }
  .bottom-nav a:hover, .bottom-nav a:active { background: rgba(255,255,255,.15); }
  .wa-float { right: 14px; bottom: 78px; width: 50px; height: 50px; }
  .wa-float svg { width: 26px; height: 26px; }
  .hero-inner, .split, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-card { order: -1; }
  .hero-card img { aspect-ratio: 16/9; border-radius: 0 0 var(--radius) var(--radius); }
  .triple, .feature-grid, .pkg-grid, .blog-grid, .prod-grid, .prod-grid.big { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .triple, .feature-grid, .pkg-grid, .blog-grid, .prod-grid, .prod-grid.big, .audience { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .stat-row { gap: 1.5rem; }
  .hero h1 { font-size: 2.1rem; }
}
