/**
 * Hero Module Styles
 * Two-column layout matching Figma design
 */

.module-hero {
    background: var(--gradient-brand-dark-bg);
    padding: var(--spacing-16) 0;
    min-height: 100vh;
    padding-top: 171px;
    overflow: hidden;
}

/* Main Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 559px 1fr;
    gap: var(--spacing-12);
    align-items: start;
}

/* ========================================
   LEFT COLUMN - Content
   ======================================== */

.hero-left {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-8);
}

/* Heading */
.hero-heading {
    color: var(--color-white);
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 18px;
    align-items: center;
}
.hero-cta__button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: var(--spacing-3) var(--spacing-4);
        font-family: var(--font-primary);
        font-size: var(--font-size-lg);
        font-weight: var(--font-weight-regular);
        border-radius: var(--radius-lg);
        text-decoration: none;
        transition: var(--transition);
        white-space: nowrap;
    }
.hero-cta__button--primary {
            background: var(--color-white);
            color: var(--color-black);
        }
.hero-cta__button--primary:hover {
                background: rgba(var(--color-white-rgb), 0.9);
                transform: translateY(-2px);
            }
.hero-cta__button--secondary {
            background: rgba(var(--color-white-rgb), 0.1);
            color: var(--color-white);
            border: var(--border-width) solid rgba(var(--color-white-rgb), 0.2);
        }
.hero-cta__button--secondary:hover {
                background: rgba(var(--color-white-rgb), 0.15);
                transform: translateY(-2px);
            }

/* Description */
.hero-description__text {
        font-family: var(--font-primary);
        font-size: var(--font-size-xl);
        font-weight: var(--font-weight-regular);
        line-height: var(--line-height-normal);
        color: var(--color-white);
        margin: 0;
    }

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {

.hero-bg {
        display: none
}
    }

/* Steps Stack */
.hero-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
}

.hero-step {
    display: flex;
    align-items: center;
    gap: 23.333px;
    padding: var(--spacing-4) var(--spacing-4) var(--spacing-4) var(--spacing-5);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    cursor: pointer;
    border: var(--border-width) solid transparent;
}

.hero-step:hover {
        background: rgba(var(--color-white-rgb), 0.05);
        border: var(--border-width) solid rgba(var(--color-white-rgb), 0.1);
    }

.hero-step--active {
        background: rgba(var(--color-white-rgb), 0.1);
        border: var(--border-width) solid rgba(var(--color-white-rgb), 0.2);
    }

.hero-step--active:hover {
            background: rgba(var(--color-white-rgb), 0.12);
        }

.hero-step__number {
        width: 42.667px;
        height: 42.667px;
        background: rgba(var(--color-white-rgb), 0.2);
        border-radius: 10.667px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-primary);
        font-size: var(--font-size-xl);
        font-weight: var(--font-weight-regular);
        color: var(--color-white);
        flex-shrink: 0;
    }

.hero-step__content {
        flex: 1;
    }

.hero-step__title {
        font-family: var(--font-primary);
        font-size: var(--font-size-xl);
        font-weight: var(--font-weight-medium);
        color: var(--color-white);
        margin: 0 0 var(--spacing-1) 0;
        line-height: var(--line-height-normal);
    }

.hero-step__description {
        font-family: var(--font-primary);
        font-size: var(--font-size-md);
        font-weight: var(--font-weight-light);
        color: rgba(var(--color-white-rgb), 0.7);
        margin: 0;
        line-height: var(--line-height-normal);
    }

/* ========================================
   RIGHT COLUMN - Mockup with Tabs
   ======================================== */

.hero-right {
    max-width: 724px;
    width: 100%;
    position: relative;
    justify-self: end;
    padding: var(--spacing-4);
    border-radius: var(--radius-xl);
}

.hero-right__inner {
        position: relative;
        z-index: 1;
    }

/* Hero Tabs Containers */
.hero-tabs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    pointer-events: none;

    /* Button Icon */

    /* Button Text */

    /* Legacy icon support */
}
.hero-tabs--active {
        position: relative;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
.hero-tabs__buttons {
        display: flex;
        gap: var(--spacing-2);
        margin-bottom: 10px;
    }
.hero-tabs__button {
        display: flex;
        align-items: center;
        gap: var(--spacing-2);
        padding: var(--spacing-3) var(--spacing-6);
        background: var(--color-white);
        border: var(--border-width) solid transparent;
        border-radius: var(--radius-md);
        color: var(--color-black);
        font-size: var(--font-size-md);
        font-weight: var(--font-weight-medium);
        cursor: pointer;
        position: relative;
        transition: var(--transition);
        overflow: hidden;
    }
.hero-tabs__button:not(.active) {
            opacity: 0.5;
        }
.hero-tabs__button:hover {
            opacity: 0.8;
        }
.hero-tabs__button.active {
            opacity: 1;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
.hero-tabs__button-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }
.hero-tabs__button-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            opacity: 1;
        }
.hero-tabs__button.active .hero-tabs__button-icon img {
        transform: scale(1.1);
    }
.hero-tabs__button-text {
        font-size: var(--font-size-sm);
        white-space: nowrap;
        color: var(--color-black);
    }
.hero-tabs__icon {
        width: 20px;
        height: 20px;
        transition: transform 0.3s ease;
    }
.hero-tabs__button.active .hero-tabs__icon {
        transform: scale(1.1);
    }
.hero-tabs__content-wrapper {
        position: relative;
    }
.hero-tabs__content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
        pointer-events: none;
    }
.hero-tabs__content.active {
            position: relative;
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }
.hero-tabs__image {
        width: 100%;
        height: auto;
        border-radius: var(--spacing-3);
        overflow: hidden;
    }
