/* Hero Section - ALyCs */
.alycs-hero {
    min-height: 85vh;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #396bad 0%, #2a4d7a 50%, #79a9d6 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.alycs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20S-10 18.954-10 30s8.954 20 20 20 20-8.954 20-20zm30 0c0-11.046-8.954-20-20-20S20 18.954 20 30s8.954 20 20 20 20-8.954 20-20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Geometric floating shapes */
.geo-shape {
    position: absolute;
    opacity: 0.1;
    animation: floatGeo 20s infinite ease-in-out;
}

.geo-shape.circle-1 {
    width: 400px;
    height: 400px;
    border: 3px solid #fff;
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.geo-shape.circle-2 {
    width: 250px;
    height: 250px;
    border: 2px solid #fff;
    border-radius: 50%;
    bottom: 10%;
    left: 5%;
    animation-delay: 5s;
}

.geo-shape.line-1 {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    top: 30%;
    left: 10%;
    transform: rotate(-30deg);
    animation-delay: 3s;
}

.geo-shape.line-2 {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    bottom: 25%;
    right: 15%;
    transform: rotate(45deg);
    animation-delay: 8s;
}

.geo-shape.dot-grid {
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#fff 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    top: 20%;
    right: 20%;
    opacity: 0.08;
}

@keyframes floatGeo {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(5deg); }
    50% { transform: translate(-10px, 10px) rotate(-5deg); }
    75% { transform: translate(15px, 15px) rotate(3deg); }
}

.hero-content-alycs {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-text-alycs h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-text-alycs h1 span {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.hero-text-alycs p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 550px;
}

.hero-visual-alycs {
    display: flex;
    justify-content: center;
    align-items: center;
}

.finance-icon {
    width: 280px;
    height: 280px;
    position: relative;
}

.finance-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* Intro Section */
.intro-section {
    padding: 100px 0;
    background: var(--white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(57, 107, 173, 0.1), rgba(121, 169, 214, 0.15));
    color: var(--primary-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(57, 107, 173, 0.2);
}

.intro-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-content p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.9;
}

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.solutions-header {
    text-align: center;
    margin-bottom: 4rem;
}

.solutions-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1rem;
}

.solutions-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25rem;
    align-items: start;
}

.solution-card {
    border-radius: 22px;
    padding: 0;
    border: 1px solid transparent;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(57, 107, 173, 0.55), rgba(121, 169, 214, 0.35), rgba(57, 107, 173, 0.25)) border-box;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    overflow: hidden;
    position: relative;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: -140px;
    right: -140px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(121, 169, 214, 0.30) 0%, rgba(121, 169, 214, 0) 65%);
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
    opacity: 0.9;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(57, 107, 173, 0.18);
}

.solution-card-header {
    padding: 2.1rem 2.1rem 1.35rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(180deg, rgba(57, 107, 173, 0.07) 0%, rgba(57, 107, 173, 0) 100%);
    border-bottom: 1px solid rgba(57, 107, 173, 0.08);
}

.solution-card-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px 280px at 15% 20%, rgba(57, 107, 173, 0.10) 0%, rgba(57, 107, 173, 0) 60%),
        radial-gradient(520px 240px at 85% 10%, rgba(121, 169, 214, 0.12) 0%, rgba(121, 169, 214, 0) 55%);
    pointer-events: none;
}

.solution-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #396bad 0%, #79a9d6 100%);
    box-shadow: 0 12px 30px rgba(57, 107, 173, 0.22);
    position: relative;
    z-index: 1;
}

.solution-icon .bi {
    color: #ffffff;
    font-size: 1.55rem;
    line-height: 1;
}

.solution-card-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    position: relative;
    z-index: 1;
    line-height: 1.25;
}

.solution-card-header h3::after {
    content: '';
    display: block;
    width: 54px;
    height: 3px;
    border-radius: 3px;
    margin-top: 0.8rem;
    background: linear-gradient(90deg, #396bad 0%, #79a9d6 100%);
    opacity: 0.9;
}

.solution-card-body {
    padding: 0 2.1rem 2.1rem;
}

.solution-card-body > p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 0;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-list li.odd-item {
    background: linear-gradient(135deg, rgba(57, 107, 173, 0.1), rgba(121, 169, 214, 0.15));
}

.feature-list li strong {
    color: #1f2937;
    font-weight: 700;
}

.feature-list li::before {
    /* content: '';
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: linear-gradient(135deg, #396bad, #79a9d6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' width='14' height='14'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px; */
}

.benefits-badge {
    position: relative;
    background: linear-gradient(135deg, rgba(57, 107, 173, 0.06), rgba(121, 169, 214, 0.08));
    border: 1px solid rgba(57, 107, 173, 0.14);
    border-radius: 16px;
    padding: 1.25rem 1.35rem;
    overflow: hidden;
}

.benefits-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #396bad 0%, #79a9d6 100%);
}

.benefits-badge strong {
    color: var(--primary-blue);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefits-badge p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Value Proposition Section */
.value-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #396bad 0%, #2a4d7a 100%);
    position: relative;
    overflow: hidden;
}

.value-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50m-40 0a40,40 0 1,0 80,0a40,40 0 1,0 -80,0' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.05'/%3E%3C/svg%3E");
}

.value-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.value-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.value-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.value-item .check {
    width: 26px;
    height: 26px;
    min-width: 26px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-weight: 700;
}

.value-item .check svg {
    width: 14px;
    height: 14px;
}

/* CTA Section */
.cta-alycs {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content-alycs {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text-alycs h1 {
        font-size: 2.8rem;
    }

    .hero-text-alycs p {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-visual-alycs {
        display: none;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .value-items {
        flex-direction: column;
        align-items: center;
    }

    .value-item {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .alycs-hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-text-alycs h1 {
        font-size: 2.2rem;
    }

    .hero-text-alycs h1 span {
        font-size: 1.3rem;
    }

    .hero-text-alycs p {
        font-size: 1rem;
    }

    .intro-content h2 {
        font-size: 1.8rem;
    }

    .intro-content p {
        font-size: 1rem;
    }

    .solutions-header h2 {
        font-size: 2rem;
    }

    .solution-card-header {
        padding: 1.6rem 1.6rem 1.1rem;
    }

    .solution-card-body {
        padding: 0 1.6rem 1.6rem;
    }

    .solution-card-header h3 {
        font-size: 1.4rem;
    }

    .value-header h2 {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* Fade-in animations */
.alycs-fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.alycs-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.alycs-fade-in.delay-1 { transition-delay: 0.1s; }
.alycs-fade-in.delay-2 { transition-delay: 0.2s; }
.alycs-fade-in.delay-3 { transition-delay: 0.3s; }
.alycs-fade-in.delay-4 { transition-delay: 0.4s; }
.alycs-fade-in.delay-5 { transition-delay: 0.5s; }
