:root {
    --sa-max-width: 1440px;
}

/* override bootstrap colors */
h1,
h2,
h3,
h4 {
    color: var(--sa-text-primary);
}

p {
    color: var(--sa-text-secondary);
}

.main-container {
    overflow: hidden;
}

/* custom common variables & style */
.section {
    max-width: var(--sa-max-width);
    padding: var(--sa-space-2xl) var(--sa-space-l);
    margin-left: auto;
    margin-right: auto;
}

.text-eyebrow {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--sa-text-tertiary);
    letter-spacing: 0.5px;
}

/* =============================================
   HERO SECTION
   ============================================= */

.solutions-hero-wrapper {
    background: var(--sa-gradient-neu-left, linear-gradient(to right, #f8f8fa, #ffffff));
    padding: var(--sa-space-3xl) 0;
    overflow: hidden;
}

.solutions-hero-wrapper .section {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sa-space-3xl);
    align-items: center;
    padding-top: var(--sa-space-6xl);
    padding-bottom: var(--sa-space-6xl);
}

/* Text content */
.solutions-hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--sa-space-2xl);
}

.solutions-hero-text {
    display: flex;
    flex-direction: column;
    gap: var(--sa-space-l);
}


.solutions-gradient-text {
    background: var(--sa-gradient-text-brand, linear-gradient(90deg, #0066cc, #00b8d4));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solutions-hero-text p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
}

.solutions-hero-actions {
    display: flex;
    gap: var(--sa-space-l);
}

/* Media/Image area */
.solutions-hero-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 680px;
    margin: 0 auto;
}

/* Outer circle (large) */
.solutions-hero-circle-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 1;
    border: 2px solid transparent;
    z-index: 1;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(136.36deg, rgba(114, 34, 87, 0) 0%, #722257 102.48%) border-box;
    background-clip: padding-box, border-box;
}

/* Inner circle (smaller) */
.solutions-hero-circle-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 89%;
    height: 89%;
    border-radius: 50%;
    border: 1px solid var(--sa-border-subtle, rgba(0, 0, 0, 0.08));
    z-index: 2;
    background: linear-gradient(136.36deg, rgba(114, 34, 87, 0) 0%, #722257 102.48%);
}

/* Image container */
.solutions-hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    border-radius: 50%;
    overflow: hidden;
    z-index: 3;
}

.solutions-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hero Responsive - Tablet & Desktop */
@media (min-width: 768px) {
    .solutions-hero-wrapper .section {
        grid-template-columns: 1fr 1fr;
        gap: var(--sa-space-6xl);
    }

    .solutions-hero-text h1 {
        font-size: 48px;
    }

    .solutions-hero-media {
        max-width: 680px;
    }
}

@media (min-width: 1024px) {
    .solutions-hero-wrapper .section {
        gap: var(--sa-space-8xl);
        padding-top: var(--sa-space-8xl);
        padding-bottom: var(--sa-space-8xl);
    }

    .solutions-hero-text h1 {
        font-size: 56px;
    }

    .solutions-hero-media {
        max-width: 680px;
    }
}

/* =============================================
   FEATURE CARDS SECTION
   ============================================= */

.solutions-feature-wrapper {
    position: relative;
    padding: var(--sa-space-6xl) 0;
    background: var(--sa-background-primary, #ffffff);
}

/* Decorative circle element */
.solutions-feature-decorative-circle {
    position: absolute;
    z-index: 1;
    width: 1515px;
    height: 1515px;
    right: -555px;
    bottom: -558px;
    background-image: url('/Areas/Solutions/Images/Index/backgrounds-ellipses-stroke.webp');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.45;
    pointer-events: none;
}


.solutions-feature-content {
    position: relative;
    z-index: 1;
}

.solutions-feature-header {
    margin-bottom: var(--sa-space-4xl);
}

.solutions-feature-header h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    max-width: 700px;
}

/* Cards grid */
.solutions-feature-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sa-space-2xl);
}

/* Individual card */
.solutions-card {
    display: flex;
    flex-direction: column;
    gap: var(--sa-space-l);
    padding: var(--sa-space-xl);
    border-top: 1px solid var(--sa-border-subtle, rgba(0, 0, 0, 0.08));
    border: 1px solid var(--sa-border-default);
    border-radius: 10px;
    background: var(--sa-background-primary);
}
    .solutions-card:hover {
        border: 1px solid var(--sa-border-bold);
        background: var(--sa-background-surface-hover);
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, .08), 0 4px 8px 0 rgba(0, 0, 0, .1);
        cursor: pointer;
    }

/* Card icon */
.solutions-card-icon {
    width: var(--sa-space-4xl);
    height: var(--sa-space-4xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--sa-brand-primary, #0066cc);
}

.solutions-card-icon i {
    font-size: inherit;
    color: inherit;
}

/* Card title */
.solutions-card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 32px;
    margin: 0;
    color: var(--sa-text-primary);
}

