/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  padding-top: 76px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(4,29,39,0.92) 0%, rgba(8,48,65,0.75) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.page-hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ===== INTRO ===== */
.about-intro {
  padding: 100px 0;
  background: var(--white);
}

.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-intro-content p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-intro-content strong { color: var(--navy); font-weight: 700; }
.about-intro-content .mt-intro { margin-top: 16px; }

.about-img-stack {
  position: relative;
}

.img-main {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
}

.img-secondary {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 180px;
  height: 130px;
  object-fit: cover;
  border-radius: 14px;
  border: 5px solid var(--white);
  box-shadow: 0 12px 36px rgba(0,0,0,0.15);
}

.img-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 14px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(237,203,80,0.4);
}
.img-badge-num {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
}
.img-badge-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.8;
}

/* ===== VALUE PROPS ===== */
.value-props {
  padding: 100px 0;
  background: var(--light-bg);
}

.value-props-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.value-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(8,48,65,0.1); }
.value-card:hover::after { transform: scaleX(1); }

.value-icon {
  width: 54px; height: 54px;
  background: rgba(8,48,65,0.06);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.value-card:hover .value-icon { background: var(--navy); }
.value-card:hover .value-icon svg { stroke: var(--white); }

.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== WHY US ===== */
.why-us {
  padding: 100px 0;
  background: var(--white);
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4/3.5;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(237,203,80,0.15);
  border: 1px solid rgba(237,203,80,0.3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}

.why-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.why-text p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== WORK PROCESS ===== */
.work-process {
  padding: 100px 0;
  background: var(--navy);
}
.work-process .section-title { color: var(--white); }
.work-process .section-subtitle { color: rgba(255,255,255,0.55); }

.work-process-header {
  text-align: center;
  margin-bottom: 64px;
}
.work-process-header .section-subtitle { margin: 0 auto; }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.step-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon {
  width: 72px; height: 72px;
  background: rgba(237,203,80,0.1);
  border: 1px solid rgba(237,203,80,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: background var(--transition);
}
.process-step:hover .step-icon { background: rgba(237,203,80,0.2); }

.process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.process-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, rgba(237,203,80,0.4), rgba(237,203,80,0.1));
  margin-top: 100px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: var(--gold);
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.cta-banner p {
  font-size: 1rem;
  color: rgba(8,48,65,0.75);
}
.cta-banner .btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
}
.cta-banner .btn-primary:hover { background: transparent; color: var(--navy); border-color: var(--navy); }

/* Active nav link */
.nav-active { color: var(--white) !important; }
.nav-active::after { width: 100% !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro-inner, .why-us-inner { gap: 48px; }
}

@media (max-width: 768px) {
  .page-hero { height: 320px; }
  .about-intro-inner, .why-us-inner { grid-template-columns: 1fr; }
  .img-secondary { display: none; }
  .img-badge { top: auto; bottom: -16px; left: 16px; }
  .value-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: center; gap: 32px; }
  .process-connector { width: 2px; height: 40px; background: linear-gradient(to bottom, rgba(237,203,80,0.4), rgba(237,203,80,0.1)); margin-top: 0; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
}
