/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE STYLES - Стили для страницы "О компании"
   ═══════════════════════════════════════════════════════════════ */

/* ── HERO ── */
.about-hero {
  background: var(--night);
  padding: 80px 0 0;
  position: relative; overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(183,241,64,0.055) 1px, transparent 1px);
  background-size: 30px 30px;
}
.about-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lime) 0%, transparent 60%);
}
.about-hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 80px; align-items: end;
  padding-bottom: 0;
}
.about-hero-text { padding-bottom: 64px; }
.hero-label {
  display:inline-flex; align-items:center; gap:8px;
  font-size:11px; font-weight:700; letter-spacing:4px;
  text-transform:uppercase; color:rgba(183,241,64,0.7); margin-bottom:16px;
}
.hero-label::before { content:''; width:16px; height:2px; background:var(--lime); display:block; }
.about-hero-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 48px; font-weight: 900;
  color: white; letter-spacing: -2.5px; line-height: 1.02;
  margin-bottom: 20px;
}
.about-hero-title em { color: var(--lime); font-style: normal; }
.about-hero-sub { font-size: 17px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 460px; }

.about-hero-visual {
  display: flex; align-items: flex-end; justify-content: center;
  position: relative; height: 340px;
}
.hero-bear-wrap {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
}
.hero-bear-circle {
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(183,241,64,0.12);
  border: 1px solid rgba(183,241,64,0.2);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: float 3.5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-bear-glow {
  position: absolute; inset: -24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183,241,64,0.1) 0%, transparent 70%);
}
.hero-stat-chip {
  position: absolute;
  background: white; border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  display: flex; align-items: center; gap: 10px;
  animation: float 3.5s ease-in-out infinite;
}
.hero-stat-chip:nth-child(1) { top: 20px; left: -60px; animation-delay: 0.5s; }
.hero-stat-chip:nth-child(2) { top: 20px; right: -60px; animation-delay: 1s; }
.hero-stat-chip:nth-child(3) { bottom: 30px; left: -40px; animation-delay: 1.5s; }
.chip-val { font-family:'Unbounded',sans-serif; font-size:15px; font-weight:900; color:var(--blue); }
.chip-label { font-size:11px; color:var(--gray-600); font-weight:600; line-height:1.3; }

