/* ===== ABOUT PAGE ===== */

/* Hero */
.about-hero {
  padding: 140px 0 60px;
  background: var(--primary);
  text-align: center;
}

.about-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.about-hero p {
  font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== MISSION ===== */

.about-mission {
  padding: 72px 0;
}

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

.about-mission-text h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 18px;
}

.about-mission-text p {
  font-family: 'DM Sans', sans-serif;
  color: #555;
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-mission-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  max-height: 360px;
}

.about-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 24px;
  padding: 48px;
  min-height: 280px;
}

.about-brand-colon {
  font-size: 5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.about-brand-name {
  font-size: 5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

/* ===== STATS ===== */

.about-stats {
  padding: 56px 0;
  background: #f7f7f8;
}

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

.about-stat-item {
  padding: 28px 16px;
}

.about-stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}

.about-stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--muted);
}

/* ===== HOW IT WORKS ===== */

.about-how {
  padding: 72px 0;
}

.about-how h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 48px;
}

.about-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-how-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: 18px;
  border: 1.5px solid var(--border);
  transition: box-shadow 0.3s, transform 0.2s;
}

.about-how-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

.about-how-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(232,68,58,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
}

.about-how-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.about-how-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== FAQ ===== */

.about-faq {
  padding: 72px 0;
  background: #f7f7f8;
}

.about-faq h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 40px;
}

.about-faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg);
  border-radius: 14px;
  border: 1.5px solid var(--border);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f0f0f2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
  color: var(--muted);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ===== CONTACT ===== */

.about-contact {
  padding: 72px 0;
}

.about-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-contact-info h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
}

.about-contact-info p {
  font-family: 'DM Sans', sans-serif;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text);
  font-size: 0.95rem;
}

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

.about-contact-form {
  background: #f7f7f8;
  border-radius: 18px;
  padding: 36px;
}

.about-contact-form h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.about-form-group {
  margin-bottom: 16px;
}

.about-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.about-form-group input,
.about-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.about-form-group input:focus,
.about-form-group textarea:focus {
  border-color: var(--primary);
}

.about-form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.about-form-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}

.about-form-btn:hover {
  background: #d63a30;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-how-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .about-hero { padding: 110px 0 48px; }
  .about-hero h1 { font-size: 2rem; }
  .about-mission-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-mission-img { max-height: 240px; }
  .about-brand-logo { min-height: 200px; padding: 32px; }
  .about-brand-colon, .about-brand-name { font-size: 3.2rem; }
  .about-contact-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .about-hero { padding: 100px 0 36px; }
  .about-hero h1 { font-size: 1.6rem; }
  .about-hero p { font-size: 1rem; }
  .about-stat-num { font-size: 1.8rem; }
  .about-stats-grid { gap: 16px; }
  .faq-question { padding: 14px 18px; }
  .faq-question h3 { font-size: 0.92rem; }
  .about-contact-form { padding: 24px; }
}
