/* ═══════════════════════════════════════════════════════════
   KloudPoP Enterprise — enterprise.css
   Extends main.css. Import AFTER main.css.
   ═══════════════════════════════════════════════════════════ */

/* ── Enterprise hero (darker, more authoritative than home) ── */
.ent-hero {
  position: relative;
  min-height: 92vh;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--dark);
  overflow: hidden;
  padding: 120px 0 80px;
}
.ent-hero-orb-1 {
  position: absolute; top: -20%; right: -6%;
  width: clamp(380px, 50vw, 680px); height: clamp(380px, 50vw, 680px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,133,58,.18) 0%, transparent 65%);
  animation: orb-float 22s ease-in-out infinite;
}
.ent-hero-orb-2 {
  position: absolute; bottom: -15%; left: -5%;
  width: clamp(280px, 36vw, 500px); height: clamp(280px, 36vw, 500px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,.15) 0%, transparent 65%);
  animation: orb-float 30s ease-in-out infinite reverse;
}
.ent-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
.ent-hero-inner {
  position: relative; z-index: 10;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.ent-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: 100px;
  background: rgba(242,133,58,.10);
  border: 1px solid rgba(242,133,58,.25);
  margin-bottom: 28px;
}
.ent-hero-badge-pill {
  font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: #fff; padding: 3px 10px; border-radius: 100px;
}
.ent-hero-badge-text {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.70);
}
.ent-hero-headline {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 800; line-height: 1.04; letter-spacing: -.04em;
  color: #fff; margin-bottom: 24px;
}
.ent-hero-headline .accent {
  background: linear-gradient(135deg, var(--orange), var(--amber));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ent-hero-sub {
  font-size: 17px; font-weight: 400; line-height: 1.7;
  color: rgba(255,255,255,.62); margin-bottom: 16px; max-width: 540px;
}
.ent-hero-body {
  font-size: 14px; color: rgba(255,255,255,.40);
  line-height: 1.75; margin-bottom: 40px; max-width: 520px;
}
.ent-hero-form-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  padding: 36px 32px;
  backdrop-filter: blur(12px);
}
.ent-hero-form-card h3 {
  font-size: 18px; font-weight: 700; color: #fff;
  margin-bottom: 6px; letter-spacing: -.02em;
}
.ent-hero-form-card p {
  font-size: 13px; color: rgba(255,255,255,.45);
  margin-bottom: 28px; line-height: 1.6;
}
.ent-form-group {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px;
}
.ent-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ent-input {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  font-family: var(--font); font-size: 14px; font-weight: 500;
  color: #fff; outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.ent-input::placeholder { color: rgba(255,255,255,.28); font-weight: 400; }
.ent-input:focus {
  border-color: rgba(242,133,58,.55);
  background: rgba(255,255,255,.09);
  box-shadow: 0 0 0 3px rgba(242,133,58,.10);
}
.ent-select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.ent-select option { background: #1a1530; color: #fff; }
.ent-textarea {
  resize: vertical; min-height: 90px;
}
.ent-submit {
  width: 100%; padding: 14px;
  border-radius: 11px; border: none;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  font-family: var(--font); font-size: 15px; font-weight: 700; color: #0e0b1a;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(242,133,58,.30);
  transition: transform .15s ease, box-shadow .15s ease;
}
.ent-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(242,133,58,.40); }
.ent-form-note {
  margin-top: 12px; text-align: center;
  font-size: 11px; color: rgba(255,255,255,.25);
}
.ent-form-success {
  display: none;
  flex-direction: column; align-items: center; gap: 14px;
  padding: 32px 24px; text-align: center;
}
.ent-form-success-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(52,211,153,.12); border: 1px solid rgba(52,211,153,.28);
  display: flex; align-items: center; justify-content: center;
}
.ent-form-success h4 { font-size: 17px; font-weight: 700; color: #fff; }
.ent-form-success p  { font-size: 14px; color: rgba(255,255,255,.50); line-height: 1.6; }

/* ── Trusted by strip ── */
.ent-trusted {
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 22px 0;
}
.ent-trusted-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.ent-trusted-label {
  font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: rgba(255,255,255,.25); white-space: nowrap; flex-shrink: 0;
}
.ent-trusted-divider { width: 1px; height: 20px; background: rgba(255,255,255,.10); flex-shrink: 0; }
.ent-trusted-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.ent-trusted-tag {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.38);
  padding: 4px 14px; border-radius: 100px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
}

