/* SooperKanoon - About page */

.sk-about-page {
  --sk-about-ink: #0f172a;
  --sk-about-navy: #1e1b4b;
  --sk-about-accent: #4338ca;
  --sk-about-gold: #c4a962;
  background: #fff;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.sk-about-hero {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 3.5rem;
}

.sk-about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 15% 0%, rgba(67, 56, 202, 0.1), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(196, 169, 98, 0.08), transparent 50%);
}

.sk-about-hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .sk-about-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3rem;
  }
}

.sk-about-hero-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--sk-about-ink);
}

.sk-about-hero-copy .sk-about-lead {
  margin: 1.25rem 0 0;
  max-width: 36rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #475569;
}

.sk-about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 1.75rem;
}

.sk-about-trust-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.sk-about-trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.sk-about-trust-line svg {
  width: 1rem;
  height: 1rem;
  color: #059669;
  flex-shrink: 0;
}

/* Hero preview bento */
.sk-about-preview {
  position: relative;
  border-radius: 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: linear-gradient(145deg, #f8fafc 0%, #fff 45%, #eef2ff 100%);
  padding: 1.25rem;
  box-shadow:
    0 24px 48px -24px rgba(30, 27, 75, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.sk-about-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}

.sk-about-preview-dots {
  display: flex;
  gap: 0.35rem;
}

.sk-about-preview-dots i {
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #cbd5e1;
}

.sk-about-preview-dots i:first-child { background: #f87171; }
.sk-about-preview-dots i:nth-child(2) { background: #fbbf24; }
.sk-about-preview-dots i:nth-child(3) { background: #34d399; }

.sk-about-preview-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.sk-about-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.sk-about-preview-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-radius: 0.875rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 0.875rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sk-about-preview-card:hover,
.sk-about-preview-card:focus-visible {
  transform: translateY(-2px);
  border-color: #c7d2fe;
  box-shadow: 0 8px 20px -12px rgba(67, 56, 202, 0.45);
  outline: none;
}

.sk-about-preview-card:nth-child(1) {
  grid-column: span 2;
  background: linear-gradient(135deg, #fff 0%, #f5f3ff 100%);
}

.sk-about-preview-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  color: #fff;
  flex-shrink: 0;
}

.sk-about-preview-icon svg {
  display: block;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.sk-about-preview-card strong {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f172a;
}

.sk-about-preview-card .sk-about-preview-desc {
  font-size: 0.6875rem;
  line-height: 1.45;
  color: #64748b;
}

/* ── Section spacing ──────────────────────────────────────────── */
.sk-about-section {
  padding: 3rem 0;
}

.sk-about-section-alt {
  background: #f8fafc;
}

.sk-about-section-header {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.sk-about-section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sk-about-section-header h2 {
  margin: 0;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--sk-about-ink);
}

.sk-about-section-header p {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
}

/* ── Bento cards ──────────────────────────────────────────────── */
.sk-about-bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .sk-about-bento {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.sk-about-bento-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sk-about-bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -16px rgba(15, 23, 42, 0.35);
}

.sk-about-bento-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.sk-about-bento-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #64748b;
}

/* ── Origin story ─────────────────────────────────────────────── */
.sk-about-section-story {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(67, 56, 202, 0.07), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 30%, rgba(196, 169, 98, 0.08), transparent 50%),
    #fff;
}

.sk-about-story-header {
  max-width: 44rem;
}

.sk-about-story-quote {
  position: relative;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  padding: 1.75rem 1.5rem 1.5rem;
  text-align: center;
  border-radius: 1.25rem;
  border: 1px solid rgba(199, 210, 254, 0.8);
  background: linear-gradient(160deg, #eef2ff 0%, #fff 55%, #faf8f3 100%);
  box-shadow: 0 20px 40px -28px rgba(30, 27, 75, 0.35);
}

.sk-about-story-quote::before {
  content: '\201C';
  display: block;
  margin-bottom: 0.25rem;
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  color: #a5b4fc;
}

.sk-about-story-quote p {
  margin: 0;
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.55;
  color: #1e1b4b;
}

.sk-about-story-quote cite {
  display: block;
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #64748b;
}

.sk-about-story-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .sk-about-story-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2.5rem;
  }
}

.sk-about-story-text p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
}

.sk-about-story-text p:last-child {
  margin-bottom: 0;
}

.sk-about-story-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-top: 1.25rem !important;
  font-size: 0.9375rem;
  font-weight: 600;
}

.sk-about-story-links a {
  color: #4f46e5;
  text-decoration: none;
}

.sk-about-story-links a:hover,
.sk-about-story-links a:focus {
  text-decoration: underline;
}

.sk-about-story-links span {
  color: #cbd5e1;
}

.sk-about-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.sk-about-timeline-item {
  position: relative;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1rem 1rem 1rem 3rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.sk-about-timeline-item:hover {
  border-color: #c7d2fe;
  box-shadow: 0 8px 24px -16px rgba(67, 56, 202, 0.4);
  transform: translateX(2px);
}

.sk-about-timeline-item::before {
  content: '';
  position: absolute;
  left: 1.125rem;
  top: 1.5rem;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

.sk-about-timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 1.4375rem;
  top: 2.25rem;
  bottom: -0.875rem;
  width: 2px;
  background: linear-gradient(180deg, #c7d2fe, #e2e8f0);
}

.sk-about-timeline-year {
  display: inline-block;
  margin-bottom: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4f46e5;
}

.sk-about-timeline-item h3 {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

.sk-about-timeline-item p {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
}

.sk-about-timeline-item:last-child {
  border-color: #c7d2fe;
  background: linear-gradient(160deg, #eef2ff 0%, #fff 100%);
}

/* ── Mission band ─────────────────────────────────────────────── */
.sk-about-mission-band {
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #3730a3 100%);
  padding: 2.5rem 1.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .sk-about-mission-band {
    padding: 3rem 2.5rem;
  }
}

.sk-about-mission-band::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 169, 98, 0.15) 0%, transparent 68%);
  pointer-events: none;
}

.sk-about-mission-eyebrow {
  position: relative;
  margin: 0 auto 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a5b4fc;
}

.sk-about-mission-statement {
  position: relative;
  max-width: 48rem;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 600;
  line-height: 1.5;
  color: #eef2ff;
}

.sk-about-mission-grid {
  position: relative;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .sk-about-mission-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.sk-about-mission-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 1.25rem;
  backdrop-filter: blur(4px);
}

.sk-about-mission-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.sk-about-mission-card p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #c7d2fe;
}

/* ── Capabilities bento grid ──────────────────────────────────── */
.sk-about-cap-grid {
  display: grid;
  gap: 0.875rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .sk-about-cap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .sk-about-cap-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .sk-about-cap-grid .sk-about-cap-card:nth-child(1),
  .sk-about-cap-grid .sk-about-cap-card:nth-child(6) {
    grid-column: span 2;
  }
}

.sk-about-cap-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 7.5rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sk-about-cap-card:hover,
.sk-about-cap-card:focus-visible {
  transform: translateY(-2px);
  border-color: #c7d2fe;
  box-shadow: 0 10px 24px -14px rgba(67, 56, 202, 0.4);
  outline: none;
}

.sk-about-cap-card h3 {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

.sk-about-cap-card p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #64748b;
}

/* ── Comparison ───────────────────────────────────────────────── */
.sk-about-compare {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .sk-about-compare {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.sk-about-compare-col {
  border-radius: 1.25rem;
  padding: 1.5rem;
}

.sk-about-compare-col.traditional {
  border: 1px solid #e2e8f0;
  background: #fff;
}

.sk-about-compare-col.modern {
  border: 1px solid #c7d2fe;
  background: linear-gradient(160deg, #eef2ff 0%, #fff 100%);
  box-shadow: 0 16px 40px -24px rgba(67, 56, 202, 0.35);
}

.sk-about-compare-col h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.sk-about-compare-col.modern h3 {
  color: #3730a3;
}

.sk-about-compare-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sk-about-compare-col li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #475569;
}

.sk-about-compare-col li:last-child {
  margin-bottom: 0;
}

.sk-about-compare-col li svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.sk-about-compare-col.traditional li svg {
  color: #94a3b8;
}

.sk-about-compare-col.modern li svg {
  color: #4f46e5;
}

/* ── Stats strip ──────────────────────────────────────────────── */
.sk-about-stats-band {
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  padding: 1.5rem;
}

.sk-about-stats-band .sk-stats-grid {
  gap: 1rem;
}

.sk-about-stats-band .sk-stat-card {
  border-radius: 1rem;
  padding: 1.25rem 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sk-about-stats-band .sk-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -12px rgba(67, 56, 202, 0.3);
}

.sk-about-stats-band .sk-stat-card strong {
  font-size: 1.75rem;
}

/* ── Audience grid ────────────────────────────────────────────── */
.sk-about-audience-grid {
  display: grid;
  gap: 0.875rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .sk-about-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .sk-about-audience-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sk-about-audience-grid .sk-about-audience-card:last-child {
    grid-column: span 2;
  }
}

.sk-about-audience-card {
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1.125rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sk-about-audience-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -14px rgba(15, 23, 42, 0.2);
}

.sk-about-audience-card h3 {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

.sk-about-audience-card p {
  margin: 0.4rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
}

/* ── Trust section ────────────────────────────────────────────── */
.sk-about-trust-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .sk-about-trust-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    align-items: start;
  }
}

.sk-about-trust-points {
  display: grid;
  gap: 0.75rem;
}

.sk-about-trust-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 0.875rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 0.875rem 1rem;
}

.sk-about-trust-point svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: #4f46e5;
  margin-top: 0.1rem;
}

