:root {
  --gt-blue: #184a93;
  --gt-teal: #19d0b1;
  --gt-teal-dark: #118f7c;
  --gt-bg-soft: #f3f8fb;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero-gradient {
  background:
    radial-gradient(circle at top left, rgba(25, 208, 177, 0.18), transparent 32%),
    radial-gradient(circle at right center, rgba(24, 74, 147, 0.12), transparent 30%),
    linear-gradient(180deg, #f7fbfd 0%, #eff6fb 100%);
}

.pricing-card {
  border-radius: 1rem;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
  padding: 1.1rem;
  border: 1px solid #dbe7f2;
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #64748b;
  font-weight: 700;
}

.metric {
  margin-top: 0.4rem;
  font-size: 2rem;
  line-height: 1.05;
  color: var(--gt-blue);
  font-weight: 800;
}

.mini-chip,
.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: white;
  border: 1px solid #dbe7f2;
  padding: 0.65rem 0.95rem;
  color: #475569;
  font-weight: 600;
}

.section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gt-teal-dark);
  font-weight: 800;
}

.section-title {
  margin-top: 0.75rem;
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
  color: #0f172a;
}

.section-copy {
  margin-top: 1rem;
  color: #475569;
  font-size: 1.05rem;
}

.feature-card,
.step-card {
  border-radius: 1.5rem;
  background: white;
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.feature-card h3,
.step-card h3 {
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.feature-card p,
.step-card p {
  color: #475569;
}

.included-item {
  position: relative;
  padding-left: 2rem;
}

.included-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gt-teal-dark);
  font-weight: 800;
}

.step-card span {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(25, 208, 177, 0.14);
  color: var(--gt-teal-dark);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-panel {
  border-radius: 2rem;
  background: linear-gradient(135deg, var(--gt-blue) 0%, #10396f 100%);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 18px 40px rgba(24, 74, 147, 0.24);
}

.field-label {
  display: block;
  margin-bottom: 0.55rem;
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 700;
}

.field-input {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid #cbd5e1;
  background: white;
  padding: 0.95rem 1rem;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-input:focus {
  border-color: var(--gt-teal);
  box-shadow: 0 0 0 4px rgba(25, 208, 177, 0.14);
}

textarea.field-input {
  min-height: 132px;
  resize: vertical;
}

.form-step-title {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.hidden {
  display: none;
}

.admin-nav-link {
  display: block;
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.08);
  color: white;
  font-weight: 600;
}

.admin-nav-link:hover {
  background: rgba(255,255,255,0.14);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #ecfeff;
  color: #0f766e;
  border: 1px solid #a5f3fc;
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.detail-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #94a3b8;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.detail-value {
  color: #0f172a;
  font-size: 0.98rem;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .metric {
    font-size: 1.7rem;
  }

  .cta-panel {
    padding: 1.5rem;
  }
}