/* ── Section base ── */
.ent-section { padding: var(--section-pad) 0; }
.ent-section-header { margin-bottom: 56px; }
.ent-section-header.center { text-align: center; }
.ent-section-header.center .section-label { justify-content: center; }

/* ── Problem section ── */
.ent-problem { background: var(--off-white); }
.ent-problem-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
}
.ent-problem-intro { font-size: 15px; color: var(--gray-600); line-height: 1.75; margin-bottom: 32px; }
.ent-pain-list { display: flex; flex-direction: column; gap: 14px; }
.ent-pain-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px; border-radius: 13px;
  background: var(--white); border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s;
}
.ent-pain-item:hover { border-color: rgba(242,133,58,.25); box-shadow: var(--shadow-md); }
.ent-pain-icon {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: rgba(248,113,113,.08); border: 1.5px solid rgba(248,113,113,.18);
  display: flex; align-items: center; justify-content: center; color: #F87171;
}
.ent-pain-text { font-size: 14px; font-weight: 500; color: var(--gray-700); line-height: 1.55; }

/* Impact counter block */
.ent-impact-block {
  background: var(--dark); border-radius: 20px; padding: 36px 32px;
  position: relative; overflow: hidden;
}
.ent-impact-block::before {
  content: '';
  position: absolute; top: -40%; right: -20%;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,133,58,.18) 0%, transparent 65%);
  pointer-events: none;
}
.ent-impact-block h3 {
  font-size: 20px; font-weight: 800; color: #fff;
  margin-bottom: 8px; letter-spacing: -.02em; position: relative; z-index: 1;
}
.ent-impact-block > p {
  font-size: 14px; color: rgba(255,255,255,.45); margin-bottom: 28px;
  line-height: 1.6; position: relative; z-index: 1;
}
.ent-impact-stats { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.ent-impact-stat {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-radius: 12px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
}
.ent-impact-receipts { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.55); }
.ent-impact-time {
  font-size: 16px; font-weight: 800; color: var(--orange); letter-spacing: -.02em;
}
.ent-impact-closing {
  margin-top: 16px; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.35); line-height: 1.6; position: relative; z-index: 1;
}

/* ── Solution section ── */
.ent-solution { background: var(--white); }
.ent-solution-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.ent-steps { display: flex; flex-direction: column; gap: 4px; margin-top: 32px; }
.ent-step {
  display: flex; gap: 18px; align-items: flex-start; padding: 20px;
  border-radius: 14px; transition: background .2s ease;
}
.ent-step:hover { background: var(--warm-50); }
.ent-step-num {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #0e0b1a;
}
.ent-step-content h4 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 3px; }
.ent-step-content p  { font-size: 13px; color: var(--gray-500); line-height: 1.55; }

