/* ═══════════════════════════════════════════════════════════════════════════
   PORTFOLIO PAGE STYLES - PyStatR+
   File: scss/pages/portfolio.css
   
   This file owns ALL Portfolio page styling including:
   - Hero section
   - Process steps
   - Portfolio cards (logos, web projects)
   - Guarantee section
   - CTA section
   - Mobile responsive behavior
   ═══════════════════════════════════════════════════════════════════════════ */

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */

:root {
  --navbar-height: 70px;
  --pystatr-deep-blue: #003366;
  --pystatr-navy: #1E3A8A;
  --pystatr-cyan: #22d3ee;
  --pystatr-gold: #FACC15;
  --pystatr-deep-black: #0B1120;
  --pystatr-slate: #1E293B;
  --pystatr-grey: #F7F9FC;
}

/* ==========================================================================
   CONTAINER
   ========================================================================== */

.portfolio-hero .container,
.portfolio-section-dark .container,
.portfolio-process-light .container,
.portfolio-web-light .container,
.portfolio-guarantee-light .container,
.portfolio-cta-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  position: relative;
  z-index: 10;
}

/* ==========================================================================
   PORTFOLIO HERO SECTION
   ========================================================================== */

.portfolio-hero {
  position: relative;
  padding-top: calc(var(--navbar-height) + 4rem);
  padding-bottom: 5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  background: linear-gradient(135deg, #0B1120 0%, #1E293B 50%, #0B1120 100%);
  overflow: hidden;
  text-align: center;
}

.portfolio-hero-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.portfolio-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.portfolio-hero-orb-1 {
  top: 10%;
  left: 15%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  animation: floatOrb 8s ease-in-out infinite;
}

.portfolio-hero-orb-2 {
  bottom: 10%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
  animation: floatOrb 10s ease-in-out infinite reverse;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.portfolio-hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.portfolio-hero-label {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 50px;
  color: #f59e0b;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.portfolio-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.portfolio-hero-title .text-gradient-gold {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.portfolio-hero-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1.15rem;
  color: #9CA3AF;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

.portfolio-hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.portfolio-hero-stats .stat-item {
  text-align: center;
}

.portfolio-hero-stats .stat-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #f59e0b;
  margin-bottom: 0.25rem;
}

.portfolio-hero-stats .stat-label {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: #9CA3AF;
}

.portfolio-hero-stats .stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(245, 158, 11, 0.3), transparent);
}

.portfolio-hero-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #f59e0b, transparent);
}

/* ==========================================================================
   SECTION SEPARATORS
   ========================================================================== */

.section-separator-white {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

/* ==========================================================================
   PROCESS SECTION (LIGHT)
   ========================================================================== */

.portfolio-process-light {
  padding: 5rem 0;
  background: #ffffff;
}

.portfolio-section-header-light {
  text-align: center;
  margin-bottom: 3rem;
}

.portfolio-label-light {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(34, 211, 238, 0.05));
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 50px;
  color: #0891b2;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.portfolio-title-light {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0B1120;
  margin-bottom: 1rem;
}

.portfolio-subtitle-light {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: #6B7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Process Grid */
.process-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #22d3ee;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #22d3ee, #06b6d4);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.process-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0B1120;
  margin-bottom: 0.5rem;
}

.process-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: #6B7280;
  line-height: 1.5;
  margin: 0;
}

.process-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #22d3ee, #06b6d4);
  margin-top: 2.5rem;
  flex-shrink: 0;
}

/* ==========================================================================
   DARK PORTFOLIO SECTION
   ========================================================================== */

.portfolio-section-dark {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0B1120 0%, #1E293B 100%);
}

.portfolio-section-dark.full-width {
  width: 100%;
}

.portfolio-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.portfolio-label {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 50px;
  color: #f59e0b;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.portfolio-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.portfolio-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: #9CA3AF;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Payment Note */
.portfolio-payment-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  margin-bottom: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.payment-note-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.payment-note-content {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.payment-note-content strong {
  color: #10b981;
}

/* ==========================================================================
   PORTFOLIO CARDS GRID
   ========================================================================== */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.portfolio-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.portfolio-card-image img {
  width: 60%;
  height: auto;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.05);
}

/* Featured card enhanced logo display */
.portfolio-card.featured .portfolio-card-image {
  background: inherit;
  position: relative;
}

.portfolio-card.featured .portfolio-card-image img {
  width: 70%;
}

.portfolio-card.featured:hover .portfolio-card-image img {
  transform: scale(1.05);
}

/* Light background variant for logos with light/white backgrounds */
.portfolio-card-image.light-bg {
  background: #f8f9fa;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Coming Soon Placeholder Card */
.portfolio-card.coming-soon-card .portfolio-card-image {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(34, 211, 238, 0.1) 100%);
}

.coming-soon-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 0.75rem;
}

.placeholder-icon {
  font-size: 2.5rem;
  opacity: 0.6;
}

.placeholder-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 17, 32, 0.9) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-card-overlay {
  opacity: 1;
}

