/* ==========================================================================
   ABOUT PAGE — Phase 1 (Hero & Page-Specific Styles)
   ========================================================================== */

/* Page Background Setup */
.about-page {
  background-color: #ffffff;
  color: var(--color-text-main, #ffffff);
  min-height: 100vh;
  position: relative;
  overflow-x: clip;
}

/* --------------------------------------------------------------------------
   Hero Section Shell & Purple Atmospheric Backdrop
   -------------------------------------------------------------------------- */
.ab-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 8rem;
  padding-bottom: 7.5rem;
  background-color: #0d0628;
  background-image:
    linear-gradient(to bottom, rgba(13, 6, 40, 0.4) 0%, rgba(13, 6, 40, 0.85) 100%),
    url('../images/About/banner_background_about.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: clip;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ab-hero .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
  width: 100%;
}

.ab-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem 3.5rem;
  align-items: center;
  min-width: 0;
}

/* --------------------------------------------------------------------------
   Ambient Effects & Background Glows
   -------------------------------------------------------------------------- */
.ab-hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(70px);
}

.ab-hero__glow--1 {
  top: 15%;
  left: 10%;
  width: min(500px, 60vw);
  height: min(500px, 60vw);
  background: radial-gradient(circle, rgba(147, 51, 234, 0.28) 0%, rgba(124, 58, 237, 0.1) 50%, transparent 70%);
  animation: abGlowPulse 8s ease-in-out infinite;
}

.ab-hero__glow--2 {
  bottom: 20%;
  left: 25%;
  width: min(400px, 50vw);
  height: min(400px, 50vw);
  background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
  animation: abGlowPulse 9s ease-in-out 1.5s infinite alternate;
}

.ab-hero__glow--figure {
  top: 30%;
  right: 12%;
  width: min(550px, 65vw);
  height: min(550px, 65vw);
  background: radial-gradient(circle, rgba(216, 180, 254, 0.25) 0%, rgba(147, 51, 234, 0.18) 45%, transparent 75%);
  animation: abGlowPulse 7s ease-in-out 0.6s infinite;
}

/* --------------------------------------------------------------------------
   Hero Left Column & Typography
   -------------------------------------------------------------------------- */
.ab-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  z-index: 5;
}

/* Badge */
.ab-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 1.15rem;
  border-radius: 9999px;
  background: rgba(167, 139, 250, 0.16);
  border: 1px solid rgba(196, 181, 253, 0.32);
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e9d5ff;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(124, 58, 237, 0.15);
  animation: abFadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