/* Solution visual — dashboard mock */
.ent-solution-visual {
  position: relative;
}
.ent-dashboard-mock {
  border-radius: 20px; overflow: hidden;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow-xl);
  padding: 24px;
}
.ent-mock-bar {
  display: flex; align-items: center; gap: 8px; margin-bottom: 20px;
}
.ent-mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.ent-mock-title {
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.25); margin-left: 8px;
}
.ent-mock-stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px;
}
.ent-mock-stat {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 14px 12px;
}
.ent-mock-stat-val {
  font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 2px;
}
.ent-mock-stat-val.orange { color: var(--orange); }
.ent-mock-stat-val.green  { color: var(--green); }
.ent-mock-stat-label { font-size: 10px; font-weight: 600; color: rgba(255,255,255,.30); text-transform: uppercase; letter-spacing: .06em; }
.ent-mock-rows { display: flex; flex-direction: column; gap: 8px; }
.ent-mock-row {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px; padding: 10px 14px;
}
.ent-mock-row-left { display: flex; align-items: center; gap: 10px; }
.ent-mock-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.ent-mock-name { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.70); }
.ent-mock-loc  { font-size: 10px; color: rgba(255,255,255,.30); }
.ent-mock-amount { font-size: 13px; font-weight: 700; color: #fff; }
.ent-mock-status {
  font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 100px;
}
.ent-mock-status.signed { background: rgba(52,211,153,.12); color: var(--green); }
.ent-mock-status.pending { background: rgba(245,176,72,.12); color: var(--amber); }

/* ── Benefits ── */
.ent-benefits { background: var(--warm-50); }
.ent-benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

/* ── Use cases ── */
.ent-use-cases { background: var(--white); }
.ent-use-cases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.ent-use-case-card {
  border-radius: var(--radius); padding: 32px 28px;
  border: 1.5px solid var(--gray-100);
  background: var(--gray-50);
  transition: all .25s ease;
}
.ent-use-case-card:hover {
  background: var(--white); border-color: rgba(242,133,58,.28);
  box-shadow: var(--shadow-md); transform: translateY(-3px);
}
.ent-use-case-icon {
  width: 48px; height: 48px; border-radius: 13px;
  background: var(--orange-light); border: 1.5px solid rgba(242,133,58,.20);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); margin-bottom: 20px;
  transition: all .25s ease;
}
.ent-use-case-card:hover .ent-use-case-icon {
  background: linear-gradient(135deg, var(--orange), var(--amber)); color: #fff;
}
.ent-use-case-card h3 {
  font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 16px;
}
.ent-use-case-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ent-use-case-list li {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--gray-600); font-weight: 500;
}
.ent-use-case-list li::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange); opacity: .6; flex-shrink: 0;
}

/* ── Enterprise features grid ── */
.ent-features { background: var(--dark); position: relative; overflow: hidden; }
.ent-features::before {
  content: '';
  position: absolute; top: -30%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,133,58,.12) 0%, transparent 60%);
  pointer-events: none;
}
.ent-features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  position: relative; z-index: 1;
}
.ent-feature-block {
  padding: 36px 32px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  transition: background .25s;
}
.ent-feature-block:hover { background: rgba(255,255,255,.06); }
.ent-feature-block:first-child { border-radius: var(--radius) 0 0 0; }
.ent-feature-block:nth-child(3) { border-radius: 0 var(--radius) 0 0; }
.ent-feature-block:nth-child(4) { border-radius: 0 0 0 var(--radius); }
.ent-feature-block:last-child { border-radius: 0 0 var(--radius) 0; }
.ent-feature-icon {
  width: 48px; height: 48px; border-radius: 13px;
  background: rgba(242,133,58,.10); border: 1px solid rgba(242,133,58,.20);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); margin-bottom: 20px;
}
.ent-feature-block h3 {
  font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 14px; letter-spacing: -.01em;
}
.ent-feature-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ent-feature-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.48); font-weight: 500;
}
.ent-feature-list li svg { color: var(--orange); flex-shrink: 0; }

