/* About & CTA - professional section styles */

.lite-about {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 48%, #f8fafc 100%);
}

@media (min-width: 768px) {
  .lite-about {
    padding: 6rem 0;
  }
}

.lite-about-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 55% 45% at 0% 0%, rgba(51, 132, 252, 0.07), transparent),
    radial-gradient(ellipse 45% 40% at 100% 100%, rgba(124, 58, 237, 0.05), transparent),
    linear-gradient(to right, rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
}

.lite-about-shell {
  position: relative;
}

.lite-about-head {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .lite-about-head {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    gap: 2.5rem;
    margin-bottom: 3rem;
  }
}

.lite-about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2563eb;
}

.lite-about-eyebrow-dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background: #3384fc;
  box-shadow: 0 0 12px rgba(51, 132, 252, 0.55);
}

.lite-about-title {
  max-width: 34rem;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #0f172a;
}

@media (min-width: 768px) {
  .lite-about-title {
    font-size: 2.25rem;
  }
}

.lite-about-lead {
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b;
}

@media (min-width: 1024px) {
  .lite-about-lead {
    text-align: right;
    padding-bottom: 0.25rem;
  }
}

.lite-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  padding: 1rem;
  border: 1px solid #f1f5f9;
  border-radius: 1rem;
  background: rgba(248, 250, 252, 0.85);
}

@media (min-width: 768px) {
  .lite-about-stats {
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 3rem;
  }
}

.lite-about-stat {
  position: relative;
  text-align: center;
}

.lite-about-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  display: none;
  height: 2rem;
  width: 1px;
  transform: translateY(-50%);
  background: #e2e8f0;
}

@media (min-width: 768px) {
  .lite-about-stat:not(:last-child)::after {
    display: block;
  }
}

.lite-about-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #0f172a;
}

@media (min-width: 768px) {
  .lite-about-stat strong {
    font-size: 1.75rem;
  }
}

.lite-about-stat span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

@media (min-width: 768px) {
  .lite-about-stat span {
    font-size: 0.75rem;
  }
}

.lite-about-body {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .lite-about-body {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: stretch;
  }
}

.lite-about-story {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lite-about-story p {
  font-size: 1rem;
  line-height: 1.75;
  color: #475569;
}

.lite-about-values {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.lite-about-value {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.125rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.875rem;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.lite-about-value:hover {
  border-color: #bfdbfe;
  box-shadow: 0 8px 24px -12px rgba(51, 132, 252, 0.25);
}

.lite-about-value-icon {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem;
  border: 1px solid #dbeafe;
  background: linear-gradient(135deg, #eff6ff, #f5f3ff);
  color: #2563eb;
}

.lite-about-value-icon svg {
  height: 1.125rem;
  width: 1.125rem;
}

.lite-about-value h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
}

.lite-about-value p {
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
}

.lite-about-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 40px -20px rgba(51, 132, 252, 0.18);
}

@media (min-width: 768px) {
  .lite-about-panel {
    padding: 1.75rem;
  }
}

.lite-about-panel-label {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  width: fit-content;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid #dbeafe;
  background: #eff6ff;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1d4ed8;
}

.lite-about-panel h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.lite-about-panel-desc {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #64748b;
}

.lite-about-facts {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.lite-about-fact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.875rem;
  border-radius: 0.75rem;
  background: #f8fafc;
}

.lite-about-fact-icon {
  display: flex;
  height: 2rem;
  width: 2rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: #fff;
  color: #3384fc;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.lite-about-fact-icon svg {
  height: 1rem;
  width: 1rem;
}

.lite-about-fact strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f172a;
}

.lite-about-fact span {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
}

.lite-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

/* CTA band */
.lite-cta-pro {
  position: relative;
  overflow: hidden;
  padding: 0 1.25rem 5rem;
}

@media (min-width: 768px) {
  .lite-cta-pro {
    padding: 0 1.25rem 6rem;
  }
}

.lite-cta-pro-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0 auto;
  max-width: 72rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 52%, #0f2744 100%);
  padding: 2.5rem 1.75rem;
  box-shadow:
    0 24px 60px -24px rgba(15, 23, 42, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) {
  .lite-cta-pro-card {
    padding: 3rem 3rem;
  }
}

@media (min-width: 1024px) {
  .lite-cta-pro-card {
    padding: 3.5rem 3.5rem;
  }
}

.lite-cta-pro-glow {
  pointer-events: none;
  position: absolute;
  right: -4rem;
  top: -5rem;
  height: 18rem;
  width: 18rem;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(51, 132, 252, 0.35), transparent 68%);
}