.hero-tabs__image img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

/* ========================================
   MOCKUP CONTAINER (Original Tabs)
   ======================================== */

.hero-tabs__mockup {
    background: rgba(var(--color-white-rgb), 0.03);
    border: var(--border-width) solid rgba(var(--color-white-rgb), 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(var(--color-black-rgb), 0.2);
}

.hero-tabs__mockup--slack .mockup-body {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-6);
    }

.hero-tabs__mockup--linear .mockup-body {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-8);
    }

/* Mockup Header */
.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-4) var(--spacing-6);
    background: rgba(var(--color-black-rgb), 0.3);
    border-bottom: var(--border-width) solid rgba(var(--color-white-rgb), 0.1);
}
.mockup-header__title {
        font-weight: var(--font-weight-semibold);
        color: var(--color-white);
        font-size: 0.95rem;
    }
.mockup-header__actions {
        display: flex;
        gap: var(--spacing-2);
    }
.mockup-header__dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(var(--color-white-rgb), 0.3);
    }
.mockup-header__status {
        padding: var(--spacing-1) var(--spacing-3);
        border-radius: var(--radius-sm);
        font-size: var(--font-size-xs);
        font-weight: var(--font-weight-semibold);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
.mockup-header__status--new {
            background: rgba(33, 150, 243, 0.2);
            color: #2196f3;
        }
.mockup-header__status--in-progress {
            background: rgba(249, 168, 37, 0.2);
            color: #f9a825;
        }
.mockup-header__status--analyzing {
            background: rgba(156, 39, 176, 0.2);
            color: #9c27b0;
        }
.mockup-header__status--success {
            background: rgba(76, 175, 80, 0.2);
            color: #4caf50;
        }

/* Mockup Body */
.mockup-body {
    padding: var(--spacing-6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-12);
    }

    .hero-right {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .module-hero {
        padding: 128px 0 30px;
    }

    .heading {
        font-size: 40px !important;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
    }

    .hero-steps {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        
        /* Hide scrollbar for Chrome, Safari and Opera */
    }
        .hero-steps::-webkit-scrollbar {
            display: none;
        }

    .hero-step {
        padding: 10px;
        gap: 7px;
        flex-shrink: 0;
    }

        .hero-step__description {
            display: none;
        }

        .hero-step__number {
            width: 30px;
            height: auto;
            aspect-ratio: 1/1;
        }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

        .hero-cta__button {
            width: 100%;
        }
        .hero-tabs__buttons {
            flex-wrap: wrap;
        }

        .hero-tabs__button {
            padding: 7px 13px;
            width: max-content;
            min-width: initial;
        }

        .hero-tabs__content-wrapper {
            min-height: initial;
        }

    .slack-header {
        padding: var(--spacing-3) var(--spacing-4);
        flex-wrap: wrap;
        gap: var(--spacing-2);
    }

    .slack-messages {
        padding: 0 var(--spacing-4) var(--spacing-4);
    }
}

/* Logo Carousel Module - Swiper Implementation */

.logo-carousel {
  padding: 4rem 2rem;
  overflow: hidden;

  /* Responsive adjustments */
}

.logo-carousel.spacing-none {
    padding-top: 0;
  }

.logo-carousel.gradient-background {
    background-color: var(--color-purple-dark);
  }

.logo-carousel.gradient-background .logo-carousel__wrapper::before {
        background: linear-gradient(to right, var(--color-purple-dark), transparent);
      }

.logo-carousel.gradient-background .logo-carousel__wrapper::after {
        background: linear-gradient(to left, var(--color-purple-dark), transparent);
      }

.logo-carousel.gradient-background .logo-carousel__image {
      filter: brightness(0) invert(1);
    }

.logo-carousel__heading {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 400;
    text-align: center;
    margin: 0 0 3rem;
    line-height: 1.6;
  }

.logo-carousel__wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;

    /* Gradient fade overlays on sides */
  }

.logo-carousel__wrapper::before,
    .logo-carousel__wrapper::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 150px;
      z-index: 10;
      pointer-events: none;
    }

.logo-carousel__wrapper::before {
      left: 0;
      background: linear-gradient(to right, var(--color-white), transparent);
    }

.logo-carousel__wrapper::after {
      right: 0;
      background: linear-gradient(to left, var(--color-white), transparent);
    }

.logo-carousel__swiper {
    overflow: visible;
  }

.logo-carousel__swiper .swiper-wrapper {
      display: flex;
      align-items: center;
      gap: 64px;
      will-change: transform;
    }

.logo-carousel__slide {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 80px !important;
    max-width: 180px !important;
    width: auto !important;
    flex-shrink: 0;
  }

.logo-carousel__image {
    max-height: 50px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0);
    opacity: 0.8;
    transition: opacity 0.3s ease;
    display: block;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {

.logo-carousel {
    padding: 3rem 1rem
}

    .logo-carousel__heading {
      font-size: 1rem;
      margin: 0 0 2rem;
    }

    .logo-carousel__wrapper::before,
    .logo-carousel__wrapper::after {
      width: 100px;
    }

    .logo-carousel__slide {
      height: 70px !important;
      max-width: 150px !important;
    }

    .logo-carousel__image {
      max-height: 40px;
    }
  }

@media (max-width: 480px) {
    .logo-carousel__heading {
      font-size: 0.875rem;
      margin: 0 0 1.5rem;
    }

    .logo-carousel__wrapper::before,
    .logo-carousel__wrapper::after {
      width: 60px;
    }

    .logo-carousel__slide {
      height: 60px !important;
      max-width: 120px !important;
    }

    .logo-carousel__image {
      max-height: 35px;
    }
  }


