/* ==========================================================================
   ABOUT US PAGE — Dedicated Stylesheet
   Design tokens from style.css: :root vars are inherited
   ========================================================================== */


/* =========================================================================
   SECTION 1: ABOUT HERO BANNER
   ========================================================================= */
.about-hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 15, 41, 0.6) 0%,
    rgba(11, 19, 43, 0.85) 50%,
    rgba(11, 19, 43, 0.95) 100%
  );
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 120px 24px 45px;
}

/* Eyebrow */
.about-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.about-eyebrow-line {
  width: 40px;
  height: 1.5px;
  background: rgba(75, 136, 255, 0.5);
}

.about-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4B88FF;
  box-shadow: 0 0 8px rgba(75, 136, 255, 0.6);
}

.about-eyebrow-text {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: #4B88FF;
  text-transform: uppercase;
}

/* Headline */
.about-hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  color: #FFFFFF;
  margin-bottom: 24px;
  text-wrap: balance;
}

.headline-row {
  display: block;
}

.headline-row-1 {
  margin-bottom: 6px;
}

.hero-accent-dim {
  color: #CBD5E1;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.hero-highlight {
  background: linear-gradient(135deg, #4B88FF 0%, #4B88FF 50%, #60A5FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(75, 136, 255, 0.4));
}

.about-hero-sub {
  font-family: var(--font-body);
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 640px;
  margin: 0 auto;
}


/* =========================================================================
   SECTION 2: OUR STORY
   ========================================================================= */
.about-story {
  position: relative;
  background: #FFFFFF;
  padding: 45px 24px;
  z-index: 2;
  overflow: hidden;
}

/* Subtle radial ambient glow */
.about-story::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(3, 61, 177, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.about-story-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Shared Section Eyebrow (reused from index) */
.about-section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.about-section-eyebrow.about-section-eyebrow-center,
.about-founders .about-section-eyebrow,
.about-philosophy .about-section-eyebrow,
.about-services .about-section-eyebrow {
  justify-content: center;
}

.about-section-eyebrow .eyebrow-line {
  width: 30px;
  height: 1.5px;
  background: rgba(3, 61, 177, 0.25);
}

.about-section-eyebrow .eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 6px rgba(3, 61, 177, 0.3);
}

.about-section-eyebrow .eyebrow-text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--primary);
  text-transform: uppercase;
}

/* Section Heading */
.about-section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 16px;
}

.about-heading-center {
  text-align: center;
}

.highlight-blue {
  background: linear-gradient(135deg, #033DB1, #4B88FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Story Text */
.about-story-text {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.about-story-text strong {
  color: var(--text-main);
  font-weight: 600;
}

/* Quote */
.about-quote {
  position: relative;
  margin-top: 20px;
  padding: 20px 24px;
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
}

.about-quote .quote-mark {
  font-family: Georgia, serif;
  font-size: 3rem;
  color: var(--primary);
  line-height: 0.6;
  position: absolute;
  top: 16px;
  left: 14px;
  opacity: 0.4;
}

.about-quote p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-main);
  padding-left: 16px;
}

.about-quote cite {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
  color: var(--primary);
  margin-top: 10px;
  padding-left: 16px;
}

/* Story Visual */
.about-story-visual {
  position: relative;
}

.story-visual-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 48px rgba(3, 61, 177, 0.07), 0 4px 16px rgba(0, 0, 0, 0.04);
}

.story-visual-img {
  width: 100%;
  height: auto;
  display: block;
}

.story-visual-badge {
  position: absolute;
  bottom: -16px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.badge-icon {
  font-size: 1.3rem;
}

.badge-text-group strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

.badge-text-group small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}


/* =========================================================================
   SECTION 3: MEET THE FOUNDERS
   ========================================================================= */
.about-founders {
  position: relative;
  background: var(--bg-main);
  padding: 45px 24px;
  z-index: 2;
}

.about-founders-container {
  max-width: 1120px;
  margin: 0 auto;
}

.about-founders-subtitle {
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 650px;
  margin: -4px auto 36px;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.founder-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 38px 30px;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(3, 61, 177, 0.08);
  border-color: rgba(3, 61, 177, 0.2);
}

