/* =============================================
   SERVICES
   ============================================= */
.services-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px;
}
.tab-btn {
  padding: 9px 18px; border-radius: 8px;
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  background: var(--bg3); border: 1px solid var(--border);
  transition: all var(--t);
}
.tab-btn:hover { color: var(--white); border-color: var(--border2); }
.tab-btn.active {
  background: rgba(83,74,183,0.2); color: var(--purple-lighter);
  border-color: rgba(127,119,221,0.4);
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.service-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: all var(--t); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: linear-gradient(135deg, rgba(83,74,183,0.06), rgba(127,119,221,0.04));
  transition: opacity var(--t);
}
.service-card:hover { border-color: rgba(127,119,221,0.3); transform: translateY(-3px); box-shadow: var(--shadow); }
.service-card:hover::before { opacity: 1; }
.card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(83,74,183,0.15); border: 1px solid rgba(127,119,221,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--purple-lighter);
}
.card-icon svg { width: 20px; height: 20px; }
.service-card h3 { font-size: 16px; color: var(--white); margin-bottom: 10px; font-family: 'Space Grotesk', sans-serif; }
.service-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }
.learn-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; font-size: 13px; color: var(--purple-lighter);
  opacity: 0; transform: translateX(-4px); transition: all var(--t);
}
.service-card:hover .learn-more { opacity: 1; transform: translateX(0); }

/* =============================================
   ABOUT
   ============================================= */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.about-story p {
  color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 18px;
}
.about-story p:last-child { margin-bottom: 0; }
.mission-box {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; margin-bottom: 20px;
}
.mission-box h4 {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--purple-lighter); margin-bottom: 10px;
}
.mission-box p { font-size: 15px; color: var(--text); line-height: 1.7; }
.differentiators { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.diff-item {
  padding: 18px; background: var(--bg3); border: 1px solid var(--border);
  border-radius: 10px; transition: border-color var(--t);
}
.diff-item:hover { border-color: rgba(127,119,221,0.3); }
.diff-icon { color: var(--purple-lighter); margin-bottom: 10px; }
.diff-item h4 { font-size: 13px; color: var(--white); margin-bottom: 4px; font-family: 'Space Grotesk', sans-serif; }
.diff-item p { font-size: 12px; color: var(--text-dim); line-height: 1.6; }

/* About Stats Bar */
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 60px;
}
.about-stat-item { background: var(--bg3); padding: 28px 20px; text-align: center; }
.about-stat-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 34px; font-weight: 700;
  background: linear-gradient(135deg, #fff, #AFA9EC);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.about-stat-label { font-size: 11px; color: var(--text-dim); margin-top: 5px; text-transform: uppercase; letter-spacing: 0.06em; }

/* =============================================
   WHY US
   ============================================= */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
  padding: 32px; background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); transition: all var(--t); position: relative;
}
.why-card:hover { border-color: rgba(127,119,221,0.3); transform: translateY(-3px); box-shadow: var(--shadow); }
.why-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 40px; font-weight: 700;
  color: rgba(127,119,221,0.12); position: absolute; top: 20px; right: 24px;
  line-height: 1;
}
.why-icon { color: var(--purple-lighter); margin-bottom: 16px; }
.why-card h3 { font-size: 17px; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* Industries Strip */
.industries-strip { margin-top: 56px; text-align: center; }
.industries-strip-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-dim); margin-bottom: 16px;
}
.industries-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.industry-tag {
  padding: 6px 16px; background: var(--bg3); border: 1px solid var(--border);
  border-radius: 20px; font-size: 12px; color: var(--text-dim); transition: all var(--t);
}
.industry-tag:hover { border-color: rgba(127,119,221,0.35); color: var(--text-muted); }

/* =============================================
   TECH STACK
   ============================================= */
.tech-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px;
}
.tech-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.tech-badge {
  padding: 8px 16px; border: 1px solid var(--border);
  border-radius: 8px; background: var(--bg3);
  font-size: 13px; color: var(--text-muted);
  transition: all var(--t); cursor: default;
}
.tech-badge:hover {
  border-color: rgba(127,119,221,0.4);
  color: var(--purple-lighter); background: rgba(83,74,183,0.1);
}

/* Tech All-Categories View */
.tech-all-view { display: flex; flex-direction: column; gap: 24px; }
.tech-category-header {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-dim); margin-bottom: 10px; font-weight: 600;
}
.tech-badges-row { display: flex; flex-wrap: wrap; gap: 8px; }

