:root {
  --navy:      #0E3B43;
  --navy-2:    #145A63;
  --teal:      #1B8A7C;
  --teal-dim:  rgba(27,138,124,0.10);
  --coral:     #F2724B;
  --coral-2:   #FF8A5C;
  --coral-dim: rgba(242,114,75,0.12);
  --gold:      #E7B23A;
  --gold-dim:  rgba(231,178,58,0.14);

  --bg:       #FBFAF7;
  --panel:    #FFFFFF;
  --panel-2:  #F3F1EA;
  --line:     #E7E2D6;
  --text:     #22302E;
  --heading:  #0E1F1C;
  --muted:    #5D6B67;
  --faint:    #93A19C;
  --error:    #C0392B;
  --error-dim: rgba(192,57,43,0.08);
  --good:     #1B8A7C;
  --good-dim: rgba(27,138,124,0.10);
  --warn:     #B8860B;
  --warn-dim: rgba(231,178,58,0.14);

  --sans: 'Inter', sans-serif;
  --display: 'Plus Jakarta Sans', sans-serif;
  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow-soft: 0 10px 28px -14px rgba(14,59,67,0.22);
  --shadow-lift: 0 18px 40px -16px rgba(14,59,67,0.32);
}

:root[data-theme="dark"] {
  --bg:       #0B1917;
  --panel:    #122320;
  --panel-2:  #172C28;
  --line:     #24413C;
  --text:     #E4EDE9;
  --heading:  #FFFFFF;
  --muted:    #9FB3AD;
  --faint:    #6C8781;
  --teal-dim: rgba(45,178,158,0.18);
  --coral-dim: rgba(255,138,92,0.18);
  --gold-dim: rgba(231,178,58,0.18);
  --shadow-soft: 0 10px 28px -14px rgba(0,0,0,0.55);
  --shadow-lift: 0 18px 40px -16px rgba(0,0,0,0.65);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1, h2, h3, .display { font-family: var(--display); color: var(--heading); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
::selection { background: var(--teal-dim); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------------------------------------------------------------- NAV */
header.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 18px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 19px; color: var(--heading); }
.brand-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 10px; font-size: 15px;
  background: linear-gradient(135deg, var(--navy), var(--teal)); color: #fff;
}
.brand-accent { color: var(--coral); }
.nav-links { display: flex; align-items: center; gap: 18px; font-size: 14.5px; font-weight: 500; }
.nav-links a.navlink { color: var(--muted); transition: color .15s; white-space: nowrap; }
.nav-links a.navlink:hover { color: var(--heading); }
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; margin-top: 10px; min-width: 240px;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift); padding: 8px; display: none; flex-direction: column; gap: 2px;
}
.nav-dropdown:hover .dropdown-menu { display: flex; }
.dropdown-menu a { padding: 10px 12px; border-radius: 8px; font-size: 14px; color: var(--text); display: flex; gap: 8px; align-items: center; }
.dropdown-menu a:hover { background: var(--panel-2); color: var(--teal); }
.nav-ghost {
  display: inline-flex; align-items: center; padding: 8px 14px; border-radius: 999px;
  border: 1.5px solid var(--line); color: var(--muted); font-size: 13.5px; font-weight: 600;
}
.nav-ghost:hover { color: var(--heading); border-color: var(--teal); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px;
  background: linear-gradient(135deg, var(--coral), var(--coral-2)); color: #fff; font-weight: 700; font-size: 14px;
  box-shadow: var(--shadow-soft); white-space: nowrap; transition: transform .15s, box-shadow .15s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px;
  border-radius: 999px; border: 1.5px solid var(--line); background: var(--panel); color: var(--muted); cursor: pointer;
}
.theme-toggle:hover { color: var(--teal); border-color: var(--teal); }
.theme-toggle svg { width: 15px; height: 15px; }
.theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: block; }
.nav-burger { display: none; }
.nav-mobile { display: none; flex-direction: column; gap: 2px; padding: 10px 24px 16px; border-top: 1px solid var(--line); background: var(--bg); }
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 12px 4px; color: var(--text); font-weight: 600; border-bottom: 1px solid var(--line); }
@media (max-width: 940px) {
  .nav-links-desktop { display: none; }
  .nav-burger { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px; border: 1.5px solid var(--line); background: var(--panel); cursor: pointer; }
}

/* ---------------------------------------------------------------- HERO */
.hero { padding: 64px 0 56px; position: relative; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .hero .wrap { grid-template-columns: 1fr; } }
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px; font-family: var(--display); font-size: 12px;
  font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--teal);
  background: var(--teal-dim); border-radius: 999px; padding: 6px 14px; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 800; letter-spacing: -.02em; line-height: 1.12; margin-bottom: 18px; }