/* ── NUMBERS ── */
.numbers-section { padding: 72px 0; border-bottom: 1px solid var(--gray-200); }
.numbers-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 40px; }
.number-card {
  padding: 32px 28px;
  background: white; border: 1px solid var(--gray-200);
  border-radius: 0; text-align: left;
  transition: background 0.15s;
}
.number-card:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.number-card:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.number-card:hover { background: var(--blue-l); }
.number-val {
  font-family:'Unbounded',sans-serif;
  font-size: 40px; font-weight: 900;
  color: var(--blue); letter-spacing: -2px; line-height: 1;
  margin-bottom: 8px;
}
.number-label { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

.section-label {
  display:inline-flex; align-items:center; gap:8px;
  font-size:11px; font-weight:700; letter-spacing:4px;
  text-transform:uppercase; color:var(--blue); margin-bottom:12px;
}
.section-label::before { content:''; width:16px; height:2px; background:var(--blue); display:block; }
.section-title {
  font-family:'Unbounded',sans-serif;
  font-size:28px; font-weight:700; letter-spacing:-1px; line-height:1.15;
}

/* ── MISSION ── */
.mission-section { padding: 80px 0; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.mission-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.mission-text .section-title { margin-bottom: 24px; }
.mission-text p { font-size: 16px; color: var(--gray-600); line-height: 1.75; margin-bottom: 16px; }
.mission-text p:last-child { margin-bottom: 0; }
.mission-text strong { color: var(--text); }

.values-grid { display: flex; flex-direction: column; gap: 12px; }
.value-card {
  background: white; border-radius: 16px;
  border: 1.5px solid var(--gray-200);
  padding: 22px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: border-color 0.15s, transform 0.15s;
}
.value-card:hover { border-color: var(--blue); transform: translateX(4px); }
.value-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue-l); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.value-title { font-family:'Unbounded',sans-serif; font-size:13px; font-weight:700; letter-spacing:-0.2px; margin-bottom:4px; }
.value-desc { font-size:13px; color:var(--gray-600); line-height:1.6; }

/* ── HOW WE WORK ── */
.how-section { padding: 80px 0; border-bottom: 1px solid var(--gray-200); }
.how-inner { display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: start; }
.how-steps { display: flex; flex-direction: column; gap: 0; margin-top: 36px; }
.how-step {
  display: flex; gap: 20px; padding: 24px 0;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
}
.how-step:last-child { border-bottom: none; }
.how-step-num {
  font-family:'Unbounded',sans-serif; font-size:11px; font-weight:700;
  color: var(--blue); letter-spacing:3px;
  width: 32px; flex-shrink: 0; padding-top: 2px;
}
.how-step-title { font-size:15px; font-weight:700; margin-bottom:4px; }
.how-step-desc { font-size:13px; color:var(--gray-600); line-height:1.65; }

.how-highlight {
  background: var(--night);
  border-radius: 24px; padding: 40px;
  position: relative; overflow: hidden;
  margin-top: 36px;
}
.how-highlight::before {
  content:'';
  position:absolute; inset:0;
  background-image: radial-gradient(circle, rgba(183,241,64,0.07) 1px, transparent 1px);
  background-size: 26px 26px;
}
.how-highlight-inner { position: relative; z-index: 1; }
.how-highlight-label {
  font-size:10px; font-weight:700; letter-spacing:4px; text-transform:uppercase;
  color:rgba(183,241,64,0.6); margin-bottom:12px;
  display:flex; align-items:center; gap:8px;
}
.how-highlight-label::before { content:''; width:12px; height:2px; background:var(--lime); }
.how-highlight-num {
  font-family:'Unbounded',sans-serif; font-size:72px; font-weight:900;
  color: white; letter-spacing:-4px; line-height:1; margin-bottom:8px;
}
.how-highlight-num span { color: var(--lime); }
.how-highlight-sub { font-size:14px; color:rgba(255,255,255,0.4); line-height:1.6; }

.how-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.how-perk {
  background: rgba(255,255,255,0.07); border-radius:12px; border:1px solid rgba(255,255,255,0.1);
  padding: 16px;
}
.how-perk-icon { font-size:20px; margin-bottom:8px; }
.how-perk-text { font-size:13px; color:rgba(255,255,255,0.55); line-height:1.5; }
.how-perk-text strong { color:white; }

/* ── PARTNERS ── */
.partners-section { padding: 72px 0; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.partners-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 40px; }
.partners-text p { font-size:15px; color:var(--gray-600); line-height:1.7; margin-top:12px; }
.partners-stat-big {
  font-family:'Unbounded',sans-serif; font-size:72px; font-weight:900;
  color:var(--blue); letter-spacing:-4px; line-height:1; margin-bottom:8px;
}
.partners-stat-label { font-size:15px; color:var(--gray-600); line-height:1.5; max-width:260px; }

.insurers-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 10px; }
.insurer-card {
  background: white; border: 1.5px solid var(--gray-200); border-radius: 14px;
  padding: 18px 12px; display:flex; flex-direction:column; align-items:center;
  justify-content:center; gap:8px; min-height:84px;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
  cursor: pointer;
}
.insurer-card:hover { border-color:var(--blue); background:var(--blue-l); transform:translateY(-2px); }
.insurer-logo-box {
  width:32px; height:32px; border-radius:8px;
  background:var(--gray-100); display:flex; align-items:center; justify-content:center;
  font-size:14px;
}
.insurer-name { font-size:10px; font-weight:700; color:var(--gray-600); text-align:center; line-height:1.3; letter-spacing:0.3px; }