/* Growing Cards Module */
.growing-cards {
  padding: 5rem 0;
  background: var(--gradient-brand-dark-bg);
  position: relative;

  /* Header */

  /* Grid Wrapper - Contains multiple rows */

  /* Grid - Each row of 4 cards */

  /* Card */

  /* Icon */

  /* Card Title */

  /* Card Description */

  /* Responsive Design */
}
.growing-cards__header {
    margin-bottom: 3rem;
    color: var(--color-white);
    max-width: 669px;
  }
.growing-cards__subheading {
    font-size: var(--font-size-lg);
    color: var(--color-white);
    max-width: 500px;
    margin-top: 16px;
  }
.growing-cards__grid-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
.growing-cards__grid {
    display: flex;
    gap: 24px;
    flex-wrap: nowrap;

    /* Hover state - grow the hovered card */
  }
.growing-cards__grid:hover .growing-cards__card {
      flex: 1 1 auto;
    }
.growing-cards__grid:hover .growing-cards__card:hover {
        flex: 0 0 447px;
        max-width: 447px;
      }
.growing-cards__card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
    height: 239px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    flex: 1 1 calc(25% - 18px);
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
.growing-cards__card:hover .growing-cards__icon {
        transform: translateY(-20px);
      }
.growing-cards__card:hover .growing-cards__card-title {
        transform: translateY(-20px);
      }
.growing-cards__card:hover .growing-cards__card-description {
        opacity: 1;
      }
.growing-cards__card-inner {
    position: relative;
    z-index: 1;
    text-align: center;
  }
.growing-cards__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
.growing-cards__icon img {
      width: 100%;
      
      object-fit: contain;
    }
.growing-cards__card-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: #ffffff;
    /* margin-bottom: 0.75rem; */
    line-height: 1.4;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
.growing-cards__card-description {
    position: absolute;
    top: 100%;
    left: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    opacity: 0;
    width: 377px;
    margin-left: auto;
    margin-right: auto;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
@media (max-width: 1023px) {

    .growing-cards__heading {
      font-size: 3rem;
    }

    .growing-cards__subheading {
      font-size: 1.125rem;
    }

    .growing-cards__grid {
      flex-wrap: wrap;

      /* Disable growing effect - cards maintain equal size */
    }
      .growing-cards__grid:hover .growing-cards__card,
      .growing-cards__grid:hover .growing-cards__card:hover {
        flex: 1 1 calc(50% - 12px) !important;
        max-width: none !important;
      }

    .growing-cards__card {
      flex: 1 1 calc(50% - 12px);
      padding: 8px;
      height: initial;
      
      /* Disable translate effect */
    }
      .growing-cards__card:hover .growing-cards__icon,
      .growing-cards__card:hover .growing-cards__card-title {
        transform: translateY(0);
      }

    .growing-cards__icon {
      margin-bottom: 0;
      width: initial;
      height: initial;
      margin: initial;
    }

      .growing-cards__icon img {
        width: 60px;
        aspect-ratio: 1/1;
      }

    .growing-cards__card-inner {
      display: flex;
      flex-direction: row;
      gap: 18px;
      align-items: center;
    }

    .growing-cards__card-description {
      opacity: 1;
      display: none;
    }
  }
@media (max-width: 767px) {

    .growing-cards__heading {
      font-size: 1.75rem;
    }

    .growing-cards__subheading {
      font-size: 0.9375rem;
    }

    .growing-cards__header {
      margin-bottom: 2rem;
    }
    
    .growing-cards__grid-wrapper {
      gap: 24px;
    }

    .growing-cards__grid {
      flex-direction: column;
      gap: 24px;

      /* Disable width growth effect on mobile */
    }
      .growing-cards__grid:hover .growing-cards__card,
      .growing-cards__grid:hover .growing-cards__card:hover {
        flex: 1 1 100%;
      }
  }

.devops-ai-engineer {
    background: var(--gradient-brand-dark-bg);
    padding: var(--spacing-16) 0;
    position: relative;
    overflow: hidden;

    /* Left Column */

    /* Right Column */

    /* Responsive Design */
}
    
    .devops-ai-engineer .heading {
        display: flex;
        flex-direction: column;
    }
    
    .devops-ai-engineer__container {
        max-width: var(--container-max-width);
        margin: 0 auto;
    }
    
    .devops-ai-engineer__content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        align-items: start;
    }
    
    .devops-ai-engineer__cta.desktop {
          display: block;  
        }
    
    .devops-ai-engineer__cta.mobile {
          display: none;
        }
    
    .devops-ai-engineer__left {
        color: var(--color-white);
    }
    
    .devops-ai-engineer__subtitle {
        font-size: var(--font-size-lg);
        line-height: 1.6;
        color: var(--color-white);
        margin-bottom: 80px;
        max-width: 600px;
        margin-top: 16px;
    }
    
    .devops-ai-engineer__box {
        background: var(--color-purple-dark-30);
        border: var(--border-width) solid rgba(167, 139, 250, 0.2);
        border-radius: var(--radius-xl);
        min-height: 300px;
    }
    
    .devops-ai-engineer__box-content {
            color: var(--color-white);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
    
    .devops-ai-engineer__box-title {
            font-size: var(--font-size-2xl);
        }
    
    .devops-ai-engineer__box-description {
            color: var(--color-white);
            opacity: 0.6;
        }
    
    .devops-ai-engineer .box-1 {
        margin-bottom: 25px;
        padding: 0 60px 58px;
        display: flex;
        flex-direction: column;
        gap: 58px;
    }
    
    .devops-ai-engineer .box-1 img {
            width: 100%;
        }
    
    .devops-ai-engineer .box-2 {
        min-height: 511px;
        padding: 60px;
        position: relative;
        overflow: hidden;
    }
    
    .devops-ai-engineer .box-2__content {
            max-width: 238px;
            margin-top: 96px;
        }
    
    @media (max-width: 768px) {
    
    .devops-ai-engineer .box-2__content {
                margin-top: 0
        }
            }
    
    .devops-ai-engineer .box-2 img {
            position: absolute;
            bottom: -64px;
            right: -162px;
            width: 485px;
            aspect-ratio: 485 / 525;
            object-fit: contain;
        }
    
    .devops-ai-engineer .box-3 {
        min-height: 609px;
        padding: 60px;
        position: relative;
        overflow: hidden;
    }
    
    .devops-ai-engineer .box-3 img {
            position: absolute;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            width: 582px;
            object-fit: contain;
        }
    
    .devops-ai-engineer__right {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-8);
        padding-top: var(--spacing-16);
    }
    
    @media (max-width: 1024px) {
            .devops-ai-engineer__content {
                grid-template-columns: 1fr;
                gap: var(--spacing-12);
            }

            .devops-ai-engineer__right {
                padding-top: 0;
            }

            .devops-ai-engineer__cta {
                width: 100%;
                display: flex;
                justify-content: stretch;
            }

                .devops-ai-engineer__cta .button {
                    width: 100%;
                }

                .devops-ai-engineer__cta.desktop {
                  display: none;  
                }
                .devops-ai-engineer__cta.mobile {
                  display: block;
                }
    }
    
    @media (max-width: 768px) {.devops-ai-engineer {
        padding: var(--spacing-16) 0
}

        .devops-ai-engineer__content {
            gap: 2px;
        }
    }


