:root {
  --gb-primary: #15803d;
  --gb-primary-dark: #166534;
  --gb-accent: #0f766e;
  --gb-accent-soft: #dff7ef;
  --gb-surface: #ffffff;
  --gb-surface-soft: #f7fbf9;
  --gb-border: rgba(15, 23, 42, 0.08);
  --gb-text: #0f172a;
  --gb-muted: #475569;
  --gb-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Arial", sans-serif;
  color: var(--gb-text);
  background:
    radial-gradient(circle at top left, rgba(46, 204, 113, 0.08), transparent 28%),
    linear-gradient(180deg, #f9fffb 0%, #f5f8fc 100%);
}

.gb-chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1050;
}

.gb-chat-fab {
  min-width: 118px;
  height: 58px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gb-primary), #22c55e);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(21, 128, 61, 0.32);
}

.gb-chat-fab i {
  font-size: 1.35rem;
}

.gb-chat-panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: min(360px, calc(100vw - 28px));
  height: min(540px, calc(100vh - 120px));
  display: none;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
}

.gb-chat-widget.open .gb-chat-panel {
  display: grid;
}

.gb-chat-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--gb-primary-dark), #16a34a);
}

.gb-chat-header strong,
.gb-chat-header span {
  display: block;
}

.gb-chat-header span {
  opacity: 0.86;
  font-size: 0.82rem;
}

.gb-chat-header button {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.gb-chat-messages {
  overflow-y: auto;
  padding: 14px;
  background: #f8fafc;
}

.gb-chat-status {
  padding: 16px;
  text-align: center;
  color: var(--gb-muted);
  font-size: 0.92rem;
}

.gb-chat-row {
  display: flex;
  margin-bottom: 10px;
}

.gb-chat-row.mine {
  justify-content: flex-end;
}

.gb-chat-bubble {
  max-width: 78%;
  padding: 10px 12px;
  border-radius: 14px;
  background: #fff;
  color: var(--gb-text);
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow-wrap: anywhere;
}

.gb-chat-row.mine .gb-chat-bubble {
  background: #16a34a;
  color: #fff;
  border-color: #16a34a;
}

.gb-chat-guide {
  width: 88%;
  padding: 13px;
  border: 1px solid rgba(21, 128, 61, 0.2);
  border-radius: 8px;
  background: #fff;
  color: var(--gb-text);
  font-size: 0.88rem;
  line-height: 1.45;
}

.gb-chat-guide p {
  margin: 7px 0 10px;
  color: var(--gb-muted);
}

.gb-chat-guide small {
  display: block;
  margin-top: 10px;
  color: var(--gb-muted);
}

.gb-chat-guide-steps {
  margin: 0;
  padding-left: 22px;
}

.gb-chat-guide-steps li {
  margin-bottom: 12px;
  padding-left: 2px;
}

.gb-chat-guide-steps li:last-child {
  margin-bottom: 0;
}

.gb-chat-guide-steps b,
.gb-chat-guide-steps span {
  display: block;
}

.gb-chat-guide-steps span {
  margin: 3px 0 7px;
  color: var(--gb-muted);
}

.gb-chat-guide-steps > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 6px;
  background: #16a34a;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.gb-chat-guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.gb-chat-guide-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid #16a34a;
  border-radius: 6px;
  color: #15803d;
  font-weight: 700;
  text-decoration: none;
}

.gb-chat-form {
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.gb-chat-form input {
  min-width: 0;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 999px;
  padding: 9px 13px;
  outline: none;
}

.gb-chat-form input:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}

.gb-chat-form button {
  border: 0;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
}

@media (max-width: 575.98px) {
  .gb-chat-widget {
    right: 14px;
    bottom: 14px;
  }

  .gb-chat-panel {
    height: min(520px, calc(100vh - 96px));
  }

  .gb-chat-fab {
    min-width: 104px;
    height: 54px;
    padding: 0 15px;
  }
}

a {
  text-decoration: none;
}

.section-spacing {
  padding: 88px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eaf8f0;
  color: var(--gb-primary-dark);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  font-weight: 800;
  margin-top: 18px;
  margin-bottom: 16px;
}

