/* ===========================
   WHAT WE DO PAGE STYLES
   =========================== */

/* APPROACH */
.approach-section {
  padding: 7rem 0;
  background: var(--bg-secondary);
}

.approach-intro {
  max-width: 680px;
  margin: 0 auto 5rem;
  text-align: center;
}

.approach-intro h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin: 0.5rem 0 1rem;
}

.demo-link {
  margin-top: 20px;
}

.demo-link a {
  color: #fab915; /* yellow */
  font-style: italic;
  text-decoration: underline;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.demo-link a:hover {
  opacity: 0.7;
}

.logo {
  width: 3.5vw;      /* scales with screen */
  max-width: 150px; /* prevents it getting huge */
  height: auto;
}

.logo-main {
  width: 20vw;      /* scales with screen */
  max-width: 750px; /* prevents it getting huge */
  height: auto;
  margin-bottom: 10px;
}


.approach-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.process-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--purple), var(--blue));
  margin-left: 2.25rem;
  opacity: 0.4;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-light), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 70px;
  line-height: 1;
  padding-top: 0.25rem;
}

.step-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  flex: 1;
  transition: all 0.4s;
}

.step-content:hover {
  border-color: var(--border-hover);
  transform: translateX(8px);
}

.step-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* EXPERTISE */
.expertise-section {
  padding: 7rem 0;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.expertise-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.4s;
}

.expertise-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.1);
}

.expertise-card.featured {
  border-color: rgba(139, 92, 246, 0.35);
  background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(59,130,246,0.05));
  grid-column: span 1;
}

.expertise-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.expertise-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.expertise-header h3 {
  font-size: 1.05rem;
  color: var(--text-primary);
}

.expertise-card > p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.expertise-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.expertise-list li {
  font-size: 0.83rem;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
}

.expertise-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--purple-light);
  font-size: 0.75rem;
}

/* INDUSTRIES */
.industries-section {
  padding: 7rem 0;
  background: var(--bg-secondary);
}

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

.industry-pill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.65rem 1.5rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.3s;
  cursor: default;
}

.industry-pill:hover {
  border-color: var(--purple);
  color: var(--purple-light);
  background: rgba(139, 92, 246, 0.08);
  transform: translateY(-2px);
}

/* CTA reuse from home styles */
.cta-banner {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  background: linear-gradient(135deg, rgba(139,92,246,0.12), rgba(59,130,246,0.08));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 16px;
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-orbs { position: absolute; inset: 0; pointer-events: none; }

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.cta-orb-1 {
  width: 300px; height: 300px;
  background: rgba(139, 92, 246, 0.15);
  top: -100px; left: -50px;
}

.cta-orb-2 {
  width: 250px; height: 250px;
  background: rgba(249, 115, 22, 0.1);
  bottom: -80px; right: -30px;
}

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-inner p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-inner .btn-primary { position: relative; z-index: 1; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .expertise-grid { grid-template-columns: 1fr; }
  .process-step { flex-direction: column; gap: 1rem; }
  .process-connector { margin-left: 1rem; }
}
@media (max-width: 1024px) {
  .service-detail-grid { gap: 3rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .service-detail-grid,
  .service-detail-grid.reversed {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .service-detail-badge { font-size: 3rem; top: 1rem; }
}

@media (max-width: 768px) {

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

  .packages-section h1 {
    font-size: 2rem;
  }

  /* LOGO BIGGER ON MOBILE */
  .logo {
    width: 10vw;
  }

  .logo-main {
    width: 45vw;
  }

  /* BUTTON FULL WIDTH + CENTER */
  .package-btn {
    width: 100%;
    max-width: 320px;
    margin: 20px auto 0 auto; /* THIS centers it */
  }
}

@media (max-width: 480px) {
  .package {
    padding: 25px 18px;
  }

  .package-btn {
    max-width: 100%;
  }
}
@media (max-width: 768px) {

  /* =========================
     NAVBAR FIX (MOBILE MENU)
     ========================= */

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(6, 6, 8, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }

  .nav-links a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    text-align: center;
  }

  /* =========================
     HERO FIX
     ========================= */

  .hero {
    padding: 7rem 1.5rem 3rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* =========================
     PACKAGE BUTTON FIX
     ========================= */

  .package-btn {
    width: 100%;
    text-align: center;
    padding: 14px 16px;
    font-size: 1rem;
  }

  /* =========================
     FOOTER FIX
     ========================= */

  .footer-bottom {
    text-align: center;
  }
}
.basic-btn,
.standard-btn,
.premium-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 12px;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.basic-btn:hover,
.standard-btn:hover,
.premium-btn:hover {
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .section-tag {
    color: rgba(255, 255, 255, 0.95);        /* white text */
    background: rgba(255, 255, 255, 0.4);    /* semi-transparent white */
    border: 1px solid rgba(255, 255, 255, 0.5);

    font-size: 0.7rem;                       /* slightly smaller */
    letter-spacing: 0.1em;
    padding: 0.25rem 0.9rem;

    backdrop-filter: blur(6px);              /* glass effect */
  }
}