.lite-cta-pro-glow-2 {
  pointer-events: none;
  position: absolute;
  bottom: -6rem;
  left: -3rem;
  height: 14rem;
  width: 14rem;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.22), transparent 70%);
}

.lite-cta-pro-grid {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.lite-cta-pro-inner {
  position: relative;
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .lite-cta-pro-inner {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 3rem;
  }
}

.lite-cta-pro-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #93c5fd;
}

.lite-cta-pro-label-dot {
  height: 0.375rem;
  width: 0.375rem;
  border-radius: 9999px;
  background: #60a5fa;
  box-shadow: 0 0 10px rgba(96, 165, 250, 0.8);
}

.lite-cta-pro-title {
  max-width: 32rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
}

@media (min-width: 768px) {
  .lite-cta-pro-title {
    font-size: 2.25rem;
  }
}

.lite-cta-pro-desc {
  margin-top: 1rem;
  max-width: 30rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #cbd5e1;
}

.lite-cta-pro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 1.25rem;
  margin-top: 1.5rem;
}

.lite-cta-pro-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #94a3b8;
}

.lite-cta-pro-trust-item svg {
  height: 1rem;
  width: 1rem;
  flex-shrink: 0;
  color: #4ade80;
}

.lite-cta-pro-actions {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.lite-cta-pro-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #3384fc, #6366f1);
  padding: 0.9375rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 28px -8px rgba(51, 132, 252, 0.65);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.lite-cta-pro-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 12px 32px -8px rgba(51, 132, 252, 0.75);
}

.lite-cta-pro-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #e2e8f0;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lite-cta-pro-secondary:hover {
  border-color: rgba(147, 197, 253, 0.45);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.lite-cta-pro-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.lite-cta-pro-phone:hover {
  color: #e2e8f0;
}

.lite-cta-pro-phone svg {
  height: 1rem;
  width: 1rem;
  color: #60a5fa;
}

/* Process - lighter section background */
.lite-workflow--light {
  border-color: #e2e8f0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

.lite-workflow--light .lite-workflow-bg-overlay {
  background:
    linear-gradient(
      105deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(248, 250, 252, 0.78) 45%,
      rgba(241, 245, 249, 0.65) 70%,
      rgba(255, 255, 255, 0.88) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(248, 250, 252, 0.35) 0%,
      transparent 30%,
      transparent 70%,
      rgba(241, 245, 249, 0.4) 100%
    );
}

.lite-workflow--light .lite-workflow-bg {
  background-image:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(51, 132, 252, 0.07), transparent),
    radial-gradient(ellipse 40% 35% at 0% 100%, rgba(124, 58, 237, 0.05), transparent);
}

.lite-workflow--light .lite-workflow-bg-image {
  opacity: 0.14;
}

@media (min-width: 768px) {
  .lite-workflow--light .lite-workflow-bg-image {
    opacity: 0.18;
  }
}

@media (min-width: 1024px) {
  .lite-workflow--light .lite-workflow-bg-image {
    opacity: 0.22;
  }
}

.lite-workflow--light .lite-workflow-title {
  color: #0f172a;
}

.lite-workflow--light .lite-workflow-eyebrow {
  color: #2563eb;
}

.lite-workflow--light .lite-workflow-lead {
  color: #64748b;
}

.lite-workflow--light .lite-workflow-cta {
  border-color: #e2e8f0;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.lite-workflow--light .lite-workflow-cta:hover {
  border-color: #bfdbfe;
  background: #f8fafc;
}

.lite-workflow--light .lite-workflow-cta-icon {
  background: #eff6ff;
  color: #2563eb;
}

.lite-workflow--light .lite-workflow-cta:hover .lite-workflow-cta-icon {
  background: #3384fc;
  color: #fff;
}

.lite-workflow--light .lite-workflow-phases span {
  border-color: #e2e8f0;
  background: #fff;
  color: #64748b;
}

.lite-workflow--light .lite-workflow-phases span:nth-child(1) {
  border-color: #a5f3fc;
  color: #0891b2;
}

.lite-workflow--light .lite-workflow-phases span:nth-child(2) {
  border-color: #ddd6fe;
  color: #7c3aed;
}

.lite-workflow--light .lite-workflow-phases span:nth-child(3) {
  border-color: #bfdbfe;
  color: #2563eb;
}

.lite-workflow--light .lite-workflow-phases span:nth-child(4) {
  border-color: #a7f3d0;
  color: #059669;
}
