/* =========================================
   SERVICES HERO
   ========================================= */

   .services-hero {
    background: var(--color-primary);
    padding: 120px 0 80px;
    color: var(--color-white);
  }
  
  .services-hero-inner {
    display: flex;
    align-items: center;
  }
  
  /* Content */
  .services-hero-content {
    max-width: 720px;
  }
  
  .services-hero-intro {
    margin-top: 20px;
    margin-bottom: 32px;
    font-size: 1.05rem;
    opacity: 0.85;
  }
  
  /* =========================================
     RESPONSIVE
     ========================================= */
  
  @media (max-width: 1024px) {
    .services-hero {
      padding: 100px 0 72px;
    }
  
    .services-hero-content {
      max-width: 100%;
    }
  }
  
  @media (max-width: 500px) {
    .services-hero {
      padding: 88px 0 64px;
    }
  
    .services-hero-intro {
      font-size: 0.95rem;
    }
  
    .services-hero-content a {
      width: 100%;
      justify-content: center;
    }
  }
  







  /* =========================================
   SERVICES BREAKDOWN
   ========================================= */

.services-breakdown {
    padding: 80px 0 40px 0;
    background: var(--color-white);
  }
  
  /* Block */
  .service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 96px;
  }
  
  .service-block:last-child {
    margin-bottom: 0;
  }
  
  /* Reverse layout */
  .service-block.reverse {
    grid-template-columns: 1fr 1fr;
  }
  
  .service-block.reverse .service-image {
    order: 2;
  }
  
  .service-block.reverse .service-content {
    order: 1;
  }
  
  /* Image */
  .service-image {
    border-radius: var(--radius-primary);
    overflow: hidden;
    height: 360px;
  }
  
  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Content */
  .service-content {
    max-width: 520px;
  }
  
  .service-content p {
    margin: 16px 0 24px;
    font-size: 1rem;
    opacity: 0.85;
  }
  
  .service-content ul {
    margin: 0 0 32px;
    padding-left: 18px;
  }
  
  .service-content li {
    margin-bottom: 10px;
    font-size: 0.95rem;
  }
  
  /* =========================================
     RESPONSIVE
     ========================================= */
  
  @media (max-width: 1024px) {
    .service-block,
    .service-block.reverse {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .service-block.reverse .service-image,
    .service-block.reverse .service-content {
      order: unset;
    }
  
    .service-content {
      max-width: 100%;
    }
  
    .service-image {
      height: 320px;
    }
  }
  
  @media (max-width: 500px) {
    .services-breakdown {
        padding: 60px 0 30px 0;
    }
  
    .service-block {
      margin-bottom: 72px;
    }
  
    .service-image {
      height: 260px;
    }
  
    .service-content a {
      width: 100%;
      justify-content: center;
    }
  }
  








  /* =========================================
   WHO WE WORK WITH
   ========================================= */

.who-we-work-with {
    padding: 40px 0 40px 0;
    background: #f7f9f8;
  }
  
  /* Intro */
  .who-intro {
    margin-top: 16px;
    max-width: 640px;
    opacity: 0.85;
  }
  
  /* Grid */
  .who-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
  
  /* Card */
  .who-card {
    background: var(--color-white);
    border-radius: var(--radius-primary);
    padding: 36px 28px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  }
  
  .who-card i {
    font-size: 1.6rem;
    color: var(--color-secondary);
    margin-bottom: 16px;
  }
  
  .who-card h3 {
    margin-bottom: 12px;
  }
  
  .who-card p {
    font-size: 0.95rem;
    opacity: 0.85;
  }
  
  /* Hover */
  .who-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  }
  
  /* =========================================
     RESPONSIVE
     ========================================= */
  
  @media (max-width: 1024px) {
    .who-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
  }
  
  @media (max-width: 500px) {
    .who-we-work-with {
        padding: 30px 0 30px 0;
    }
  
    .who-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  }
  










  /* =========================================
   MID-PAGE CTA
   ========================================= */