.section-description {
  max-width: 760px;
  color: var(--gb-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.section-header {
  margin-bottom: 52px;
}

.gb-navbar {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
}

.gb-navbar .nav-link {
  color: var(--gb-text);
  font-weight: 600;
}

.gb-navbar .nav-link:hover,
.gb-navbar .nav-link:focus {
  color: var(--gb-primary);
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gb-primary), #22c55e);
  color: #fff;
  box-shadow: 0 12px 24px rgba(21, 128, 61, 0.2);
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  flex: 0 0 auto;
  box-shadow: 0 10px 20px rgba(21, 128, 61, 0.18);
}

.btn-gbill,
.btn-gbill:hover,
.btn-gbill:focus {
  background: linear-gradient(135deg, var(--gb-primary), #22c55e);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 18px 36px rgba(21, 128, 61, 0.22);
}

.btn-gbill:hover,
.btn-gbill:focus {
  transform: translateY(-1px);
}

.btn-gbill-outline {
  border-width: 2px;
  color: var(--gb-primary-dark);
}

.btn-gbill-outline:hover,
.btn-gbill-outline:focus {
  background: #ecfdf3;
  color: var(--gb-primary-dark);
  border-color: var(--gb-primary-dark);
}

.hero-section {
  padding: 96px 0 72px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(21, 128, 61, 0.12);
  color: var(--gb-primary-dark);
  font-weight: 700;
}

.hero-description {
  color: var(--gb-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 640px;
}

.hero-stats .hero-stat-card,
.trust-card,
.feature-card,
.step-card,
.solution-card,
.benefit-panel,
.quote-card,
.register-form,
.accordion-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--gb-border);
  box-shadow: var(--gb-shadow);
}

.hero-stat-card {
  height: 100%;
  padding: 20px;
  border-radius: 24px;
}

.hero-stat-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
}

.hero-stat-card span {
  color: var(--gb-muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
}

.hero-mockup-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin-bottom: 22px;
}

.hero-mockup-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.hero-mockup-card-primary {
  background: linear-gradient(180deg, #ffffff, #effbf3);
}

.hero-mockup-card-secondary {
  background: linear-gradient(180deg, #ffffff, #f4f7ff);
}

.mockup-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--gb-primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.hero-mockup-image {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.hero-window {
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, #fefefe, #f2f8f4);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.16);
}

.hero-window-top {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  background: #eef7f1;
}

.hero-window-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #bbf7d0;
}

.hero-dashboard {
  display: grid;
  grid-template-columns: 84px 1fr;
  min-height: 480px;
}

.register-helper,
.register-note {
  font-size: 0.92rem;
}

.register-helper {
  color: rgba(255, 255, 255, 0.72);
}

.register-note {
  color: rgb(43 41 41 / 78%);
  line-height: 1.6;
}

.register-form .invalid-feedback {
  font-size: 0.88rem;
}

.register-alert {
  margin-bottom: 1rem;
  border-radius: 18px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.trial-modal-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(21, 128, 61, 0.14), rgba(34, 197, 94, 0.2));
  color: var(--gb-primary);
  font-size: 2rem;
}

.hero-sidebar {
  background: linear-gradient(180deg, #0f172a, #1f2937);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.hero-menu {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
}

.hero-menu.active {
  background: linear-gradient(135deg, var(--gb-primary), #22c55e);
  color: #fff;
}

.hero-content {
  padding: 24px;
}

.hero-panel {
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.hero-panel-lg {
  min-height: 305px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eaf8f0;
  color: var(--gb-primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-order-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.hero-order-card:last-child {
  border-bottom: 0;
}

.hero-order-card p {
  color: var(--gb-muted);
}

.hero-metric {
  margin-top: 10px;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gb-primary-dark);
}

.trust-strip {
  padding-top: 24px;
}

.trust-card,
.feature-card,
.step-card {
  height: 100%;
  border-radius: 28px;
  padding: 28px;
}

.trust-card i,
.feature-icon,
.benefit-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trust-card i {
  font-size: 1.6rem;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #ecfdf3;
  color: var(--gb-primary-dark);
  margin-bottom: 18px;
}

.trust-card h3,
.feature-card h3,
.step-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.trust-card p,
.feature-card p,
.step-card p,
.benefit-item p,
.quote-author span {
  color: var(--gb-muted);
  line-height: 1.75;
  margin-bottom: 0;
}

.problem-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.problem-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--gb-text);
  font-weight: 600;
}

.problem-list i {
  color: #ef4444;
  margin-top: 3px;
}

.solution-card,
.benefit-panel,
.quote-card,
.register-form {
  border-radius: 32px;
  padding: 32px;
}

.solution-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 18px 0 0;
}

.mini-feature {
  display: flex;
  gap: 14px;
  height: 100%;
  padding: 18px;
  border-radius: 22px;
  background: #f9fffb;
  border: 1px solid rgba(21, 128, 61, 0.09);
}

.mini-feature i {
  color: var(--gb-primary);
  font-size: 1.3rem;
}

.mini-feature strong,
.benefit-item strong {
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
}

.features-section {
  background: linear-gradient(180deg, rgba(219, 245, 231, 0.35), transparent);
}

.feature-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--gb-primary), #34d399);
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.step-number {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #eaf8f0;
  color: var(--gb-primary-dark);
  font-weight: 800;
  margin-bottom: 18px;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 0;
}

.process-flow-step {
  position: relative;
  min-height: 100%;
  padding: 30px 42px 30px 30px;
  color: #fff;
  box-shadow: var(--gb-shadow);
}

.process-flow-step:first-child {
  border-radius: 28px 0 0 28px;
}

.process-flow-step:last-child {
  border-radius: 0 28px 28px 0;
  padding-right: 30px;
}

.process-flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  width: 60px;
  height: 100%;
  background: inherit;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 100%, 50% 50%, 0 0);
  z-index: 2;
}

