
/* ============================================
   SHARED PAGE HERO
   ============================================ */

.page-hero {
  padding-top: 2rem;
  padding-bottom: 0;
}

/* Reduce gap between hero and next section on all pages */
.page-hero + .section-dark {
  padding-top: 1.5rem;
}

.page-hero-inner {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.page-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #00A0AC;
  margin-bottom: 0.5rem;
}

section .page-hero-inner h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 0.65rem;
  background: linear-gradient(135deg, #fff 0%, #E5E7EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-desc {
  font-size: 1.1rem;
  color: #9CA3AF;
  line-height: 1.65;
}

.page-hero-desc a {
  color: #5C6AC4;
}

/* ============================================
   BLOG LISTING
   ============================================ */

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

.blog-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #5C6AC4, #00A0AC);
  opacity: 0;
  transition: opacity 0.3s;
}

.blog-card:hover {
  border-color: rgba(92, 106, 196, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.blog-card:hover::before {
  opacity: 1;
}

.blog-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.blog-card-top time {
  font-size: 0.75rem;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card-time {
  font-size: 0.75rem;
  color: #6B7280;
}

.blog-card .blog-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.blog-card-desc {
  font-size: 0.9rem;
  color: #9CA3AF;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.blog-card-tag {
  font-size: 0.7rem;
  color: #00A0AC;
  background: rgba(0, 160, 172, 0.08);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}

.blog-card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #5C6AC4;
  transition: color 0.2s;
}

.blog-card:hover .blog-card-link {
  color: #7c8aed;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

/* Primary CTA card — full width */
.contact-primary {
  background: linear-gradient(135deg, rgba(92, 106, 196, 0.1) 0%, rgba(0, 160, 172, 0.07) 100%);
  border: 1px solid rgba(92, 106, 196, 0.2);
  border-radius: 16px;
  padding: 2rem;
  max-width: 950px;
  margin: 0 auto;
}
.contact-primary-content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.contact-primary-text {
  flex: 1;
}
.contact-primary-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
}
.contact-primary-text p {
  font-size: 0.95rem;
  color: #9CA3AF;
  line-height: 1.6;
  margin: 0;
}
.contact-primary-checklist {
  flex-shrink: 0;
}
.contact-primary-btn {
  max-width: 320px;
}

/* Secondary contact grid — 3 columns */
.contact-secondary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 950px;
  margin: 0 auto;
}
.contact-secondary-grid .contact-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
}
.contact-secondary-grid .contact-card p {
  font-size: 0.9rem;
  color: #9CA3AF;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}
.contact-secondary-grid .contact-card-form .contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 950px;
  margin: 0 auto;
}

.contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: rgba(92, 106, 196, 0.2);
}

.contact-card-primary {
  background: linear-gradient(135deg, rgba(92, 106, 196, 0.1) 0%, rgba(0, 160, 172, 0.07) 100%);
  border-color: rgba(92, 106, 196, 0.2);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(92, 106, 196, 0.1);
  border-radius: 14px;
  margin-bottom: 1.25rem;
  color: #5C6AC4;
}

.contact-card-icon-sm {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #9CA3AF;
}

.contact-grid .contact-card h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.contact-grid .contact-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.95rem;
  color: #9CA3AF;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.contact-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.contact-checklist li {
  font-size: 0.9rem;
  color: #D1D5DB;
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
}

.contact-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00A0AC;
  font-weight: 700;
}

.contact-link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #5C6AC4;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-link:hover {
  color: #7c8aed;
}

.contact-secondary {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #D1D5DB;
}

