:root{
  --bg:#0a0a0c;
  --bg-elev:#101015;
  --text:#e9e9ee;
  --muted:#b0b0b8;
  --pink:#ff005c;
  --ring: 0 0 0 1px rgba(255,255,255,.06), 0 8px 30px rgba(0,0,0,.5);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0; 
  overflow-x: hidden; 
  background: 
    radial-gradient(1200px 800px at 10% -10%, rgba(193,18,33,.08), transparent 60%),
    radial-gradient(900px 700px at 110% 10%, rgba(193,18,33,.06), transparent 60%),
    linear-gradient(180deg, #0a0a0c 0%, #0b0a0e 40%, #130710 100%);
  color: var(--text); 
  font-family: "Noto Sans", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Arial, sans-serif;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10,10,12,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 50;
  padding: 16px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF0066 0%, #ff3385 50%, #FF0066 100%);
  position: relative;
  box-shadow: 0 4px 12px rgba(255,0,102,0.4);
}

.logo-circle::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 60%);
}

.logo-text {
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 0;
  transition: all 0.3s ease;
  position: relative;
  opacity: 0.9;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FF0066;
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Page Hero */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #0a0a0c, #130710);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,0,92,.08) 0 2px, transparent 2px 26px);
  opacity: 0.3;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-watermark {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(120px, 18vw, 200px);
  font-weight: 900;
  color: transparent;
  background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,0,92,.12), rgba(255,255,255,.06));
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.hero-title {
  font-size: clamp(32px, 6vw, 54px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 20px 0;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.hero-title .accent {
  color: var(--pink);
}

.hero-subtitle {
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

/* Contact Stats */
.contact-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.contact-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

.contact-stat i {
  color: var(--pink);
  font-size: 18px;
}

/* About Story Section */
.about-story {
  padding: 80px 0;
  background: #000;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-eyebrow {
  color: var(--pink);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.story-title {
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  margin: 0 0 24px 0;
  line-height: 1.3;
}

.story-text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 20px 0;
}

.story-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 600;
}

.highlight-item i {
  color: var(--pink);
  font-size: 18px;
  width: 20px;
}

.story-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 400px;
  height: 300px;
  background: linear-gradient(135deg, #161621, #0f0f18);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: var(--muted);
}

.image-placeholder i {
  font-size: 48px;
  color: var(--pink);
}

.image-placeholder span {
  font-size: 16px;
  font-weight: 600;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f0f18, #1a0f1a);
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,0,92,.05) 0 2px, transparent 2px 26px);
  opacity: 0.3;
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-eyebrow {
  color: var(--pink);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 16px 0;
  position: relative;
}

.section-eyebrow::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), rgba(255,255,255,.3));
  border-radius: 999px;
}

.section-title {
  color: #fff;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  margin: 0 0 16px 0;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  background: linear-gradient(180deg, #161621, #0f0f18);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  border-color: rgba(255,0,92,.2);
}

.member-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), #ff3385);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 12px 32px rgba(255,0,92,.3);
}

