.about-page {
  --primary: #0071AE;
  --primary-dark: #005b8e;
  --primary-light: #4BC9E9;
  --secondary: #0f172a;
  --text: #233247;
  --muted: #607086;
  --white: #ffffff;
  --bg-soft: #f5f9ff;
  --bg-soft-2: #eef7fc;
  --border-soft: rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 80px rgba(15, 23, 42, 0.12);
  --shadow-md: 0 18px 50px rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 10px 24px rgba(15, 23, 42, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-page * {
  box-sizing: border-box;
}

.about-page .container {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.about-page .section-space {
  padding: 90px 0;
}

.about-page .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0, 113, 174, 0.08);
  color: var(--primary-dark);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.about-page .section-badge--light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.about-page .gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid transparent;
}

.about-page .btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 113, 174, 0.25);
}

.about-page .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 113, 174, 0.30);
}

.about-page .btn-outline {
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--secondary);
}

.about-page .btn-outline:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 113, 174, 0.22);
}

.about-page .btn-white {
  background: #fff;
  color: var(--primary-dark);
}

.about-page .btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.about-page .btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
}

.about-page .section-heading {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.about-page .section-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  color: var(--secondary);
}

.about-page .section-heading p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
}

/* HERO */
.about-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 70px;
  background:
    radial-gradient(circle at 12% 18%, rgba(75, 201, 233, 0.20), transparent 22%),
    radial-gradient(circle at 85% 20%, rgba(0, 113, 174, 0.18), transparent 25%),
    linear-gradient(135deg, #081826 0%, #0b3150 45%, #0f6ea4 100%);
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.00) 0%, rgba(255,255,255,0.03) 100%);
}

.about-hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.about-hero__content h1 {
  margin: 0 0 20px;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.02;
  color: #fff;
  letter-spacing: -0.03em;
}

.about-hero__text {
  max-width: 700px;
  margin: 0 0 30px;
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.82);
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.about-hero__visual {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-glass-card {
  position: relative;
  z-index: 2;
  width: min(100%, 480px);
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.about-glass-card__kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-glass-card h2 {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1.15;
  color: #fff;
}

.about-glass-card p {
  margin: 0 0 20px;
  color: rgba(255,255,255,0.80);
  line-height: 1.8;
}

.about-checks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.about-checks li {
  position: relative;
  padding-left: 18px;
  color: #fff;
  line-height: 1.6;
}

.about-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-light);
  box-shadow: 0 0 0 6px rgba(75, 201, 233, 0.16);
}

.about-floating {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.9;
}

.about-floating--one {
  width: 180px;
  height: 180px;
  top: 20px;
  right: 30px;
  background: radial-gradient(circle, rgba(75, 201, 233, 0.55), rgba(75, 201, 233, 0.05));
}

.about-floating--two {
  width: 220px;
  height: 220px;
  bottom: 20px;
  left: 10px;
  background: radial-gradient(circle, rgba(0, 113, 174, 0.45), rgba(0, 113, 174, 0.03));
}

/* STATS */
.about-stats {
  margin-top: -30px;
  position: relative;
  z-index: 3;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.about-stat {
  padding: 26px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.about-stat__value {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
  color: var(--secondary);
  font-weight: 800;
}

.about-stat__label {
  display: block;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.98rem;
}

/* STORY */
.about-story {
  background:
    radial-gradient(circle at 10% 15%, rgba(75, 201, 233, 0.10), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: start;
}

.about-story__content h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  color: var(--secondary);
}

.about-story__content > p {
  margin: 0 0 18px;
  font-size: 1.03rem;
  line-height: 1.9;
  color: var(--muted);
}

.about-story__highlights {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.about-highlight {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.about-highlight__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  margin-top: 2px;
  color: var(--primary);
  font-weight: 800;
}

.about-highlight p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

.about-story__panel {
  display: grid;
  gap: 18px;
}

.about-panel {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
}

.about-panel--accent {
  background: linear-gradient(135deg, #0a2237 0%, #0e5f91 100%);
  border-color: rgba(255,255,255,0.12);
}

.about-panel__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
}

.about-panel--accent .about-panel__eyebrow {
  color: rgba(255,255,255,0.76);
}

.about-panel h3 {
  margin: 0 0 14px;
  font-size: 1.45rem;
  line-height: 1.3;
  color: var(--secondary);
}

.about-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.about-panel--accent h3,
.about-panel--accent p {
  color: #fff;
}

/* VALUES */
.about-values {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.about-value-card {
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,251,255,0.96));
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.about-value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.about-value-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  color: var(--secondary);
}

.about-value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

/* CTA */
.about-cta__box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 20%, rgba(75, 201, 233, 0.22), transparent 20%),
    linear-gradient(135deg, #071826 0%, #0e4e78 52%, #1390c7 100%);
  box-shadow: var(--shadow-lg);
}

.about-cta__content h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  color: #fff;
}

.about-cta__content p {
  margin: 0;
  max-width: 760px;
  color: rgba(255,255,255,0.84);
  line-height: 1.8;
}

.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

/* REVEAL */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .about-hero__container,
  .about-story__grid,
  .about-cta__box {
    grid-template-columns: 1fr;
  }

  .about-hero__visual {
    min-height: 360px;
  }

  .about-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .about-stats__grid,
  .about-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .about-page .section-space {
    padding: 72px 0;
  }

  .about-hero {
    padding: 90px 0 60px;
  }

  .about-hero__content h1 {
    font-size: 2.35rem;
  }

  .about-hero__text,
  .about-story__content > p,
  .about-cta__content p,
  .about-value-card p,
  .about-panel p {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .about-stats__grid,
  .about-values__grid {
    grid-template-columns: 1fr;
  }

  .about-glass-card {
    padding: 24px;
  }

  .about-panel,
  .about-value-card,
  .about-highlight {
    padding: 22px;
  }

  .about-cta__box {
    padding: 26px;
  }

  .about-hero__actions,
  .about-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-page .btn {
    width: 100%;
  }
}