.form-optional {
  font-weight: 400;
  color: #6B7280;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: #E5E7EB;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #5C6AC4;
  box-shadow: 0 0 0 3px rgba(92, 106, 196, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #4B5563;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Contact Response Bar */
.contact-response {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-response-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-response-item strong {
  display: block;
  font-size: 0.85rem;
  color: #E5E7EB;
}

.contact-response-item p {
  font-size: 0.8rem;
  color: #6B7280;
  margin: 0;
}

/* ============================================
   FAQ PAGE
   ============================================ */

.faq-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.faq-nav-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #9CA3AF;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.faq-nav-link:hover {
  color: #fff;
  border-color: #5C6AC4;
  background: rgba(92, 106, 196, 0.1);
}

section .faq-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(92, 106, 196, 0.2);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s;
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(92, 106, 196, 0.2);
}

.faq-item[open] {
  border-color: rgba(92, 106, 196, 0.25);
  background: rgba(92, 106, 196, 0.04);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #E5E7EB;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: #5C6AC4;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: #fff;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  animation: faqSlideDown 0.3s ease-out;
}

.faq-answer p {
  font-size: 0.95rem;
  color: #9CA3AF;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.faq-answer li {
  font-size: 0.95rem;
  color: #9CA3AF;
  line-height: 1.6;
  margin-bottom: 0.3rem;
}

.faq-answer strong {
  color: #E5E7EB;
}

.faq-answer a {
  color: #5C6AC4;
  text-decoration: none;
}

.faq-answer a:hover {
  color: #7c8aed;
}

@keyframes faqSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   RESPONSIVE — Blog, Contact, FAQ
   ============================================ */

@media (max-width: 768px) {
  /* Page Hero */
  .page-hero {
    padding-top: 1.25rem;
    padding-bottom: 0;
  }

  .page-hero + .section-dark {
    padding-top: 1rem;
  }

  section .page-hero-inner h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .page-hero-desc {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    padding: 1.5rem;
  }

  .blog-card-title {
    font-size: 1.05rem !important;
  }

  /* Contact */
  .contact-primary {
    padding: 1.5rem;
  }
  .contact-primary-content {
    flex-direction: column;
    gap: 1rem;
  }
  .contact-primary-btn {
    max-width: none;
    width: 100%;
    justify-content: center;
  }
  .contact-secondary-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .contact-card h2 {
    font-size: 1.15rem !important;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-response {
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    text-align: center;
    padding: 1.25rem;
  }

  .contact-response-item {
    flex-direction: column;
    gap: 0.35rem;
  }

  /* FAQ */
  .faq-nav {
    gap: 0.4rem;
  }

  .faq-nav-link {
    font-size: 0.78rem;
    padding: 0.4rem 0.75rem;
  }

  .faq-section-title {
    font-size: 1.25rem !important;
  }

  .faq-item summary {
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
  }

  .faq-answer {
    padding: 0 1.25rem 1rem;
  }

  .faq-answer p,
  .faq-answer li {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .page-hero-inner h1 {
    font-size: 1.5rem !important;
  }

  .page-hero-desc {
    font-size: 0.88rem;
  }

  .blog-card {
    padding: 1.25rem;
  }

  .contact-card {
    padding: 1.25rem;
  }

  .contact-card-icon {
    width: 44px;
    height: 44px;
  }

  .faq-item summary {
    font-size: 0.88rem;
    padding: 0.85rem 1rem;
  }

  .faq-answer {
    padding: 0 1rem 0.85rem;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 3rem 0;
  margin: 2rem 0;
}

.testimonials-section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.testimonials-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid #0f3460;
  border-radius: 50px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.badge-icon {
  font-size: 1.25rem;
}

.badge-text {
  color: #e0e0e0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-card {
  background: #1a1a2e;
  border: 1px solid #2a2a4e;
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.testimonial-card blockquote {
  font-style: italic;
  color: #d0d0d0;
  margin: 0 0 1rem 0;
  padding: 0;
  border: none;
  font-size: 0.95rem;
  line-height: 1.6;
}

.testimonial-meta {
  font-size: 0.85rem;
  color: #888;
}

.testimonial-hidden {
  display: none;
  opacity: 1;
  transform: none;
}

.testimonials-toggle-wrap {
  text-align: center;
  margin-top: 1.5rem;
}

.testimonials-toggle {
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.6rem 1.75rem;
  border-radius: 8px;
  background: transparent;
  color: var(--color-accent, #a78bfa);
  border: 1px solid rgba(139, 92, 246, 0.3);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.testimonials-toggle:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.5);
}

.testimonials-cta {
  text-align: center;
}

.testimonials-cta a {
  color: #8b5cf6;
}

/* Clients Section */
.clients-section {
  padding: 2rem 0;
  margin: 2rem 0;
  text-align: center;
}

.clients-section h2 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  color: #888;
  font-weight: normal;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
}

.client-logo {
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.client-logo:hover {
  opacity: 1;
}

.client-logo a {
  text-decoration: none;
}

.client-name {
  font-size: 1rem;
  color: #a0a0a0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.client-logo:hover .client-name {
  color: #e0e0e0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    gap: 1.5rem 2rem;
  }
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.services-hero {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.services-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #00A0AC;
  margin-bottom: 1rem;
}

.services-headline {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  margin-bottom: 1rem !important;
  margin-top: 0 !important;
}

.services-intro {
  font-size: 1.05rem;
  color: #9CA3AF;
  line-height: 1.65;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: rgba(92, 106, 196, 0.3);
  transform: translateY(-2px);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(92, 106, 196, 0.1);
  border-radius: 12px;
  margin-bottom: 1.25rem;
  color: #5C6AC4;
}

.service-card h2 {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  margin-top: 0 !important;
  margin-bottom: 0.65rem !important;
}

.service-result {
  font-size: 0.9rem;
  font-weight: 600;
  color: #00A0AC;
  background: rgba(0, 160, 172, 0.08);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.service-card p {
  font-size: 0.95rem;
  color: #9CA3AF;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.service-card ul li {
  font-size: 0.9rem;
  color: #9CA3AF;
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5C6AC4, #00A0AC);
}

.service-card a {
  color: #a78bfa;
  text-decoration: none;
  font-weight: 500;
}

.service-card a:hover {
  color: #c4b5fd;
}

.service-cta {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #5C6AC4 !important;
  margin-top: 0.5rem;
  transition: color 0.2s;
}

.service-cta:hover {
  color: #7c8aed !important;
}

.services-bottom-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(92, 106, 196, 0.08) 0%, rgba(0, 160, 172, 0.06) 100%);
  border: 1px solid rgba(92, 106, 196, 0.15);
  border-radius: 20px;
  margin-top: 1rem;
}

.services-bottom-cta h2 {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  margin-top: 0 !important;
  margin-bottom: 0.75rem !important;
}

.services-bottom-cta p {
  font-size: 1.05rem;
  color: #9CA3AF;
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.services-bottom-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  background: linear-gradient(135deg, #5C6AC4 0%, #00A0AC 100%);
  color: white;
  transition: all 0.3s;
}

.services-bottom-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 20px rgba(92, 106, 196, 0.3);
}

@media (max-width: 768px) {
  .services-page-grid {
    grid-template-columns: 1fr;
  }

  .services-hero {
    margin-bottom: 2.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card h2 {
    font-size: 1.1rem !important;
  }

  .services-bottom-cta {
    padding: 2rem 1.5rem;
  }

  .services-bottom-cta h2 {
    font-size: 1.25rem !important;
  }

  .services-bottom-cta .btn {
    font-size: 1rem;
    padding: 0.85rem 1.5rem;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .service-card {
    padding: 1.25rem;
  }

  .service-card-icon {
    width: 40px;
    height: 40px;
  }

  .service-result {
    font-size: 0.82rem;
    padding: 0.4rem 0.7rem;
  }
}

/* ============================================
   CASE STUDIES LISTING PAGE
   ============================================ */

.cs-listing-hero {
  padding-bottom: 2rem;
}

.cs-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #00A0AC;
  margin-bottom: 1rem;
}

.cs-stats-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cs-stats-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #5C6AC4 0%, #00A0AC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.cs-stats-label {
  font-size: 0.75rem;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cs-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.cs-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cs-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #5C6AC4, #00A0AC);
  opacity: 0;
  transition: opacity 0.3s;
}

.cs-card:hover {
  border-color: rgba(92, 106, 196, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cs-card:hover::before {
  opacity: 1;
}

.cs-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cs-card-industry {
  font-size: 0.75rem;
  font-weight: 600;
  color: #00A0AC;
  background: rgba(0, 160, 172, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cs-card-anon {
  font-size: 0.7rem;
  color: #6B7280;
  font-style: italic;
}

.cs-card-title {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-top: 0 !important;
  margin-bottom: 0.75rem !important;
  line-height: 1.3;
}

.cs-card-desc {
  font-size: 0.9rem;
  color: #9CA3AF;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}

.cs-card-metrics {
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 1rem;
}

.cs-card-metric {
  flex: 1;
  text-align: center;
}

.cs-card-metric-val {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}

.cs-card-metric-lbl {
  font-size: 0.65rem;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cs-card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #5C6AC4;
  transition: color 0.2s;
}

.cs-card:hover .cs-card-link {
  color: #7c8aed;
}

/* ============================================
   CASE STUDY SINGLE PAGE
   ============================================ */

.case-study-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.case-study-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #00A0AC;
  background: rgba(0, 160, 172, 0.1);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.case-study-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
  font-weight: 800 !important;
  margin-top: 0.75rem !important;
  margin-bottom: 1rem !important;
}

.case-study-subtitle {
  font-size: 1.1rem;
  color: #9CA3AF;
  line-height: 1.65;
  max-width: 650px;
  margin: 0 auto;
}

.case-study-metrics-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, rgba(92, 106, 196, 0.08) 0%, rgba(0, 160, 172, 0.06) 100%);
  border: 1px solid rgba(92, 106, 196, 0.15);
  border-radius: 16px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cs-metric {
  text-align: center;
  min-width: 120px;
}

.cs-metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #5C6AC4 0%, #00A0AC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.cs-metric-label {
  font-size: 0.75rem;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.case-study-article h2 {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-top: 2.5rem !important;
  margin-bottom: 1rem !important;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.case-study-article h3 {
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  color: #E5E7EB !important;
  margin-top: 1.75rem !important;
  margin-bottom: 0.75rem !important;
}

.case-study-article p {
  color: #D1D5DB;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.case-study-article ul,
.case-study-article ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.case-study-article li {
  color: #D1D5DB;
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

.case-study-article strong {
  color: #fff;
}

.case-study-article a {
  color: #5C6AC4;
  text-decoration: none;
}

.case-study-article a:hover {
  color: #7c8aed;
}

.case-study-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.case-study-article th {
  text-align: left;
  padding: 0.75rem 1rem;
  background: rgba(92, 106, 196, 0.1);
  color: #E5E7EB;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.case-study-article td {
  padding: 0.65rem 1rem;
  color: #D1D5DB;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.case-study-article hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 2.5rem 0;
}

.case-study-article code {
  background: rgba(92, 106, 196, 0.1);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-size: 0.88rem;
  color: #a78bfa;
  border: 1px solid rgba(92, 106, 196, 0.15);
}

.case-study-article pre {
  background: #111118;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #D1D5DB;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  line-height: 1.6;
}

.case-study-article pre code {
  background: none;
  padding: 0;
  color: inherit;
  border: none;
  font-size: inherit;
}

@media (max-width: 768px) {
  .cs-listing-hero {
    padding-bottom: 0.5rem;
  }

  .cs-card-grid {
    grid-template-columns: 1fr;
  }

  .cs-card {
    padding: 1.5rem;
  }

  .cs-card-title {
    font-size: 1.05rem !important;
  }

  .cs-stats-bar {
    flex-direction: row;
    gap: 1rem;
    padding: 1.25rem 1rem;
    margin-top: 1.5rem;
  }

  .cs-stats-value {
    font-size: 1.25rem;
  }

  .cs-stats-label {
    font-size: 0.65rem;
  }

  .case-study-header h1 {
    font-size: 1.65rem !important;
  }

  .case-study-subtitle {
    font-size: 0.95rem;
  }

  .case-study-metrics-bar {
    flex-direction: row;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
    margin-bottom: 2rem;
  }

  .cs-metric-value {
    font-size: 1.1rem;
  }

  .cs-metric-label {
    font-size: 0.65rem;
  }

  .cs-metric {
    min-width: auto;
  }

  .cs-card-metrics {
    flex-wrap: wrap;
  }

  .case-study-article h2 {
    font-size: 1.25rem !important;
    margin-top: 2rem !important;
  }

  .case-study-article h3 {
    font-size: 1.05rem !important;
  }

  .case-study-article table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0.82rem;
  }

  .case-study-article th,
  .case-study-article td {
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .cs-card {
    padding: 1.25rem;
  }

  .case-study-header h1 {
    font-size: 1.4rem !important;
  }

  .case-study-metrics-bar {
    padding: 1rem;
  }

  .cs-metric {
    min-width: auto;
  }
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-hero {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.about-hero-inner {
  display: flex;
  gap: 3.5rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-photo-col {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.about-photo-wrap {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 3px solid transparent;
  background-image: linear-gradient(#0A0E27, #0A0E27), linear-gradient(135deg, #5C6AC4, #00A0AC);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-social-links {
  display: flex;
  gap: 0.75rem;
}

.about-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #9CA3AF;
  text-decoration: none;
  transition: all 0.2s;
}

.about-social-link:hover {
  color: #fff;
  border-color: #5C6AC4;
  background: rgba(92, 106, 196, 0.15);
  transform: translateY(-2px);
}

.about-intro-col {
  flex: 1;
}

.about-location {
  font-size: 0.9rem;
  color: #6B7280;
  margin-bottom: 1.25rem;
}

.about-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #00A0AC;
  margin-bottom: 0.75rem;
}

.about-name {
  font-size: clamp(2rem, 4vw, 2.75rem) !important;
  font-weight: 800 !important;
  margin-top: 0 !important;
  margin-bottom: 1rem !important;
  background: linear-gradient(135deg, #fff 0%, #E5E7EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.about-tagline {
  font-size: 1.05rem;
  color: #9CA3AF;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #E5E7EB;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

/* About Stats */
.about-stats-section {
  padding-top: 0;
  padding-bottom: 2rem;
}

.about-stats-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(92, 106, 196, 0.08) 0%, rgba(0, 160, 172, 0.06) 100%);
  border: 1px solid rgba(92, 106, 196, 0.15);
  border-radius: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.about-stat {
  text-align: center;
}

.about-stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #5C6AC4 0%, #00A0AC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.about-stat-label {
  font-size: 0.75rem;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Expertise Grid */
.about-expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.about-expertise-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}

.about-expertise-card:hover {
  border-color: rgba(92, 106, 196, 0.25);
  transform: translateY(-2px);
}

.about-expertise-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(92, 106, 196, 0.1);
  border-radius: 12px;
  margin-bottom: 1.25rem;
  color: #5C6AC4;
}

.about-expertise-card h3 {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-top: 0 !important;
  margin-bottom: 0.75rem !important;
}

.about-expertise-card p {
  font-size: 0.95rem;
  color: #9CA3AF;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-expertise-list li {
  font-size: 0.9rem;
  color: #9CA3AF;
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
}

.about-expertise-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5C6AC4, #00A0AC);
}

/* Expertise Links */
.about-expertise-link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #5C6AC4;
  text-decoration: none;
  margin-top: 0.75rem;
  transition: color 0.2s;
}

.about-expertise-link:hover {
  color: #7c8aed;
}

.about-expertise-card a:not(.about-expertise-link) {
  color: #5C6AC4;
  text-decoration: none;
}

.about-expertise-card a:not(.about-expertise-link):hover {
  color: #7c8aed;
}

/* Results Grid */
.about-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.about-result-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.75rem;
  text-decoration: none;
  transition: all 0.3s;
}

.about-result-card:hover {
  border-color: rgba(92, 106, 196, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.about-result-value {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(135deg, #5C6AC4 0%, #00A0AC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.about-result-desc {
  font-size: 0.9rem;
  color: #9CA3AF;
  line-height: 1.6;
}

/* Timeline */
.about-timeline {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  padding-left: 2.5rem;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, #5C6AC4, #00A0AC);
  opacity: 0.3;
}

.about-timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.about-timeline-item:last-child {
  padding-bottom: 0;
}

.about-timeline-marker {
  position: absolute;
  left: -2.5rem;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5C6AC4, #00A0AC);
  border: 3px solid #050714;
}

.about-timeline-year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00A0AC;
  background: rgba(0, 160, 172, 0.1);
  padding: 0.2rem 0.65rem;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}

.about-timeline-content h3 {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-top: 0.4rem !important;
  margin-bottom: 0.5rem !important;
}

.about-timeline-content p {
  font-size: 0.95rem;
  color: #9CA3AF;
  line-height: 1.6;
  margin: 0;
}

/* Skills Tags */
.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}

.about-skill-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 500;
  color: #D1D5DB;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  transition: all 0.2s;
}

.about-skill-tag:hover {
  border-color: rgba(92, 106, 196, 0.4);
  background: rgba(92, 106, 196, 0.12);
  color: #fff;
}

/* About Closing Section */
.about-closing-section {
  padding-bottom: 4rem;
}

.about-closing-card {
  background: linear-gradient(135deg, rgba(92, 106, 196, 0.08) 0%, rgba(0, 160, 172, 0.06) 100%);
  border: 1px solid rgba(92, 106, 196, 0.15);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.about-closing-skills h2 {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-top: 0 !important;
  margin-bottom: 1.25rem !important;
}

.about-closing-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #5C6AC4, #00A0AC);
  margin: 2.5rem auto;
  border-radius: 2px;
}

.about-closing-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  font-weight: 800 !important;
  color: #fff !important;
  margin-top: 0 !important;
  margin-bottom: 0.75rem !important;
  line-height: 1.2;
}

.about-closing-cta p {
  font-size: 1.05rem;
  color: #9CA3AF;
  margin-bottom: 1.75rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* About Page Responsive */
@media (max-width: 768px) {
  .about-hero {
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
  }

  .about-hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .about-photo-col {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
  }

  .about-photo-wrap {
    width: 80px;
    height: 80px;
    border-radius: 16px;
  }

  .about-social-links {
    gap: 0.5rem;
  }

  .about-social-link {
    width: 32px;
    height: 32px;
  }

  .about-badges {
    justify-content: center;
  }

  .about-eyebrow {
    margin-bottom: 0.5rem;
  }

  .about-name {
    font-size: 1.5rem;
    line-height: 1.15;
  }

  .about-tagline {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .about-location {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }

  .about-stats-bar {
    flex-direction: row;
    gap: 1rem;
    padding: 1.25rem 1rem;
  }

  .about-stat-value {
    font-size: 1.25rem;
  }

  .about-stat-label {
    font-size: 0.65rem;
  }

  .about-expertise-grid {
    grid-template-columns: 1fr;
  }

  .about-expertise-card {
    padding: 1.5rem;
  }

  .about-expertise-card h3 {
    font-size: 1.05rem !important;
  }

  .about-results-grid {
    grid-template-columns: 1fr;
  }

  .about-result-card {
    padding: 1.5rem;
  }

  .about-photo-wrap {
    width: 160px;
    height: 160px;
  }

  .about-timeline {
    padding-left: 2rem;
  }

  .about-timeline-marker {
    left: -2rem;
    width: 14px;
    height: 14px;
  }

  .about-timeline-content h3 {
    font-size: 1rem !important;
  }

  .about-timeline-content p {
    font-size: 0.9rem;
  }

  .about-closing-card {
    padding: 2rem 1.5rem;
  }

  .about-closing-cta h2 {
    font-size: 1.35rem !important;
  }

  .about-closing-cta p {
    font-size: 0.95rem;
  }

  .about-closing-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding-top: 1rem;
  }

  .about-photo-wrap {
    width: 72px;
    height: 72px;
  }

  .about-name {
    font-size: 1.35rem;
  }

  .about-badge {
    font-size: 0.72rem;
    padding: 0.35rem 0.65rem;
  }

  .about-expertise-card {
    padding: 1.25rem;
  }

  .about-result-card {
    padding: 1.25rem;
  }

  .about-result-value {
    font-size: 1.15rem;
  }

  .about-skill-tag {
    font-size: 0.75rem;
    padding: 0.35rem 0.7rem;
  }

  .about-closing-card {
    padding: 1.5rem 1.25rem;
  }
}