/* ============================================
   Use Cases Module
   ============================================ */

.use-cases {
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
  color: var(--color-black);

  /* Header */

  /* Tabs Navigation */

  /* Swiper Container */

  /* Content Layout */

  /* Left Side: List */

  /* Right Side: Image */

  /* Responsive Design */
}

.use-cases__background {
    background: rgba(41, 20, 61, 0.05);
    padding-bottom: 70px;
    position: relative;
  }

.use-cases__header {
    margin-left: auto;
    text-align: right;
    margin-bottom: 40px;
    max-width: 620px;
  }

.use-cases .heading strong {
      display: inline-flex;
    }

.use-cases__description {
    font-size: var(--font-size-lg);
    color: inherit;
    margin-top: 16px;
  }

.use-cases__tabs-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

.use-cases__tabs {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 21px;
    padding: 0 calc((100vw - var(--container-max-width)) / 2) 2px;
    will-change: transform;
    user-select: none;
    min-width: 100%;
  }

@media (max-width: 1440px) {

.use-cases__tabs {
      padding: 0 40px 2px
  }
    }

@media (max-width: 768px) {

.use-cases__tabs {
      padding: 0 20px 2px
  }
    }

.use-cases__tab {
    cursor: pointer;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
    color: inherit;
    max-width: 350px;
  }

.use-cases__tab-content {
      display: flex;
      align-items: center;
      gap: 10px;
      background: none;
      border: none;
    }

.use-cases__tab::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--gradient-brand);
      opacity: 0;
      transform: scaleX(0);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

.use-cases__tab.active::after {
        opacity: 1;
        transform: scaleX(1);
      }

.use-cases__tab.active .use-cases__tab-icon img {
          opacity: 0;
        }

.use-cases__tab.active .use-cases__tab-icon::before {
          opacity: 1;
        }

.use-cases__tab:hover:not(.active)::after {
        opacity: 0.3;
        transform: scaleX(1);
      }

.use-cases__tab:hover:not(.active) .use-cases__tab-icon img {
          filter: grayscale(50%) opacity(0.6);
        }

.use-cases__tab-icon {
    width: 29px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
  }

.use-cases__tab-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: grayscale(100%) opacity(0.4);
      transition: filter 0.3s ease, opacity 0.3s ease;
    }

.use-cases__tab-icon::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gradient-brand);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
      mask-image: var(--icon-mask);
      mask-size: contain;
      mask-repeat: no-repeat;
      mask-position: center;
      -webkit-mask-image: var(--icon-mask);
      -webkit-mask-size: contain;
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-position: center;
    }

.use-cases__tab-text {
    font-size: var(--font-size-lg);
    font-weight: 400;
    line-height: 30px;
    color: inherit;
    transition: all 0.3s ease;
  }

.use-cases__swiper-container {
    padding-top: 60px;
  }

.use-cases__swiper {
    width: 100%;
    overflow: visible;
  }

.use-cases__swiper .swiper-wrapper {
      align-items: stretch;
    }

.use-cases__swiper .swiper-slide {
      height: auto;
      opacity: 0;
      transition: opacity 0.5s ease;
    }

.use-cases__swiper .swiper-slide-active {
        opacity: 1;
      }

.use-cases__content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
  }

.use-cases__list {
    flex: 0 0 451px;
    display: flex;
    flex-direction: column;
  }

.use-cases__list-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 0 0 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

.use-cases__list-item:first-child {
      padding-top: 0;
    }

.use-cases__list-item.last {
      border-bottom: none;
    }

.use-cases__list-icon {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF1B6B 0%, #FF6B9D 100%);
    margin-top: 9px;
    position: relative;
  }

.use-cases__list-icon svg {
      display: none;
    }

.use-cases__list-text {
    flex: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: inherit;
    margin: 0;
  }

.use-cases__image-wrapper {
    flex: 1;
    display: flex;
    align-items: start;
    justify-content: center;
    border-radius: 16px;
    /* min-height: 474px; */
    overflow: hidden;
  }

