.about-page {
  background: var(--black);
  color: var(--silver-light);
}

.about-page h1,
.about-page h2,
.about-page h3,
.about-page h4 {
  color: var(--white);
}

.section-divider {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(27, 77, 219, 0.35) 50%, rgba(0, 0, 0, 0) 100%);
}

.about-spotlight {
  padding: 120px 0 80px;
  background: linear-gradient(155deg, #ffffff 0%, #f8f8f8 50%, #ffffff 100%);
  overflow: hidden;
  position: relative;
}

.about-spotlight::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(27, 77, 219, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatSlow 15s ease-in-out infinite;
}

.about-spotlight::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(100, 100, 100, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatSlow 20s ease-in-out infinite reverse;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 56px;
  align-items: center;
}

.spotlight-media {
  position: relative;
  padding-top: 58px;
  min-height: 630px;
}

.spotlight-year {
  position: absolute;
  top: -20px;
  right: 20px;
  z-index: 3;
  isolation: isolate;
}

.spotlight-year::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, rgba(27, 77, 219, 0) 0%, rgba(27, 77, 219, 0.9) 35%, rgba(27, 77, 219, 0) 100%);
  transform-origin: left;
  transform: scaleX(0);
  animation: yearLineIn 0.9s ease 0.55s forwards, yearLinePulse 3.5s ease-in-out 1.6s infinite;
}

.spotlight-year strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(5rem, 12vw, 8.5rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: #1B4DDB;
  text-shadow: 0 4px 20px rgba(27, 77, 219, 0.35);
  transform: translateY(12px) scale(0.95);
  opacity: 0;
  animation: yearIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards,
    yearGlow 3.2s ease-in-out 1s infinite;
}

.spotlight-year span {
  display: block;
  margin-top: 6px;
  text-align: right;
  color: #1B4DDB;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateX(-14px);
  animation: startInReveal 0.65s ease 0.45s forwards;
}

@keyframes yearIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes startInReveal {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes yearLineIn {
  to {
    transform: scaleX(1);
  }
}

@keyframes yearLinePulse {
  0%,
  100% {
    opacity: 0.35;
  }

  50% {
    opacity: 0.95;
  }
}

@keyframes yearGlow {
  0%,
  100% {
    text-shadow: 0 4px 18px rgba(27, 77, 219, 0.32);
  }

  50% {
    text-shadow: 0 8px 34px rgba(27, 77, 219, 0.55);
  }
}

@media (prefers-reduced-motion: reduce) {
  .spotlight-year::after,
  .spotlight-year strong,
  .spotlight-year span {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.spotlight-img {
  position: absolute;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
}

.spotlight-img.primary {
  width: 80%;
  height: 540px;
  left: 0;
  top: 58px;
}

.spotlight-img.secondary {
  width: 72%;
  height: 440px;
  right: -12px;
  bottom: 0;
}

.spotlight-content {
  padding-top: 34px;
  max-width: 640px;
}

.spotlight-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  color: var(--red-light);
  letter-spacing: 0.08em;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(27, 77, 219, 0.3);
  background: rgba(27, 77, 219, 0.08);
  margin-bottom: 16px;
}

.spotlight-content h1 {
  font-size: clamp(2.2rem, 4.8vw, 5rem);
  line-height: 1.06;
  margin-bottom: 22px;
  color: var(--white);
}

.spotlight-content p {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--silver);
  margin-bottom: 18px;
  max-width: 750px;
}

.spotlight-content p strong {
  color: var(--white);
}

.spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.spotlight-actions .btn {
  min-width: 180px;
  justify-content: center;
}

.spotlight-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.spotlight-metric {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.01) 100%);
  border-radius: 12px;
  padding: 14px 12px;
}

.spotlight-metric strong {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1;
}

.spotlight-metric span {
  display: block;
  margin-top: 6px;
  color: var(--silver);
  font-size: 0.82rem;
}

.about-hero {
  min-height: 76vh;
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(150deg, #ffffff 0%, #f5f5f5 45%, #fafafa 100%);
}

.about-page .story-section,
.about-page .values-section,
.about-page .milestones-section,
.about-page .about-cta {
  background: var(--black);
}

.about-page .section-header p,
.about-page .story-card p,
.about-page .value-card p,
.about-page .timeline-content p {
  color: var(--silver);
}

.about-page .story-card,
.about-page .value-card,
.about-page .timeline-content {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(27, 77, 219, 0.12) 0%, rgba(27, 77, 219, 0) 55%);
  pointer-events: none;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.88)),
    url('images/my_photo_compressed.jpg') center/cover no-repeat;
}

.about-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.35;
}

.about-hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.about-hero-content {
  position: relative;
  max-width: 760px;
  z-index: 2;
}

.about-hero-label {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 18px;
  border: 1px solid rgba(27, 77, 219, 0.32);
  border-radius: 999px;
  padding: 8px 18px;
  background: rgba(27, 77, 219, 0.08);
}

.about-hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 4.25rem);
  margin-bottom: 18px;
}

.about-hero p {
  max-width: 650px;
  color: var(--silver);
  font-size: 1.08rem;
  margin-bottom: 34px;
}

.about-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.about-hero-media {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(480px, 100%);
}

.hero-main-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-lg);
}

.hero-float-img {
  position: absolute;
  width: 52%;
  right: -14px;
  bottom: -20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-md);
}

.story-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

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

.story-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.story-visual-card {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f8f8f8;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.story-visual-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.story-visual-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 50%);
  pointer-events: none;
}

.story-visual-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.story-visual-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.visual-factory img {
  object-position: center;
}

.visual-team img {
  object-position: center 38%;
}

.visual-map img {
  object-position: center;
}

