/* ==============================================================================
   Soft Futura - Loan Collection Software Stylesheet (loan-collection-software.css)
   Pixel-Accurate Recreation of the Loan Collection Software Product Page
   ============================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

/* --- Root Color Variables & Tokens --- */
:root {
  --lcs-navy-dark: #061b3a;
  --lcs-navy-deep: #031127;
  --lcs-blue-primary: #087cf2;
  --lcs-blue-hover: #0665c7;
  --lcs-blue-light: #eaf5ff;
  --lcs-blue-sky: #38bdf8;
  --lcs-text-dark: #0a2342;
  --lcs-text-muted: #64748b;
  --lcs-text-light: #94a3b8;
  --lcs-border-light: #e2e8f0;
  --lcs-border-card: #e5eaf2;
  --lcs-bg-light: #f8fafc;
  --lcs-green: #10b981;
  --lcs-purple: #8b5cf6;
  --lcs-font-heading: 'Plus Jakarta Sans', sans-serif;
  --lcs-font-body: 'Inter', sans-serif;
  --lcs-font-script: 'Caveat', cursive;
}

/* Base Body Configuration */
body.lcs-page {
  background-color: #ffffff;
  color: var(--lcs-text-dark);
  font-family: var(--lcs-font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.lcs-page h1,
.lcs-page h2,
.lcs-page h3,
.lcs-page h4 {
  font-family: var(--lcs-font-heading);
  letter-spacing: -0.025em;
}

.lcs-container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

section,
.lcs-hero,
.lcs-about,
.lcs-features,
.lcs-industries,
.lcs-why-choose,
.lcs-testimonials,
.lcs-demo,
.lcs-final-cta {
  width: 100%;
  box-sizing: border-box;
}

/* ==============================================================================
   1. HERO SECTION
   ============================================================================== */
.lcs-hero {
  position: relative;
  background-color: #001338;
  background-image:
    linear-gradient(90deg, #001338 0%, #001338 28%, rgba(0, 19, 56, 0.7) 40%, transparent 54%),
    url('../images/hero/loan-collection-hero-bg.webp');
  background-repeat: no-repeat, no-repeat;
  background-position: left center, right 40px center;
  background-size: 100% 100%, auto 64%;
  padding-top: 110px;
  padding-bottom: 45px;
  min-height: 490px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
}

/* Subtle left-side atmospheric darkening for ultra-crisp text readability */
.lcs-hero::before {
  display: none;
}

/* Technical Grid Overlay */
.lcs-hero-grid-lines {
  display: none !important;
}

.lcs-hero-main-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  margin-bottom: 0;
}

/* Left Content */
.lcs-hero-content {
  position: relative;
  z-index: 2;
}

.lcs-hero-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lcs-blue-sky);
  margin-bottom: 12px;
}

.lcs-hero-title {
  font-size: clamp(2.1rem, 3.2vw, 2.85rem);
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.lcs-hero-title span {
  color: #ffffff;
}

.lcs-hero-desc {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--lcs-text-light);
  margin-bottom: 10px;
  max-width: 520px;
}

.lcs-hero-subtext {
  font-size: 0.88rem;
  color: #cbd5e1;
  margin-bottom: 22px;
  max-width: 520px;
  line-height: 1.5;
}

/* Buttons */
.lcs-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lcs-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--lcs-blue-primary);
  color: #ffffff !important;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 9999px;
  border: 1px solid var(--lcs-blue-primary);
  box-shadow: 0 4px 16px rgba(8, 124, 242, 0.4);
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.lcs-btn-primary:hover {
  background: var(--lcs-blue-hover);
  border-color: var(--lcs-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(8, 124, 242, 0.55);
}

.lcs-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff !important;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.lcs-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

/* Hero Feature Badges (Left Column, Below Buttons) */
.lcs-hero-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 24px;
  max-width: 600px;
}

.lcs-hero-feat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.lcs-hero-feat-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, rgba(8, 124, 242, 0.15) 100%);
  border: 1px solid rgba(56, 189, 248, 0.45);
  box-shadow: 0 0 14px rgba(8, 124, 242, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lcs-blue-sky);
  flex-shrink: 0;
}

.lcs-hero-feat-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

.lcs-hero-feat-text {
  font-size: 0.775rem;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.35;
  margin: 0;
}

