/**************************
  ABOUT PAGE - FINAL VERSION
***************************/

/* Fix gap between header and content */
#main-content {
  margin: 0 !important;
  padding: 0 !important;
}

/* Universal Container - All Sections Same Width */
.about-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Hero Section */
.about-hero-engaging {
  margin-top: 0 !important;
  padding: 80px 6%;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  overflow: hidden;
  position: relative;
}

.hero-split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 22px;
  background: linear-gradient(135deg, #64c6c2 0%, #5fbe79 100%);
  border-radius: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(100, 198, 194, 0.3);
  position: relative;
}

.hero-badge::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: linear-gradient(135deg, #64c6c2, #5fbe79);
  opacity: 0.3;
  z-index: -1;
  animation: pulse-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.1;
  }
}

.hero-badge span {
  font-family: 'Russo One', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
}

.hero-left-content h1 {
  font-family: 'Russo One', sans-serif;
  font-size: 5.5rem;
  line-height: 1.05;
  color: #393939;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
  font-weight: 400;
}

.highlight-gradient {
  background: linear-gradient(135deg, #f89939 0%, #64c6c2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
}

.hero-lead {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  line-height: 1.75;
  color: #666;
  margin-bottom: 40px;
  letter-spacing: 0.005em;
  max-width: 550px;
}

/* Hero Stats - NO DIVIDER LINE */
.hero-stats-inline {
  display: flex;
  gap: 45px;
  padding-top: 20px;
  border-top: none;
  position: relative;
}

/* Remove gradient line */
.hero-stats-inline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;  /* Short - only 50px */
  height: 1px;
  background: linear-gradient(to right, #f89939, #64c6c2);
  display: block;  /* Show it */
}

.stat-inline {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-inline strong {
  font-family: 'Russo One', sans-serif;
  font-size: 1.1rem;
  color: #f89939;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-inline span {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #999;
  letter-spacing: 0.02em;
}

.hero-right-visual {
  position: relative;
}

/* Hero Image - Auto Height */
.hero-image-stack {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  height: auto;
}

.hero-image-stack::before {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 3px solid #64c6c2;
  border-radius: 12px;
  z-index: -1;
}

.image-accent-dot {
  position: absolute;
  top: -25px;
  left: -25px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f89939, #64c6c2);
  border-radius: 50%;
  opacity: 0.8;
  z-index: 2;
}

.hero-image-stack img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
  object-fit: cover;
}

.hero-image-stack:hover img {
  transform: scale(1.05);
}

/* Section Labels */
.section-label {
  font-family: 'Russo One', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: #64c6c2;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 300;
  display: inline-block;
  position: relative;
  padding-left: 30px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: #64c6c2;
}

.section-label-center {
  font-family: 'Russo One', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: #64c6c2;
  text-transform: uppercase;
  margin-bottom: 35px;
  font-weight: 300;
  text-align: center;
}

.section-label-light {
  font-family: 'Russo One', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 300;
}

/* Story Section */
.story-section-refined {
  padding: 80px 6%;
  background: #fff;
  position: relative;
}

.story-grid-refined {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 84px;
  align-items: center;
}

.story-text-refined h2 {
  font-family: 'Russo One', sans-serif;
  font-size: 3.2rem;
  color: #f89939;
  margin: 0 0 22px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.15;
}

.text-accent-line {
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #f89939, #64c6c2);
  margin-bottom: 30px;
  border-radius: 2px;
}

.story-text-refined p {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 1.9;
  color: #393939;
  margin-bottom: 25px;
  letter-spacing: 0.005em;
}

.story-text-refined p:last-child {
  margin-bottom: 0;
}

/* Story Image - Auto Height */
.story-image-refined {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  position: relative;
  height: auto;
}

.image-corner-accent {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-top: 4px solid #64c6c2;
  border-right: 4px solid #64c6c2;
  z-index: 2;
  pointer-events: none;
}

.story-image-refined::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(248, 153, 57, 0.15), rgba(100, 198, 194, 0.15));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.story-image-refined:hover::before {
  opacity: 1;
}

.story-image-refined img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  object-fit: cover;
}

.story-image-refined:hover img {
  transform: scale(1.05);
}

/* Name Section - VEGA GRADIENT, UNIEORA ORANGE */
.name-section-refined {
  padding: 60px 6%;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  text-align: center;
  position: relative;
}

.name-container-refined {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
  margin-bottom: 36px;
}

.name-block-refined {
  flex: 1;
  max-width: 450px;
  position: relative;
}

.name-large-refined {
  font-family: 'Russo One', sans-serif;
  font-size: 4.2rem;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  font-weight: 400;
}