.use-cases__image-wrapper--has-border {
      padding: 10px;
      border: 1px solid rgba(15, 15, 15, 0.01);
      border-radius: 20px;
      background: rgba(0, 0, 0, 0.05);
    }

.use-cases__image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  }

@media (max-width: 1200px) {
    .use-cases__content {
      gap: 40px;
    }

    .use-cases__list {
      flex: 0 0 400px;
    }
  }

@media (max-width: 1024px) {
    .use-cases__container {
      padding: 0 40px;
    }

    .use-cases__content {
      flex-direction: column;
      gap: 40px;
    }

    .use-cases__list {
      flex: 1;
      width: 100%;
      max-width: 100%;
    }

    .use-cases__image-wrapper {
      width: 100%;
    }

    .use-cases__tabs {
      gap: 16px;
    }
  }

@media (max-width: 768px) {

    .use-cases__container {
      padding: 0 20px;
    }

    .use-cases__header {
      margin-bottom: 40px;
    }

    .use-cases__description {
      font-size: 16px;
    }

    .use-cases__tabs {
      gap: 12px;
      border-bottom-width: 1px;
    }

    .use-cases__tab {
      padding: 16px 4px;
      gap: 8px;
    }

    .use-cases__tab-icon {
      width: 36px;
      height: 36px;
    }

    .use-cases__tab-text {
      font-size: 16px;
      line-height: 24px;
    }

    .use-cases__content {
      gap: 30px;
    }

    .use-cases__list-item {
      padding: 20px 0;
    }

    .use-cases__list-text {
      font-size: 16px;
      line-height: 24px;
    }

    .use-cases__image-wrapper {
      min-height: 300px;
      padding: 16px;
    }
  }

@media (max-width: 480px) {
    .use-cases__list-item {
      padding: 16px 0;
    }

    .use-cases__list-icon {
      width: 6px;
      height: 6px;
      margin-top: 8px;
    }

    .use-cases__list-text {
      font-size: 14px;
      line-height: 21px;
    }
      .use-cases__tab-icon img {
        width: 29px;
      }

    .use-cases__tab-text {
      font-size: 14px;
      line-height: 20px;
    }

    .use-cases__image-wrapper {
      min-height: initial;
      padding: 12px;
    }
  }

.use-cases.gradient-background {
    background: var(--gradient-brand-dark-bg);
    color: var(--color-white);

  }

.use-cases.gradient-background .use-cases__list-item {
        border-color: rgba(var(--color-white-rgb), 0.1);
      }

.use-cases.gradient-background .use-cases__background {
        background: rgba(var(--color-white-rgb), 0.05);
      }

.use-cases.gradient-background .use-cases__tab-icon {
        width: 46px;
        height: initial;
        aspect-ratio: 1/1;
        border: 1px solid rgba(var(--color-white-rgb), 0.1);
        background: rgba(var(--color-white-rgb), 0.05);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

.use-cases.gradient-background .use-cases__tab-icon img,
        .use-cases.gradient-background .use-cases__tab-icon::before {
          width: 26px;
        }

.use-cases.gradient-background .use-cases__tab-icon::before {
          left: 50%;
          transform: translateX(-50%);
        }

.use-cases.gradient-background .use-cases__image-wrapper {
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
      }

/* Blog Card Component */
.blog-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: 541px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;

    /* Image */

    /* Content */

    /* Author Info */
}
.blog-card__image-link {
        display: block;
        width: 100%;
        height: 240px;
        border-radius: 8px;
        overflow: hidden;
    }
.blog-card__image-link::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
.blog-card__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 50% 50%;
        transition: transform 0.3s ease;
    }
.blog-card:hover .blog-card__image {
            transform: scale(1.05);
        }
.blog-card__content {
        display: flex;
        flex-direction: column;
        gap: 24px;
        flex: 1;
    }
.blog-card__header {
        display: flex;
        flex-direction: column;
        gap: 12px;
        flex: 1;
    }
.blog-card__category {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
    }
.blog-card__heading-wrapper {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
.blog-card__title {
        font-size: 20px;
        line-height: normal;
        color: #000000;
        margin: 0;
    }
.blog-card__title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s ease;
        }
.blog-card__title a:hover {
                color: #667eea;
            }
.blog-card__excerpt {
        font-size: 16px;
        line-height: 24px;
        color: var(--color-black);
        opacity: .8;
        margin: 0;
        max-width: 275px;
    }
.blog-card__author {
        display: flex;
        align-items: center;
        gap: 12px;
        justify-self: end;
    }
.blog-card__avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
        background: #c7b9da;
    }
.blog-card__author-info {
        display: flex;
        flex-direction: column;
        font-size: 14px;
        line-height: 20px;
    }
.blog-card__author-name {
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        color: #000000;
    }
.blog-card__date {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        color: #667085;
    }

/* Tablet breakpoint */
@media (max-width: 1024px) {
    .blog-card {
        height: auto;
        min-height: 500px;
    }

        .blog-card__image-link {
            height: 200px;
        }
}

/* Mobile breakpoint */
@media (max-width: 768px) {
    .blog-card {
        width: 100%;
        height: auto;
        min-height: 480px;
        padding: 12px;
        gap: 24px;
    }

        .blog-card__image-link {
            height: 180px;
        }

        .blog-card__content {
            gap: 20px;
        }

        .blog-card__title {
            font-size: 18px;
        }

        .blog-card__excerpt {
            font-size: 14px;
            line-height: 20px;
        }
}


/* Module: Blog Carousel */

.blog-carousel {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.blog-carousel__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 721px;
    margin: 0 auto 100px;
  }

.blog-carousel__description {
    margin-top: 16px;
    margin-bottom: 32px;
    font-size: var(--font-size-lg);
  }

.blog-carousel__wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
  }