/* Right Device Mockup Area - Desktop lets panoramic background shine through edge-to-edge */
.lcs-hero-visual {
  position: relative;
  z-index: 2;
  min-height: 420px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.lcs-hero-mockup-wrapper {
  position: relative;
  width: 100%;
}

@media (min-width: 1025px) {
  .lcs-hero-mockup-img {
    display: none !important;
  }

  .lcs-handwritten-hero {
    position: absolute;
    top: -10px;
    right: 15px;
    font-family: var(--lcs-font-script);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.15;
    color: #7dd3fc;
    transform: rotate(5deg);
    text-align: center;
    pointer-events: none;
    z-index: 4;
    text-shadow: 0 2px 10px rgba(8, 124, 242, 0.4);
  }
}

/* ==============================================================================
   2. ABOUT SECTION
   ============================================================================== */
.lcs-about {
  padding: 95px 0;
  background-color: #ffffff;
  position: relative;
}

.lcs-about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Left Image & Overlay Stat Cards */
.lcs-about-visual {
  position: relative;
}

.lcs-about-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(10, 35, 66, 0.08);
  border: 1px solid var(--lcs-border-light);
}

.lcs-about-img {
  width: 100%;
  height: auto;
  display: block;
}

/* 3 Floating Stat Badges */
.lcs-stat-card {
  position: absolute;
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 12px 28px rgba(10, 35, 66, 0.14);
  border: 1px solid rgba(226, 232, 240, 0.95);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.lcs-stat-card-top-right {
  top: 25px;
  right: 15px;
}

.lcs-stat-card-bottom-left {
  bottom: 25px;
  left: 15px;
}

.lcs-stat-card-bottom-right {
  bottom: -15px;
  right: 35px;
}

.lcs-stat-icon-blue {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #eff6ff;
  color: var(--lcs-blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lcs-stat-icon-green {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #ecfdf5;
  color: var(--lcs-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lcs-stat-number {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--lcs-text-dark);
  line-height: 1.1;
  font-family: var(--lcs-font-heading);
}

.lcs-stat-label {
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--lcs-text-muted);
  line-height: 1.3;
  margin-top: 2px;
}

/* Right Content */
.lcs-about-content {
  position: relative;
}

.lcs-section-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lcs-blue-primary);
  margin-bottom: 12px;
}

.lcs-section-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.22;
  color: var(--lcs-text-dark);
  margin-bottom: 20px;
}

.lcs-about-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 26px;
}

/* Checklist Items */
.lcs-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lcs-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #334155;
  font-weight: 500;
  line-height: 1.5;
}

.lcs-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--lcs-blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.lcs-check-icon svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 3;
  fill: none;
}

.lcs-about-action-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Handwritten Decorative Annotation on About Section */
.lcs-handwritten-about {
  font-family: var(--lcs-font-script);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.1;
  color: #0369a1;
  transform: rotate(-4deg);
  margin-left: 8px;
}

/* ==============================================================================
   3. KEY FEATURES (8 Cards Grid)
   ============================================================================== */
.lcs-features {
  padding: 90px 0;
  background-color: var(--lcs-bg-light);
}

.lcs-section-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.lcs-section-subtitle {
  font-size: 1.05rem;
  color: var(--lcs-text-muted);
  margin-top: 8px;
}