/* =============================================
   PROCESS
   ============================================= */
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127,119,221,0.3), transparent);
}
.process-step { padding: 0 20px 0 0; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700;
  color: var(--white); margin-bottom: 24px; position: relative; z-index: 1;
  background: var(--gradient); box-shadow: 0 0 0 4px rgba(83,74,183,0.2);
}
.process-step h3 { font-size: 17px; color: var(--white); margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* Process CTA */
.process-cta { text-align: center; margin-top: 56px; }
.process-cta p { color: var(--text-dim); font-size: 14px; margin-top: 14px; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-carousel { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex; transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: calc(50% - 10px); margin-right: 20px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  flex-shrink: 0;
}
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 16px; font-size: 14px; }
.star { color: #f59e0b; }
.quote-icon { color: var(--purple); margin-bottom: 20px; opacity: 0.6; }
.testimonial-card blockquote {
  font-size: 15px; color: var(--text); line-height: 1.75;
  font-style: italic; margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 16px;
  color: var(--white); flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.author-role { font-size: 12px; color: var(--text-dim); }
.carousel-controls {
  display: flex; align-items: center; gap: 12px; margin-top: 28px;
}
.carousel-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border2); background: var(--bg3);
  color: var(--text-muted); display: flex; align-items: center; justify-content: center;
  transition: all var(--t);
}
.carousel-btn:hover { border-color: var(--purple-light); color: var(--white); }
.carousel-dots { display: flex; gap: 6px; margin-left: auto; }
.carousel-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--border2); transition: all var(--t);
}
.carousel-dot.active { background: var(--purple-light); width: 20px; border-radius: 3px; }

/* Client Logos Strip */
.client-logos-strip { margin-top: 52px; text-align: center; }
.client-logos-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-dim); margin-bottom: 20px;
}
.client-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.client-logo-badge {
  padding: 10px 22px; background: var(--bg3); border: 1px solid var(--border);
  border-radius: 10px; font-size: 12px; font-weight: 500;
  color: var(--text-dim); font-family: 'Space Grotesk', sans-serif;
  transition: all var(--t);
}
.client-logo-badge:hover { border-color: rgba(127,119,221,0.3); color: var(--text-muted); }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-deep) 0%, rgba(83,74,183,0.4) 100%);
  border: 1px solid rgba(127,119,221,0.25);
  border-radius: var(--radius); padding: 60px 40px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(127,119,221,0.1), transparent);
}
.cta-banner h2 { font-size: clamp(24px, 3.5vw, 40px); color: var(--white); margin-bottom: 12px; position: relative; }
.cta-banner p { color: var(--purple-lighter); font-size: 16px; margin-bottom: 32px; position: relative; }
.cta-banner .btn { position: relative; }

/* =============================================
   CONTACT
   ============================================= */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; }
.form-group { position: relative; margin-bottom: 24px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 10px; padding: 16px; font-size: 14px; color: var(--white);
  transition: border-color var(--t), box-shadow var(--t); outline: none;
}
.form-group textarea { height: 120px; resize: none; }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--bg3); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: rgba(127,119,221,0.5); box-shadow: 0 0 0 3px rgba(127,119,221,0.08);
}
.form-group label {
  position: absolute; left: 16px; top: 16px;
  font-size: 14px; color: var(--text-dim); pointer-events: none;
  transition: all var(--t); background: var(--bg3);
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -9px; left: 12px; font-size: 11px; padding: 0 4px;
  color: var(--purple-lighter);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info h3 { font-size: 22px; color: var(--white); margin-bottom: 8px; }
.contact-info > p { color: var(--text-muted); font-size: 15px; margin-bottom: 32px; line-height: 1.7; }
.info-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: rgba(83,74,183,0.15); border: 1px solid rgba(127,119,221,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-lighter);
}
.info-icon svg { width: 18px; height: 18px; }
.info-item-text strong { display: block; font-size: 13px; color: var(--white); margin-bottom: 2px; }
.info-item-text span { font-size: 13px; color: var(--text-muted); }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--border2); background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all var(--t);
}
.social-link:hover { border-color: rgba(127,119,221,0.4); color: var(--purple-lighter); background: rgba(83,74,183,0.1); }
.social-link svg { width: 16px; height: 16px; }

/* Contact Next Steps */
.next-steps {
  margin-top: 32px; padding: 24px 26px;
  background: rgba(83,74,183,0.07); border: 1px solid rgba(127,119,221,0.15);
  border-radius: var(--radius);
}
.next-steps-title { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--purple-lighter); margin-bottom: 18px; font-weight: 600; }
.next-step-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.next-step-item:last-child { margin-bottom: 0; }
.next-step-num {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--white); margin-top: 1px;
}
.next-step-text strong { display: block; font-size: 13px; color: var(--white); margin-bottom: 2px; }
.next-step-text span { font-size: 12px; color: var(--text-dim); line-height: 1.5; }
