@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/pjs-600.woff2') format('woff2'),
       url('../assets/fonts/pjs-600.woff') format('woff');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/pjs-700.woff2') format('woff2'),
       url('../assets/fonts/pjs-700.woff') format('woff');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../assets/fonts/pjs-800.woff2') format('woff2'),
       url('../assets/fonts/pjs-800.woff') format('woff');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/inter-400.woff2') format('woff2'),
       url('../assets/fonts/inter-400.woff') format('woff');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/inter-500.woff2') format('woff2'),
       url('../assets/fonts/inter-500.woff') format('woff');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/inter-600.woff2') format('woff2'),
       url('../assets/fonts/inter-600.woff') format('woff');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/inter-700.woff2') format('woff2'),
       url('../assets/fonts/inter-700.woff') format('woff');
}

:root {
  --primary: #1d6f5e;
  --primary-dark: #14503f;
  --primary-light: #e6f2ef;
  --accent: #f0a63a;
  --ink: #16241f;
  --ink-soft: #4b5d57;
  --bg: #ffffff;
  --bg-alt: #f6faf8;
  --border: #e2ece8;
  --radius: 14px;
  --shadow: 0 12px 30px -12px rgba(20, 60, 50, 0.18);
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; margin: 0 0 0.5em; color: var(--ink); }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { padding: 0; margin: 0; list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 780px; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--primary); color: #fff;
  padding: 10px 16px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  border: 1.5px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--primary); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--primary); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }
.btn-sm { padding: 9px 18px; font-size: 0.88rem; }
.btn.full { width: 100%; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--border);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--ink); }
.nav-menu { display: flex; align-items: center; gap: 28px; font-weight: 500; font-size: 0.95rem; }
.nav-menu a:not(.btn) { color: var(--ink-soft); transition: color .15s; }
.nav-menu a:not(.btn):hover { color: var(--primary); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }

/* Breadcrumb */
.breadcrumb-bar { background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.breadcrumb-bar ol { display: flex; align-items: center; gap: 6px; padding: 10px 0; font-size: 0.8rem; color: var(--ink-soft); flex-wrap: wrap; }
.breadcrumb-bar li { display: flex; align-items: center; gap: 6px; }
.breadcrumb-bar li + li::before { content: "/"; color: var(--border); }
.breadcrumb-bar a { color: var(--ink-soft); }
.breadcrumb-bar a:hover { color: var(--primary); }
.breadcrumb-bar li:last-child a, .breadcrumb-bar li:last-child span { color: var(--primary); font-weight: 600; }

/* Hero */
.hero { padding: 88px 0 64px; background: linear-gradient(180deg, var(--bg-alt), #fff); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.03em;
  color: var(--primary); background: var(--primary-light); padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); font-weight: 800; }
.hero .lead { font-size: 1.12rem; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; margin: 28px 0; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; font-size: 0.88rem; color: var(--ink-soft); }
.hero-trust li { position: relative; padding-left: 20px; }
.hero-trust li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

.mock-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  border: 1px solid var(--border); padding: 22px; max-width: 420px; margin-left: auto;
}
.mock-card-head { display: flex; gap: 6px; margin-bottom: 16px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #f06565; } .dot.yellow { background: #f0b73a; } .dot.green { background: var(--primary); }
.mock-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed var(--border); font-size: 0.92rem; }
.mock-label { color: var(--ink-soft); }
.mock-value { font-weight: 600; }
.mock-badge { background: var(--primary-light); color: var(--primary-dark); font-weight: 700; font-size: 0.78rem; padding: 3px 10px; border-radius: 999px; }
.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; text-align: center; }
.mock-stats strong { display: block; font-family: var(--font-head); font-size: 1.3rem; color: var(--primary); }
.mock-stats span { font-size: 0.72rem; color: var(--ink-soft); }

/* Strip */
.strip { background: var(--primary-dark); color: #fff; padding: 14px 0; }
.strip-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 0.88rem; }
.pill { background: rgba(255,255,255,0.12); padding: 5px 14px; border-radius: 999px; }