.lcs-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lcs-feature-card {
  background: #ffffff;
  border: 1px solid var(--lcs-border-card);
  border-radius: 14px;
  padding: 28px 22px;
  box-shadow: 0 4px 16px rgba(10, 35, 66, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.lcs-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(8, 124, 242, 0.08);
  border-color: #bfdbfe;
}

.lcs-feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.lcs-feature-icon-box svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Distinct icon theme colors */
.lcs-icon-blue { background: #eff6ff; color: #2563eb; }
.lcs-icon-teal { background: #ecfdf5; color: #059669; }
.lcs-icon-cyan { background: #f0f9ff; color: #0284c7; }
.lcs-icon-emerald { background: #ecfdf5; color: #10b981; }
.lcs-icon-purple { background: #faf5ff; color: #9333ea; }
.lcs-icon-rose { background: #fff1f2; color: #e11d48; }
.lcs-icon-sky { background: #e0f2fe; color: #0284c7; }
.lcs-icon-indigo { background: #eef2ff; color: #4f46e5; }

.lcs-feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--lcs-text-dark);
  margin-bottom: 10px;
}

.lcs-feature-desc {
  font-size: 0.9rem;
  color: var(--lcs-text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ==============================================================================
   4. WHY CHOOSE SECTION (Dark Full-Width)
   ============================================================================== */
.lcs-why-choose {
  background-color: var(--lcs-navy-dark);
  background-image: radial-gradient(circle at 50% 0%, rgba(8, 124, 242, 0.22) 0%, rgba(6, 27, 58, 1) 75%);
  color: #ffffff;
  padding: 85px 0;
  position: relative;
  overflow: hidden;
}

.lcs-why-header {
  text-align: center;
  margin-bottom: 48px;
}

.lcs-why-title {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
}

.lcs-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.lcs-why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.lcs-why-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #087cf2 0%, #0284c7 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(8, 124, 242, 0.35);
}

.lcs-why-icon-circle svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.lcs-why-item-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.lcs-why-item-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.5;
  max-width: 240px;
  margin: 0;
}

/* ==============================================================================
   5. INDUSTRIES SECTION ("Ideal For")
   ============================================================================== */
.lcs-industries {
  padding: 90px 0;
  background-color: #ffffff;
}

.lcs-industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lcs-industry-card {
  background: #ffffff;
  border: 1px solid var(--lcs-border-card);
  border-radius: 14px;
  padding: 32px 22px;
  box-shadow: 0 4px 16px rgba(10, 35, 66, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.lcs-industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(10, 35, 66, 0.08);
  border-color: #bfdbfe;
}

.lcs-industry-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.lcs-industry-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.lcs-industry-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--lcs-text-dark);
  margin-bottom: 8px;
}

.lcs-industry-desc {
  font-size: 0.9rem;
  color: var(--lcs-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ==============================================================================
   6. DEMO / CTA FORM SECTION
   ============================================================================== */
.lcs-demo {
  padding: 95px 0;
  background-color: var(--lcs-bg-light);
}

.lcs-demo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 48px;
  align-items: center;
}

/* Interactive Laptop Dashboard UI */
.lcs-laptop-mockup {
  background: #0f172a;
  border-radius: 18px 18px 0 0;
  padding: 12px 12px 0;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.22);
  border: 2px solid #1e293b;
  position: relative;
}

.lcs-laptop-screen {
  background: #ffffff;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 380px;
}

/* Sidebar */
.lcs-dash-sidebar {
  background: #03142e;
  padding: 16px 12px;
  color: #94a3b8;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lcs-dash-logo {
  font-size: 0.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.lcs-dash-logo span {
  color: #38bdf8;
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
}

.lcs-dash-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.725rem;
  font-weight: 600;
  padding: 7px 10px;
  border-radius: 6px;
  color: #94a3b8;
}

.lcs-dash-nav-item.active {
  background: var(--lcs-blue-primary);
  color: #ffffff;
}

.lcs-dash-nav-item svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Main Dashboard Area */
.lcs-dash-main {
  background: #f8fafc;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lcs-dash-header {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
}

/* 4 Metric Cards */
.lcs-dash-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.lcs-dash-metric-card {
  background: #ffffff;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.lcs-dash-metric-lbl {
  font-size: 0.625rem;
  color: #64748b;
  font-weight: 600;
}

.lcs-dash-metric-val {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 2px;
}

.lcs-dash-metric-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  color: #059669;
  background: #d1fae5;
  padding: 1px 4px;
  border-radius: 4px;
}

/* Bar Chart Mockup */
.lcs-dash-chart-card {
  background: #ffffff;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.lcs-dash-chart-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.lcs-dash-bars {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 80px;
  padding-bottom: 6px;
}

.lcs-bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.lcs-bar-pill {
  width: 18px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #0284c7 0%, #10b981 100%);
}

.lcs-bar-month {
  font-size: 0.55rem;
  color: #94a3b8;
  font-weight: 600;
}

/* Bottom Split: Top Performing Agents & Portfolio Ageing */
.lcs-dash-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lcs-dash-mini-card {
  background: #ffffff;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.lcs-dash-mini-title {
  font-size: 0.68rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.lcs-agent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.625rem;
  margin-bottom: 6px;
}

.lcs-agent-bar-bg {
  width: 70px;
  height: 6px;
  background: #e2e8f0;
  border-radius: 9999px;
  overflow: hidden;
}

.lcs-agent-bar-fill {
  height: 100%;
  border-radius: 9999px;
  background: #10b981;
}

.lcs-ageing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.625rem;
  color: #475569;
  margin-bottom: 4px;
}

.lcs-ageing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}

/* Laptop Base Stand */
.lcs-laptop-base {
  height: 14px;
  background: #334155;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  position: relative;
}

.lcs-laptop-base::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 5px;
  background: #1e293b;
  border-radius: 0 0 4px 4px;
}

/* Right Form Card */
.lcs-form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: 0 16px 40px rgba(10, 35, 66, 0.08);
  border: 1px solid var(--lcs-border-card);
}

.lcs-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 600px) {
  .lcs-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.lcs-form-group {
  margin-bottom: 16px;
}

.lcs-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.lcs-input-icon {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  color: #94a3b8;
  pointer-events: none;
}

.lcs-input-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.lcs-form-input,
.lcs-form-select,
.lcs-form-textarea {
  width: 100%;
  padding: 12px 14px 12px 42px;
  font-size: 0.9rem;
  color: var(--lcs-text-dark);
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-family: var(--lcs-font-body);
  transition: all 0.2s ease;
  box-sizing: border-box;
  text-align: left;
}

.lcs-form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #f8fafc;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  text-align: left;
  text-align-last: left;
  cursor: pointer;
  color: #64748b;
  line-height: 1.4;
}