.sk-about-trust-point strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
}

.sk-about-trust-point span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #64748b;
}

.sk-about-testimonials {
  display: grid;
  gap: 0.875rem;
}

.sk-about-testimonial {
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1rem 1.125rem;
}

.sk-about-testimonial p {
  margin: 0;
  font-size: 0.8125rem;
  font-style: italic;
  line-height: 1.6;
  color: #334155;
}

.sk-about-testimonial footer {
  margin-top: 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0f172a;
}

.sk-about-testimonial footer span {
  display: block;
  font-weight: 400;
  color: #64748b;
}

.sk-about-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
}

.sk-about-logos img {
  max-height: 2.25rem;
  width: auto;
  max-width: 7rem;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.85;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.sk-about-logos a:hover img,
.sk-about-logos a:focus-visible img {
  filter: none;
  opacity: 1;
}

.sk-about-logos-label {
  width: 100%;
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
}

/* ── CTA band ─────────────────────────────────────────────────── */
.sk-about-cta-band {
  background: linear-gradient(135deg, #1e1b4b 0%, #4338ca 100%);
  padding: 3.5rem 0;
}

.sk-about-cta-inner {
  text-align: center;
}

.sk-about-cta-inner h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
}

.sk-about-cta-inner p {
  margin: 0.875rem auto 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #c7d2fe;
}

.sk-about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
  margin-top: 1.75rem;
}

.sk-about-cta-actions .sk-btn-primary {
  background: #fff;
  color: #3730a3;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.sk-about-cta-actions .sk-btn-primary:hover {
  background: #f8fafc;
  color: #312e81;
}

.sk-about-cta-actions .sk-btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.sk-about-cta-actions .sk-btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