/* Sections */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }

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

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-icon { font-size: 1.8rem; margin-bottom: 14px; }
.card h3 { font-size: 1.08rem; }
.card p { font-size: 0.93rem; margin: 0; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.check-list li { position: relative; padding: 8px 0 8px 28px; font-size: 0.95rem; color: var(--ink-soft); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 8px; color: var(--primary); font-weight: 700; }

.stat-cards { display: grid; gap: 16px; }
.stat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow); }
.stat-card strong { display: block; font-family: var(--font-head); font-size: 1.8rem; color: var(--primary); }
.stat-card span { font-size: 0.9rem; color: var(--ink-soft); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.steps li { list-style: none; text-align: left; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px;
  border-radius: 50%; background: var(--primary); color: #fff; font-weight: 700; font-family: var(--font-head); margin-bottom: 14px;
}
.steps h3 { font-size: 1.02rem; }
.steps p { font-size: 0.9rem; }

/* Pricing */
.pricing { align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 26px;
  display: flex; flex-direction: column; gap: 16px; position: relative;
}
.price-card.featured { border-color: var(--primary); box-shadow: var(--shadow); transform: scale(1.02); }
.badge-top { position: absolute; top: -12px; left: 26px; background: var(--accent); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 999px; }
.price-card h3 { font-size: 1.1rem; margin-bottom: -12px; }
.plan-sub { font-size: 0.85rem; color: var(--ink-soft); margin: 0; }
.price { font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; color: var(--primary); margin: 0; }
.price span { font-size: 0.85rem; font-weight: 500; color: var(--ink-soft); }
.price-card ul { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.price-card ul li { font-size: 0.9rem; color: var(--ink-soft); padding-left: 22px; position: relative; }
.price-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.pricing-single { display: flex; justify-content: center; }
.pricing-single .price-card { max-width: 560px; width: 100%; }
.price-card ul.plan-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 20px; row-gap: 8px; }
@media (max-width: 640px) {
  .plan-features-grid { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 0; font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-icon { transition: transform .2s; color: var(--primary); font-weight: 700; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a p { padding-bottom: 18px; margin: 0; font-size: 0.94rem; }

/* Contact */
.section-cta { background: var(--bg-alt); }
.contact-chips { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 10px; }
.contact-chips li {
  display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border);
  border-radius: 999px; padding: 8px 16px; font-size: 0.88rem; font-weight: 500; color: var(--ink);
}
.chip-icon { color: var(--primary); font-size: 0.95rem; line-height: 1; }
.form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); max-width: 480px; margin-left: auto; }
.form-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 0 14px; }
.form-row { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.form-row label { font-size: 0.86rem; font-weight: 600; }
.form-row input, .form-row textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 10px; font-family: var(--font-body); font-size: 0.94rem;
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--primary); }
.form-note { font-size: 0.86rem; margin: 12px 0 0; color: var(--primary-dark); min-height: 1.2em; }

/* Footer */
.site-footer { background: var(--ink); color: #cfd9d5; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.site-footer .brand { color: #fff; margin-bottom: 10px; }
.site-footer p { color: #9fb0aa; font-size: 0.9rem; }
.footer-maker { margin-top: 12px; font-size: 0.82rem; color: #7d8f88; }
.footer-maker strong { color: #cfd9d5; font-weight: 600; }
.site-footer h4 { color: #fff; font-size: 0.9rem; margin-bottom: 14px; }
.site-footer nav { display: flex; flex-direction: column; gap: 10px; }
.site-footer nav a { color: #9fb0aa; font-size: 0.9rem; }
.site-footer nav a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; font-size: 0.82rem; color: #7d8f88; text-align: center; }

/* WhatsApp floating button */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.35);
  transition: transform .18s ease, box-shadow .18s ease;
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 28px -8px rgba(0,0,0,0.4); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 24px -8px rgba(0,0,0,0.35), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 10px 24px -8px rgba(0,0,0,0.35), 0 0 0 10px rgba(37,211,102,0); }
}
@media (max-width: 680px) {
  .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

/* Reveal animation */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 960px) {
  .hero-grid, .split { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-menu {
    position: fixed; top: 72px; left: 0; right: 0; background: #fff; flex-direction: column;
    padding: 20px 24px; border-bottom: 1px solid var(--border); transform: translateY(-130%); transition: transform .25s ease;
    align-items: flex-start; gap: 16px;
  }
  .nav-menu.is-open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .mock-card { margin: 0; }
  .price-card.featured { transform: none; }
  .form { max-width: none; }
  .form-grid { grid-template-columns: 1fr; }
}