/* First name block - Vega in Gradient */
.name-block-refined:first-child .name-large-refined {
  background: linear-gradient(135deg, #64c6c2 0%, #5fbe79 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Second name block - Unieora in Orange */
.name-block-refined:last-child .name-large-refined {
  color: #f89939;
}

.name-block-refined p {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  color: #666;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

/* Plus Sign - Green */
.name-divider-refined {
  font-family: 'Russo One', sans-serif;
  font-size: 4rem;
  color: #5fbe79;
  font-weight: 300;
}

.name-meaning-refined {
  padding: 50px 70px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #f89939;
  position: relative;
}

.quote-accent {
  position: absolute;
  top: 15px;
  left: 30px;
  width: 40px;
  height: 40px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23f8f9fa"><path d="M6 17h3l2-4V7H5v6h3zm8 0h3l2-4V7h-6v6h3z"/></svg>') no-repeat center;
  background-size: contain;
  opacity: 0.5;
}

.name-meaning-refined p {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #393939;
  font-style: italic;
  margin: 0;
  letter-spacing: 0.005em;
  position: relative;
  z-index: 1;
}

/* Impact Header - COMPACT */
.impact-header-refined {
  padding: 50px 6%;
  background: linear-gradient(135deg, #64c6c2 0%, #5fbe79 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.impact-decorative-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.impact-header-refined h2 {
  font-family: 'Russo One', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
}

.impact-header-refined p {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.65;
  letter-spacing: 0.01em;
}

/* Impact Grid - NO NUMBERS */
.impact-grid-section-refined {
  padding: 80px 6%;
  background: #fff;
}

.impact-grid-refined {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.impact-item-refined {
  background: #fff;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.impact-item-refined:hover {
  transform: translateY(-12px);
}

.impact-visual-refined {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.impact-visual-refined::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(57, 57, 57, 0.5) 100%);
  z-index: 1;
  transition: opacity 0.4s ease;
}

.impact-item-refined:hover .impact-visual-refined::before {
  opacity: 0.7;
}

.impact-visual-refined img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.impact-item-refined:hover .impact-visual-refined img {
  transform: scale(1.12);
}

.impact-content-refined h3 {
  font-family: 'Russo One', sans-serif;
  font-size: 1.75rem;
  color: #393939;
  margin-bottom: 15px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.3;
}

.content-accent-bar {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #64c6c2, #5fbe79);
  margin-bottom: 18px;
  border-radius: 2px;
}

.impact-content-refined p {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  line-height: 1.85;
  color: #666;
  letter-spacing: 0.005em;
}

/* Closing Section - CENTER ALIGNED STAR, NO TOP DIVIDER */
.closing-engaging {
  padding: 80px 6%;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
}

.closing-content {
  text-align: center;
}

/* REMOVED - No decorative divider at top */
.closing-decorative-top {
  display: none;
}

.closing-icon {
  display: inline-block;
  margin-bottom: 35px;
  color: #f89939;
  animation: rotate-star 20s linear infinite;
  text-align: center;
}

@keyframes rotate-star {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.closing-content h2 {
  font-family: 'Russo One', sans-serif;
  font-size: 3.5rem;
  color: #393939;
  margin: 0 0 22px;
  letter-spacing: 0.01em;
  font-weight: 400;
  line-height: 1.2;
}

.closing-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  line-height: 1.75;
  color: #666;
  max-width: 800px;
  margin: 0 auto 45px auto;
  letter-spacing: 0.005em;
}

/* Remove grey border-top, keep only gradient line */
.closing-trust-line {
  padding-top: 35px;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  border-top: none;
}

.closing-trust-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, #f89939, #64c6c2);
}

.closing-trust-line span {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #999;
  letter-spacing: 0.02em;
  font-style: italic;
}

/**************************
  RESPONSIVE - TABLET
***************************/
@media screen and (max-width: 1023px) {
  .about-hero-engaging {
    padding: 50px 5% 70px 5%;
  }

  .hero-split-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-left-content h1 {
    font-size: 3.5rem;
  }

  .hero-lead {
    font-size: 1.2rem;
    max-width: 100%;
  }

  .hero-stats-inline {
    gap: 30px;
  }

  .hero-image-stack {
    height: auto;
  }

  .story-section-refined,
  .name-section-refined,
  .impact-grid-section-refined,
  .closing-engaging {
    padding: 70px 5%;
  }

  .story-grid-refined {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .story-text-refined h2 {
    font-size: 2.6rem;
  }

  .story-image-refined {
    height: auto;
  }

  .name-container-refined {
    flex-direction: column;
    gap: 40px;
  }

  .name-large-refined {
    font-size: 3.2rem;
  }

  .name-meaning-refined {
    padding: 40px 50px;
  }

  .impact-header-refined {
    padding: 45px 5%;
  }

  .impact-header-refined h2 {
    font-size: 2.8rem;
  }

  .impact-grid-refined {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .closing-content h2 {
    font-size: 2.8rem;
  }
}

/**************************
  RESPONSIVE - MOBILE
***************************/
@media (max-width: 600px) {
  .about-hero-engaging {
    padding: 40px 5% 60px 5%;
  }

  .hero-badge {
    padding: 6px 16px;
    margin-bottom: 25px;
  }

  .hero-badge span {
    font-size: 0.65rem;
  }

  .hero-left-content h1 {
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 25px;
  }

  .hero-lead {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .hero-stats-inline {
    flex-direction: column;
    gap: 20px;
  }

  .image-accent-dot {
    width: 50px;
    height: 50px;
    top: -15px;
    left: -15px;
  }

  .hero-image-stack {
    height: auto;
  }

  .hero-image-stack::before {
    display: none;
  }

  .story-section-refined,
  .name-section-refined,
  .impact-grid-section-refined,
  .closing-engaging {
    padding: 60px 5%;
  }

  .section-label {
    font-size: 0.65rem;
    margin-bottom: 15px;
    padding-left: 25px;
  }

  .section-label::before {
    width: 15px;
  }

  .story-text-refined h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .text-accent-line {
    width: 70px;
    height: 3px;
    margin-bottom: 25px;
  }

  .story-text-refined p {
    font-size: 1.05rem;
    margin-bottom: 22px;
  }

  .story-image-refined {
    height: auto;
  }

  .image-corner-accent {
    width: 40px;
    height: 40px;
    border-width: 3px;
  }

  .section-label-center {
    font-size: 0.65rem;
    margin-bottom: 30px;
  }

  .name-large-refined {
    font-size: 2.8rem;
  }

  .name-divider-refined {
    font-size: 2.8rem;
  }

  .name-meaning-refined {
    padding: 35px 30px;
  }

  .name-meaning-refined p {
    font-size: 1.15rem;
  }

  .impact-header-refined {
    padding: 40px 5%;
  }

  .section-label-light {
    font-size: 0.65rem;
  }

  .impact-header-refined h2 {
    font-size: 2rem;
  }

  .impact-header-refined p {
    font-size: 1.15rem;
  }

  .impact-visual-refined {
    height: 260px;
    margin-bottom: 16px;
  }

  .content-accent-bar {
    width: 50px;
    margin-bottom: 15px;
  }

  .impact-content-refined h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .impact-content-refined p {
    font-size: 1.05rem;
  }

  .closing-icon {
    margin-bottom: 28px;
  }

  .closing-icon svg {
    width: 60px;
    height: 60px;
  }

  .closing-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .closing-tagline {
    font-size: 1.1rem;
    margin-bottom: 35px;
  }

  .closing-trust-line {
    padding-top: 30px;
  }

  .closing-trust-line span {
    font-size: 0.9rem;
  }
}



/* Hero Harmonization */
.portfolio-hero--about {
  height: auto;
  min-height: 68vh;
  padding: 64px 6%;
  background: linear-gradient(130deg, rgba(20, 23, 28, 0.78) 0%, rgba(248, 153, 57, 0.34) 100%),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1800&q=85') center/cover no-repeat;
}

.portfolio-hero--about .hero-split-layout {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  width: 100%;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 0;
  text-align: center;
}

.portfolio-hero--about .portfolio-hero__badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.25);
}

.portfolio-hero--about .portfolio-hero__title {
  color: #fff;
  text-transform: none;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.portfolio-hero--about .highlight-gradient {
  background: linear-gradient(135deg, #f89939 0%, #64c6c2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.portfolio-hero--about .portfolio-hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  max-width: 860px;
}

.portfolio-hero--about .hero-stats-inline::before {
  background: linear-gradient(to right, #f89939, #64c6c2);
}

.portfolio-hero--about .hero-right-visual {
  max-width: 560px;
  width: 100%;
}

.portfolio-hero--about .hero-image-stack {
  border-radius: 8px;
}

.portfolio-hero--about .hero-stats-inline {
  justify-content: center;
  margin: 0 auto;
}

.portfolio-hero--about .stat-inline strong {
  color: #f89939;
}

.portfolio-hero--about .stat-inline span {
  color: rgba(255, 255, 255, 0.72);
}