.lcs-form-select:valid,
.lcs-form-select.has-value {
  color: var(--lcs-text-dark);
}

.lcs-form-select option {
  color: var(--lcs-text-dark);
  background: #ffffff;
  padding: 8px 12px;
  text-align: left;
}

.lcs-form-select option[disabled] {
  color: #94a3b8;
}

.lcs-form-input:focus,
.lcs-form-select:focus,
.lcs-form-textarea:focus {
  outline: none;
  border-color: var(--lcs-blue-primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(8, 124, 242, 0.15);
}

.lcs-form-textarea {
  padding-left: 14px;
  resize: vertical;
  min-height: 80px;
}

.lcs-btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--lcs-blue-primary);
  color: #ffffff;
  font-size: 0.975rem;
  font-weight: 700;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(8, 124, 242, 0.35);
  transition: all 0.25s ease;
}

.lcs-btn-submit:hover {
  background: var(--lcs-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(8, 124, 242, 0.5);
}

.lcs-privacy-note {
  font-size: 0.75rem;
  color: var(--lcs-text-muted);
  text-align: center;
  margin-top: 14px;
  margin-bottom: 0;
}

/* ==============================================================================
   7. TESTIMONIALS SECTION
   ============================================================================== */
.lcs-testimonials {
  padding: 90px 0;
  background-color: #ffffff;
}

.lcs-testi-top-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.lcs-slider-controls {
  display: flex;
  gap: 10px;
}

.lcs-slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lcs-slider-btn:hover {
  background: var(--lcs-blue-primary);
  color: #ffffff;
  border-color: var(--lcs-blue-primary);
}

.lcs-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lcs-testi-card {
  background: #ffffff;
  border: 1px solid var(--lcs-border-card);
  border-radius: 16px;
  padding: 32px 26px;
  box-shadow: 0 6px 20px rgba(10, 35, 66, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lcs-testi-quote-icon {
  width: 32px;
  height: 32px;
  color: var(--lcs-blue-primary);
  margin-bottom: 16px;
  opacity: 0.8;
}

.lcs-testi-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #334155;
  margin-bottom: 24px;
}

.lcs-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
}

.lcs-testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--lcs-blue-light);
}

.lcs-testi-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--lcs-text-dark);
}

.lcs-testi-role {
  font-size: 0.8rem;
  color: var(--lcs-text-muted);
}

/* ==============================================================================
   8. FINAL CTA SECTION (Slim Full-Width Dark Navy Banner)
   ============================================================================== */
.lcs-final-cta {
  background-color: var(--lcs-navy-dark);
  background-image: radial-gradient(circle at 50% 10%, rgba(8, 124, 242, 0.28) 0%, rgba(6, 27, 58, 1) 75%);
  padding: 44px 0 46px;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lcs-final-cta-content {
  max-width: 660px;
  margin: 0 auto;
}

.lcs-final-cta-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lcs-blue-sky);
  margin-bottom: 8px;
}