/* Photo Placeholder */
.founder-photo-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.founder-photo-placeholder {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.founder-photo-img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid #FFFFFF;
  box-shadow: 0 10px 28px rgba(3, 61, 177, 0.2);
  display: block;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.founder-card:hover .founder-photo-placeholder,
.founder-card:hover .founder-photo-img {
  transform: scale(1.05);
  box-shadow: 0 14px 34px rgba(3, 61, 177, 0.28);
}

.placeholder-cto,
.placeholder-founder {
  background: linear-gradient(135deg, #033DB1 0%, #4B88FF 100%);
  box-shadow: 0 10px 30px rgba(3, 61, 177, 0.25);
}

.placeholder-ceo,
.placeholder-cofounder {
  background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
  box-shadow: 0 10px 30px rgba(75, 136, 255, 0.25);
}

.placeholder-gm {
  background: linear-gradient(135deg, #0F172A 0%, #2563EB 100%);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
}

.placeholder-md {
  background: linear-gradient(135deg, #033DB1 0%, #1E293B 100%);
  box-shadow: 0 10px 30px rgba(3, 61, 177, 0.25);
}

.placeholder-initials {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 2px;
}

.founder-role-badge {
  position: absolute;
  bottom: -4px;
  right: -8px;
  background: var(--primary);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(3, 61, 177, 0.3);
  border: 2px solid #FFFFFF;
  white-space: nowrap;
}

/* Founder Info */
.founder-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.founder-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #07133D;
  margin-bottom: 4px;
}

.founder-title {
  display: block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0F172A;
  background: none;
  border: none;
  padding: 0;
  margin-top: 4px;
  margin-bottom: 16px;
}

.founder-bio {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.68;
  color: #334155;
  text-wrap: pretty;
  font-style: normal;
}


/* =========================================================================
   SECTION 4: PHILOSOPHY
   ========================================================================= */
.about-philosophy {
  position: relative;
  background: #FFFFFF;
  padding: 45px 24px;
  z-index: 2;
  overflow: hidden;
}

.about-philosophy-container {
  max-width: 1100px;
  margin: 0 auto;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.philosophy-card {
  position: relative;
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.philosophy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(3, 61, 177, 0.08);
  border-color: rgba(3, 61, 177, 0.15);
}

.philosophy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(3, 61, 177, 0.08);
  border-color: rgba(3, 61, 177, 0.15);
}

.philosophy-icon {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.philosophy-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: #07133D;
  margin-bottom: 12px;
}

.philosophy-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
}


/* =========================================================================
   SECTION 5: WHAT WE BUILD (Services Grid)
   ========================================================================= */
.about-services {
  position: relative;
  background: var(--bg-main);
  padding: 45px 24px 35px;
  z-index: 2;
}

.about-services-container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-services-subtitle {
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.services-grid .service-card:nth-child(1),
.services-grid .service-card:nth-child(2),
.services-grid .service-card:nth-child(3) {
  grid-column: span 2;
}

.services-grid .service-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.services-grid .service-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.service-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 30px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(3, 61, 177, 0.09);
  border-color: rgba(3, 61, 177, 0.25);
}

.service-num {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  opacity: 0.85;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 600;
  color: #07133D;
  margin-bottom: 8px;
  line-height: 1.25;
}

.service-brief {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.65;
  color: #475569;
  flex: 1;
  margin-bottom: 16px;
}

.service-arrow {
  font-size: 1.25rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  align-self: flex-start;
}

.service-card:hover .service-arrow {
  transform: translateX(5px);
}


/* =========================================================================
   SECTION 6: COMPANY STATS
   ========================================================================= */
.about-stats {
  position: relative;
  background: linear-gradient(135deg, #0A0F29 0%, #0B132B 100%);
  padding: 40px 24px;
  z-index: 2;
}

.about-stats-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #FFFFFF;
  background: linear-gradient(135deg, #033DB1, #4B88FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
}


/* =========================================================================
   SECTION 7: CTA (About Page Version)
   ========================================================================= */
.cta-section {
  position: relative;
  background: var(--bg-main);
  padding: 45px 24px;
  z-index: 2;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.cta-card {
  position: relative;
  background: linear-gradient(135deg, #0A0F29 0%, #101B3A 60%, #0B132B 100%);
  border-radius: 24px;
  padding: 48px 36px;
  overflow: hidden;
}

.cta-bg-glow {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(3, 61, 177, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-content-col {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-eyebrow-wrap {
  margin-bottom: 16px;
}

.cta-eyebrow-text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: #4B88FF;
  text-transform: uppercase;
}

.cta-eyebrow-underline {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #033DB1, #4B88FF);
  margin: 8px auto 0;
  border-radius: 2px;
}

.cta-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-description {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto 28px;
}

.cta-actions-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.cta-btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(3, 61, 177, 0.3);
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.cta-btn-secondary:hover {
  border-color: rgba(75, 136, 255, 0.4);
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.04);
}

.cta-trust-points {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-check-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(3, 61, 177, 0.15);
  color: #4B88FF;
  font-size: 0.65rem;
  font-weight: 700;
}

.cta-trust-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}


/* =========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================= */

@media (max-width: 992px) {
  .about-story-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-story-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .founders-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .philosophy-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid .service-card:nth-child(1),
  .services-grid .service-card:nth-child(2),
  .services-grid .service-card:nth-child(3),
  .services-grid .service-card:nth-child(4) {
    grid-column: span 1;
  }

  .services-grid .service-card:nth-child(5) {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .about-hero-content {
    padding: 110px 20px 40px;
  }

  .about-hero-headline {
    font-size: clamp(1.6rem, 5.5vw, 2.3rem);
    line-height: 1.05;
  }

  .about-hero-sub {
    font-size: 1rem;
  }

  .about-story {
    padding: 35px 20px;
  }

  .about-founders {
    padding: 35px 20px;
  }

  .founders-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 440px;
    margin: 0 auto;
  }

  .about-philosophy {
    padding: 35px 20px;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 440px;
    margin: 32px auto 0;
  }

  .about-services {
    padding: 35px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 440px;
    margin: 0 auto;
  }

  .services-grid .service-card:nth-child(n) {
    grid-column: span 1;
  }

  .about-stats-container {
    flex-wrap: wrap;
    gap: 20px 28px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    flex: 0 0 calc(50% - 14px);
  }

  .cta-card {
    padding: 34px 20px;
  }

  .cta-actions-row {
    flex-direction: column;
    gap: 12px;
  }

  .cta-trust-points {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    min-height: 75vh;
  }

  .about-hero-content {
    padding: 100px 16px 35px;
  }

  .about-hero-headline {
    font-size: 1.6rem;
  }

  .about-section-heading {
    font-size: 1.45rem;
  }

  .founder-card {
    padding: 26px 18px;
  }

  .stat-item {
    flex: 0 0 100%;
  }
}