.process-flow-step:not(:first-child) {
  padding-left: 58px;
}

.process-flow-step-catalog {
  background: linear-gradient(135deg, #15803d, #22c55e);
}

.process-flow-step-product {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.process-flow-step-order {
  background: linear-gradient(135deg, #1d4ed8, #38bdf8);
}

.process-flow-index {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.process-flow-step h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.process-flow-step p {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.75;
  margin-bottom: 0;
}

.benefit-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-item i {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  font-size: 1.25rem;
  color: #fff;
  background: linear-gradient(135deg, var(--gb-accent), #14b8a6);
}

.quote-card {
  background: linear-gradient(135deg, #0f172a, #134e4a);
  color: #fff;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-text {
  font-size: 1.4rem;
  line-height: 1.7;
  font-weight: 600;
}

.quote-author {
  margin-top: 24px;
}

.quote-author strong {
  display: block;
  font-size: 1rem;
}

.download-section {
  background: linear-gradient(180deg, rgba(226, 232, 240, 0.16), transparent);
}

.download-card {
  height: 100%;
  padding: 32px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--gb-border);
  box-shadow: var(--gb-shadow);
}

.download-card-windows {
  background: linear-gradient(180deg, #ffffff, #f1fbf5);
}

.download-card-mobile {
  text-align: center;
}

.download-icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--gb-primary), #22c55e);
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.download-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.download-card p {
  color: var(--gb-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.download-qr {
  width: 100%;
  max-width: 220px;
  display: block;
  margin: 0 auto;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  padding: 12px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.pricing-section {
  background: linear-gradient(180deg, rgba(240, 253, 244, 0.78), transparent);
}

.pricing-card {
  height: 100%;
  padding: 32px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--gb-border);
  box-shadow: var(--gb-shadow);
}

.pricing-card-featured {
  background: linear-gradient(180deg, #ffffff, #f2fff7);
  border: 1px solid rgba(21, 128, 61, 0.22);
  transform: translateY(-8px);
}

.pricing-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ecfdf3;
  color: var(--gb-primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.pricing-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.pricing-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gb-primary-dark);
  margin-bottom: 14px;
}

.pricing-description {
  color: var(--gb-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 12px;
}

.pricing-list li {
  position: relative;
  padding-left: 28px;
  color: var(--gb-text);
  font-weight: 600;
}

.pricing-list li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gb-primary);
}

.cta-section {
  padding-top: 32px;
}

.cta-wrapper {
  border-radius: 36px;
  padding: 44px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(135deg, var(--gb-primary-dark), var(--gb-accent));
  box-shadow: 0 32px 80px rgba(21, 128, 61, 0.24);
}

.cta-copy-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-copy-text {
  max-width: 520px;
  line-height: 1.8;
}

.trial-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.trial-benefits {
  display: grid;
  gap: 18px;
}

.trial-benefit-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}

.trial-benefit-item i {
  color: #bbf7d0;
  font-size: 1.1rem;
  margin-top: 3px;
}

.trial-benefit-item strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
  font-size: 1rem;
}

.trial-benefit-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.register-form {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 32px;
  padding: 24px;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.18);
}

.register-form-header {
  margin-bottom: 18px;
}

.register-form-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: #ecfdf3;
  color: var(--gb-primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.register-form-title {
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--gb-text);
}

.register-form-subtitle {
  color: var(--gb-muted);
  line-height: 1.7;
}

.register-form .form-label {
  font-weight: 700;
  color: var(--gb-text);
  margin-bottom: 0.45rem;
}

.register-form .form-control,
.register-form .form-select {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 0.78rem 0.95rem;
  box-shadow: none;
}

.register-form .form-text {
  margin-top: 0.35rem;
  font-size: 0.82rem;
}

.register-form .form-control:focus,
.register-form .form-select:focus {
  border-color: rgba(21, 128, 61, 0.45);
  box-shadow: 0 0 0 0.22rem rgba(34, 197, 94, 0.12);
}

.recaptcha-block {
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, rgba(248, 252, 250, 0.96), rgba(255, 255, 255, 0.98));
}

.recaptcha-block .g-recaptcha {
  display: inline-block;
  transform-origin: left top;
}

.faq-accordion .accordion-item {
  overflow: hidden;
  border-radius: 24px;
  margin-bottom: 16px;
}

.faq-accordion .accordion-button {
  font-weight: 700;
  padding: 22px 24px;
  background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--gb-primary-dark);
  background: #f1fbf5;
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  color: var(--gb-muted);
  line-height: 1.75;
  padding: 0 24px 24px;
}

.site-footer {
  padding: 28px 0 48px;
  color: var(--gb-muted);
}

.zalo-chat-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1080;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0068ff, #1a8cff);
  color: #fff;
  box-shadow: 0 20px 50px rgba(0, 104, 255, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.zalo-chat-widget:hover,
.zalo-chat-widget:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(0, 104, 255, 0.34);
}

.zalo-chat-widget__icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.zalo-chat-widget__content {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.zalo-chat-widget__content strong {
  font-size: 0.98rem;
}

.zalo-chat-widget__content small {
  margin-top: 4px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 72px;
  }

  .section-spacing {
    padding: 72px 0;
  }

  .hero-dashboard {
    grid-template-columns: 72px 1fr;
  }

  .process-flow {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-flow-step,
  .process-flow-step:first-child,
  .process-flow-step:last-child {
    padding: 26px;
    border-radius: 28px;
  }

  .process-flow-step:not(:first-child) {
    padding-left: 26px;
  }

  .process-flow-step:not(:last-child)::after {
    display: none;
  }

  .zalo-chat-widget {
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 767.98px) {
  .section-spacing {
    padding: 60px 0;
  }

  .hero-window {
    border-radius: 26px;
  }

  .hero-mockup-grid {
    grid-template-columns: 1fr;
  }

  .hero-mockup-card {
    border-radius: 22px;
  }

  .pricing-card-featured {
    transform: none;
  }

  .hero-dashboard {
    grid-template-columns: 1fr;
  }

  .hero-sidebar {
    flex-direction: row;
    justify-content: center;
  }

  .solution-card,
  .benefit-panel,
  .quote-card,
  .cta-wrapper {
    padding: 24px;
    border-radius: 28px;
  }

  .register-form {
    padding: 20px;
    border-radius: 24px;
  }

  .register-form-title {
    font-size: 1.3rem;
  }

  .quote-text {
    font-size: 1.18rem;
  }

  .recaptcha-block .g-recaptcha {
    transform: scale(0.92);
  }

  .zalo-chat-widget {
    padding-right: 12px;
  }

  .zalo-chat-widget__content {
    display: none;
  }
}
