/* ================================================
   PORTFOLIO PAGE STYLES (portfolio.html)
   ================================================ */

/* Portfolio Intro */
.portfolio-intro {
  padding: 3rem 0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.portfolio-intro h2 {
  margin-bottom: 1.5rem;
}

.portfolio-intro p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: #666;
  font-size: 1rem;
}

/* Portfolio Models */
.portfolio-models {
  padding: 4rem 0;
}

.model {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

.model:nth-child(even) {
  direction: rtl;
}

.model:nth-child(even)>* {
  direction: ltr;
}

.model__preview {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.model__preview img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.model__preview:hover img {
  transform: scale(1.05);
}

.model__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #4854D0;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
}

.model__content h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #2c2c2c;
}

.model__tagline {
  color: #6FBE57;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.model__content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.model__content h4 {
  color: #4854D0;
  margin: 1.5rem 0 1rem;
}

.model__features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.model__features li {
  padding: 0.6rem 0;
  color: #555;
  padding-left: 1.5rem;
  position: relative;
}

.model__features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #6FBE57;
  font-weight: bold;
}

.model__ideal {
  background: #F5F7EA;
  padding: 1rem;
  border-left: 4px solid #4854D0;
  margin: 1.5rem 0;
  color: #555;
}

.model__ideal strong {
  color: #4854D0;
}

.btn--secondary {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #F5F7EA;
  color: #4854D0;
  border: 2px solid #4854D0;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
}

.btn--secondary:hover {
  background: #4854D0;
  color: white;
}

/* Model Features Grid */
.model-features {
  padding: 4rem 0;
}

.model-features h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.1);
}

.feature__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature h4 {
  margin-bottom: 0.8rem;
  color: #2c2c2c;
}

.feature p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Showcase Section */
.showcase {
  padding: 4rem 0;
}

.showcase h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.showcase>p {
  text-align: center;
  color: #888;
  margin-bottom: 3rem;
}

.showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.showcase__item {
  background: #F5F7EA;
  padding: 2rem;
  border-radius: 12px;
}

.showcase__item h4 {
  margin-bottom: 1.5rem;
  color: #4854D0;
  font-size: 1.1rem;
}

.showcase__item ul {
  list-style: none;
}

.showcase__item li {
  padding: 0.6rem 0;
  color: #666;
  padding-left: 1.5rem;
  position: relative;
}

.showcase__item li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6FBE57;
  font-weight: bold;
}

/* Decision Cards */
.decision {
  padding: 4rem 0;
}

.decision h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.decision__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.decision__card {
  background: white;
  border: 2px solid #e0e0e0;
  border-left: 4px solid #6FBE57;
  padding: 1.5rem;
  border-radius: 8px;
}

.decision__card h4 {
  margin-bottom: 1rem;
  color: #2c2c2c;
}

.decision__card p {
  color: #666;
  line-height: 1.6;
}

.decision__card strong {
  color: #4854D0;
}

/* Demo CTA */
.demo-cta {
  background: linear-gradient(135deg, #4854D0, #6FBE57);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.demo-cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.demo-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .model {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .model:nth-child(even) {
    direction: ltr;
  }

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

  .cta__buttons {
    flex-direction: column;
  }

  .cta__buttons .btn {
    width: 100%;
  }

  .hero--sm h1 {
    font-size: 1.5rem;
  }

  .hero--sm p {
    font-size: 1rem;
  }
}