.blog-carousel__swiper {
    width: 100%;
    overflow: visible;
  }

.blog-carousel__nav:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }

.blog-carousel__nav--prev {
      order: -1;
    }

.blog-carousel__nav--next {
      order: 1;
    }

/* Tablet breakpoint */
@media (max-width: 1024px) {
  .blog-carousel {
    padding: 3rem 0;
  }

    .blog-carousel__section-title {
      font-size: 2rem;
      margin-bottom: 2.5rem;
    }

    .blog-carousel__wrapper {
      gap: 16px;
    }
}

/* Mobile breakpoint */
@media (max-width: 768px) {
  .blog-carousel {
    padding: 2rem 0;
  }

    .blog-carousel__section-title {
      font-size: 1.75rem;
      margin-bottom: 2rem;
    }

    .blog-carousel__wrapper {
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }
      .blog-carousel__nav--prev {
        order: 2;
      }
  
      .blog-carousel__nav--next {
        order: 3;
      }
}

/* Extra small devices */
@media (max-width: 480px) {
    .blog-carousel__wrapper {
      gap: 8px;
    }
}


/**
 * Platform Capabilities Module Styles
 * Circular layout with floating capability cards
 */

/* ========================================
   MODULE BASE STYLES
   ======================================== */

.platform-capabilities {
    position: relative;
    padding: 120px 0;
    overflow: hidden;

    /* Background */

    /* Wrapper */

    /* Illustration Container */

    /* Capability Cards Container */

    /* Content Section */
}

.platform-capabilities__bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(41, 20, 61, 0.05);
        z-index: 0;
    }

.platform-capabilities__wrapper {
        position: relative;
        z-index: 1;
        padding: 0 160px;
    }

.platform-capabilities__illustration {
        position: relative;
        width: 100%;
        max-width: 858px;
        aspect-ratio: 1;
        margin: 0 auto;
    }

.platform-capabilities__cards {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 3;
    }

.platform-capabilities__content {
        display: flex;
        flex-direction: column;
        gap: 16px;
        text-align: right;
        justify-content: center;
        max-width: 39.08%;
        position: absolute;
        bottom: 46.62%;
        right: 0;
        z-index: 4;
        opacity: 0;
    }

.platform-capabilities__description {
        font-size: 18px;
        color: var(--color-black);
        margin: 0;
    }

/* Background Gradient Circles */
.platform-illustration {

    /* Glow Effect */

    /* Center Logo */
}
.platform-illustration__circles {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        pointer-events: none;
    }
.platform-illustration__glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(180deg);
        width: 30%;
        height: 30%;
        background: var(--gradient-brand);
        opacity: .4;
        filter: blur(60px);
        pointer-events: none;
        z-index: 0;
    }
.platform-illustration__glow--1 {
            top: 40%;
            left: 40%;
        }
.platform-illustration__glow--2 {
            top: 60%;
            left: 60%;
        }
.platform-illustration__logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 26.9%;
        height: 26.9%;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        z-index: 2;
    }

.illustration-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    opacity: 0;

    /* Circle 1 - Outermost (858px / 100%) */

    /* Circle 2 - Rotating outer (753px / 87.76%) */

    /* Circle 3 - Static middle (674.94px / 78.66%) */

    /* Circle 4 - Static (494.35px / 57.61%) */

    /* Circle 5 - Rotating inner dashed (404.99px / 47.19%) */

    /* Circle 6 - Innermost (332.73px / 38.78%) */
}

.illustration-circle--1 {
        width: 100%;
        height: 100%;
        border-width: 2px;
        border-color: rgba(0, 0, 0, .1);
    }

.illustration-circle--2 {
        width: 87.76%;
        height: 87.76%;
        border-style: dashed;
        border-color: rgba(0, 0, 0, .2);
    }

.illustration-circle--3 {
        width: 78.66%;
        height: 78.66%;
    }

.illustration-circle--4 {
        width: 57.61%;
        height: 57.61%;
    }

.illustration-circle--5 {
        width: 47.19%;
        height: 47.19%;
        border-style: dashed;
        border-color: rgba(0, 0, 0, .2);
    }

.illustration-circle--6 {
        width: 38.78%;
        height: 38.78%;
    }

.platform-logo__image {
    width: 60%;
    height: auto;
}

/* ========================================
   CAPABILITY CARDS - BASE STYLES
   ======================================== */

.capability-card {
    position: absolute;
    background: white;
    border: 0.88px solid rgba(0, 0, 0, 0.1);
    width: max-content;
    border-radius: 14px;
    padding: 21px 28px;
    display: flex;
    gap: 26px;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 380px;
    opacity: 0;

    /* Card Icon */

    /* Card Content */
}

.capability-card__icon {
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.capability-card__icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

.capability-card__content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 11px;
    }

.capability-card__title {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 1;
        color: var(--color-black);
        margin: 0;
    }

.capability-card__description {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        font-weight: 300;
        line-height: 1.2;
        color: rgba(0, 0, 0, 0.7);
        margin: 0;
    }

/* ========================================
   CARD POSITIONS - DEFAULT LAYOUT
   ======================================== */

.capability-card--top {
        top: 10.25%;
        left: 18.02%;
    }

.capability-card--top-left {
        top: 30.5%;
        left: -8%;
    }

.capability-card--bottom-left {
        bottom: 32.16%;
        left: -19.23%;
    }

.capability-card--bottom {
        bottom: 13.05%;
        left: 4.77%;
    }

.capability-card--bottom-right {
        bottom: 11.18%;
        right: 8.39%;
        flex-direction: row-reverse;
    }

.capability-card--right {
        bottom: 34.73%;
        right: -10.13%;
        flex-direction: row-reverse;
    }