.hero .lead { font-size: 16.5px; color: var(--muted); max-width: 56ch; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 30px; margin-top: 36px; flex-wrap: wrap; }
.hero-stats strong { display: block; font-family: var(--display); font-size: 22px; color: var(--heading); }
.hero-stats span { font-size: 12.5px; color: var(--muted); }
.hero-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-lift); }
.hero-card h3 { font-size: 17px; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.hero-card .tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.tag { font-size: 12.5px; font-weight: 600; padding: 6px 12px; border-radius: 999px; background: var(--panel-2); color: var(--muted); border: 1px solid var(--line); }

/* ---------------------------------------------------------------- BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 24px;
  border-radius: 999px; border: none; background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff; font-family: var(--sans); font-weight: 700; font-size: 14.5px; cursor: pointer;
  box-shadow: var(--shadow-soft); transition: transform .15s, box-shadow .15s;
}
.btn:hover:not(:disabled) { transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.btn-accent { background: linear-gradient(135deg, var(--coral), var(--coral-2)); }
.btn-outline { background: transparent; color: var(--heading); border: 1.5px solid var(--line); box-shadow: none; }
.btn-outline:hover:not(:disabled) { border-color: var(--teal); color: var(--teal); transform: none; box-shadow: none; }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 16px 30px; font-size: 15.5px; }

/* ---------------------------------------------------------------- SECTIONS / CARDS */
.section { padding: 64px 0; }
.section.bg-light { background: var(--panel-2); }
.section.bg-white { background: var(--bg); }
.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-head h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 15px; }
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-soft); }
.card-icon {
  width: 46px; height: 46px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--teal-dim); color: var(--teal); font-size: 19px; margin-bottom: 16px;
}
.card h3 { font-size: 17px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.card-link { font-weight: 700; font-size: 13.5px; color: var(--teal); display: inline-flex; align-items: center; gap: 6px; }

.check-list li { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; font-size: 14.5px; color: var(--text); }
.check-list i { color: var(--teal); margin-top: 3px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; position: relative; }
.step::before {
  counter-increment: step; content: counter(step); font-family: var(--display); font-weight: 800; font-size: 13px;
  width: 30px; height: 30px; border-radius: 999px; background: var(--navy); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.step h3 { font-size: 15.5px; margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--muted); }

.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split-visual {
  aspect-ratio: 4/3; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.9); font-size: 64px;
}

.testimonial { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; }
.testimonial .stars { color: var(--gold); margin-bottom: 12px; font-size: 13px; }
.testimonial p { font-size: 14.5px; color: var(--text); margin-bottom: 16px; }
.testimonial .who { display: flex; align-items: center; gap: 10px; }
.avatar { width: 36px; height: 36px; border-radius: 999px; background: var(--teal-dim); color: var(--teal); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.testimonial .who span { font-size: 12.5px; color: var(--muted); display: block; }

.blog-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.blog-thumb { aspect-ratio: 16/9; background-size: cover; background-position: center; position: relative; }
.blog-cat { position: absolute; top: 12px; left: 12px; background: var(--coral); color: #fff; font-size: 11.5px; font-weight: 700; padding: 5px 10px; border-radius: 999px; }
.blog-body { padding: 18px; }
.blog-body h3 { font-size: 15.5px; margin: 8px 0 12px; }
.blog-meta { font-size: 12px; color: var(--faint); }

.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--teal)); border-radius: var(--radius-lg); padding: 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; color: #fff;
}
.cta-banner h2 { color: #fff; font-size: 24px; margin-bottom: 6px; }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 14.5px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------------------------------------------------------------- PAGE HEADER */
.page-header { padding: 40px 0 20px; }
.breadcrumb { font-size: 13px; color: var(--faint); margin-bottom: 14px; }
.page-header h1 { font-size: clamp(26px, 3.6vw, 36px); margin-bottom: 10px; }
.page-header p { color: var(--muted); max-width: 60ch; }

/* ---------------------------------------------------------------- FORMS */
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: var(--heading); }
.form-control, input[type=text], input[type=email], input[type=tel], input[type=password], input[type=date], input[type=number], textarea, select {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-md); border: 1.5px solid var(--line);
  background: var(--panel); color: var(--text); font-family: var(--sans); font-size: 14.5px;
}
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--teal); }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--muted); }
.checkbox-row input { width: auto; margin-top: 3px; }
.helptext { font-size: 12.5px; color: var(--faint); margin-top: 5px; }
.errorlist { list-style: none; color: var(--error); font-size: 13px; margin-top: 5px; }
form p { margin-bottom: 16px; }

