/* ============================================================
   BEAS — about.css
   About Us Page Styles
   ============================================================ */

/* ── PAGE HERO ─────────────────────────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, #001122 0%, var(--beas-navy) 55%, #3a1200 130%);
  padding: 80px 0 68px;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170,68,1,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.about-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,64,128,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.about-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.about-hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--beas-orange);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--beas-orange);
}
.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.about-hero h1 span { color: var(--beas-orange); }
.about-hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.about-hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-stat-num span { color: var(--beas-orange); }
.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ── SECTION WRAPPER ────────────────────────────────────────── */
.about-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-block {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-card);
}
.about-block:last-of-type { border-bottom: none; }

/* Section eyebrow + title */
.section-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--beas-orange);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--beas-orange);
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-heading span { color: var(--beas-orange); }
.section-lead {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 40px;
}

/* ── TIMELINE — HISTORY ─────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--beas-orange), var(--beas-navy), var(--beas-orange));
  opacity: 0.25;
}
.timeline-item {
  display: flex;
  gap: 28px;
  margin-bottom: 56px;
  position: relative;
  align-items: flex-start;
}
.timeline-item:last-child { margin-bottom: 0; }

/* Year bubble */
.timeline-dot {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--beas-navy), var(--beas-navy-mid));
  border: 3px solid var(--beas-orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(170,68,1,0.1);
  z-index: 1;
  position: relative;
}
.timeline-dot-year {
  font-family: 'Oswald', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--beas-orange);
  text-transform: uppercase;
  line-height: 1;
}
.timeline-dot-num {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.timeline-content {
  flex: 1;
  padding-top: 6px;
}
.timeline-phase {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--beas-orange);
  margin-bottom: 4px;
}
.timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.25;
}
.timeline-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.timeline-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 16px;
  position: relative;
}
.timeline-img-wrap img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.timeline-img-wrap:hover img { transform: scale(1.04); }
.timeline-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,20,50,0.8));
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  padding: 20px 16px 12px;
  font-style: italic;
}

/* ── FOUNDER SECTION ─────────────────────────────────────────── */
.founder-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
}
.founder-img-col {
  position: sticky;
  top: 100px;
}
.founder-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.founder-img-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
}
.founder-img-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,20,50,0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(170,68,1,0.4);
  border-radius: var(--radius-md);
  padding: 10px 20px;
  text-align: center;
  white-space: nowrap;
}
.founder-img-badge-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.founder-img-badge-title {
  font-size: 0.68rem;
  color: var(--beas-orange);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.founder-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.3;
}
.founder-text p {
  font-size: 0.92rem;
  color: var(--text-secondary, var(--text-muted));
  line-height: 1.85;
  margin-bottom: 16px;
}
.founder-quote {
  border-left: 3px solid var(--beas-orange);
  padding: 16px 20px;
  background: var(--bg-card);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  box-shadow: var(--shadow-sm);
}
.founder-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.7;
}
.founder-quote cite {
  display: block;
  font-size: 0.75rem;
  color: var(--beas-orange);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
  font-style: normal;
}

/* ── SERVICES GRID ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--beas-orange);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(170,68,1,0.25);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(170,68,1,0.1), rgba(170,68,1,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--beas-orange);
  margin-bottom: 14px;
  border: 1px solid rgba(170,68,1,0.15);
}
.service-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.service-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── DEALS CTA BANNER ────────────────────────────────────────── */
.deals-banner {
  background: linear-gradient(135deg, var(--beas-navy) 0%, #001a33 60%, #3a1200 130%);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.deals-banner::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(170,68,1,0.12);
  pointer-events: none;
}
.deals-banner-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.deals-banner-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  line-height: 1.7;
  margin: 0;
}
.deals-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(170,68,1,0.2);
  border: 1px solid rgba(170,68,1,0.4);
  color: #ffb380;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  animation: pulseBadge 2s ease infinite;
}
@keyframes pulseBadge {
  0%,100% { box-shadow: 0 0 0 0 rgba(170,68,1,0.3); }
  50%      { box-shadow: 0 0 0 6px rgba(170,68,1,0); }
}

/* ── TEAM SECTION ────────────────────────────────────────────── */
.team-block {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.team-img-wrap {
  width: 100%;
  max-height: 440px;
  overflow: hidden;
  position: relative;
}
.team-img-wrap img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.team-img-wrap:hover img { transform: scale(1.03); }
.team-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,20,50,0.7));
}
.team-caption {
  padding: 28px 32px;
}
.team-caption h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.team-caption p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}

/* ── WEBSITE LAUNCH BLOCK ────────────────────────────────────── */
.launch-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.launch-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.launch-img img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.launch-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.launch-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.launch-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}
.launch-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-secondary, var(--text-muted));
}
.launch-feature-list li i {
  color: var(--beas-orange);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ── SUPPLY / PROOF GALLERY ──────────────────────────────────── */
.supply-intro p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 12px;
}
.supply-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.supply-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-subtle, #f4f6f9);
}
.supply-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.supply-img-wrap:hover img { transform: scale(1.07); }
.supply-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 55%, rgba(0,20,50,0.55));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.supply-img-wrap:hover .supply-img-overlay { opacity: 1; }
.supply-img-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.9);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Mobile alternating alignment */
@media (max-width: 600px) {
  .supply-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .supply-img-wrap:nth-child(odd)  { margin-left: 0;    margin-right: auto; }
  .supply-img-wrap:nth-child(even) { margin-left: auto; margin-right: 0; }
}
@media (max-width: 380px) {
  .supply-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .supply-img-wrap:nth-child(odd)  { margin-left: 0;    margin-right: auto; max-width: 85%; }
  .supply-img-wrap:nth-child(even) { margin-left: auto; margin-right: 0;    max-width: 85%; }
}

/* ── CLIENTS STATS BAR ───────────────────────────────────────── */
.clients-bar {
  background: var(--beas-navy);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.clients-bar-stat {
  text-align: center;
  padding: 16px 8px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.clients-bar-stat:last-child { border-right: none; }
.clients-bar-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.clients-bar-num span { color: var(--beas-orange); }
.clients-bar-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 5px;
}

/* ── CLIENT TYPES ─────────────────────────────────────────────── */
.client-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.client-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 0.8rem;
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.2s ease;
}
.client-tag i { color: var(--beas-orange); font-size: 0.75rem; }
.client-tag:hover {
  border-color: var(--beas-orange);
  background: rgba(170,68,1,0.05);
  transform: translateY(-2px);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .founder-grid  { grid-template-columns: 1fr; }
  .founder-img-col { position: relative; top: auto; max-width: 320px; margin: 0 auto; }
  .launch-block  { grid-template-columns: 1fr; }
  .clients-bar   { grid-template-columns: repeat(2, 1fr); }
  .supply-gallery { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { left: 24px; }
  .timeline-dot { width: 50px; height: 50px; }
}
@media (max-width: 640px) {
  .about-hero { padding: 56px 0 44px; }
  .about-block { padding: 52px 0; }
  .timeline-item { flex-direction: column; gap: 14px; }
  .timeline::before { display: none; }
  .timeline-dot { margin: 0 auto; }
  .deals-banner { padding: 28px 22px; }
  .clients-bar  { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 28px 20px; }
  .clients-bar-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .clients-bar-stat:nth-child(2), .clients-bar-stat:nth-child(4) { border-bottom: none; }
}