/* ── Value / quote section ── */
.ent-value { background: var(--off-white); }
.ent-value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.ent-value-quote {
  padding: 36px; border-radius: 20px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,.08);
  position: relative; overflow: hidden;
}
.ent-value-quote::before {
  content: '\201C';
  position: absolute; top: -10px; left: 24px;
  font-size: 120px; font-weight: 800; line-height: 1;
  color: rgba(242,133,58,.12);
  font-family: Georgia, serif;
}
.ent-value-quote p {
  font-size: 18px; font-weight: 600; color: rgba(255,255,255,.80);
  line-height: 1.65; position: relative; z-index: 1; margin-bottom: 0;
}
.ent-value-quote p span { color: var(--orange); }
.ent-value-points { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.ent-value-point {
  display: flex; gap: 14px; align-items: flex-start;
}
.ent-value-point-icon {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  background: var(--orange-light); border: 1.5px solid rgba(242,133,58,.20);
  display: flex; align-items: center; justify-content: center; color: var(--orange);
}
.ent-value-point-text h4 { font-size: 14px; font-weight: 700; color: var(--gray-900); margin-bottom: 2px; }
.ent-value-point-text p  { font-size: 13px; color: var(--gray-500); line-height: 1.55; }

/* ── Pricing ── */
.ent-pricing { background: var(--white); }
.ent-pricing-card {
  max-width: 680px; margin: 0 auto;
  border-radius: 24px; overflow: hidden;
  border: 1.5px solid rgba(242,133,58,.25);
  box-shadow: 0 0 0 6px rgba(242,133,58,.06), var(--shadow-xl);
}
.ent-pricing-card-header {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1030 100%);
  padding: 40px 48px;
  position: relative; overflow: hidden;
}
.ent-pricing-card-header::after {
  content: '';
  position: absolute; top: -30%; right: -10%;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,133,58,.18) 0%, transparent 65%);
}
.ent-pricing-tier {
  font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px; position: relative; z-index: 1;
}
.ent-pricing-headline {
  font-size: 28px; font-weight: 800; color: #fff; letter-spacing: -.03em;
  margin-bottom: 10px; position: relative; z-index: 1;
}
.ent-pricing-sub {
  font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.65;
  position: relative; z-index: 1;
}
.ent-pricing-card-body { background: var(--white); padding: 40px 48px; }
.ent-pricing-includes-label {
  font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: 20px;
}
.ent-pricing-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 36px;
}
.ent-pricing-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--gray-700);
}
.ent-pricing-feature svg { color: var(--green); flex-shrink: 0; }
.ent-pricing-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}

/* ── Trust section ── */
.ent-trust { background: var(--gray-50); }
.ent-trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.ent-trust-card {
  padding: 28px 24px; border-radius: var(--radius);
  background: var(--white); border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-sm); text-align: center;
  transition: all .25s ease;
}
.ent-trust-card:hover { border-color: rgba(242,133,58,.22); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.ent-trust-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--orange-light); border: 1.5px solid rgba(242,133,58,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); margin: 0 auto 16px;
}
.ent-trust-card h3 { font-size: 14px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.ent-trust-card p  { font-size: 12px; color: var(--gray-500); line-height: 1.55; }

/* ── Final CTA ── */
.ent-cta {
  background: var(--dark); padding: var(--section-pad) 0;
  position: relative; overflow: hidden; text-align: center;
}
.ent-cta-orb {
  position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,133,58,.18) 0%, transparent 60%);
  pointer-events: none;
}
.ent-cta-inner { position: relative; z-index: 1; }
.ent-cta-inner h2 { color: #fff; margin-bottom: 14px; }
.ent-cta-inner .lead { color: rgba(255,255,255,.50); max-width: 480px; margin: 0 auto 40px; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .ent-hero-inner  { grid-template-columns: 1fr; gap: 48px; }
  .ent-problem-grid,
  .ent-solution-grid,
  .ent-value-grid  { grid-template-columns: 1fr; gap: 48px; }
  .ent-benefits-grid,
  .ent-use-cases-grid,
  .ent-features-grid { grid-template-columns: repeat(2, 1fr); }
  .ent-trust-grid  { grid-template-columns: repeat(2, 1fr); }
  .ent-pricing-features { grid-template-columns: 1fr; }
  .ent-pricing-card-header,
  .ent-pricing-card-body { padding: 32px; }
}
@media (max-width: 640px) {
  .ent-hero { min-height: auto; padding: 100px 0 60px; }
  .ent-benefits-grid,
  .ent-use-cases-grid,
  .ent-features-grid,
  .ent-trust-grid  { grid-template-columns: 1fr; }
  .ent-mock-stat-row { grid-template-columns: 1fr 1fr; }
  .ent-form-row { grid-template-columns: 1fr; }
  .ent-pricing-card-header,
  .ent-pricing-card-body { padding: 28px 24px; }
  .ent-trusted-inner { justify-content: center; }
}