/* ---------------------------------------------------------------- NOTICES */
.notice { border-radius: var(--radius-md); padding: 14px 18px; font-size: 13.5px; border: 1.5px solid var(--line); background: var(--panel-2); color: var(--muted); margin-bottom: 20px; }
.notice.warn { border-color: var(--gold); background: var(--warn-dim); color: #8a6d0a; }
.notice.bad { border-color: var(--error); background: var(--error-dim); color: var(--error); }
.notice.good { border-color: var(--teal); background: var(--good-dim); color: var(--teal); }
:root[data-theme="dark"] .notice.warn { color: var(--gold); }

/* ---------------------------------------------------------------- WIZARD / CHECKLIST */
.checklist-item { display: flex; gap: 14px; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--panel); margin-bottom: 12px; }
.checklist-item.done { border-color: var(--teal); background: var(--good-dim); }
.checklist-item input[type=checkbox] { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--teal); }
.checklist-item .ci-title { font-weight: 700; font-size: 14.5px; margin-bottom: 4px; }
.checklist-item .ci-desc { font-size: 13.5px; color: var(--muted); }
.checklist-item .ci-badge { font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; background: var(--coral-dim); color: var(--coral); margin-left: 8px; }
.checklist-item .ci-actions { margin-top: 10px; display: flex; gap: 10px; flex-wrap: wrap; }

.chat-box { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--panel); padding: 18px; max-height: 380px; overflow-y: auto; margin-bottom: 14px; }
.chat-msg { padding: 10px 14px; border-radius: var(--radius-md); margin-bottom: 10px; font-size: 14px; max-width: 85%; }
.chat-msg.user { background: var(--teal-dim); margin-left: auto; }
.chat-msg.model { background: var(--panel-2); }

/* ---------------------------------------------------------------- DASHBOARD */
.dash-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.dash-table { width: 100%; border-collapse: collapse; }
.dash-table th, .dash-table td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--line); font-size: 13.5px; }
.dash-table th { color: var(--faint); font-weight: 700; text-transform: uppercase; font-size: 11.5px; letter-spacing: .04em; }
.status-pill { display: inline-flex; padding: 4px 11px; border-radius: 999px; font-size: 11.5px; font-weight: 700; background: var(--panel-2); color: var(--muted); }
.status-pill.active, .status-pill.paid, .status-pill.ready { background: var(--good-dim); color: var(--teal); }
.status-pill.pending, .status-pill.draft { background: var(--warn-dim); color: var(--gold); }
.status-pill.cancelled, .status-pill.failed { background: var(--error-dim); color: var(--error); }

/* ---------------------------------------------------------------- PRICING */
.price-card { text-align: center; }
.price-card .price { font-family: var(--display); font-size: 34px; font-weight: 800; margin: 10px 0; }
.price-card .price span { font-size: 14px; color: var(--muted); font-weight: 500; }

/* ---------------------------------------------------------------- FAQ */
.faq-cat { margin-bottom: 32px; }
.faq-cat h3 { font-size: 16px; margin-bottom: 14px; color: var(--teal); }
.faq-item { border-bottom: 1px solid var(--line); padding: 16px 0; }
.faq-item summary { cursor: pointer; font-weight: 700; font-size: 14.5px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 20px; color: var(--faint); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin-top: 10px; font-size: 14px; color: var(--muted); }

/* ---------------------------------------------------------------- ARTICLE / LEGAL */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { font-size: 19px; margin: 28px 0 10px; }
.article-body h3 { font-size: 16px; margin: 20px 0 8px; }
.article-body p, .article-body li { color: var(--text); font-size: 14.5px; margin-bottom: 12px; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 14px; }
.article-body .updated-note { font-size: 12.5px; color: var(--faint); margin-bottom: 30px; }

/* ---------------------------------------------------------------- FOOTER */
footer.site-footer { border-top: 1px solid var(--line); padding: 48px 0 26px; font-size: 13px; color: var(--faint); background: var(--panel-2); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 30px; margin-bottom: 30px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 800; color: var(--heading); margin-bottom: 10px; font-size: 16px; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: var(--heading); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; }
.footer-col a { display: block; color: var(--muted); padding: 5px 0; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 22px; border-top: 1px solid var(--line); }

/* ---------------------------------------------------------------- COOKIE BANNER */
#cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 200; max-width: 560px; margin: 0 auto;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lift);
  padding: 20px 22px; display: none;
}
#cookie-banner.visible { display: flex; gap: 16px; align-items: flex-start; flex-wrap: wrap; }
#cookie-banner p { font-size: 13px; color: var(--muted); flex: 1; min-width: 220px; }
#cookie-banner a { color: var(--teal); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }

/* ---------------------------------------------------------------- WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 150; width: 54px; height: 54px; border-radius: 999px;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 24px;
  box-shadow: var(--shadow-lift);
}