.view-project {
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.portfolio-card:hover .view-project {
  transform: translateY(0);
}

.portfolio-card-content {
  padding: 1.5rem;
}

.portfolio-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.portfolio-badge.logo {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

.portfolio-card-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.portfolio-card-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: #9CA3AF;
  line-height: 1.5;
  margin: 0;
}

/* Featured Portfolio Card */
.portfolio-card.featured {
  border-color: rgba(245, 158, 11, 0.25);
  background: rgba(245, 158, 11, 0.05);
}

.portfolio-card.featured:hover {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.15), 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Project Meta Tags */
.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.project-meta .meta-item {
  font-family: 'Roboto', sans-serif;
  font-size: 0.75rem;
  color: #64748B;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* Deliverables Info */
.deliverables-info {
  padding: 2rem;
  background: rgba(34, 211, 238, 0.05);
  border: 1px solid rgba(34, 211, 238, 0.15);
  border-radius: 16px;
  margin-bottom: 2rem;
}

.deliverables-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.deliverables-list span {
  padding: 0.5rem 1rem;
  background: rgba(34, 211, 238, 0.1);
  border-radius: 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  color: #22d3ee;
}

/* Coming Soon */
.portfolio-coming-soon {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.coming-soon-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.portfolio-coming-soon h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.portfolio-coming-soon p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: #9CA3AF;
  margin: 0;
}

/* ==========================================================================
   WEB PORTFOLIO SECTION (LIGHT)
   ========================================================================== */

.portfolio-web-light {
  padding: 5rem 0;
  background: #ffffff;
}

/* Payment Note Light */
.portfolio-payment-note-light {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  margin-bottom: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.payment-note-icon-light {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.payment-note-content-light {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

.payment-note-content-light strong {
  color: #d97706;
}

/* Web Portfolio Grid */
.web-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.web-portfolio-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.web-portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #22d3ee;
}

.web-portfolio-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f1f5f9;
}

.web-portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.web-portfolio-card:hover .web-portfolio-image img {
  transform: scale(1.05);
}

.web-portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 17, 32, 0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.web-portfolio-card:hover .web-portfolio-overlay {
  opacity: 1;
}

.view-project-light {
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, #22d3ee, #06b6d4);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.web-portfolio-card:hover .view-project-light {
  transform: translateY(0);
}

.web-portfolio-content {
  padding: 1.5rem;
}

.web-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(34, 211, 238, 0.1);
  color: #0891b2;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.web-portfolio-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0B1120;
  margin-bottom: 0.5rem;
}

.web-portfolio-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: #6B7280;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.web-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.web-tech-tags span {
  padding: 0.25rem 0.6rem;
  background: #f1f5f9;
  color: #64748b;
  font-family: 'Roboto', sans-serif;
  font-size: 0.75rem;
  border-radius: 6px;
}

/* ==========================================================================
   GUARANTEE SECTION
   ========================================================================== */

.portfolio-guarantee-light {
  padding: 4rem 0;
  background: #f8fafc;
}

.guarantee-box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2.5rem;
  background: white;
  border: 2px solid #10b981;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.guarantee-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0B1120;
  margin-bottom: 0.75rem;
}

.guarantee-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.guarantee-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.guarantee-features span {
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.portfolio-cta-section {
  position: relative;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0B1120 0%, #1E293B 50%, #0B1120 100%);
  overflow: hidden;
  text-align: center;
}

.portfolio-cta-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(245, 158, 11, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 158, 11, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.portfolio-cta-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.portfolio-cta-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.portfolio-cta-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: #9CA3AF;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.portfolio-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cta-button-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cta-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.3);
  color: white;
}

.cta-button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cta-button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

/* CTA Pricing */
.portfolio-cta-pricing {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.pricing-item {
  text-align: center;
}

.pricing-service {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  color: #9CA3AF;
  margin-bottom: 0.25rem;
}

.pricing-amount {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 0.25rem;
}

.pricing-note {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 0.75rem;
  color: #6B7280;
}

.pricing-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* ==========================================================================
   RESPONSIVE - TABLET
   ========================================================================== */

@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    gap: 1.5rem;
  }
  
  .process-connector {
    display: none;
  }
  
  .process-step {
    min-width: 180px;
  }
}

/* ==========================================================================
   RESPONSIVE - MOBILE
   ========================================================================== */

@media (max-width: 767px) {
  .portfolio-hero {
    padding-top: 170px !important;
    padding-bottom: 3rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  
  .portfolio-hero-title {
    font-size: 2rem;
  }
  
  .portfolio-hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .portfolio-hero-stats .stat-divider {
    width: 40px;
    height: 1px;
  }
  
  .portfolio-process-light,
  .portfolio-section-dark,
  .portfolio-web-light,
  .portfolio-guarantee-light {
    padding: 3rem 1.25rem;
  }
  
  .process-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .process-step {
    width: 100%;
    max-width: 100%;
  }
  
  .process-connector {
    display: none;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .web-portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-payment-note,
  .portfolio-payment-note-light {
    flex-direction: column;
    text-align: center;
  }
  
  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  
  .guarantee-icon {
    margin: 0 auto;
  }
  
  .guarantee-features {
    justify-content: center;
  }
  
  .portfolio-cta-section {
    padding: 4rem 1.25rem;
  }
  
  .portfolio-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button-primary,
  .cta-button-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .portfolio-cta-pricing {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .pricing-divider {
    width: 40px;
    height: 1px;
  }
  
  .deliverables-list {
    justify-content: center;
  }
  
  /* Mobile logo display */
  .portfolio-card-image img {
    width: 65%;
  }
  
  .portfolio-card.featured .portfolio-card-image img {
    width: 60%;
  }
  
  .project-meta {
    justify-content: center;
  }
}