.avatar-initial {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.member-name {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.member-role {
  color: var(--pink);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 16px 0;
}

.member-bio {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 24px 0;
  text-align: left;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,0,92,.3);
}

.member-skills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.skill-tag {
  background: rgba(255,0,92,0.1);
  color: var(--pink);
  border: 1px solid rgba(255,0,92,0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.member-stats {
  display: flex;
  justify-content: space-around;
  margin: 20px 0 24px 0;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.member-stats .stat-item {
  text-align: center;
}

.member-stats .stat-number {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: var(--pink);
  margin-bottom: 4px;
}

.member-stats .stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: #000;
  position: relative;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-item {
  background: linear-gradient(180deg, #161621, #0f0f18);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  border-color: rgba(255,0,92,.2);
}

.value-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--pink), #ff3385);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 16px 40px rgba(255,0,92,.4);
}

.value-icon i {
  font-size: 32px;
  color: #fff;
}

.value-title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.value-description {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Company CTA Section */
.company-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0c, #130710);
  position: relative;
  overflow: hidden;
}

.company-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(1200px 800px at 10% -10%, rgba(255,0,92,.08), transparent 60%),
    repeating-linear-gradient(45deg, rgba(255,0,92,.03) 0 2px, transparent 2px 26px);
  pointer-events: none;
}

.company-cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.company-watermark {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(120px, 18vw, 200px);
  font-weight: 900;
  color: transparent;
  background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,0,92,.12), rgba(255,255,255,.06));
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.2;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.company-eyebrow {
  color: var(--pink);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.company-title {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 20px 0;
  line-height: 1.2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.company-title .accent {
  color: var(--pink);
}

.company-subtitle {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 60px;
}

.company-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.company-feature {
  text-align: left;
  padding: 24px 20px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pink), #ff3385);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 12px 32px rgba(255,0,92,.3);
}

.feature-icon i {
  font-size: 24px;
  color: #fff;
}

.feature-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.feature-description {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Company CTA Section */
.company-numbers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.number-item {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  transition: all .3s ease;
}

.number-item:hover {
  background: rgba(255,0,92,.08);
  border-color: rgba(255,0,92,.2);
  transform: translateY(-4px);
}

.number-value {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: var(--pink);
  margin-bottom: 8px;
  line-height: 1;
}

.number-label {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.company-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.btn-primary {
  background: var(--pink);
  color: white;
}

.btn-primary:hover {
  background: #e6005c;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,0,92,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
  background: var(--pink);
  padding: 80px 0;
  text-align: center;
  box-shadow: 0 -8px 40px rgba(255,0,102,0.12);
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background: white;
  color: var(--pink);
}

.cta-section .btn-primary:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.cta-section .btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}

.cta-section .btn-outline:hover {
  background: white;
  color: var(--pink);
}

/* Footer */
.footer {
  background: var(--bg);
  color: white;
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 8px 24px rgba(255,0,92,0.3);
}

.brand-name {
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 900;
}

.footer-badge {
  background: rgba(255,255,255,0.1);
  color: var(--muted);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-copyright {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .company-numbers {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 0;
  }
  
  .number-value {
    font-size: 2.5rem;
  }
  
  .company-cta-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .company-cta-buttons .btn,
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  
  .nav-container { 
    flex-wrap: wrap; 
    gap: 12px; 
    justify-content: center; 
  }
  
  .nav-links { 
    gap: 16px; 
    overflow-x: auto; 
    white-space: nowrap; 
    padding-bottom: 4px; 
  }
  
  .nav-links a { 
    font-size: 14px; 
  }
  
  .story-grid { 
    grid-template-columns: 1fr; 
    gap: 32px; 
  }
  
  .story-image .image-placeholder { 
    width: 100%; 
    aspect-ratio: 4 / 3; 
    height: auto; 
  }
  
  .contact-stats { 
    gap: 20px; 
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 100px 0 60px;
  }
  
  .hero-content {
    text-align: center;
    padding: 0 16px;
  }
  
  .hero-watermark {
    top: -60px;
    font-size: clamp(80px, 15vw, 120px);
  }
  
  .hero-title {
    font-size: clamp(28px, 8vw, 36px);
    margin-bottom: 16px;
  }
  
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }
  
  .contact-stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  .contact-stat {
    justify-content: center;
    padding: 12px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    width: 100%;
    max-width: 280px;
  }
  
  .contact-stat i {
    font-size: 16px;
  }
  
  /* About Story Section */
  .about-story {
    padding: 60px 16px;
  }
  
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .story-title {
    font-size: clamp(24px, 6vw, 32px);
    margin-bottom: 20px;
  }
  
  .story-text {
    font-size: 15px;
    margin-bottom: 16px;
  }
  
  .story-highlights {
    margin-top: 24px;
    gap: 12px;
  }
  
  .highlight-item {
    font-size: 14px;
  }
  
  .story-image .image-placeholder {
    height: 240px;
  }
  
  /* Team Section */
  .team-section {
    padding: 60px 16px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .team-member {
    padding: 28px 20px;
  }
  
  .member-avatar {
    width: 70px;
    height: 70px;
    margin-bottom: 16px;
  }
  
  .avatar-initial {
    font-size: 20px;
  }
  
  .member-name {
    font-size: 18px;
  }
  
  .member-role {
    font-size: 13px;
  }
  
  .member-bio {
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  .member-social {
    gap: 12px;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
  }
  
  /* Values Section */
  .values-section {
    padding: 60px 16px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .value-item {
    padding: 32px 24px;
  }
  
  .value-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .value-icon i {
    font-size: 28px;
  }
  
  .value-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .value-description {
    font-size: 14px;
  }
  
  /* Company CTA Section */
  .company-cta {
    padding: 60px 16px;
  }
  
  .company-watermark {
    top: -80px;
    font-size: clamp(80px, 15vw, 120px);
  }
  
  .company-title {
    font-size: clamp(28px, 7vw, 36px);
    margin-bottom: 20px;
  }
  
  .company-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .company-features {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  
  .company-feature {
    padding: 24px 20px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .feature-icon i {
    font-size: 24px;
  }
  
  .feature-title {
    font-size: 1.2rem;
  }
  
  .feature-description {
    font-size: 14px;
  }
  
  .company-numbers {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .number-item {
    padding: 20px 16px;
  }
  
  .number-value {
    font-size: 2.2rem;
  }
  
  .number-label {
    font-size: 0.9rem;
  }
  
  .company-cta-buttons {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  .company-cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 60px 16px;
  }
  
  .cta-title {
    font-size: clamp(24px, 6vw, 32px);
  }
  
  .cta-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  
  /* Footer */
  .footer {
    padding: 40px 16px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-brand {
    gap: 12px;
  }
  
  .brand-logo {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .brand-name {
    font-size: 1.3rem;
  }
  
  .footer-badge {
    font-size: 0.75rem;
    padding: 3px 10px;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 80px 0 50px;
  }
  
  .hero-content {
    padding: 0 12px;
  }
  
  .hero-watermark {
    top: -50px;
    font-size: 80px;
  }
  
  .hero-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  
  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 28px;
  }
  
  .contact-stat {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .contact-stat i {
    font-size: 16px;
  }
  
  /* Sections */
  .about-story,
  .team-section,
  .values-section {
    padding: 50px 12px;
  }
  
  .company-cta,
  .cta-section {
    padding: 50px 12px;
  }
  
  .story-title,
  .section-title,
  .company-title {
    font-size: 22px;
  }
  
  .story-text,
  .section-subtitle,
  .company-subtitle {
    font-size: 14px;
  }
  
  .team-member,
  .value-item,
  .company-feature {
    padding: 24px 16px;
  }
  
  .member-avatar,
  .value-icon {
    width: 60px;
    height: 60px;
  }
  
  .value-icon i,
  .feature-icon i {
    font-size: 24px;
  }
  
  .avatar-initial {
    font-size: 18px;
  }
  
  .member-name,
  .value-title,
  .feature-title {
    font-size: 16px;
  }
  
  .member-bio,
  .value-description,
  .feature-description {
    font-size: 13px;
  }
  
  .company-numbers {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }
  
  .number-item {
    padding: 16px 12px;
  }
  
  .number-value {
    font-size: 2rem;
  }
  
  .number-label {
    font-size: 0.8rem;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .footer {
    padding: 32px 12px;
  }
  
  .brand-logo {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  
  .brand-name {
    font-size: 1.2rem;
  }
  
  .footer-copyright {
    font-size: 13px;
  }
}