.story-card {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 34px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-card:hover {
  transform: translateY(-5px);
  border-color: rgba(27, 77, 219, 0.24);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.story-card h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.story-card p {
  color: var(--silver);
  margin-bottom: 12px;
}

.story-list {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

/* ============================================
   PRODUCTION STAGES SECTION
   ============================================ */
.production-section {
  padding: 80px 0;
  background: var(--dark);
}

.production-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.production-card {
  background: var(--black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.production-card::before {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(27, 77, 219, 0) 0%, rgba(27, 77, 219, 0.85) 50%, rgba(27, 77, 219, 0) 100%);
  transform: scaleX(0.4);
  opacity: 0.5;
  transition: var(--transition);
}

.production-card:hover {
  transform: translateY(-8px);
  border-color: rgba(27, 77, 219, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.production-card:hover::before {
  transform: scaleX(1);
  opacity: 1;
}

.production-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.production-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.production-card:hover .production-img img {
  transform: scale(1.05);
}

.production-content {
  padding: 30px 24px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.production-content h3 {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.production-content p {
  color: var(--silver);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.quality-badge {
  position: absolute;
  top: 15px;
  right: -25px;
  background: var(--red);
  color: #ffffff;
  padding: 8px 30px;
  transform: rotate(45deg);
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 10;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  border: 1px dashed rgba(255, 255, 255, 0.4);
}

.quality-badge span {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.quality-badge strong {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  font-weight: 800;
}

@media (max-width: 992px) {
  .production-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.story-list li {
  position: relative;
  color: var(--silver-light);
  padding-left: 18px;
}

.story-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  position: absolute;
  left: 0;
  top: 11px;
}

.values-section {
  background: var(--black);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  padding: 26px 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.01) 100%);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  padding: 1px;
  background: linear-gradient(135deg, rgba(27, 77, 219, 0.4), transparent 50%, rgba(100, 100, 100, 0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(27, 77, 219, 0.15);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1), 0 0 20px rgba(27, 77, 219, 0.06);
}

.value-card:hover::before {
  opacity: 1;
}

.value-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.value-card p {
  color: var(--silver);
  font-size: 0.95rem;
}

.milestones-section {
  background: var(--dark);
}

.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 82px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(27, 77, 219, 0.5), rgba(27, 77, 219, 0.15), rgba(27, 77, 219, 0.05));
}

.timeline-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 20px;
  align-items: start;
  position: relative;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 77px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid var(--black);
  box-shadow: 0 0 10px rgba(27, 77, 219, 0.4);
  z-index: 2;
}

.timeline-year {
  font-family: var(--font-heading);
  color: var(--red-light);
  font-size: 1.05rem;
  padding-top: 16px;
}

.timeline-content {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-content:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(27, 77, 219, 0.2);
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.timeline-content h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 0.93rem;
  color: var(--silver);
}

.about-cta {
  background: var(--black);
  padding-top: 20px;
}

.about-cta-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, rgba(27, 77, 219, 0.1) 0%, rgba(255, 255, 255, 1) 35%, rgba(248, 248, 248, 1) 65%, rgba(27, 77, 219, 0.06) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  padding: 56px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(27, 77, 219, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatSlow 10s ease-in-out infinite;
}

.about-cta-card h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.about-cta-card p {
  color: var(--silver-light);
  max-width: 620px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.about-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .spotlight-media {
    min-height: 520px;
    max-width: 640px;
  }

  .spotlight-year {
    right: 0;
  }

  .spotlight-content {
    padding-top: 0;
  }

  .about-hero-layout {
    grid-template-columns: 1fr;
  }

  .about-hero-media {
    justify-self: stretch;
    margin-top: 6px;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-visual-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-visual-card:last-child {
    grid-column: span 2;
  }

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

@media (max-width: 768px) {
  .about-spotlight {
    padding: 96px 0 50px;
  }

  .spotlight-media {
    min-height: 430px;
    padding-top: 46px;
  }

  .spotlight-img.primary {
    width: 86%;
    height: 340px;
  }

  .spotlight-img.secondary {
    width: 76%;
    height: 300px;
    right: 0;
  }

  .spotlight-content h1 {
    margin-bottom: 14px;
  }

  .spotlight-content p {
    font-size: 1.2rem;
  }

  .spotlight-actions .btn {
    width: 100%;
  }

  .spotlight-metrics {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: 65vh;
    padding: 130px 0 70px;
  }

  .hero-main-img {
    height: 320px;
  }

  .hero-float-img {
    width: 44%;
    right: 10px;
    bottom: -14px;
  }

  .about-hero-actions,
  .about-cta-actions {
    flex-direction: column;
  }

  .about-hero-actions .btn,
  .about-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .timeline::before {
    left: 0;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 20px;
    position: relative;
  }

  .timeline-item::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 24px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
  }

  .timeline-year {
    padding-top: 0;
    font-size: 0.95rem;
  }

  .about-cta-card {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .spotlight-media {
    min-height: 320px;
    padding-top: 20px;
  }

  .spotlight-year {
    top: -8px;
  }

  .spotlight-year strong {
    font-size: 4rem;
  }

  .spotlight-year span {
    font-size: 0.8rem;
  }

  .spotlight-content h1 {
    font-size: clamp(1.8rem, 10vw, 2.4rem);
  }

  .spotlight-content p {
    font-size: 1.02rem;
  }

  .spotlight-img.primary {
    width: 90%;
    height: 230px;
    top: 44px;
  }

  .spotlight-img.secondary {
    width: 74%;
    height: 190px;
    bottom: 0;
  }

  .story-visual-grid {
    grid-template-columns: 1fr;
  }

  .story-visual-card,
  .story-visual-card:last-child {
    grid-column: span 1;
  }

  .story-visual-card img {
    height: 220px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .story-card {
    padding: 26px 20px;
  }
}