/* Card description */
.solutions-card-description {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: var(--sa-text-secondary);
}

/* Card action link */
.solutions-card-action {
    margin-top: auto;
    padding-top: var(--sa-space-s);
}

.solutions-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--sa-space-s);
    font-size: 16px;
    font-weight: 700;
    color: var(--sa-text-link, #04578B);
    transition: color 0.2s ease;
    text-decoration: none;
}

.solutions-card-link:hover {
    color: var(--sa-text-link-hover, #003F66);
    text-decoration: none;
}

.solutions-card-link i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

/*.solutions-card-link:hover i {
    transform: translateX(4px);
}*/

/* Feature Cards Responsive */
@media (min-width: 768px) {
    .solutions-feature-wrapper {
        padding: var(--sa-space-8xl) 0;
    }

    .solutions-feature-header h2 {
        font-size: 48px;
        line-height: 56px;
    }

    .solutions-feature-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--sa-space-xl);
    }
}

@media (min-width: 1024px) {
    .solutions-feature-wrapper {
        padding: 100px 0;
    }

    .solutions-feature-header {
        margin-bottom: var(--sa-space-6xl);
    }

    .solutions-feature-header h2 {
        font-size: 48px;
        line-height: 56px;
    }
    .solutions-card-title {
        font-size: 28px;
    }

    .solutions-feature-cards {
        padding: 0 122px;
    }
}

/* =============================================
   MAX SECTION — Meet Max (Figma node-id: 2048:805)
   Light background, text-only, single column
   ============================================= */

.solutions-max-wrapper {
    background: var(--sa-background-primary);
    padding: var(--sa-space-3xl) 0;
}

.solutions-max-content {
    display: flex;
    flex-direction: column;
    gap: var(--sa-space-l);
    width: 100%;
}

.solutions-max-title {
    color: var(--sa-text-primary);
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 40px;
    margin: 0;
}

.solutions-max-description {
    color: var(--sa-text-secondary);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

.solutions-max-btn-group {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: var(--sa-space-m);
    padding-top: var(--sa-space-l);
}

@media (min-width: 1024px) {
    .solutions-max-title {
        font-size: 48px;
        line-height: 56px;
    }
}

/* =============================================
   CTA SECTION
   ============================================= */

.solutions-cta-wrapper {
    position: relative;
    z-index: 1;
    padding: var(--sa-space-8xl) 0;
}

/* Split Background */
.solutions-cta-wrapper .cta-split-background {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    z-index: 0;
}

.solutions-cta-wrapper .cta-split-top {
    background-color: var(--sa-background-primary, #ffffff);
    height: 50%;
    width: 100%;
}

.solutions-cta-wrapper .cta-split-bottom {
    background: var(--sa-background-inverse-primary, #1a1a2e);
    height: 50%;
    width: 100%;
}

.solutions-cta-wrapper .section {
    position: relative;
    z-index: 1;
    max-width: 1300px;
}

/* CTA Container */
.solutions-cta-container {
    background: var(--sa-background-brand-secondary-bold, linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%));
    border-radius: var(--sa-space-l);
    padding: var(--sa-space-4xl) var(--sa-space-2xl);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: var(--sa-space-xl);
}

/* Background ellipses */
.solutions-cta-bg-ellipses {
    position: absolute;
    top: 65%;
    right: -100px;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    pointer-events: none;
}

.solutions-cta-bg-ellipses img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* CTA Content */
.solutions-cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: var(--sa-space-l);
    max-width: 600px;
}

.solutions-cta-content .text-eyebrow {
    color: var(--sa-text-tertiary-inverse, rgba(255, 255, 255, 0.7));
}

.solutions-cta-content h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 56px;
    color: var(--sa-text-primary-inverse, #ffffff);
    margin: 0;
}

.solutions-cta-content p {
    font-size: 16px;
    line-height: 24px;
    color: var(--sa-text-secondary-inverse, rgba(255, 255, 255, 0.8));
    margin: 0;
}

.solutions-cta-actions {
    margin-top: var(--sa-space-s);
}

.solutions-cta-actions .btn-sal {
    font-size: 16px;
    line-height: 24px;
}

/* CTA Responsive */
@media (min-width: 768px) {
    .solutions-cta-wrapper {
        padding: var(--sa-space-6xl) 0;
    }

    .solutions-cta-container {
        padding: var(--sa-space-6xl) var(--sa-space-4xl);
    }

    .solutions-cta-content h2 {
        font-size: 36px;
    }

    .solutions-cta-bg-ellipses {
        right: -50px;
        width: 600px;
        height: 600px;
    }
}

@media (min-width: 1024px) {
    .solutions-cta-container {
        padding: var(--sa-space-8xl) var(--sa-space-6xl);
    }

    .solutions-cta-content h2 {
        font-size: 48px;
    }

    .solutions-cta-bg-ellipses {
        right: 0;
        width: 700px;
        height: 700px;
    }
}