/* Heading */
.ab-hero__title {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-weight: 800;
  font-size: clamp(2.35rem, 4.4vw + 0.5rem, 3.75rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 1.35rem;
  animation: abFadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.ab-hero__gradient {
  background: linear-gradient(135deg, #a78bfa 0%, #c084fc 50%, #e879f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Description */
.ab-hero__description {
  font-size: clamp(1.025rem, 1.2vw, 1.15rem);
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.9);
  max-width: 540px;
  margin-bottom: 2.25rem;
  font-weight: 400;
  animation: abFadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

/* --------------------------------------------------------------------------
   3 Trust Items
   -------------------------------------------------------------------------- */
.ab-hero__trust {
  display: flex;
  flex-direction: row;
  gap: 1.25rem 1.75rem;
  width: 100%;
  animation: abFadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.ab-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  flex: 1 1 160px;
  min-width: 150px;
}

.ab-trust-item__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.18);
  border: 1px solid rgba(196, 181, 253, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c084fc;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.15);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.ab-trust-item:hover .ab-trust-item__icon {
  transform: translateY(-2px) scale(1.05);
  background: rgba(139, 92, 246, 0.28);
  border-color: rgba(196, 181, 253, 0.5);
  color: #e9d5ff;
}

.ab-trust-item__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ab-trust-item__title {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.ab-trust-item__desc {
  font-size: 0.8rem;
  color: rgba(203, 213, 225, 0.85);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   Hero Right Column: Mountain Climber Image
   -------------------------------------------------------------------------- */
.ab-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  animation: abFadeSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.ab-hero__stage {
  position: relative;
  width: 100%;
  max-width: 560px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ab-hero__mountain-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: abFloat 7s ease-in-out infinite;
}

.ab-hero__mountain-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 45px rgba(168, 85, 247, 0.3));
  transition: transform 0.4s ease;
}

.ab-hero__mountain-img:hover {
  transform: scale(1.02);
}

/* --------------------------------------------------------------------------
   Curved Bottom Edge
   -------------------------------------------------------------------------- */
.ab-hero__curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 8;
  pointer-events: none;
}

.ab-hero__curve svg {
  display: block;
  width: 100%;
  height: clamp(50px, 6vw, 90px);
}

/* --------------------------------------------------------------------------
   Keyframe Animations
   -------------------------------------------------------------------------- */
@keyframes abFadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes abFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes abGlowPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .ab-hero__grid {
    gap: 2rem 2.5rem;
  }
}

@media (max-width: 1024px) {
  .ab-hero {
    padding-top: 7rem;
    padding-bottom: 5.5rem;
    min-height: auto;
    background-position: 70% center;
    background-image:
      linear-gradient(to bottom, rgba(13, 6, 40, 0.6) 0%, rgba(13, 6, 40, 0.9) 100%),
      url('../images/About/banner_background_about.png');
  }

  .ab-hero__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .ab-hero__visual {
    display: none;
  }

  .ab-hero__content {
    align-items: center;
    text-align: center;
  }

  .ab-hero__description {
    margin-left: auto;
    margin-right: auto;
  }

  .ab-hero__trust {
    justify-content: center;
    max-width: 650px;
    margin: 0 auto;
  }

  .ab-trust-item {
    text-align: left;
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  .ab-hero {
    padding-top: 6.5rem;
    padding-bottom: 4.5rem;
    background-position: 72% center;
    background-image:
      linear-gradient(to bottom, rgba(13, 6, 40, 0.68) 0%, rgba(13, 6, 40, 0.92) 100%),
      url('../images/About/banner_background_about.png');
  }

  .ab-hero__badge {
    margin-bottom: 1rem;
  }

  .ab-hero__title {
    font-size: clamp(2rem, 6.5vw, 2.6rem);
    margin-bottom: 0.85rem;
  }

  .ab-hero__description {
    font-size: 0.975rem;
    margin-bottom: 1.75rem;
    max-width: 440px;
  }

  .ab-hero__trust {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .ab-trust-item {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex: none;
    gap: 0.75rem;
    align-items: center;
    text-align: left;
    padding: 0.2rem 0;
  }

  .ab-trust-item__icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
  }

  .ab-trust-item__text {
    gap: 0.1rem;
  }

  .ab-trust-item__title {
    font-size: 0.925rem;
    line-height: 1.25;
  }

  .ab-trust-item__desc {
    font-size: 0.8rem;
    line-height: 1.35;
  }
}

@media (max-width: 480px) {
  .ab-hero {
    padding-top: 5.5rem;
    padding-bottom: 3.5rem;
    background-position: 75% 20%;
    background-image:
      linear-gradient(to bottom, rgba(13, 6, 40, 0.72) 0%, rgba(13, 6, 40, 0.94) 100%),
      url('../images/About/banner_background_about.png');
  }

  .ab-hero__title {
    font-size: 1.85rem;
    line-height: 1.18;
  }

  .ab-hero__description {
    font-size: 0.925rem;
    line-height: 1.5;
    margin-bottom: 1.35rem;
  }

  .ab-hero__trust {
    gap: 0.6rem;
    max-width: 280px;
  }

  .ab-trust-item {
    gap: 0.7rem;
  }
}

@media (max-width: 390px) {
  .ab-hero__title {
    font-size: 1.7rem;
  }

  .ab-trust-item__icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .ab-trust-item__title {
    font-size: 0.885rem;
  }

  .ab-trust-item__desc {
    font-size: 0.775rem;
  }
}

@media (max-width: 340px) {
  .ab-hero__title {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   PHASE 2 — OUR MISSION SECTION & 4 MISSION CARDS
   ========================================================================== */

.ab-mission {
  position: relative;
  background-color: #ffffff;
  padding: 6.5rem 0 6.5rem;
  color: var(--color-text-dark, #0f172a);
}

.ab-mission .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Header */
.ab-mission__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.75rem;
}

.ab-mission__eyebrow {
  display: inline-block;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7c3aed;
  margin-bottom: 0.75rem;
  position: relative;
}

.ab-mission__eyebrow::before,
.ab-mission__eyebrow::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 1.5px;
  background: #c4b5fd;
  margin: 0 10px;
}

.ab-mission__title {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: clamp(2rem, 3.2vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 0.85rem;
}

.ab-mission__subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 0;
}

/* 4-Card 4-Column Grid */
.ab-mission__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Mission Card */
.ab-mission-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.25rem 1.4rem 1.85rem;
  border: 1px solid #f1f5f9;
  box-shadow:
    0 10px 30px -5px rgba(0, 0, 0, 0.04),
    0 4px 6px -2px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease;
  position: relative;
  will-change: transform, box-shadow;
}

.ab-mission-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 22px 40px -10px rgba(124, 58, 237, 0.14),
    0 8px 16px -4px rgba(0, 0, 0, 0.04);
  border-color: #ddd6fe;
}

/* Circular Icon Container */
.ab-mission-card__icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f3e8ff;
  color: #7c3aed;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, color 0.3s ease;
}

