/* ===========================
   MODERN BENTO ABOUT SECTION
   =========================== */
.about-section {
  padding: 100px 0;
  background-color: #ffffff;
  color: #1a1a1b;
}

.about-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Typography Enhancements */
.about-main-info .section-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 800;
  text-align: left;
  letter-spacing: -2px;
}

.highlight {
  color: #007bff;
  position: relative;
}

.about-lead {
  font-size: 1.4rem;
  font-weight: 500;
  color: #4a5568;
  margin-bottom: 25px;
  line-height: 1.5;
}

.about-main-info p {
  font-size: 1.1rem;
  color: #718096;
  margin-bottom: 30px;
}

/* Tagline Design */
.about-tagline-wrapper {
  margin: 40px 0;
  padding-left: 20px;
  border-left: 4px solid #007bff;
}

.tagline-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #a0aec0;
  margin-bottom: 8px;
}

.tagline {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  font-style: normal;
}

/* Creator Link */
.creator-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #007bff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: gap 0.3s ease;
}

.creator-link:hover {
  gap: 20px;
}

/* Bento Grid Layout */
.about-bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
}

.action-card {
  padding: 40px 15px;
  border-radius: 24px;
  background: #f7fafc;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #edf2f7;
}

.action-card:hover {
  background: #ffffff;
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  border-color: #007bff;
}

.card-icon {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #007bff;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.action-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 800;
}

/* Social Tiles */
.social-bento {
  grid-column: span 2;
  display: flex;
  gap: 20px;
}

.social-tile {
  flex: 1;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-size: 1.8rem;
  color: white;
  transition: transform 0.3s ease;
}

.social-tile:hover {
  transform: translateY(-5px);
}

.social-tile.instagram { background: #000; } /* Modern minimal black */
.social-tile.telegram { background: #0088cc; }
.social-tile.email { background: #edf2f7; color: #1a202c; }

/* Responsive Styling */
@media (max-width: 992px) {
  .about-grid-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-main-info .section-title { font-size: 2.8rem; }
}

@media (max-width: 600px) {
  .about-bento-grid { grid-template-columns: 1fr; }
  .social-bento { flex-direction: column; }
  .social-tile { height: 60px; }
}