.lcs-final-cta-title {
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}

.lcs-final-cta-desc {
  font-size: 0.925rem;
  color: var(--lcs-text-light);
  line-height: 1.5;
  margin-bottom: 20px;
}

.lcs-final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lcs-final-cta-actions .lcs-btn-primary,
.lcs-final-cta-actions .lcs-btn-secondary {
  padding: 10px 22px;
  font-size: 0.875rem;
}

/* ==============================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ============================================================================== */
@media (max-width: 1024px) {
  .lcs-hero {
    background-color: #001338;
    background-image: 
      radial-gradient(circle at 50% 18%, rgba(14, 165, 233, 0.25) 0%, transparent 65%),
      linear-gradient(180deg, #001338 0%, #011b48 50%, #001338 100%);
    background-position: center;
    background-size: 100% 100%;
    padding-top: 100px;
    padding-bottom: 45px;
    min-height: auto;
  }

  .lcs-hero::before {
    display: none !important;
  }

  .lcs-hero-main-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .lcs-hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }

  .lcs-hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
  }

  .lcs-hero-title {
    font-size: clamp(1.85rem, 6vw, 2.35rem);
    line-height: 1.2;
    margin-bottom: 14px;
  }
  
  .lcs-hero-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
    margin-left: auto;
    margin-right: auto;
  }

  .lcs-hero-subtext {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 22px;
    color: #94a3b8;
    margin-left: auto;
    margin-right: auto;
  }
  
  .lcs-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
  }

  .lcs-hero-features-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
  }

  .lcs-hero-feat-icon {
    width: 32px;
    height: 32px;
  }

  .lcs-hero-feat-icon svg {
    width: 16px;
    height: 16px;
  }

  .lcs-hero-feat-text {
    font-size: 0.725rem;
    line-height: 1.3;
  }

  .lcs-hero-visual,
  .lcs-hero-mockup-wrapper,
  .lcs-hero-mockup-img,
  .lcs-handwritten-hero {
    display: none !important;
  }
  
  .lcs-about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .lcs-about-visual {
    max-width: 550px;
    margin: 0 auto;
  }
  
  .lcs-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .lcs-why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  
  .lcs-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .lcs-demo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .lcs-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .lcs-hero {
    padding-top: 110px;
  }
  
  .lcs-hero-features-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .lcs-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .lcs-feature-card {
    padding: 18px 14px;
    border-radius: 12px;
  }

  .lcs-feature-icon-box {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    border-radius: 10px;
  }

  .lcs-feature-icon-box svg {
    width: 20px;
    height: 20px;
  }

  .lcs-feature-title {
    font-size: 0.95rem;
    line-height: 1.25;
    margin-bottom: 6px;
  }

  .lcs-feature-desc {
    font-size: 0.775rem;
    line-height: 1.35;
  }

  .lcs-industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .lcs-industry-card {
    padding: 20px 14px;
    border-radius: 12px;
  }

  .lcs-industry-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
  }

  .lcs-industry-icon svg {
    width: 20px;
    height: 20px;
  }

  .lcs-industry-title {
    font-size: 0.95rem;
    line-height: 1.25;
    margin-bottom: 6px;
  }

  .lcs-industry-desc {
    font-size: 0.775rem;
    line-height: 1.35;
  }

  .lcs-why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 14px;
  }

  .lcs-why-item {
    padding: 8px 4px;
  }

  .lcs-why-icon-circle {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
    box-shadow: 0 6px 16px rgba(8, 124, 242, 0.3);
  }

  .lcs-why-icon-circle svg {
    width: 24px;
    height: 24px;
  }

  .lcs-why-item-title {
    font-size: 0.95rem;
    margin-bottom: 6px;
    line-height: 1.25;
  }

  .lcs-why-item-desc {
    font-size: 0.775rem;
    line-height: 1.35;
  }

  .lcs-stat-card {
    padding: 10px 14px;
  }
  
  .lcs-stat-number {
    font-size: 1.15rem;
  }
  
  .lcs-stat-label {
    font-size: 0.7rem;
  }
  
  .lcs-laptop-screen {
    grid-template-columns: 1fr;
  }
  
  .lcs-dash-sidebar {
    display: none;
  }
  
  .lcs-final-cta {
    padding: 36px 0 38px;
  }
}