.ab-mission-card__icon {
  width: 26px;
  height: 26px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ab-mission-card:hover .ab-mission-card__icon-wrapper {
  transform: scale(1.1);
  background: #ede9fe;
  color: #6d28d9;
}

.ab-mission-card:hover .ab-mission-card__icon {
  transform: scale(1.05);
}

.ab-mission-card__title {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 0.65rem;
}

.ab-mission-card__desc {
  font-size: 0.865rem;
  line-height: 1.5;
  color: #64748b;
  margin-bottom: 0;
}

/* ==========================================================================
   PHASE 2 — OUR STORY SECTION ("Why We Built LEAP")
   ========================================================================== */

.ab-story {
  position: relative;
  background-color: #ffffff;
  padding: 2rem 0 6.5rem;
  color: var(--color-text-dark, #0f172a);
}

.ab-story .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ab-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3.5rem 4rem;
  align-items: center;
}

/* Left Content Area */
.ab-story__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ab-story__eyebrow {
  display: inline-block;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7c3aed;
  margin-bottom: 0.65rem;
}

.ab-story__title {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: clamp(2rem, 3.2vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.ab-story__text {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 2.25rem;
}

.ab-story__text p {
  margin-bottom: 0;
}

/* Learn More About Our Journey Pill Button */
.ab-story__cta {
  display: flex;
}

.ab-btn-journey {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #ffffff;
  color: #7c3aed;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 1.85rem;
  border-radius: 9999px;
  border: 1.5px solid #ddd6fe;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.08);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.25s ease,
              color 0.25s ease,
              border-color 0.25s ease,
              box-shadow 0.25s ease;
}

.ab-btn-journey svg {
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.ab-btn-journey:hover {
  transform: translateY(-2px);
  background: #7c3aed;
  color: #ffffff;
  border-color: #7c3aed;
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.28);
}

.ab-btn-journey:hover svg {
  transform: translateX(4px);
}

/* Right Side: Image Card with Quote Overlay */
.ab-story__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ab-story__image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 24px 48px -12px rgba(15, 23, 42, 0.18),
    0 8px 20px -6px rgba(124, 58, 237, 0.12);
  width: 100%;
  max-width: 580px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ab-story__image-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 32px 60px -12px rgba(15, 23, 42, 0.24),
    0 12px 28px -6px rgba(124, 58, 237, 0.2);
}

.ab-story__image {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

/* Transparent Quote Text Merged Directly on Image */
.ab-story__quote-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 55%;
  background: linear-gradient(to right, rgba(15, 7, 34, 0.78) 0%, rgba(15, 7, 34, 0.4) 70%, transparent 100%);
  border: none;
  border-radius: 24px 0 0 24px;
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  box-shadow: none;
  animation: none;
  pointer-events: none;
}

.ab-story__quote-icon {
  color: #c084fc;
  margin-bottom: 1.15rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.ab-story__quote-text {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
  padding: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

.ab-story__quote-line {
  width: 42px;
  height: 3.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, #c084fc, #e879f9);
  box-shadow: 0 2px 8px rgba(192, 132, 252, 0.5);
}

/* --------------------------------------------------------------------------
   Scroll Reveal Animations (Phase 2)
   -------------------------------------------------------------------------- */
.ab-reveal-header {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.ab-reveal-header.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.ab-reveal-card {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.ab-reveal-card.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.ab-reveal-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.ab-reveal-fade.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints for Phase 2
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .ab-mission__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .ab-story__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ab-story__content {
    align-items: center;
    text-align: center;
  }

  .ab-story__cta {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .ab-mission {
    padding: 4.5rem 0 4.5rem;
  }

  .ab-mission__header {
    margin-bottom: 2.5rem;
  }

  .ab-mission__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
  }

  .ab-story {
    padding: 1.5rem 0 4.5rem;
  }

  .ab-story__quote-overlay {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    border-radius: 0 0 20px 20px;
    animation: none;
    padding: 1.5rem;
  }
}

@media (max-width: 580px) {
  .ab-mission__grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    gap: 1.15rem;
  }

  .ab-mission-card {
    padding: 1.85rem 1.25rem 1.6rem;
  }
}

@media (max-width: 480px) {
  .ab-mission__title,
  .ab-story__title {
    font-size: 1.75rem;
  }

  .ab-story__text {
    font-size: 0.95rem;
  }

  .ab-btn-journey {
    font-size: 0.885rem;
    padding: 0.75rem 1.35rem;
  }
}

/* ==========================================================================
   PHASE 3 — WHAT MAKES LEAP DIFFERENT SECTION
   ========================================================================== */

.ab-different {
  position: relative;
  background-color: #ffffff;
  padding: 2rem 0 6.5rem;
  color: var(--color-text-dark, #0f172a);
}

.ab-different .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Header */
.ab-different__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.ab-different__eyebrow {
  display: inline-block;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7c3aed;
  position: relative;
}

.ab-different__eyebrow::before,
.ab-different__eyebrow::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 1.5px;
  background: #c4b5fd;
  margin: 0 10px;
}

/* 5 Items Flex/Grid Layout with Vertical Dividers */
.ab-different__grid {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  background: #ffffff;
}

/* Single Item */
.ab-diff-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1.25rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ab-diff-item:hover {
  transform: translateY(-4px);
}

/* Line Icon Wrapper with subtle rotate/scale */
.ab-diff-item__icon-wrapper {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7c3aed;
  margin-bottom: 1.25rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.ab-diff-item__icon {
  width: 32px;
  height: 32px;
}

.ab-diff-item:hover .ab-diff-item__icon-wrapper {
  transform: scale(1.15) rotate(4deg);
  color: #6d28d9;
}

.ab-diff-item__title {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 0.65rem;
}

.ab-diff-item__desc {
  font-size: 0.85rem;
  line-height: 1.55;
  color: #64748b;
  margin-bottom: 0;
  max-width: 220px;
}

/* Subtle Vertical Divider between columns */
.ab-diff-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, #e2e8f0 20%, #e2e8f0 80%, transparent 100%);
  flex-shrink: 0;
  align-self: stretch;
  margin: 0.5rem 0;
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints for Phase 3
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .ab-different__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.5rem;
  }

  .ab-diff-divider {
    display: none;
  }

  .ab-diff-item {
    padding: 1.25rem 0.75rem;
  }
}

@media (max-width: 768px) {
  .ab-different {
    padding: 1.5rem 0 4.5rem;
  }

  .ab-different__header {
    margin-bottom: 2.5rem;
  }

  .ab-different__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .ab-different__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .ab-diff-item {
    padding: 0.5rem 0;
  }

  .ab-diff-item__desc {
    max-width: 260px;
  }
}

/* ==========================================================================
   PHASE 4 — OUR VALUES & DOWNLOAD CTA SECTIONS
   ========================================================================== */

/* --------------------------------------------------------------------------
   Our Values Section (Dark Purple Rounded Banner with 5 Value Columns)
   -------------------------------------------------------------------------- */
.ab-values {
  position: relative;
  background-color: #ffffff;
  padding: 0 0 5.5rem;
}

.ab-values .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ab-values-card {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 85% 50%, rgba(139, 92, 246, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 20% 50%, rgba(88, 28, 180, 0.45) 0%, transparent 65%),
    linear-gradient(135deg, #1b0c3d 0%, #260e54 50%, #150831 100%);
  border: 1px solid rgba(196, 181, 253, 0.22);
  border-radius: 24px;
  padding: 3rem 2.5rem 3.25rem;
  box-shadow:
    0 24px 50px -12px rgba(27, 12, 61, 0.45),
    0 0 35px rgba(139, 92, 246, 0.15);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ab-values-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 60px -12px rgba(27, 12, 61, 0.55),
    0 0 45px rgba(168, 85, 247, 0.25);
}

.ab-values-card__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  animation: abGlowPulse 8s ease-in-out infinite;
}

/* Header */
.ab-values__header {
  text-align: center;
  margin-bottom: 2.75rem;
  position: relative;
  z-index: 2;
}

.ab-values__eyebrow {
  display: inline-block;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c4b5fd;
  position: relative;
}

.ab-values__eyebrow::before,
.ab-values__eyebrow::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 1.5px;
  background: rgba(196, 181, 253, 0.5);
  margin: 0 10px;
}

/* 5 Columns Flex Layout with Vertical Dividers */
.ab-values__grid {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  position: relative;
  z-index: 2;
}

.ab-value-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 1.15rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ab-value-item:hover {
  transform: translateY(-4px);
}

.ab-value-item__icon-wrapper {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c084fc;
  margin-bottom: 1.15rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.ab-value-item__icon {
  width: 32px;
  height: 32px;
}

.ab-value-item:hover .ab-value-item__icon-wrapper {
  transform: scale(1.15) rotate(4deg);
  color: #e9d5ff;
}

.ab-value-item__title {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.ab-value-item__desc {
  font-size: 0.835rem;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.85);
  margin-bottom: 0;
  max-width: 190px;
}

.ab-value-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(196, 181, 253, 0.25) 20%, rgba(196, 181, 253, 0.25) 80%, transparent 100%);
  flex-shrink: 0;
  align-self: stretch;
  margin: 0.5rem 0;
}

/* --------------------------------------------------------------------------
   Download CTA Section (White/Soft Grey Card with App Icon & Store Buttons)
   -------------------------------------------------------------------------- */
.ab-cta {
  position: relative;
  background-color: #ffffff;
  padding: 0 0 6.5rem;
}

.ab-cta .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ab-cta-card {
  position: relative;
  background: linear-gradient(135deg, #f8f6ff 0%, #f1ebff 100%);
  border: 1.5px solid #e9d5ff;
  border-radius: 20px;
  padding: 2.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow:
    0 12px 32px -8px rgba(124, 58, 237, 0.08),
    0 4px 8px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ab-cta-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px -10px rgba(124, 58, 237, 0.14),
    0 6px 12px rgba(0, 0, 0, 0.03);
}

.ab-cta-card__glow {
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translateY(-50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(35px);
  pointer-events: none;
}

/* Left App Icon Badge */
.ab-cta-card__badge {
  width: 68px;
  height: 68px;
  background: #7c3aed;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ab-cta-card:hover .ab-cta-card__badge {
  transform: scale(1.06);
}

.ab-cta-card__icon-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

/* Center Content */
.ab-cta-card__content {
  flex: 1 1 auto;
  position: relative;
  z-index: 2;
}

.ab-cta-card__title {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.45rem;
  font-weight: 800;
  color: #1e1b4b;
  line-height: 1.25;
  margin-bottom: 0.35rem;
  letter-spacing: -0.015em;
}

.ab-cta-card__text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #64748b;
  margin-bottom: 0;
}

/* Right Store Buttons */
.ab-cta-card__stores {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.ab-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #0f172a;
  color: #ffffff;
  padding: 0.65rem 1.35rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.25s ease;
  min-width: 160px;
  text-decoration: none;
}

.ab-store-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
  background: #1e293b;
  color: #ffffff;
}

.ab-store-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.ab-store-btn--apple svg {
  fill: #ffffff;
}

.ab-store-btn__text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}

