/* =====================================================
   ABOUT.CSS — Landing Page / About Page
   Font: Fraunces (display) + Plus Jakarta Sans (body)
===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --lp-blue:        #2563eb;
  --lp-blue-dark:   #1d4ed8;
  --lp-blue-light:  #eff6ff;
  --lp-green:       #16a34a;
  --lp-text:        #111827;
  --lp-muted:       #6b7280;
  --lp-border:      #e5e7eb;
  --lp-bg:          #f9fafb;
  --lp-white:       #ffffff;
  --lp-radius:      16px;
  --lp-shadow:      0 4px 24px rgba(0,0,0,0.07);
  --lp-shadow-lg:   0 16px 48px rgba(0,0,0,0.12);
}

/* Base */
.lp-section { font-family: 'Plus Jakarta Sans', sans-serif; }

/* ── Container ── */
.lp-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Section tag ── */
.lp-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lp-blue);
  background: var(--lp-blue-light);
  border: 1px solid rgba(37,99,235,0.2);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* ── Section title ── */
.lp-section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--lp-text);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  text-align: center;
}

.lp-section-lead {
  font-size: 16px;
  color: var(--lp-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
  text-align: center;
}

.lp-section-lead strong { color: var(--lp-text); }

/* ── Buttons ── */
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--lp-blue);
  color: #fff;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.22s ease;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}

.lp-btn-primary:hover {
  background: var(--lp-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.35);
  gap: 12px;
}

.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--lp-text);
  border: 1.5px solid var(--lp-border);
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.lp-btn-ghost:hover {
  border-color: var(--lp-blue);
  color: var(--lp-blue);
  background: var(--lp-blue-light);
}

/* =====================================================
   HERO
===================================================== */
.lp-hero {
  position: relative;
  padding: 80px 0 96px;
  overflow: hidden;
  background: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.lp-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.lp-orb1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #dbeafe, transparent);
  top: -120px; right: -80px;
}

.lp-orb2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #d1fae5, transparent);
  bottom: -60px; left: -80px;
}

.lp-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.lp-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-blue);
  background: var(--lp-blue-light);
  border: 1px solid rgba(37,99,235,0.25);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.lp-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lp-blue);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.4; transform:scale(0.85); }
}

.lp-hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--lp-text);
  letter-spacing: -1px;
  margin-bottom: 22px;
}

.lp-hero-accent {
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero-sub {
  font-size: 17px;
  color: var(--lp-muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 36px;
}

.lp-hero-sub strong { color: var(--lp-text); }

.lp-hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Hero stats */
.lp-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #f8fafc;
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  padding: 18px 32px;
  max-width: 480px;
  margin: 0 auto;
}

.lp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0 28px;
}

.lp-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--lp-blue);
}

.lp-stat-label {
  font-size: 11.5px;
  color: var(--lp-muted);
  font-weight: 500;
  white-space: nowrap;
}

.lp-stat-div {
  width: 1px;
  height: 36px;
  background: var(--lp-border);
  flex-shrink: 0;
}

/* =====================================================
   SECTION SPACING
===================================================== */
.lp-section {
  padding: 80px 0;
}

.lp-section:nth-child(even) {
  background: var(--lp-bg);
}

/* =====================================================
   FEATURE GRID
===================================================== */
.lp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-feature-card {
  background: var(--lp-white);
  border: 1.5px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 28px 24px;
  transition: all 0.25s ease;
  animation: fadeUp 0.5s ease both;
  animation-delay: var(--delay, 0s);
}

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

.lp-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
  border-color: #c7d2fe;
}

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

.lp-feature-card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 8px;
}

.lp-feature-card p {
  font-size: 13.5px;
  color: var(--lp-muted);
  line-height: 1.6;
  margin: 0;
}

/* =====================================================
   VISION & MISSION
===================================================== */
.lp-vm-section { background: var(--lp-blue); }

.lp-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lp-vm-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.lp-vm-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 20px;
}

.lp-vm-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.lp-vm-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin: 0;
}

