:root{
  --gp-primary: #115e59;
  --gp-primary-2: #0f766e;
  --gp-surface: #F7F8FA;
  --gp-card: #FFFFFF;
  --gp-border: rgba(15, 23, 42, 0.10);
  --gp-text: #0F172A;
}

body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--gp-text);
}

.bg-surface{ background: var(--gp-surface); }

.gp-link{ color: rgba(15,23,42,.7); text-decoration: none; }
.gp-link:hover{ color: rgba(15,23,42,1); text-decoration: underline; }

.gp-mark{
  display:inline-flex;align-items:center;justify-content:center;
  width:44px;height:44px;border-radius:14px;
  background: linear-gradient(135deg,var(--gp-primary),var(--gp-primary-2));
  color:#fff;font-weight:800;letter-spacing:.5px;
  box-shadow: 0 10px 25px rgba(37,99,235,.25);
}
.gp-mark--sm{ width:34px;height:34px;border-radius:12px;font-size:.9rem; }

.gp-hero{
  padding: 64px 0 36px;
  background:
    radial-gradient(1200px 600px at 10% 0%, rgba(37,99,235,.20), transparent 60%),
    radial-gradient(1000px 600px at 90% 10%, rgba(30,64,175,.18), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, var(--gp-surface) 100%);
}

.gp-h1{
  font-size: clamp(2.0rem, 3.4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.gp-h2{
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 800;
}

.gp-grad{
  background: linear-gradient(135deg, var(--gp-primary), var(--gp-primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gp-lead{ font-size: 1.08rem; color: rgba(15,23,42,.70); max-width: 56ch; }

.gp-pill{
  background: rgba(15, 23, 42, .04);
  border: 1px solid var(--gp-border);
  border-radius: 999px;
  padding: 8px 12px;
}

.gp-dot{ width:10px;height:10px;border-radius:50%; background: #22C55E; box-shadow:0 0 0 6px rgba(34,197,94,.12); }

.gp-chip{
  display:inline-flex;align-items:center;gap:8px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--gp-border);
  border-radius: 999px;
  font-size: .875rem;
  color: rgba(15,23,42,.78);
}

.gp-preview{
  background: #fff;
  border: 1px solid var(--gp-border);
  border-radius: 18px;
  overflow: hidden;
}
.gp-preview__top{
  display:flex;align-items:center;gap:8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--gp-border);
  background: rgba(15,23,42,.02);
}
.gp-preview__url{
  margin-left: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--gp-border);
  color: rgba(15,23,42,.65);
  font-size: .85rem;
  background: #fff;
  flex: 1;
}
.gp-dotbtn{ width:10px;height:10px;border-radius:50%; display:inline-block; }
.gp-dotbtn--red{ background:#EF4444; }
.gp-dotbtn--yellow{ background:#F59E0B; }
.gp-dotbtn--green{ background:#22C55E; }
.gp-preview__body{ padding: 18px; }

.gp-kpi{
  background: rgba(15,23,42,.02);
  border: 1px solid var(--gp-border);
  border-radius: 16px;
  padding: 14px;
}
.gp-kpi__label{ font-size: .85rem; color: rgba(15,23,42,.65); }
.gp-kpi__value{ font-size: 1.35rem; font-weight: 800; letter-spacing:-.01em; }
.gp-kpi__meta{ font-size: .8rem; color: rgba(15,23,42,.55); }
.gp-up{ color:#16A34A; font-weight:700; }

.gp-mini{
  background:#fff;
  border: 1px solid var(--gp-border);
  border-radius: 16px;
  padding: 14px;
}
.gp-bars{ display:grid; gap:10px; }
.gp-bar{ height:10px;border-radius:999px;background: rgba(37,99,235,.18); position:relative; overflow:hidden; }
.gp-bar::after{ content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(37,99,235,.0), rgba(37,99,235,.45), rgba(37,99,235,.0)); transform: translateX(-40%); animation: gpShimmer 2.4s infinite; }
@keyframes gpShimmer{ 0%{ transform: translateX(-60%);} 100%{ transform: translateX(120%);} }

.gp-card{
  background:#fff;
  border: 1px solid var(--gp-border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(15,23,42,.04);
}
.gp-card__icon{ font-size: 1.3rem; }
.gp-card__title{ font-weight: 800; margin-top: 8px; }
.gp-card__text{ color: rgba(15,23,42,.65); margin-top: 6px; }

.gp-feature{
  background:#fff;
  border: 1px solid var(--gp-border);
  border-radius: 16px;
  padding: 14px;
  color: rgba(15,23,42,.80);
}

.gp-price{
  background:#fff;
  border: 1px solid var(--gp-border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(15,23,42,.04);
}
.gp-price--featured{
  border-color: rgba(37,99,235,.35);
  box-shadow: 0 18px 40px rgba(37,99,235,.12);
  transform: translateY(-4px);
}
.gp-price__tag{ font-weight: 800; }
.gp-price__value{ font-size: 2rem; font-weight: 900; letter-spacing: -.02em; margin-top: 6px; }
.gp-price__value span{ font-size: .9rem; color: rgba(15,23,42,.55); font-weight: 600; }
.gp-list{ margin:0; padding-left: 18px; color: rgba(15,23,42,.72); }
.gp-list li{ margin: 6px 0; }

.gp-cta{
  background: linear-gradient(135deg, rgba(37,99,235,.10), rgba(30,64,175,.08));
  border: 1px solid rgba(37,99,235,.20);
  border-radius: 22px;
  padding: 22px;
}

.gp-acc .accordion-item{ border: 1px solid var(--gp-border); border-radius: 14px; overflow:hidden; }
.gp-acc .accordion-item + .accordion-item{ margin-top: 10px; }
.gp-acc .accordion-button{ font-weight: 700; }

.gp-footer{ background: #fff; border-top: 1px solid var(--gp-border); }


.gp-hero{
  padding: 72px 0 44px;
}
.gp-preview{
  box-shadow: 0 24px 60px rgba(15,23,42,.10);
}
.gp-card, .gp-price, .gp-feature{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.gp-card:hover, .gp-price:hover, .gp-feature:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(15,23,42,.08);
}
