/* ================================
   GBC – Professional Hero Redesign
   ================================ */

.gbc-main .hero {
  padding: 110px 0 90px;
  background: linear-gradient(
    180deg,
    #f8fafc 0%,
    #ffffff 100%
  );
  border-bottom: 1px solid #e5e7eb;
  
}

/* Grid */
.gbc-main .hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

/* REMOVE card look */
.gbc-main .hero-card {
  background: transparent;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

/* ================================
   Left content
   ================================ */

.gbc-main .hero-left h1 {
  font-size: clamp(38px, 4.5vw, 54px);
  line-height: 1.1;
  margin: 18px 0 18px;
  color: #0f172a;
  max-width: 12ch;
}

.gbc-main .hero-left .subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
  max-width: 560px;
}

/* Pill */
.gbc-main .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4338ca;
}

.gbc-main .pill b {
  color: #312e81;
}

/* CTA */
.gbc-main .cta-row {
  display: flex;
  gap: 16px;
  margin: 34px 0 18px;
}

.gbc-main .btn.primary {
  background: linear-gradient(135deg, #4f46e5, #22c55e);
  color: #ffffff;
  padding: 14px 22px;
  font-size: 15px;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(79,70,229,.35);
}

.gbc-main .btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(79,70,229,.45);
}

.gbc-main .btn.link {
  background: transparent;
  color: #4338ca;
  font-weight: 600;
  padding: 14px 10px;
}

.gbc-main .fineprint {
  font-size: 13px;
  color: #64748b;
}

/* ================================
   Right preview (anchored, elegant)
   ================================ */

.gbc-main .hero-right {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.08);
  border: 1px solid #e5e7eb;
}

.gbc-main .mini-title {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 12px;
}

/* Badge */
.gbc-main .badge {
  background: #fde68a;
  color: #92400e;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

/* Preview content */
.gbc-main .card-preview {
  background: #f8fafc;
  border-radius: 16px;
  padding: 22px;
  box-shadow: inset 0 0 0 1px #e5e7eb;
}

/* Avatar */
.gbc-main .avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4f46e5, #22c55e);
}

/* Ghost button */
.gbc-main .ghost-btn {
  margin-top: 10px;
  text-align: center;
  padding: 11px;
  border-radius: 12px;
  border: 1px dashed #c7d2fe;
  color: #4338ca;
  font-size: 13px;
  font-weight: 600;
}

/* ================================
   Mobile
   ================================ */

@media (max-width: 900px) {
  .gbc-main .hero {
    padding: 80px 0 60px;
  }

  .gbc-main .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gbc-main .hero-left h1 {
    max-width: 100%;
  }
}


/* ================================
   GlobalBusinessCard – Content Sections
   ================================ */

.gbc-main section {
  padding: 40px 0;
}

/* Layout helpers */
.gbc-main .wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.gbc-main .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Box */
.gbc-main .box {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

/* Headings */
.gbc-main h2 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.3;
  color: #0f172a;
}

/* Paragraphs */
.gbc-main p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}

/* ================================
   Bullets – What you get
   ================================ */

.gbc-main .bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.gbc-main .bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #334155;
}

.gbc-main .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #e6f9f1;
  color: #16a34a;
  font-weight: 700;
  flex-shrink: 0;
}

/* ================================
   Steps – How it works
   ================================ */

.gbc-main .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.gbc-main .step {
  position: relative;
  background: #f8fafc;
  border-radius: 12px;
  padding: 22px;
}

.gbc-main .step b {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
  color: #0f172a;
}

.gbc-main .step small {
  font-size: 14px;
  color: #64748b;
}

.gbc-main .num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 36px;
  font-weight: 800;
  color: rgba(15,23,42,0.08);
}

/* ================================
   Pricing table
   ================================ */

.gbc-main .table-wrap {
  margin-top: 18px;
  overflow-x: auto;
}

.gbc-main table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.gbc-main th,
.gbc-main td {
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  font-size: 14px;
}

.gbc-main th {
  background: #f8fafc;
  font-weight: 600;
  color: #0f172a;
}

.gbc-main td {
  color: #475569;
}

/* Tags */
.gbc-main .tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: #e5e7eb;
  color: #334155;
}

.gbc-main .tag.good {
  background: #dcfce7;
  color: #15803d;
}

.gbc-main .tag.pro {
  background: #ede9fe;
  color: #6d28d9;
}

/* Fineprint */
.gbc-main .fineprint {
  font-size: 13px;
  color: #64748b;
}

/* ================================
   Use cases
   ================================ */

.gbc-main .usecases {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.gbc-main .usecases a {
  padding: 10px 14px;
  border-radius: 999px;
  background: #f1f5f9;
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  text-decoration: none;
  transition: background .15s ease;
}

.gbc-main .usecases a:hover {
  background: #e2e8f0;
}

/* ================================
   CTA Footer
   ================================ */

.gbc-main .cta-footer {
  padding: 60px 0;
}

.gbc-main .cta-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px;
  border-radius: 18px;
  background: linear-gradient(135deg, #6366f1, #22c55e);
  color: #ffffff;
}

.gbc-main .cta-panel h2 {
  margin: 0 0 6px;
  color: #ffffff;
}

.gbc-main .cta-panel p {
  color: rgba(255,255,255,0.9);
}

/* ================================
   Responsive
   ================================ */

@media (max-width: 900px) {
  .gbc-main .grid {
    grid-template-columns: 1fr;
  }

  .gbc-main .steps {
    grid-template-columns: 1fr;
  }

  .gbc-main .cta-panel {
    text-align: center;
    justify-content: center;
  }
}