.lp-vm-card p strong { color: #ffffff; }

/* =====================================================
   PROBLEM & SOLUTION
===================================================== */
.lp-ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.lp-ps-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.problem-header  { background: #fff1f2; color: #be123c; }
.solution-header { background: #f0fdf4; color: #15803d; }

.lp-problem-item,
.lp-solution-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--lp-border);
}

.lp-problem-item:last-child,
.lp-solution-item:last-child { border-bottom: none; }

.lp-problem-icon,
.lp-solution-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.lp-problem-icon { background: #fff1f2; color: #be123c; }
.lp-solution-icon { background: #f0fdf4; color: #15803d; }

.lp-problem-item strong,
.lp-solution-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 4px;
}

.lp-problem-item p,
.lp-solution-item p {
  font-size: 13px;
  color: var(--lp-muted);
  line-height: 1.55;
  margin: 0;
}

/* =====================================================
   COMPARE TABLE
===================================================== */
.lp-compare-table {
  border: 1.5px solid var(--lp-border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--lp-white);
  box-shadow: var(--lp-shadow);
}

.lp-compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #f8fafc;
  border-bottom: 1.5px solid var(--lp-border);
  padding: 14px 24px;
}

.lp-compare-col {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 4px 0;
}

.lp-compare-others { color: #9ca3af; }
.lp-compare-cs     { color: var(--lp-blue); }

.lp-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 14px 24px;
  border-bottom: 1px solid #f1f5f9;
  align-items: center;
  transition: background 0.15s;
}

.lp-compare-row:last-child { border-bottom: none; }
.lp-compare-row:hover      { background: #f8fafc; }

.lp-compare-row span:first-child {
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-text);
}

.lp-compare-bad,
.lp-compare-good {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

.lp-compare-bad  { color: #dc2626; }
.lp-compare-good { color: var(--lp-green); }

/* =====================================================
   TEAM
===================================================== */
.lp-team-section { background: var(--lp-bg); }

.lp-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-team-card {
  background: var(--lp-white);
  border: 1.5px solid var(--lp-border);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.25s ease;
}

.lp-team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
}

.lp-team-featured-DISABLED {
  border-color: var(--lp-blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
  position: relative;
}

.lp-team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.lp-team-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 4px;
}

.lp-team-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-blue);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.lp-team-card p {
  font-size: 13.5px;
  color: var(--lp-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.lp-team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.lp-team-tags span {
  font-size: 11px;
  font-weight: 600;
  color: #4b5563;
  background: #f3f4f6;
  padding: 3px 10px;
  border-radius: 999px;
}

/* =====================================================
   FAQ
===================================================== */
.lp-faq-section { background: var(--lp-white); }

.lp-faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-faq-item {
  border: 1.5px solid var(--lp-border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.lp-faq-item.open { border-color: var(--lp-blue); }

.lp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--lp-text);
  text-align: left;
  transition: background 0.15s;
}

.lp-faq-q:hover { background: #f9fafb; }
.lp-faq-item.open .lp-faq-q { background: var(--lp-blue-light); color: var(--lp-blue); }

.lp-faq-icon {
  color: var(--lp-muted);
  font-size: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.lp-faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 14.5px;
  color: var(--lp-muted);
  line-height: 1.7;
  padding: 0 22px;
  transition: max-height 0.35s ease, padding 0.2s ease;
}

.lp-faq-item.open .lp-faq-a {
  padding: 0 22px 18px;
}

/* =====================================================
   CONTACT
===================================================== */
.lp-contact-section {
  background: linear-gradient(135deg, #f0f7ff 0%, #f8fafc 60%, #f0fdf4 100%);
}

.lp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.lp-contact-left .lp-section-tag { margin-bottom: 12px; }

.lp-contact-card {
  background: var(--lp-white);
  border: 1.5px solid var(--lp-border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--lp-shadow);
}

.lp-contact-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--lp-text);
  margin-bottom: 24px;
}

.lp-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  background: #f9fafb;
}

.lp-contact-item:hover {
  border-color: var(--lp-blue);
  background: var(--lp-blue-light);
  transform: translateX(4px);
}

.lp-contact-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.lp-contact-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--lp-muted);
  margin-bottom: 2px;
}

.lp-contact-value {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-text);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .lp-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-ps-grid { grid-template-columns: 1fr; gap: 24px; }
    .lp-vm-grid { grid-template-columns: 1fr; }
    .lp-compare-table { font-size: 13px; }
    .lp-team-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .lp-hero { padding: 60px 0 48px; }
    .lp-hero-title { font-size: 34px; }
    .lp-hero-sub { font-size: 15px; }
    .lp-hero-ctas { flex-direction: column; gap: 12px; align-items: stretch; }
    .lp-btn-primary, .lp-btn-ghost { text-align: center; justify-content: center; }
    .lp-hero-stats { flex-direction: column; gap: 16px; align-items: center; }
    .lp-stat-div { display: none; }
    .lp-section { padding: 48px 0; }
    .lp-section-title { font-size: 26px; }
    .lp-feature-grid { grid-template-columns: 1fr; gap: 16px; }
    .lp-team-grid { grid-template-columns: 1fr; }
    .lp-compare-header { font-size: 12px; }
    .lp-compare-row { font-size: 12.5px; }
}

@media (max-width: 480px) {
    .lp-container { padding: 0 16px; }
    .lp-hero-title { font-size: 28px; }
    .lp-hero-badge { font-size: 10px; }
    .lp-section-title { font-size: 22px; }
    .lp-section-lead { font-size: 14px; }
    .lp-feature-card { padding: 20px; }
    .lp-faq-q { font-size: 14px; padding: 14px 16px; }
    .lp-faq-a { font-size: 13.5px; padding: 0 16px; }
    .lp-compare-col { font-size: 11px; }
}