/* ==============================================
   ABOUT PAGE STYLES (abt- prefix)
   Does NOT affect any other page.
   Brand: #6470DC purple, #4ad39c green, #09101f dark
   ============================================== */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

/* ── Global Overrides (style.css uses !important on a,p,*) ── */
.abt-hero, .abt-hero *,
.abt-section, .abt-section *,
.abt-stats, .abt-stats *,
.abt-trust, .abt-trust *,
.abt-faq, .abt-faq *,
.abt-links, .abt-links *,
.abt-cta, .abt-cta * {
  font-family: "DM Sans", sans-serif !important;
}
.abt-hero a, .abt-cta a, .abt-trust a {
  color: inherit;
}
.abt-btn-primary, .abt-btn-primary:hover, .abt-btn-primary:focus {
  color: #ffffff !important;
}
.abt-btn-secondary, .abt-btn-secondary:hover, .abt-btn-secondary:focus {
  color: rgba(255,255,255,0.8) !important;
}
.abt-btn-secondary:hover { color: #ffffff !important; }
.abt-btn-green, .abt-btn-green:hover, .abt-btn-green:focus {
  color: #ffffff !important;
}
.abt-btn-ghost, .abt-btn-ghost:hover, .abt-btn-ghost:focus {
  color: rgba(255,255,255,0.75) !important;
}
.abt-btn-ghost:hover { color: #ffffff !important; }
.abt-hero-sub { color: rgba(255,255,255,0.6) !important; }
.abt-cta .abt-subtitle { color: rgba(255,255,255,0.55) !important; }
.abt-cta-micro { color: rgba(255,255,255,0.3) !important; }

/* ── Hero ─────────────────────────────────────── */
.abt-hero {
  background: linear-gradient(165deg, #09101f 0%, #0d1529 50%, #09101f 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0 90px;
  text-align: center;
}
.abt-hero::before {
  content: "";
  position: absolute;
  top: -280px;
  right: -180px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(100,112,220,0.16) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.abt-hero::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74,211,156,0.09) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.abt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(100,112,220,0.15);
  border: 1px solid rgba(100,112,220,0.3);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.abt-hero-badge i { color: #4ad39c; font-size: 16px; }
.abt-hero h1 {
  font-size: 50px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.abt-hero h1 .abt-gradient-text {
  background: linear-gradient(135deg, #6470DC, #4ad39c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.abt-hero-sub {
  font-size: 19px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 40px;
  font-weight: 400;
}
.abt-hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.abt-btn-primary {
  display: inline-block;
  padding: 16px 38px;
  background: #4ad39c;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
}
.abt-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74,211,156,0.4);
  text-decoration: none;
}
.abt-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
}
.abt-btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  text-decoration: none;
}

/* ── Stats Bar ────────────────────────────────── */
.abt-stats {
  background: #ffffff;
  padding: 55px 0;
  border-bottom: 1px solid #eef0f6;
}
.abt-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.abt-stat {
  text-align: center;
  padding: 16px 10px;
  border-right: 1px solid #eef0f6;
}
.abt-stat:last-child { border-right: none; }
.abt-stat-num {
  font-size: 34px;
  font-weight: 800;
  color: #09101f;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.abt-stat-num span { color: #6470DC; }
.abt-stat-label {
  font-size: 13px;
  color: #6e727f;
  font-weight: 500;
}

/* ── Section Common ───────────────────────────── */
.abt-section {
  padding: 80px 0;
}
.abt-section-light { background: #f8f9ff; }
.abt-section-white { background: #ffffff; }
.abt-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6470DC;
  margin-bottom: 14px;
}
.abt-title {
  font-size: 38px;
  font-weight: 800;
  color: #09101f;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.abt-subtitle {
  font-size: 17px;
  color: #6e727f;
  line-height: 1.7;
  max-width: 620px;
  font-weight: 400;
}

/* ── Story Row (text + image) ─────────────────── */
.abt-story-row {
  display: flex;
  align-items: center;
  gap: 60px;
}
.abt-story-row.reverse { flex-direction: row-reverse; }
.abt-story-text { flex: 1; min-width: 0; }
.abt-story-text h2 {
  font-size: 34px;
  font-weight: 800;
  color: #09101f;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.abt-story-text p {
  font-size: 16px;
  color: #6e727f;
  line-height: 1.7;
  margin-bottom: 16px;
}
.abt-story-visual {
  flex: 1;
  min-width: 0;
}
.abt-story-visual img {
  width: 100%;
  border-radius: 16px;
}
.abt-check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.abt-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #09101f;
  line-height: 1.5;
  font-weight: 500;
}
.abt-check-list li i {
  color: #4ad39c;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Values Grid ──────────────────────────────── */
.abt-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.abt-value-card {
  background: #ffffff;
  border: 1px solid #eef0f6;
  border-radius: 14px;
  padding: 32px 26px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.abt-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(100,112,220,0.12);
  border-color: rgba(100,112,220,0.2);
}
.abt-value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(100,112,220,0.1), rgba(74,211,156,0.08));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.abt-value-icon i {
  font-size: 26px;
  color: #6470DC;
}
.abt-value-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #09101f;
  margin-bottom: 10px;
}
.abt-value-card p {
  font-size: 14px;
  color: #6e727f;
  line-height: 1.65;
  margin: 0;
}

/* ── Trust/Certifications ─────────────────────── */
.abt-trust {
  background: #09101f;
  padding: 60px 0;
}
.abt-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.abt-trust-item {
  text-align: center;
  padding: 24px 16px;
}
.abt-trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(100,112,220,0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.abt-trust-icon i {
  font-size: 24px;
  color: #6470DC;
}
.abt-trust-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}
.abt-trust-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.45) !important;
  line-height: 1.5;
  margin: 0;
}

