/* =====================================================
   Tech2Software – Inner Pages Shared Styles
   ===================================================== */

/* ===== PAGE HERO BANNER ===== */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #0a1628 0%, #0d2447 50%, #0f3060 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--bg-light, #f0f5fa);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero .bubble { pointer-events: none; }

.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: #4db6ff; }
.breadcrumb span { color: rgba(255,255,255,0.8); }

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 28px;
}
.page-hero .badge {
  margin-bottom: 16px;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}
.step-card {
  background: var(--bg, #fff);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: var(--radius-lg, 20px);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  margin: 0 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(4,107,210,0.15);
}
.step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary, #046bd2), #00c6ff);
  color: #fff;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(4,107,210,0.35);
}
.step-card h4 { font-weight: 700; margin-bottom: 10px; }
.step-card p  { color: var(--text-muted, #64748b); font-size: 0.88rem; line-height: 1.6; }
.step-deliverable {
  margin-top: 12px;
  padding: 8px 12px;
  background: var(--primary-light, #e8f2fd);
  border-radius: 8px;
  font-size: 0.78rem;
  color: var(--primary, #046bd2);
  font-weight: 500;
}

/* ===== PRICING CARDS ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.pricing-card {
  background: var(--bg, #fff);
  border: 2px solid var(--border, #e2e8f0);
  border-radius: var(--radius-lg, 20px);
  padding: 36px 30px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--primary, #046bd2);
  box-shadow: 0 12px 40px rgba(4,107,210,0.2);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 16px; right: -28px;
  background: linear-gradient(135deg, var(--primary, #046bd2), #00c6ff);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 40px;
  transform: rotate(45deg);
  letter-spacing: 0.05em;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(4,107,210,0.18);
}
.pricing-icon { font-size: 2.4rem; margin-bottom: 14px; }
.pricing-card h3 { font-weight: 700; margin-bottom: 8px; }
.pricing-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary, #046bd2);
  margin: 12px 0;
  line-height: 1;
}
.pricing-card .price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted, #64748b);
}
.pricing-card p { color: var(--text-muted, #64748b); font-size: 0.88rem; margin-bottom: 20px; }
.pricing-features {
  text-align: left;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}
.pricing-features li::before {
  content: '✓';
  width: 18px; height: 18px;
  background: var(--primary-light, #e8f2fd);
  color: var(--primary, #046bd2);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== FEATURE GRID ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg, #fff);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: var(--radius, 12px);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.feature-item:hover {
  border-color: var(--primary, #046bd2);
  box-shadow: 0 8px 24px rgba(4,107,210,0.1);
}
.feature-icon-box {
  width: 48px; height: 48px;
  background: var(--primary-light, #e8f2fd);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.feature-item h4 { font-weight: 700; margin-bottom: 6px; font-size: 0.95rem; }
.feature-item p  { color: var(--text-muted, #64748b); font-size: 0.85rem; line-height: 1.6; }

/* ===== TECH BADGES ===== */
.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.tech-badge {
  background: var(--primary-light, #e8f2fd);
  border: 1px solid rgba(4,107,210,0.2);
  color: var(--primary, #046bd2);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.tech-badge:hover {
  background: var(--primary, #046bd2);
  color: #fff;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary, #046bd2), #0d2447);
  border-radius: 24px;
  padding: 64px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-section h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 14px; }
.cta-section p  { opacity: 0.8; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--primary, #046bd2);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-ghost {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 84px;
  right: 28px;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.3s;
  font-size: 1.5rem;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); }

/* ===== RESPONSIVE INNER PAGES ===== */
@media (max-width: 768px) {
  .page-hero { padding: 120px 0 70px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .step-card { margin: 0; }
  .cta-section { padding: 44px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
}
