.page-hero {
  padding: 6rem 0 4rem;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%),
    linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  z-index: 0;
}

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

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.page-hero h1::after {
  content: '';
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.page-content {
  padding: 6rem 0;
  min-height: 50vh;
  background: var(--bg-primary);
  position: relative;
}

.page-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
  z-index: 0;
}

.page-content .container {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.page-block {
  margin-bottom: 4rem;
  padding: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.page-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-light);
}

.page-block:last-child {
  margin-bottom: 0;
}

.page-block h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-heading);
  background: linear-gradient(135deg, var(--text-heading) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-block p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.125rem;
  margin-bottom: 0;
}

.about-intro {
  margin-bottom: 4rem;
}

.about-intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-intro-text h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  background: linear-gradient(135deg, var(--text-heading) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-intro-text p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.about-intro-text p:last-child {
  margin-bottom: 0;
}

.about-photo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-intro-image img {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-intro-image img:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.about-mission-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-mission-image img {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-mission-image img:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.team-illustration,
.tech-illustration,
.future-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-illustration img,
.tech-illustration img,
.future-illustration img {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-illustration img:hover,
.tech-illustration img:hover,
.future-illustration img:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.achievements-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}

.achievements-illustration img {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievements-illustration img:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.about-mission {
  margin-bottom: 4rem;
}

.about-mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-mission-text h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  background: linear-gradient(135deg, var(--text-heading) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-mission-text p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.about-mission-text p:last-child {
  margin-bottom: 0;
}

.about-values {
  margin-bottom: 4rem;
}

.about-values h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  background: linear-gradient(135deg, var(--text-heading) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-light);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: var(--primary);
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5));
}

.value-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--text-heading);
}

.value-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.about-team {
  margin-bottom: 4rem;
}

.about-team h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  background: linear-gradient(135deg, var(--text-heading) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.team-text p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.team-text p:last-child {
  margin-bottom: 0;
}

.team-illustration svg,
.tech-illustration svg,
.future-illustration svg {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-technology {
  margin-bottom: 4rem;
}

.about-technology h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  background: linear-gradient(135deg, var(--text-heading) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tech-text p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.tech-text p:last-child {
  margin-bottom: 0;
}

.about-achievements {
  margin-bottom: 4rem;
}

.about-achievements h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  background: linear-gradient(135deg, var(--text-heading) 0%, var(--success) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.achievement-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.achievement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--success), var(--warning));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.achievement-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-light);
}

.achievement-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: var(--success);
  filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.3));
  transition: all 0.3s ease;
}

.achievement-card:hover .achievement-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.5));
}

.achievement-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--text-heading);
}

.achievement-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.about-future {
  margin-bottom: 0;
}

.about-future h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  background: linear-gradient(135deg, var(--text-heading) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.future-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.future-text p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.future-text p:last-child {
  margin-bottom: 0;
}

.page-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-card);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.page-empty::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.03) 50%, transparent 70%);
  animation: shimmer 4s infinite;
}

.page-empty::after {
  content: '🚧';
  font-size: 4rem;
  margin-bottom: 2rem;
  opacity: 0.5;
}

.page-empty-text {
  color: var(--text-muted);
  font-size: 1.25rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.page-empty-subtext {
  color: var(--text-muted);
  font-size: 1rem;
  opacity: 0.7;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .page-hero { padding: 4rem 0 3rem; }
  .page-content { padding: 4rem 0; }
  .page-block { 
    margin-bottom: 2.5rem; 
    padding: 2rem 1.5rem; 
  }
  .page-empty { 
    min-height: 40vh; 
    padding: 3rem 1.5rem; 
  }
  .page-empty::after { font-size: 3rem; }
}

@media (max-width: 1024px) {
  .about-intro-content,
  .about-mission-content,
  .team-content,
  .tech-content,
  .future-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-mission-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .about-intro,
  .about-mission,
  .about-values,
  .about-team,
  .about-technology,
  .about-achievements {
    margin-bottom: 3rem;
  }

  .values-grid,
  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value-card,
  .achievement-card {
    padding: 2rem 1.5rem;
  }

  .about-intro-image img,
  .about-mission-image img,
  .team-illustration img,
  .tech-illustration img,
  .future-illustration img,
  .achievements-illustration img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .page-hero { padding: 3rem 0 2rem; }
  .page-content { padding: 3rem 0; }
  .page-block { 
    margin-bottom: 2rem; 
    padding: 1.5rem 1rem; 
  }
  .page-empty { 
    min-height: 30vh; 
    padding: 2rem 1rem; 
  }
  .page-empty-text { font-size: 1.125rem; }
}