/* business.css */
/* RESETS & BASE */
.business-page {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #ffffff;
  background-color: #0f172a;
}

/* HERO CONTAINER */
.business-hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 80px); /* keeps hero tall but respects your site header */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 20px 0 10%;
  overflow: hidden;
}

/* BACKGROUND LAYER */
.business-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(15, 23, 42, 0.90) 0%, rgba(15, 23, 42, 0.20) 100%),
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=2069&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  transition: background 0.5s ease-in-out;
}

/* TEXT CONTENT */
.business-hero__content {
  max-width: 650px;
  z-index: 1;
  animation: businessFadeIn 1.2s ease-out;
}

@keyframes businessFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.business-hero__content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #f8fafc;
}

.business-hero__content p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #cbd5e1;
  max-width: 520px;
}

/* BUTTONS */
.business-btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.business-btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.business-btn--primary {
  background-color: #3b82f6;
  color: #ffffff;
}

.business-btn--primary:hover {
  background-color: #2563eb;
  transform: scale(1.03);
}

.business-btn--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.30);
}

.business-btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.10);
}

/* MOBILE */
@media (max-width: 768px) {
  .business-hero {
    padding-left: 20px;
    padding-right: 20px;
    justify-content: center;
    text-align: center;
  }

  .business-hero__bg {
    background-image:
      linear-gradient(0deg, rgba(15, 23, 42, 0.80) 0%, rgba(15, 23, 42, 0.60) 100%),
      url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=2069&auto=format&fit=crop');
  }

  .business-btn-group {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
  }

  .business-btn {
    text-align: center;
  }
}

/* AMENDMENTS SECTION */

/* =========================
   Business page sections
   ========================= */

.business-section {
  padding: 72px 0;
  background: #0f172a;
  color: #e5e7eb;
}

.business-section--alt {
  background: #0b1224;
}

.business-container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.business-section h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  margin: 0 0 14px 0;
  color: #f8fafc;
}

.business-lead {
  max-width: 780px;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Grid of cards */
.business-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.business-grid .business-card {
  grid-column: span 6;
}

@media (max-width: 900px) {
  .business-grid .business-card {
    grid-column: span 12;
  }
}

.business-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 18px 18px;
  backdrop-filter: blur(6px);
}

.business-card h3 {
  margin: 0 0 8px 0;
  font-size: 1.12rem;
  color: #ffffff;
}

.business-card p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Split section */
.business-split {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 22px;
  align-items: start;
}

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

.business-list {
  margin: 14px 0 0 0;
  padding-left: 18px;
  color: #cbd5e1;
  line-height: 1.7;
}

.business-highlight {
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 14px;
  padding: 18px;
}

.business-highlight h3 {
  color: #ffffff;
  margin: 0 0 8px 0;
}

.business-small {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #cbd5e1;
}

/* Steps */
.business-steps {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.business-step {
  grid-column: span 6;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 16px;
}

@media (max-width: 900px) {
  .business-step {
    grid-column: span 12;
  }
}

.business-step__num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(59, 130, 246, 0.22);
  border: 1px solid rgba(59, 130, 246, 0.45);
  color: #ffffff;
  font-weight: 700;
  flex: 0 0 auto;
}

.business-step h3 {
  margin: 0 0 6px 0;
  color: #ffffff;
  font-size: 1.05rem;
}

.business-step p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.6;
}

/* CTA row */
.business-cta {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Trust line under hero buttons */
.business-hero__trust {
  margin-top: 14px;
  color: rgba(255,255,255,0.82);
  font-size: 0.98rem;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.business-hero__trust .dot {
  opacity: 0.7;
}

/* Ensure hero content stays above background */
.business-hero {
  position: relative;
}

.business-hero__bg {
  z-index: 0;
}

.business-hero__content {
  position: relative;
  z-index: 1;
}