.ab-store-btn__sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.ab-store-btn__main {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints for Phase 4
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .ab-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.5rem;
  }

  .ab-value-divider {
    display: none;
  }

  .ab-values-card {
    padding: 2.5rem 1.75rem;
  }

  .ab-cta-card {
    padding: 2rem 2.25rem;
  }
}

@media (max-width: 768px) {
  .ab-values {
    padding-bottom: 4.5rem;
  }

  .ab-values__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.25rem;
  }

  .ab-cta {
    padding-bottom: 5rem;
  }

  .ab-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }

  .ab-cta-card__badge {
    margin: 0 auto;
  }

  .ab-cta-card__stores {
    flex-direction: column;
    width: 100%;
  }

  .ab-store-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ab-values__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .ab-value-item__desc {
    max-width: 260px;
  }

  .ab-cta-card__title {
    font-size: 1.25rem;
  }

  .ab-cta-card__text {
    font-size: 0.885rem;
  }
}

/* --------------------------------------------------------------------------
   PHASE 5 — COMPREHENSIVE RESPONSIVE POLISH (1440px -> 320px)
   -------------------------------------------------------------------------- */

@media (max-width: 480px) {
  .ab-mission {
    padding: 3.5rem 0 3.5rem;
  }

  .ab-mission__eyebrow,
  .ab-story__eyebrow,
  .ab-different__eyebrow,
  .ab-values__eyebrow {
    font-size: 0.725rem;
  }

  .ab-mission__title,
  .ab-story__title {
    font-size: 1.65rem;
  }

  .ab-story {
    padding-bottom: 3.5rem;
  }

  .ab-different {
    padding-bottom: 3.5rem;
  }

  .ab-values {
    padding-bottom: 3.5rem;
  }

  .ab-values-card {
    padding: 2.25rem 1.25rem;
    border-radius: 20px;
  }

  .ab-cta {
    padding-bottom: 4.5rem;
  }

  .ab-cta-card {
    padding: 1.75rem 1.25rem;
  }
}