/* ========================================
   ADDITIONAL COMPONENTS
   ======================================== */

.platform-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-black);
    margin: 0;
}

.platform-heading .text-gradient {
        background: var(--gradient-text);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.platform-cta-button {
    padding: 12px 20px;
    background: var(--color-black);
    color: var(--color-white);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
}

.platform-cta-button:hover {
        background: rgba(0, 0, 0, 0.85);
        transform: translateY(-2px);
    }

/* ========================================
   VARIANT: HAS-HEADER-CENTER
   ======================================== */

.platform-capabilities.has-header-center {

    /* Card positions calculated from Figma (640px container) */
}

.platform-capabilities.has-header-center .platform-capabilities__content {
            text-align: center;
            position: relative;
            max-width: 610px;
            margin: 0 auto -50px;
        }

.platform-capabilities.has-header-center .platform-capabilities__illustration,
        .platform-capabilities.has-header-center .platform-capabilities__cards {
            width: 640px;
        }

.platform-capabilities.has-header-center .capability-card {
        /* Observability - Top Left */

        /* App Deployment - Top Right */

        /* Cloud Services - Left */

        /* CI/CD - Right */

        /* Landing Zones - Bottom Left */

        /* Audit & Reporting - Bottom Right */
    }

.platform-capabilities.has-header-center .capability-card--top-left {
            left: -24.69%;
            right: auto;
            top: 19.84%;
            bottom: auto;
        }

.platform-capabilities.has-header-center .capability-card--top {
            left: 72.66%;
            right: auto;
            top: 19.84%;
            bottom: auto;
        }

.platform-capabilities.has-header-center .capability-card--bottom-left {
            left: -37.34%;
            right: auto;
            top: 46.94%;
            bottom: auto;
        }

.platform-capabilities.has-header-center .capability-card--right {
            left: 79.06%;
            right: auto;
            top: 48.13%;
            bottom: auto;
        }

.platform-capabilities.has-header-center .capability-card--bottom {
            left: -4.84%;
            right: auto;
            top: 77.64%;
            bottom: auto;
        }

.platform-capabilities.has-header-center .capability-card--bottom-right {
            left: 54.42%;
            right: auto;
            top: 76.91%;
            bottom: auto;
        }

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes rotate-slow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Respect reduced motion preferences - show all elements without animation */
@media (prefers-reduced-motion: reduce) {
    .illustration-circle,
    .capability-card,
    .platform-capabilities__content {
        opacity: 1;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* ========================================
   BREAKPOINT: 1400px
   ======================================== */

@media (max-width: 1400px) {
    /* Card size adjustments */
    .capability-card {
        max-width: 340px;
        padding: 18px 24px;
        gap: 20px;
    }

        .capability-card__title {
            font-size: 15px;
        }

        .capability-card__description {
            font-size: 13px;
        }
}

/* ========================================
   BREAKPOINT: 1200px
   ======================================== */

@media (max-width: 1200px) {
    /* Module wrapper adjustments */
        .module-platform-capabilities.has-heading-section .platform-capabilities__wrapper {
            grid-template-columns: 1fr;
            gap: 4rem;
        }

    /* Content positioning */
        .platform-capabilities__content {
            text-align: center;
            order: -1;
            position: relative;
            max-width: initial;
            margin-bottom: 14px;
        }

        .platform-capabilities__cta {
            justify-content: center;
        }

    /* Card adjustments */
        .capability-card__description {
            display: none;
        }

        .capability-card--top-left {
            left: -12%;
        }

    /* Has-header-center variant adjustments */
        .platform-capabilities.has-header-center .capability-card {
            /* Reduce negative left values to prevent overflow */
        }
            .platform-capabilities.has-header-center .capability-card--top-left {
                left: -20%;
                right: auto;
            }

            .platform-capabilities.has-header-center .capability-card--bottom-left {
                left: -28%;
                right: auto;
            }

            .platform-capabilities.has-header-center .capability-card--bottom {
                left: -3%;
                right: auto;
            }
}

/* ========================================
   BREAKPOINT: 1024px
   ======================================== */

@media (max-width: 1024px) {
    /* Module sizing */
        .platform-capabilities__wrapper {
            padding: 0 80px;
        }

        .platform-capabilities__cards,
        .platform-capabilities__illustration {
            max-width: 460px;
        }

    /* Card adjustments */
    .capability-card {

        /* Card position overrides */
    }
        .capability-card__icon {
            width: auto;
            height: 25px;
        }
        .capability-card--top {
            top: 8.16%;
            left: auto;
            right: -10.14%;
        }

        .capability-card--top-left {
            top: 9.36%;
        }

        .capability-card--bottom-left {
            top: 38.36%;
            bottom: auto;
        }

        .capability-card--right {
            top: 38.36%;
            bottom: auto;
        }

        .capability-card--bottom-right {
            bottom: 13.87%;
            right: -10.14%;
        }

    /* Has-header-center variant adjustments */
            .platform-capabilities.has-header-center .platform-capabilities__cards,
            .platform-capabilities.has-header-center .platform-capabilities__illustration {
                width: 460px;
            }

        .platform-capabilities.has-header-center .capability-card {
            /* Reduce negative left values to prevent overflow */
        }
            .platform-capabilities.has-header-center .capability-card--top-left {
                left: -18%;
                right: auto;
            }

            .platform-capabilities.has-header-center .capability-card--bottom-left {
                left: -22%;
                right: auto;
            }

            .platform-capabilities.has-header-center .capability-card--bottom {
                left: -2%;
                right: auto;
            }
}

/* ========================================
   BREAKPOINT: 768px
   ======================================== */

@media (max-width: 768px) {
    /* Module padding */
    .module-platform-capabilities {
        padding: 80px 0;
    }

    /* Platform adjustments */
        .platform-capabilities__content {
            text-align: right;
            margin-bottom: 50px;
        }

        .platform-capabilities__illustration,
        .platform-capabilities__cards {
            width: 400px;
        }

        .platform-capabilities__description {
            font-size: 16px;
        }

    /* Card adjustments */
    .capability-card {
        max-width: 280px;
        padding: 16px 20px;
        gap: 16px;

        /* Card position overrides */
    }

        .capability-card__icon {
            width: 14px;
            height: initial;
        }

        .capability-card__title {
            font-size: 10px;
        }

        .capability-card__description {
            font-size: 12px;
        }
        .capability-card--top {
            top: 8.16%;
            left: auto;
            right: -10.14%;
        }

        .capability-card--top-left {
            left: -12%;
        }

        .capability-card--bottom-left {
            top: 38.36%;
            bottom: auto;
            left: -25%;
        }

        .capability-card--bottom {
            left: -10.77%;
        }

        .capability-card--right {
            top: 38.36%;
            bottom: auto;
            right: -25%;
        }

        .capability-card--bottom-right {
            bottom: 13.87%;
            right: -15.14%;
        }

    /* Heading size */
    .platform-heading {
        font-size: 36px;
    }

    /* Has-header-center variant adjustments */
            .platform-capabilities.has-header-center .platform-capabilities__illustration,
            .platform-capabilities.has-header-center .platform-capabilities__cards {
                width: 400px;
            }

        .platform-capabilities.has-header-center .capability-card {
            /* Reduce negative left values to prevent overflow */
        }
            .platform-capabilities.has-header-center .capability-card--top-left {
                left: -12%;
                right: auto;
            }

            .platform-capabilities.has-header-center .capability-card--bottom-left {
                left: -18%;
                right: auto;
            }

            .platform-capabilities.has-header-center .capability-card--bottom {
                left: 0%;
                right: auto;
            }
}

/* ========================================
   BREAKPOINT: 640px
   ======================================== */

@media (max-width: 640px) {
    /* Platform adjustments */
        .platform-capabilities__wrapper {
            padding: 0;
        }

        .platform-capabilities__illustration {
            max-width: 100%;
            aspect-ratio: 1;
        }

        .platform-capabilities__illustration,
        .platform-capabilities__cards {
            width: 245px;
        }

        .platform-capabilities__description {
            font-size: 14px;
        }

    /* Card adjustments */
    .capability-card {
        max-width: 240px;
        padding: 14px 12px;
        gap: 11px;
    }

        .capability-card__description {
            font-size: 11px;
            line-height: 1.3;
        }

    /* Heading size */
    .platform-heading {
        font-size: 28px;
    }

    /* Mobile positions for has-header-center variant */
            .platform-capabilities.has-header-center .platform-capabilities__content {
                text-align: center;
                position: relative;
                max-width: initial;
                margin: 0 auto 21px;
            }

            .platform-capabilities.has-header-center .platform-capabilities__illustration,
            .platform-capabilities.has-header-center .platform-capabilities__cards {
                width: 245px;
            }

        .platform-capabilities.has-header-center .capability-card {
            /* Cloud Services - Left */

            /* App Deployment - Top Left */

            /* Landing Zones - Bottom Left */

            /* Observability - Top Right */

            /* CI/CD - Right */

            /* Audit & Reporting - Bottom Right */
        }
            .platform-capabilities.has-header-center .capability-card--bottom-left {
                left: -30.51%;
                right: auto;
                top: 43.12%;
                bottom: auto;
            }
            .platform-capabilities.has-header-center .capability-card--top-left {
                left: -16.27%;
                right: auto;
                top: 9.36%;
                bottom: auto;
            }
            .platform-capabilities.has-header-center .capability-card--bottom {
                left: -12.20%;
                right: auto;
                top: 74.03%;
                bottom: auto;
            }
            .platform-capabilities.has-header-center .capability-card--top {
                left: 71.59%;
                right: auto;
                top: 8.14%;
                bottom: auto;
            }
            .platform-capabilities.has-header-center .capability-card--right {
                left: 89.09%;
                right: auto;
                top: 38.24%;
                bottom: auto;
            }
            .platform-capabilities.has-header-center .capability-card--bottom-right {
                left: 65.90%;
                right: auto;
                top: 72.00%;
                bottom: auto;
            }
}

/**
 * Homepage Styles
 * 
 * Automatically loads on the homepage only
 *
 * @package DuploCloud
 * @since 1.0.0
 */

/* Import modules used on homepage */

/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
  .swiper-3d .swiper-cube-shadow {
    transform-style: preserve-3d;
  }

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none;
  }
/* For Internet Explorer and Edge */
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
      display: none;
    }
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
      scroll-snap-type: none;
    }
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
  .swiper-3d .swiper-slide-shadow-left,
  .swiper-3d .swiper-slide-shadow-right,
  .swiper-3d .swiper-slide-shadow-top,
  .swiper-3d .swiper-slide-shadow-bottom,
  .swiper-3d .swiper-slide-shadow,
  .swiper-3d .swiper-slide-shadow-left,
  .swiper-3d .swiper-slide-shadow-right,
  .swiper-3d .swiper-slide-shadow-top,
  .swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader, .swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

.swiper-fade.swiper-free-mode .swiper-slide {
      transition-timing-function: ease-out;
    }
  .swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
  }
  .swiper-fade .swiper-slide .swiper-slide {
      pointer-events: none;
    }
  .swiper-fade .swiper-slide-active {
    pointer-events: auto;
  }
  .swiper-fade .swiper-slide-active .swiper-slide-active {
      pointer-events: auto;
    }