/* ── TIMELINE ── */
.timeline-section { padding: 80px 0; border-bottom: 1px solid var(--gray-200); }
.timeline { display: flex; flex-direction:column; gap:0; margin-top:40px; max-width:720px; }
.tl-item {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 32px; padding: 28px 0;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
}
.tl-item:last-child { border-bottom: none; }
.tl-year {
  font-family:'Unbounded',sans-serif; font-size:18px; font-weight:900;
  color: var(--gray-200); letter-spacing:-0.5px;
  transition: color 0.15s;
}
.tl-item:hover .tl-year { color: var(--blue); }
.tl-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gray-200); flex-shrink:0;
  position: absolute; left: 88px; top: 36px;
  transition: background 0.15s;
}
.tl-item:hover .tl-dot { background: var(--blue); }
.tl-title { font-size:15px; font-weight:700; margin-bottom:4px; }
.tl-desc { font-size:13px; color:var(--gray-600); line-height:1.65; }

/* ── CTA ── */
.about-cta {
  background: linear-gradient(135deg, var(--blue-d) 0%, var(--night) 100%);
  padding: 72px 0; position: relative; overflow: hidden;
}
.about-cta::before {
  content:''; position:absolute; inset:0;
  background-image: radial-gradient(circle, rgba(183,241,64,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}
.about-cta-inner { position:relative; z-index:1; display:flex; align-items:center; justify-content:space-between; gap:40px; }
.cta-label {
  font-size:11px; font-weight:700; letter-spacing:4px; text-transform:uppercase;
  color:rgba(183,241,64,0.7); margin-bottom:10px;
  display:flex; align-items:center; gap:8px;
}
.cta-label::before { content:''; width:14px; height:2px; background:var(--lime); }
.cta-title {
  font-family:'Unbounded',sans-serif; font-size:28px; font-weight:700;
  color:white; letter-spacing:-1px; line-height:1.15; margin-bottom:10px;
}
.cta-title em { color:var(--lime); font-style:normal; }
.cta-sub { font-size:14px; color:rgba(255,255,255,0.4); }
.cta-buttons { display:flex; flex-direction:column; gap:10px; flex-shrink:0; }
.btn-ghost-white {
  padding:14px 28px; background:rgba(255,255,255,0.1); color:white;
  border:1px solid rgba(255,255,255,0.2); border-radius:12px;
  font-family:'Onest',sans-serif; font-size:14px; font-weight:600;
  cursor:pointer; white-space:nowrap; text-decoration:none;
  transition:background 0.15s; display:inline-block; text-align:center;
}
.btn-ghost-white:hover { background:rgba(255,255,255,0.18); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(16px); }
  to { opacity:1; transform:translateY(0); }
}
.about-hero-text { animation: fadeUp 0.45s ease both; }
.about-hero-visual { animation: fadeUp 0.45s ease 0.1s both; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-hero { padding: 60px 0 0; }
  .about-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-hero-title { font-size: 36px; }
  .about-hero-visual { height: auto; min-height: 240px; }
  .hero-stat-chip { display: none; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .number-card:first-child { border-radius: var(--radius) 0 0 0; }
  .number-card:nth-child(2) { border-radius: 0 var(--radius) 0 0; }
  .number-card:nth-child(3) { border-radius: 0 0 0 var(--radius); }
  .number-card:last-child { border-radius: 0 0 var(--radius) 0; }
  .mission-inner { grid-template-columns: 1fr; gap: 40px; }
  .how-inner { grid-template-columns: 1fr; gap: 40px; }
  .partners-intro { grid-template-columns: 1fr; gap: 32px; }
  .insurers-grid { grid-template-columns: repeat(3, 1fr); }
  .about-cta-inner { flex-direction: column; gap: 24px; }
  .cta-buttons { width: 100%; }
  .btn-lime-main, .btn-ghost-white { width: 100%; }
}

@media (max-width: 560px) {
  .about-hero { padding: 40px 0 0; }
  .about-hero-title { font-size: 28px; }
  .numbers-grid { grid-template-columns: 1fr; }
  .number-card { border-radius: var(--radius) !important; }
  .how-perks { grid-template-columns: 1fr; }
  .insurers-grid { grid-template-columns: repeat(2, 1fr); }
  .tl-item { grid-template-columns: 60px 1fr; gap: 16px; }
  .tl-year { font-size: 14px; }
  .tl-dot { left: 48px; }
}

