/* --------------------------------------------------
   OVER ONS PAGE - Custom Styles
   (Design system variables loaded via front-page.css)
   -------------------------------------------------- */

/* Page Hero */
.page-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0c4a6e 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%2338bdf8' fill-opacity='0.05' d='M0,160L48,170.7C96,181,192,203,288,197.3C384,192,480,160,576,154.7C672,149,768,171,864,186.7C960,203,1056,213,1152,197.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
  pointer-events: none;
}

.page-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(56, 189, 248, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(2, 132, 199, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

.page-hero-subtitle {
  display: inline-block;
  font-family: var(--font-brand);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-full);
  background: rgba(56, 189, 248, 0.08);
}

.page-hero h1 {
  font-family: var(--font-brand);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-hero h1 .accent {
  color: var(--accent);
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.page-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Story Section */
.story-section {
  padding: 100px 0;
}

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

.story-content .section-subtitle {
  display: inline-block;
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.story-content h2 {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--neutral-900);
  margin-bottom: 24px;
  line-height: 1.15;
}

.story-content h2 .accent {
  color: var(--primary);
}

.story-content p {
  color: var(--neutral-600);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.story-image {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.image-frame img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.image-frame:hover img {
  transform: scale(1.03);
}

.experience-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--primary);
  color: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-xl);
  z-index: 3;
}

.experience-badge .experience-number {
  display: block;
  font-family: var(--font-brand);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .experience-text {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.9;
}

/* Values Section */
.values-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.values-section .section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.values-section .section-subtitle {
  color: var(--accent);
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.values-section h2 {
  color: var(--white);
  text-align: center;
  display: block;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.values-section h2 .accent {
  color: var(--accent);
}

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

.value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-normal);
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(56, 189, 248, 0.1);
  border-radius: var(--radius-md);
  color: var(--accent);
}

.value-icon i, .value-icon svg {
  width: 28px;
  height: 28px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.value-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Team Section */
.team-section {
  padding: 100px 0;
  background: var(--neutral-50);
}

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

.section-header.center {
  text-align: center;
}

.section-header .section-subtitle {
  display: inline-block;
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--neutral-900);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-header h2 .accent {
  color: var(--primary);
}

.section-header p {
  color: var(--neutral-600);
  font-size: 1.1rem;
  max-width: 600px;
}

.values-section .section-header p {
  color: rgba(255, 255, 255, 0.85);
}

.section-header.center p {
  margin: 0 auto;
}

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

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 48px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-100);
  transition: var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(56, 189, 248, 0.2);
}

.team-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  border-radius: 50%;
  color: var(--primary);
}

.team-avatar i, .team-avatar svg {
  width: 32px;
  height: 32px;
}

.team-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 6px;
}

.team-role {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
  padding: 4px 12px;
  background: var(--primary-light);
  border-radius: var(--radius-full);
}

.team-card p {
  color: var(--neutral-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-brand);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Brands Section */
.brands-section {
  padding: 80px 0;
  background: var(--neutral-50);
}

.brands-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.brand-item {
  font-family: var(--font-brand);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--neutral-300);
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: var(--transition-normal);
  cursor: default;
}

.brand-item:hover {
  color: var(--primary);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
}

.cta-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0c4a6e 100%);
  border-radius: var(--radius-lg);
  padding: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: var(--font-brand);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-content h2 .accent {
  color: var(--accent);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  max-width: 450px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

.btn i, .btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.4);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; gap: 60px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .cta-box { flex-direction: column; text-align: center; padding: 60px 40px; }
  .cta-buttons { justify-content: center; }
}

@media (max-width: 768px) {
  .page-hero { min-height: 400px; padding: 100px 0 60px; }
  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .values-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { gap: 30px; }
  .brand-item { font-size: 1.1rem; letter-spacing: 2px; }
  .experience-badge { bottom: -16px; right: -8px; padding: 16px 24px; }
  .experience-badge .experience-number { font-size: 2rem; }
  .cta-box { padding: 40px 24px; }
  .page-hero-buttons { flex-direction: column; }
  .page-hero-buttons .btn { justify-content: center; }
}

@media (max-width: 576px) {
  .story-section, .values-section, .team-section, .cta-section { padding: 60px 0; }
  .stats-section, .brands-section { padding: 50px 0; }
}