.mid-cta {
    padding: 40px 0 40px 0;
    background: var(--color-white);
  }
  
  .mid-cta-inner {
    background: var(--color-primary);
    color: var(--text-inverse);
    border-radius: var(--radius-primary);
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
  
  /* Content */
  .mid-cta-content h3 {
    margin-bottom: 10px;
  }
  
  .mid-cta-content p {
    font-size: 0.95rem;
    opacity: 0.95;
    max-width: 520px;
  }
  
  /* Action */
  .mid-cta-action a {
    white-space: nowrap;
  }
  
  /* =========================================
     RESPONSIVE
     ========================================= */
  
  @media (max-width: 1024px) {
    .mid-cta-inner {
      padding: 44px;
    }
  }
  
  @media (max-width: 500px) {
    .mid-cta {
        padding: 30px 0 30px 0;
    }
  
    .mid-cta-inner {
      flex-direction: column;
      text-align: center;
      padding: 40px 28px;
    }
  
    .mid-cta-action a {
      width: 100%;
      justify-content: center;
    }
  }
  






  /* =========================================
   PRICING APPROACH
   ========================================= */

.pricing-approach {
    padding: 80px 0 40px 0;
    background: var(--color-white);
  }
  
  /* Intro */
  .pricing-intro {
    margin-top: 16px;
    max-width: 640px;
    opacity: 0.85;
  }
  
  /* Grid */
  .pricing-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  
  /* Card */
  .pricing-card {
    background: #f7f9f8;
    border-radius: var(--radius-primary);
    padding: 36px 32px;
  }
  
  .pricing-card h3 {
    margin-bottom: 12px;
  }
  
  .pricing-card p {
    font-size: 0.95rem;
    opacity: 0.85;
  }
  
  /* Note */
  .pricing-note {
    margin-top: 48px;
    max-width: 520px;
  }
  
  .pricing-note p {
    font-size: 0.95rem;
    opacity: 0.8;
  }
  
  /* =========================================
     RESPONSIVE
     ========================================= */
  
  @media (max-width: 1024px) {
    .pricing-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  }
  
  @media (max-width: 500px) {
    .pricing-approach {
        padding: 60px 0 30px 0;
    }
  }
  





  /* =========================================
   SERVICES FINAL CTA
   ========================================= */

.services-final-cta {
    padding: 40px 0 40px 0;
    background: var(--color-white);
  }
  
  .services-final-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  
    border: 2px solid rgba(17, 51, 44, 0.15);
    border-radius: var(--radius-primary);
    padding: 56px 64px;
  }
  
  /* Content */
  .services-final-content h3 {
    margin-bottom: 12px;
  }
  
  .services-final-content p {
    max-width: 560px;
    font-size: 0.95rem;
    opacity: 0.85;
  }
  
  /* Action */
  .services-final-action a {
    white-space: nowrap;
  }
  
  /* =========================================
     RESPONSIVE
     ========================================= */
  
  @media (max-width: 1024px) {
    .services-final-inner {
      padding: 48px;
    }
  }
  
  @media (max-width: 500px) {
    .services-final-cta {
        padding: 30px 0 30px 0;
    }
  
    .services-final-inner {
      flex-direction: column;
      text-align: center;
      padding: 40px 28px;
    }
  
    .services-final-action a {
      width: 100%;
      justify-content: center;
    }
  }
  






  /* =========================================
   SERVICES FINAL CTA
   ========================================= */

.services-final-cta {
    padding: 120px 0;
    background: var(--color-white);
  }
  
  .services-final-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  
    border: 2px solid rgba(17, 51, 44, 0.15);
    border-radius: var(--radius-primary);
    padding: 56px 64px;
  }
  
  /* Content */
  .services-final-content h3 {
    margin-bottom: 12px;
  }
  
  .services-final-content p {
    max-width: 560px;
    font-size: 0.95rem;
    opacity: 0.85;
  }
  
  /* Action */
  .services-final-action a {
    white-space: nowrap;
  }
  
  /* =========================================
     RESPONSIVE
     ========================================= */
  
  @media (max-width: 1024px) {
    .services-final-inner {
      padding: 48px;
    }
  }
  
  @media (max-width: 500px) {
    .services-final-cta {
      padding: 100px 0;
    }
  
    .services-final-inner {
      flex-direction: column;
      text-align: center;
      padding: 40px 28px;
    }
  
    .services-final-action a {
      width: 100%;
      justify-content: center;
    }
  }
  