/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1e293b;
  line-height: 1.5;
  scroll-behavior: smooth;
}

/* ========== CONTAINER & SECTION ========== */
.becpor-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.becpor-section {
  padding: 80px 0;
}

.becpor-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #0f172a;
}

.becpor-section-subhead {
  font-size: 1.125rem;
  color: #475569;
  max-width: 720px;
  margin-bottom: 48px;
}

.becpor-text-center {
  text-align: center;
}

/* ========== PORTFOLIO GRID ========== */
.becpor-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.becpor-portfolio-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #eef2f6;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.becpor-portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
  border-color: #cbdffa;
}

.becpor-portfolio-image {
  background: linear-gradient(135deg, #eef2ff, #ffffff);
  padding: 40px 20px;
  text-align: center;
  border-bottom: 1px solid #eef2f6;
}

.becpor-portfolio-image i {
  font-size: 3.5rem;
  color: #2563eb;
}

.becpor-portfolio-content {
  padding: 24px;
}

.becpor-portfolio-category {
  display: inline-block;
  background: #eef2ff;
  color: #2563eb;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.becpor-portfolio-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}

.becpor-portfolio-content p {
  color: #475569;
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.becpor-portfolio-stats {
  display: flex;
  justify-content: space-between;
  margin: 16px 0;
  padding-top: 12px;
  border-top: 1px solid #eef2f6;
}

.becpor-stat {
  text-align: center;
}

.becpor-stat-number {
  font-weight: 800;
  font-size: 1.3rem;
  color: #1e293b;
}

.becpor-stat-label {
  font-size: 0.7rem;
  color: #64748b;
  text-transform: uppercase;
}

.becpor-btn-small {
  background: none;
  border: 1px solid #cbd5e1;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  color: #1e293b;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.becpor-btn-small:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: white;
}

/* ========== SKILLS SECTION ========== */
.becpor-skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.becpor-skill-card {
  background: #f8fafc;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  transition: all 0.2s;
}

.becpor-skill-card i {
  font-size: 2rem;
  color: #2563eb;
  margin-bottom: 12px;
}

.becpor-skill-card h4 {
  font-weight: 600;
  margin-bottom: 8px;
  color: #0f172a;
}

.becpor-skill-card p {
  font-size: 0.8rem;
  color: #475569;
}

/* ========== CALL TO ACTION (CTA) ========== */
.becpor-cta-section {
  background: #0f172a;
  border-radius: 48px;
  margin: 40px auto;
  padding: 64px 48px;
  text-align: center;
  color: white;
}

.becpor-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.becpor-btn-light {
  background: white;
  color: #0f172a;
}

.becpor-btn-light:hover {
  background: #f1f5f9;
}

/* ========== RESPONSIVE (only rules that affect used classes) ========== */
@media (max-width: 768px) {
  .becpor-container {
    padding: 0 24px;
  }
  .becpor-section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .becpor-container {
    padding: 0 16px;
  }
  .becpor-section-title {
    font-size: 2rem;
  }
}