.page-hero {
  position: relative;
  padding: 180px 0 120px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.08) 0%, rgba(244, 114, 182, 0.06) 40%, rgba(139, 92, 246, 0.03) 80%, rgba(255, 255, 255, 0) 100%);
}

.page-hero-content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

.page-hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

.our-story {
  padding: 120px 0;
  border-top: 1px solid var(--border-color);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-content .section-text {
  margin-bottom: 20px;
}

.story-content .section-text:last-of-type {
  margin-bottom: 0;
}

.story-visual {
  position: relative;
}

.story-image-container {
  position: relative;
}

.story-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(79, 195, 247, 0.05) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
}

.story-stat-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-accent);
  text-align: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.stat-big {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--cyan-primary);
  line-height: 1;
}

.stat-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .story-stat-card {
    right: 20px;
    bottom: -20px;
  }
}

.our-team {
  padding: 120px 0;
  background: var(--bg-secondary);
}

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

.team-card {
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all var(--transition-base);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.team-card:hover {
  border-color: var(--border-accent);
}

.team-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--accent-gradient);
  border: none;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.team-role {
  display: block;
  font-size: 0.75rem;
  color: var(--cyan-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  font-weight: 600;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.our-approach {
  padding: 120px 0;
}

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

.approach-card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.approach-card:hover {
  border-color: var(--border-accent);
}

.approach-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1;
}

.approach-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 14px;
}

.approach-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 300;
}

@media (max-width: 1100px) {
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .approach-grid {
    grid-template-columns: 1fr;
  }
}

.our-values {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.values-header {
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.value-item {
  display: flex;
  gap: 24px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.value-item:hover {
  border-color: var(--border-accent);
}

.value-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(79, 195, 247, 0.08) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  color: var(--cyan-primary);
}

.value-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.value-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 300;
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .value-item {
    flex-direction: column;
    gap: 16px;
  }

  .page-hero {
    padding: 140px 0 80px;
  }

  .page-hero-title {
    font-size: 1.8rem;
  }

  .page-hero-subtitle {
    font-size: 1rem;
  }

  .our-story {
    padding: 80px 0;
  }

  .story-grid {
    gap: 40px;
  }

  .story-image-placeholder {
    aspect-ratio: 3/2;
  }

  .story-stat-card {
    right: 10px;
    bottom: -15px;
    padding: 16px 20px;
  }

  .stat-big {
    font-size: 2rem;
  }

  .stat-desc {
    font-size: 0.7rem;
  }

  .our-team {
    padding: 80px 0;
  }

  .team-card {
    padding: 32px 24px;
  }

  .team-avatar {
    width: 70px;
    height: 70px;
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .team-name {
    font-size: 1.2rem;
  }

  .team-bio {
    font-size: 0.85rem;
  }

  .our-approach {
    padding: 80px 0;
  }

  .approach-card {
    padding: 28px 24px;
  }

  .approach-number {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .approach-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .approach-text {
    font-size: 0.9rem;
  }

  .our-values {
    padding: 80px 0;
  }

  .values-header {
    margin-bottom: 40px;
  }

  .values-grid {
    gap: 24px;
  }

  .value-item {
    padding: 28px 24px;
  }

  .value-icon {
    width: 48px;
    height: 48px;
  }

  .value-icon svg {
    width: 24px;
    height: 24px;
  }

  .value-title {
    font-size: 1.2rem;
  }

  .value-text {
    font-size: 0.9rem;
  }

  .why-different {
    padding: 80px 0;
  }

  .different-grid {
    gap: 40px;
  }

  .different-list {
    margin-top: 24px;
  }

  .different-list li {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .stats-grid {
    gap: 16px;
  }

  .stat-card {
    padding: 28px 24px;
  }

  .stat-card .stat-number {
    font-size: 2rem;
  }

  .stat-card .stat-label {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 120px 0 60px;
  }

  .page-hero-content {
    padding: 0 8px;
  }

  .page-hero-title {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }

  .page-hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 8px 16px;
    margin-bottom: 20px;
  }

  .our-story {
    padding: 60px 0;
  }

  .story-content .section-label {
    font-size: 0.65rem;
  }

  .story-content .section-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }

  .story-content .section-text {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }

  .story-stat-card {
    position: static;
    margin-top: 20px;
    padding: 20px;
  }

  .stat-big {
    font-size: 2.5rem;
  }

  .our-team {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header .section-label {
    font-size: 0.65rem;
    margin-bottom: 12px;
  }

  .section-header .section-title {
    font-size: 1.4rem;
  }

  .section-header .section-subtitle {
    font-size: 0.95rem;
  }

  .team-card {
    padding: 28px 20px;
  }

  .our-approach {
    padding: 60px 0;
  }

  .approach-card {
    padding: 24px 20px;
  }

  .approach-number {
    font-size: 1.8rem;
  }

  .approach-title {
    font-size: 1.1rem;
  }

  .our-values {
    padding: 60px 0;
  }

  .values-header {
    margin-bottom: 32px;
  }

  .values-header .section-title {
    font-size: 1.4rem;
  }

  .value-item {
    padding: 24px 20px;
    gap: 16px;
  }

  .value-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .why-different {
    padding: 60px 0;
  }

  .different-content .section-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }

  .different-content .section-text {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .different-list {
    margin-top: 20px;
  }

  .different-list li {
    gap: 12px;
    font-size: 0.85rem;
    margin-bottom: 16px;
  }

  .different-list svg {
    width: 18px;
    height: 18px;
  }

  .stat-card {
    padding: 24px 20px;
  }

  .stat-card .stat-number {
    font-size: 1.8rem;
    margin-bottom: 6px;
  }

  .stat-card .stat-label {
    font-size: 0.65rem;
  }
}

@media (max-width: 360px) {
  .page-hero-title {
    font-size: 1.4rem;
  }

  .page-hero-subtitle {
    font-size: 0.9rem;
  }

  .story-content .section-title {
    font-size: 1.25rem;
  }

  .section-header .section-title {
    font-size: 1.25rem;
  }

  .approach-number {
    font-size: 1.6rem;
  }

  .stat-card .stat-number {
    font-size: 1.6rem;
  }
}

.why-different {
  padding: 120px 0;
}

.different-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.different-list {
  list-style: none;
  margin-top: 32px;
}

.different-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.different-list li:last-child {
  margin-bottom: 0;
}

.different-list svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--cyan-primary);
}

.different-list strong {
  color: var(--text-primary);
  font-weight: 500;
}

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

.stat-card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all var(--transition-base);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
  border-color: var(--border-accent);
}

.stat-card .stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card .stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 900px) {
  .different-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.nav-links a.active {
  color: var(--cyan-dark);
}

.nav-links a.active::after {
  width: 100%;
}

/* Mobile Overflow Fixes */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

.container {
  max-width: 100%;
  box-sizing: border-box;
  padding-left: 16px;
  padding-right: 16px;
}

@media (max-width: 768px) {
  .team-grid,
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .stat-card {
    padding: 24px 20px;
  }
  
  .stat-card .stat-number {
    font-size: 2rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .value-item {
    flex-direction: column;
    padding: 24px 20px;
  }
  
  .different-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}