/* ── FAQ Section ──────────────────────────────── */
.abt-faq {
  padding: 80px 0;
  background: #ffffff;
}
.abt-faq-grid {
  max-width: 800px;
  margin: 40px auto 0;
}
.abt-faq-item {
  border-bottom: 1px solid #eef0f6;
  padding: 24px 0;
}
.abt-faq-item:first-child { border-top: 1px solid #eef0f6; }
.abt-faq-q {
  font-size: 17px;
  font-weight: 700;
  color: #09101f;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.abt-faq-q i {
  color: #6470DC;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.abt-faq-a {
  font-size: 15px;
  color: #6e727f;
  line-height: 1.7;
  padding-left: 32px;
  margin: 0;
}
.abt-faq-a a {
  color: #6470DC !important;
  text-decoration: underline;
}
.abt-faq-a a:hover {
  color: #6470DC !important;
}

/* ── Internal Links Section ───────────────────── */
.abt-links {
  padding: 60px 0;
  background: #f8f9ff;
  border-top: 1px solid #eef0f6;
}
.abt-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.abt-link-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: #ffffff;
  border: 1px solid #eef0f6;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.abt-link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(100,112,220,0.1);
  border-color: rgba(100,112,220,0.2);
  text-decoration: none;
}
.abt-link-card i {
  font-size: 22px;
  color: #6470DC;
  flex-shrink: 0;
}
.abt-link-card-text {
  min-width: 0;
}
.abt-link-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #09101f !important;
  margin-bottom: 2px;
}
.abt-link-card-desc {
  font-size: 13px;
  color: #6e727f !important;
  line-height: 1.4;
}

/* ── Final CTA ────────────────────────────────── */
.abt-cta {
  background: linear-gradient(165deg, #09101f 0%, #0d1529 50%, #09101f 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.abt-cta::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(100,112,220,0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.abt-cta::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(74,211,156,0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.abt-cta .abt-title {
  color: #ffffff;
  font-size: 42px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.abt-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.abt-btn-green {
  display: inline-block;
  padding: 18px 44px;
  background: #4ad39c;
  font-size: 17px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
}
.abt-btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74,211,156,0.35);
  text-decoration: none;
}
.abt-btn-ghost {
  display: inline-block;
  padding: 18px 40px;
  background: transparent;
  font-size: 17px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
}
.abt-btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.abt-cta-micro {
  font-size: 14px;
  position: relative;
  z-index: 1;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 991px) {
  .abt-hero { padding: 100px 0 60px; }
  .abt-hero h1 { font-size: 36px; }
  .abt-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .abt-stat { border-right: none; }
  .abt-story-row, .abt-story-row.reverse { flex-direction: column; gap: 30px; }
  .abt-values-grid { grid-template-columns: repeat(2, 1fr); }
  .abt-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .abt-links-grid { grid-template-columns: repeat(2, 1fr); }
  .abt-title { font-size: 30px; }
}
@media (max-width: 575px) {
  .abt-hero h1 { font-size: 28px; }
  .abt-hero-sub { font-size: 16px; }
  .abt-hero-btns { flex-direction: column; align-items: stretch; }
  .abt-hero-btns a { text-align: center; }
  .abt-stats-grid { grid-template-columns: 1fr 1fr; }
  .abt-stat-num { font-size: 28px; }
  .abt-values-grid { grid-template-columns: 1fr; }
  .abt-trust-grid { grid-template-columns: 1fr; }
  .abt-links-grid { grid-template-columns: 1fr; }
  .abt-cta-btns { flex-direction: column; align-items: stretch; }
  .abt-cta-btns a { text-align: center; }
  .abt-cta .abt-title { font-size: 26px; }
  .abt-story-text h2 { font-size: 26px; }
}