@media (max-width: 390px) {
  .ab-mission__title,
  .ab-story__title {
    font-size: 1.5rem;
  }

  .ab-mission-card {
    padding: 1.5rem 1.15rem;
  }

  .ab-mission-card__icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .ab-mission-card__title {
    font-size: 0.985rem;
  }

  .ab-diff-item__title {
    font-size: 0.985rem;
  }

  .ab-value-item__title {
    font-size: 0.985rem;
  }

  .ab-cta-card__title {
    font-size: 1.15rem;
  }

  .ab-store-btn {
    padding: 0.6rem 1.15rem;
  }
}

@media (max-width: 340px) {
  .ab-mission__title,
  .ab-story__title {
    font-size: 1.35rem;
  }

  .ab-btn-journey {
    font-size: 0.825rem;
    padding: 0.7rem 1.1rem;
  }
}

/* Reduced Motion for All Page Components */
@media (prefers-reduced-motion: reduce) {
  .ab-hero__badge,
  .ab-hero__title,
  .ab-hero__description,
  .ab-hero__trust,
  .ab-hero__visual,
  .ab-hero__glow,
  .ab-trust-item__icon,
  .ab-mission-card,
  .ab-mission-card__icon-wrapper,
  .ab-mission-card__icon,
  .ab-story__image-card,
  .ab-story__quote-overlay,
  .ab-btn-journey,
  .ab-btn-journey svg,
  .ab-diff-item,
  .ab-diff-item__icon-wrapper,
  .ab-values-card,
  .ab-values-card__glow,
  .ab-value-item,
  .ab-value-item__icon-wrapper,
  .ab-cta-card,
  .ab-cta-card__badge,
  .ab-store-btn,
  .ab-reveal-header,
  .ab-reveal-card,
  .ab-reveal-fade {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}




