/* ===================================
   About Page Styles - InstaBooster
   Modern design matching homepage
   =================================== */

/* CSS Variables */
:root {
  --primary-gradient: linear-gradient(135deg, #e61c72 0%, #ff4d94 100%);
  --secondary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --accent-color: #e61c72;
  --accent-light: #ff4d94;
  --text-dark: #1a202c;
  --text-gray: #4a5568;
  --text-light: #718096;
  --bg-light: #f7fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   Hero Section
   =================================== */
.about-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 60px;
}

.about-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient);
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  opacity: 0.6;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.floating-shapes .shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

.floating-shapes .shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -100px;
  animation-delay: 0s;
}

.floating-shapes .shape-2 {
  width: 200px;
  height: 200px;
  top: 50%;
  right: -50px;
  animation-delay: 5s;
}

.floating-shapes .shape-3 {
  width: 150px;
  height: 150px;
  bottom: -75px;
  left: 30%;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(10deg); }
}

.about-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-hero-content {
  text-align: center;
  color: white;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  transition: var(--transition);
}

.about-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.about-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about-subtitle {
  font-size: 20px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0.95;
}

.about-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

/* ===================================
   Common Container & Headers
   =================================== */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(230, 28, 114, 0.1);
  border-radius: 50px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

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

.section-header-center h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-header-center p {
  font-size: 18px;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===================================
   Mission Section
   =================================== */
.about-mission {
  padding: 80px 0;
  background: var(--bg-white);
}

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

.mission-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.3;
}

.mission-content p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.mission-highlights {
  margin-top: 32px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  color: var(--text-dark);
  font-weight: 500;
}

.highlight-item svg {
  color: var(--accent-color);
  flex-shrink: 0;
}

.mission-visual {
  display: flex;
  justify-content: center;
}

.visual-card {
  background: var(--primary-gradient);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  color: white;
  box-shadow: var(--shadow-xl);
}

.visual-icon {
  margin-bottom: 20px;
  opacity: 0.9;
}

.visual-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.visual-card p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.95;
}

/* ===================================
   Team Section
   =================================== */
.about-team {
  padding: 80px 0;
  background: var(--bg-light);
}

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

.team-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team-photo {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
}

.team-memoji {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  background: var(--bg-light);
  border-radius: 50%;
}

.team-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(230, 28, 114, 0.3);
}

.team-badge svg {
  width: 20px;
  height: 20px;
  color: white;
}

.team-badge-secondary {
  background: var(--secondary-gradient);
}

.team-badge-tertiary {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.team-info h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.team-role {
  font-size: 14px;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-bio {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.team-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}

.expertise-tag {
  padding: 6px 12px;
  background: rgba(230, 28, 114, 0.1);
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #0077b5;
  color: white;
  border-radius: 50%;
  transition: var(--transition);
}

.team-linkedin:hover {
  background: #005582;
  transform: scale(1.1);
}

/* ===================================
   Certifications Section
   =================================== */
.about-certifications {
  padding: 80px 0;
  background: var(--bg-white);
}

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

.cert-card {
  background: var(--bg-light);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.cert-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cert-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.cert-icon svg {
  color: #4285f4;
}

.cert-icon-meta svg {
  color: #0668E1;
}

.cert-icon-tiktok svg {
  color: #000000;
}

.cert-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.cert-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* ===================================
   Methodology Section
   =================================== */
.about-methodology {
  padding: 80px 0;
  background: var(--bg-light);
}

.methodology-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.methodology-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-color) 0%, var(--accent-light) 100%);
}

