/* ==========================================================================
   Landing Page (gb_landing) — dark navy + green WhatsApp accent
   ========================================================================== */

.gbl {
  --gbl-dark:       #1a1f2e;
  --gbl-dark-soft:  #242a3a;
  --gbl-green:      #25d366;
  --gbl-green-600:  #1fb855;
  --gbl-green-soft: rgba(37, 211, 102, .12);
  --gbl-bg:         #f4f5f7;
  --gbl-card:       #ffffff;
  --gbl-text:       #1a1f2e;
  --gbl-muted:      #6b7280;
  --gbl-border:     #e5e7eb;
  --gbl-radius:     12px;
  --gbl-radius-sm:  8px;
  --gbl-shadow:     0 1px 4px rgba(0, 0, 0, .08);
  --gbl-shadow-lg:  0 10px 30px rgba(26, 31, 46, .12);

  font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gbl-text);
  line-height: 1.55;
  font-size: 15px;
  background: var(--gbl-bg);
}
.gbl *, .gbl *::before, .gbl *::after { box-sizing: border-box; }
.gbl a { text-decoration: none; color: inherit; }
.gbl h1, .gbl h2, .gbl h3, .gbl h4 { margin: 0; color: var(--gbl-text); letter-spacing: -.01em; }
.gbl p { margin: 0; }

.gbl-container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.gbl-container-narrow { max-width: 780px; }

/* Break full-width out of themed content wrappers */
.gbl-topbar,
.gbl-hero,
.gbl-section,
.gbl-cta,
.gbl-footer {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* -------- Topbar -------- */
.gbl-topbar {
  background: var(--gbl-dark);
  color: #fff;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.gbl-topbar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.gbl-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.gbl-brand-mark {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--gbl-green);
  color: #fff;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, .35);
  flex-shrink: 0;
}
.gbl-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.gbl-brand-text strong { font-size: 15px; font-weight: 700; color: #fff; }
.gbl-brand-text small { font-size: 11px; color: rgba(255,255,255,.55); letter-spacing: .02em; }

.gbl-nav { display: flex; gap: 28px; margin: 0 auto; }
.gbl-nav a {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 500;
  transition: color .15s ease;
}
.gbl-nav a:hover { color: var(--gbl-green); }

.gbl-nav-actions { display: flex; gap: 10px; align-items: center; }
.gbl-menu-toggle { display: none; background: transparent; border: 0; color: #fff; font-size: 22px; cursor: pointer; }

/* -------- Buttons -------- */
.gbl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--gbl-radius-sm);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .15s ease;
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
  line-height: 1.2;
}
.gbl-btn-primary { background: var(--gbl-green); color: #fff; border-color: var(--gbl-green); }
.gbl-btn-primary:hover { background: var(--gbl-green-600); border-color: var(--gbl-green-600); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 18px rgba(37, 211, 102, .28); }
.gbl-btn-ghost { background: transparent; color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.18); }
.gbl-btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.3); color: #fff; }
.gbl-btn-ghost-dark { background: transparent; color: var(--gbl-text); border-color: var(--gbl-border); }
.gbl-btn-ghost-dark:hover { border-color: var(--gbl-dark); }
.gbl-btn-lg { padding: 13px 24px; font-size: 15px; }
.gbl-btn-block { display: flex; width: 100%; }

/* -------- Hero -------- */
.gbl-hero {
  background: linear-gradient(135deg, #1a1f2e 0%, #242a3a 100%);
  color: #fff;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.gbl-hero::before {
  content: "";
  position: absolute;
  inset: -200px auto auto -200px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(37, 211, 102, .18) 0%, transparent 70%);
  pointer-events: none;
}
.gbl-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.gbl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--gbl-green-soft);
  color: var(--gbl-green);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 18px;
}
.gbl-hero-title {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.gbl-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 28px;
}
.gbl-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.gbl-hero-actions .gbl-btn-ghost-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.25); }
.gbl-hero-actions .gbl-btn-ghost-dark:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }

.gbl-hero-meta { display: flex; flex-wrap: wrap; gap: 36px; }
.gbl-hero-meta-item { display: flex; flex-direction: column; }
.gbl-hero-meta-item strong { font-size: 24px; font-weight: 700; color: #fff; }
.gbl-hero-meta-item span { font-size: 12.5px; color: rgba(255,255,255,.55); letter-spacing: .02em; }

.gbl-hero-card { display: flex; justify-content: center; }
.gbl-mock {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  transform: rotate(-1.5deg);
  transition: transform .3s ease;
}
.gbl-mock:hover { transform: rotate(0deg); }
.gbl-mock-head { display: flex; gap: 6px; padding: 12px 14px; background: #f1f2f5; border-bottom: 1px solid #e5e7eb; }
.gbl-mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.gbl-mock-body { padding: 18px 20px 22px; }
.gbl-mock-title { font-size: 13px; font-weight: 700; color: var(--gbl-text); margin-bottom: 14px; letter-spacing: .01em; text-transform: uppercase; }
.gbl-mock-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 14px;
}
.gbl-mock-row:last-child { border-bottom: 0; }
.gbl-mock-pos {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: var(--gbl-green-soft);
  color: var(--gbl-green);
  font-weight: 700;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.gbl-mock-team { flex: 1; font-weight: 500; }
.gbl-mock-pts { font-weight: 700; font-size: 13px; color: var(--gbl-text); }

/* -------- Sections -------- */
.gbl-section { padding: 80px 0; background: var(--gbl-bg); }
.gbl-section-alt { background: var(--gbl-bg); }
.gbl-section-head { text-align: center; margin-bottom: 48px; }
.gbl-section-head h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 700; margin-bottom: 10px; }
.gbl-section-head p { color: var(--gbl-muted); font-size: 16px; max-width: 580px; margin: 0 auto; }

/* -------- Features grid -------- */
.gbl-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gbl-feature {
  background: var(--gbl-card);
  border: 1px solid var(--gbl-border);
  border-radius: var(--gbl-radius);
  padding: 28px;
  box-shadow: var(--gbl-shadow);
  transition: all .2s ease;
}
.gbl-feature:hover { transform: translateY(-3px); box-shadow: var(--gbl-shadow-lg); border-color: var(--gbl-green); }
.gbl-feature-ico {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--gbl-green-soft);
  color: var(--gbl-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.gbl-feature h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.gbl-feature p { color: var(--gbl-muted); font-size: 14px; line-height: 1.55; }

/* -------- Plans -------- */
.gbl-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}
.gbl-plan {
  background: var(--gbl-card);
  border: 1px solid var(--gbl-border);
  border-radius: var(--gbl-radius);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all .2s ease;
  box-shadow: var(--gbl-shadow);
}
.gbl-plan:hover { transform: translateY(-4px); box-shadow: var(--gbl-shadow-lg); }
.gbl-plan.is-featured {
  border-color: var(--gbl-green);
  border-width: 2px;
  background: linear-gradient(180deg, rgba(37, 211, 102, .04) 0%, #fff 50%);
}
.gbl-plan-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gbl-green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, .35);
}
.gbl-plan-name { font-size: 20px; font-weight: 700; }
.gbl-plan-desc { color: var(--gbl-muted); font-size: 13.5px; margin: -8px 0 0; }
.gbl-plan-desc p { margin: 0 0 10px; }
.gbl-plan-desc p:last-child { margin-bottom: 0; }
.gbl-plan-desc h3, .gbl-plan-desc h4 { font-size: 14px; font-weight: 700; color: var(--gbl-text); margin: 10px 0 6px; }
.gbl-plan-desc strong { color: var(--gbl-text); }
.gbl-plan-desc ul, .gbl-plan-desc ol { margin: 8px 0; padding-left: 18px; }
.gbl-plan-desc li { margin-bottom: 4px; font-size: 13.5px; }
.gbl-plan-desc a { color: var(--gbl-green); text-decoration: underline; }
.gbl-plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 12px 0;
  border-top: 1px solid var(--gbl-border);
  border-bottom: 1px solid var(--gbl-border);
}
.gbl-plan-currency { font-size: 16px; font-weight: 600; color: var(--gbl-muted); }
.gbl-plan-value { font-size: 36px; font-weight: 800; color: var(--gbl-text); letter-spacing: -.02em; }
.gbl-plan-period { font-size: 13px; color: var(--gbl-muted); margin-left: 6px; }
.gbl-plan-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.gbl-plan-features li {
  font-size: 13.5px;
  color: var(--gbl-text);
  padding-left: 22px;
  position: relative;
}
.gbl-plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gbl-green);
  font-weight: 700;
}

.gbl-empty { text-align: center; color: var(--gbl-muted); padding: 40px 20px; }

/* -------- FAQ (flat, minimal) -------- */
.gbl-faq { display: flex; flex-direction: column; border-top: 1px solid var(--gbl-border); }
.gbl-faq-item {
  border-bottom: 1px solid var(--gbl-border);
  background: transparent;
  transition: background .15s ease;
}
.gbl-faq-item[open] { background: transparent; }
.gbl-faq-item summary {
  padding: 22px 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--gbl-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 16px;
  transition: color .15s ease;
}
.gbl-faq-item summary:hover { color: var(--gbl-green); }
.gbl-faq-item summary::-webkit-details-marker { display: none; }
.gbl-faq-chev {
  width: 22px; height: 22px;
  color: var(--gbl-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 400;
  transition: transform .25s ease, color .15s ease;
  flex-shrink: 0;
  line-height: 1;
}
.gbl-faq-item[open] .gbl-faq-chev { transform: rotate(45deg); color: var(--gbl-green); }
.gbl-faq-a { padding: 0 4px 24px; color: var(--gbl-muted); font-size: 15px; line-height: 1.65; max-width: 680px; }

/* -------- CTA -------- */
.gbl-cta {
  background: var(--gbl-dark);
  color: #fff;
  padding: 60px 0;
}
.gbl-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.gbl-cta h2 { color: #fff; font-size: 28px; font-weight: 700; margin-bottom: 6px; }
.gbl-cta p { color: rgba(255,255,255,.68); font-size: 15px; }
.gbl-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.gbl-cta-actions .gbl-btn-ghost-dark { color: #fff; border-color: rgba(255,255,255,.25); }
.gbl-cta-actions .gbl-btn-ghost-dark:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }

/* -------- Footer -------- */
.gbl-footer { background: #12161f; color: rgba(255,255,255,.7); padding: 60px 0 0; }
.gbl-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.gbl-footer-col h4 { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.gbl-footer-col a { display: block; color: rgba(255,255,255,.6); font-size: 14px; margin-bottom: 8px; transition: color .12s ease; }
.gbl-footer-col a:hover { color: var(--gbl-green); }
.gbl-footer-about { font-size: 13.5px; color: rgba(255,255,255,.6); max-width: 340px; margin-top: 14px; line-height: 1.6; }
.gbl-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

/* -------- Responsive -------- */
@media (max-width: 960px) {
  .gbl-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--gbl-dark);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 14px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    margin: 0;
  }
  .gbl-nav.is-open { display: flex; }
  .gbl-menu-toggle { display: inline-flex; margin-left: auto; }
  .gbl-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .gbl-features { grid-template-columns: repeat(2, 1fr); }
  .gbl-footer-inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .gbl-cta-inner { flex-direction: column; text-align: center; align-items: stretch; }
  .gbl-cta-inner > div:first-child { text-align: center; }
}
@media (max-width: 600px) {
  .gbl-section { padding: 56px 0; }
  .gbl-hero { padding: 60px 0 70px; }
  .gbl-features { grid-template-columns: 1fr; }
  .gbl-footer-inner { grid-template-columns: 1fr; }
  .gbl-nav-actions .gbl-btn-ghost { display: none; }
}