.methodology-step {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.methodology-step:last-child {
  margin-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(230, 28, 114, 0.3);
  position: relative;
  z-index: 1;
}

.step-content {
  flex: 1;
  background: var(--bg-white);
  padding: 28px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.step-content:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ===================================
   Guarantees Section
   =================================== */
.about-guarantees {
  padding: 80px 0;
  background: var(--bg-white);
}

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

.guarantee-card {
  background: var(--bg-light);
  padding: 36px;
  border-radius: 20px;
  transition: var(--transition);
  border: 2px solid transparent;
}

.guarantee-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.guarantee-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.guarantee-icon svg {
  color: var(--accent-color);
}

.guarantee-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.guarantee-card p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ===================================
   Success Case Section
   =================================== */
.about-success-case {
  padding: 80px 0;
  background: var(--bg-light);
}

.success-case-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-xl);
}

.case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--border-color);
}

.case-profile {
  display: flex;
  align-items: center;
  gap: 20px;
}

.case-avatar {
  width: 80px;
  height: 80px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-memoji {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.case-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.case-info p {
  font-size: 14px;
  color: var(--text-gray);
}

.case-platform svg {
  color: #E1306C;
}

.case-quote {
  position: relative;
  margin-bottom: 36px;
}

.quote-icon {
  color: rgba(230, 28, 114, 0.15);
  margin-bottom: -10px;
}

.case-quote p {
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.8;
  font-style: italic;
}

.case-metrics {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 32px;
  padding: 28px;
  background: var(--bg-light);
  border-radius: 16px;
}

.metric-item {
  text-align: center;
}

.metric-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.metric-label {
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 500;
}

.metric-divider {
  width: 1px;
  height: 50px;
  background: var(--border-color);
}

/* ===================================
   Final CTA Section
   =================================== */
.about-final-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.cta-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient);
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-content > p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn-primary-cta,
.btn-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary-cta {
  background: white;
  color: var(--accent-color);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.btn-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
  color: var(--accent-color);
}

.btn-secondary-cta {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-cta:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  color: white;
}

.cta-contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  opacity: 0.95;
}

.contact-item a {
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.contact-item a:hover {
  opacity: 0.8;
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablets */
@media (max-width: 991px) {
  .about-title {
    font-size: 38px;
  }

  .about-subtitle {
    font-size: 18px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .certifications-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .guarantees-grid {
    grid-template-columns: 1fr;
  }

  .methodology-timeline::before {
    left: 20px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .cta-content h2 {
    font-size: 34px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .about-hero {
    min-height: 400px;
    padding: 60px 0 40px;
  }

  .about-title {
    font-size: 32px;
  }

  .about-subtitle {
    font-size: 16px;
  }

  .stat-value {
    font-size: 28px;
  }

  .stat-label {
    font-size: 13px;
  }

  .about-stats {
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .section-header-center h2 {
    font-size: 28px;
  }

  .section-header-center p {
    font-size: 16px;
  }

  .mission-content h2 {
    font-size: 26px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .certifications-grid {
    grid-template-columns: 1fr;
  }

  .methodology-timeline::before {
    display: none;
  }

  .methodology-step {
    flex-direction: column;
    gap: 16px;
  }

  .step-number {
    margin: 0 auto;
  }

  .step-content:hover {
    transform: translateY(-4px);
  }

  .success-case-card {
    padding: 32px 24px;
  }

  .case-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .case-profile {
    flex-direction: column;
  }

  .case-quote p {
    font-size: 16px;
  }

  .case-metrics {
    flex-direction: column;
    gap: 24px;
  }

  .metric-divider {
    display: none;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content > p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-cta,
  .btn-secondary-cta {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .cta-contact-info {
    flex-direction: column;
    gap: 16px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about-container {
    padding: 0 16px;
  }

  .about-hero {
    padding: 50px 0 30px;
  }

  .about-title {
    font-size: 28px;
  }

  .stat-value {
    font-size: 24px;
  }

  .section-header-center h2 {
    font-size: 24px;
  }

  .team-photo {
    width: 120px;
    height: 120px;
  }

  .cert-icon {
    width: 60px;
    height: 60px;
  }

  .cert-icon svg {
    width: 32px;
    height: 32px;
  }
}
