.ansa3-wrapper,
.ansa3-wrapper * {
    box-sizing: border-box;
}

.ansa3-wrapper {
    background-color: #010614;
    color: #ffffff;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    padding: 80px 20px;
    line-height: 1.6;
    position: relative;
    overflow: hidden;
}

.ansa3-wrapper.ansa3-has-glow::before,
.ansa3-wrapper.ansa3-has-glow::after {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(12px);
}

.ansa3-wrapper.ansa3-has-glow::before {
    top: -230px;
    left: -170px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.16), transparent 65%);
}

.ansa3-wrapper.ansa3-has-glow::after {
    top: -260px;
    right: -160px;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.13), transparent 65%);
}

.ansa3-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ansa3-header {
    text-align: center;
    margin-bottom: 60px;
}

.ansa3-top-tag {
    color: #ff2d75;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ansa3-top-tag span {
    color: rgba(255,255,255,0.55);
    font-weight: 400;
    margin: 0 10px;
}

.ansa3-title {
    color: #ffffff;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -1.7px;
}

.ansa3-title span {
    --ansa3-title-grad-start: #4da3ff;
    --ansa3-title-grad-end: #00d2ff;
    background: linear-gradient(90deg, var(--ansa3-title-grad-start), var(--ansa3-title-grad-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.ansa3-description {
    color: #a0a8b5;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.ansa3-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.ansa3-card {
    --ansa3-accent: #3b82f6;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    min-height: 100%;
    box-shadow: 0 24px 70px rgba(0,0,0,0.16);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.ansa3-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--ansa3-accent) 55%, rgba(255,255,255,0.10));
    box-shadow: 0 30px 90px rgba(0,0,0,0.28);
}

.ansa3-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--ansa3-accent);
}

.ansa3-card::after {
    content: "";
    position: absolute;
    right: -65px;
    top: -65px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--ansa3-accent) 16%, transparent);
    opacity: .75;
}

.ansa3-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.025);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.ansa3-icon-circle svg,
.ansa3-icon-circle i {
    width: 35px;
    height: 35px;
    color: var(--ansa3-accent);
    fill: currentColor;
}

.ansa3-icon-circle img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.ansa3-card-label {
    color: var(--ansa3-accent);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .8px;
    display: inline-block;
    margin-bottom: 10px;
}

.ansa3-card h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.24;
    margin: 0 0 15px;
}

.ansa3-card p {
    font-size: 14px;
    color: #a0a8b5;
    margin: 0 0 20px;
}

.ansa3-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.ansa3-list li {
    font-size: 13px;
    color: #d1d5db;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ansa3-list li::before {
    content: "✓";
    color: var(--ansa3-accent);
    font-weight: 900;
    flex: 0 0 auto;
}

.ansa3-learn-more {
    color: #ff2d75;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.ansa3-learn-more:hover {
    color: #ffffff;
}

.ansa3-info-row {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.ansa3-info-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 30px;
}

.ansa3-box-label {
    color: #4da3ff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    display: block;
}

.ansa3-partners-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.ansa3-partner-item {
    color: rgba(255,255,255,0.70);
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    line-height: 1;
    transition: color .25s ease, opacity .25s ease;
}

.ansa3-partner-item:hover {
    color: #ffffff;
}

.ansa3-partner-item img {
    max-width: 120px;
    max-height: 42px;
    object-fit: contain;
    opacity: .8;
    filter: grayscale(1) brightness(1.7);
}

.ansa3-awards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.ansa3-award-item {
    text-align: center;
    color: #aaa;
    font-size: 10px;
    line-height: 1.25;
}

.ansa3-award-icon {
    font-size: 22px;
    min-height: 30px;
    margin-bottom: 8px;
}

.ansa3-award-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: grayscale(1) brightness(2);
}

.ansa3-award-item strong,
.ansa3-award-item small {
    display: block;
}

.ansa3-award-item strong {
    color: rgba(255,255,255,.78);
    font-size: 10px;
    font-weight: 700;
}

.ansa3-award-item small {
    color: rgba(255,255,255,.48);
    font-size: 10px;
}

.ansa3-cta-bar {
    background: rgba(59,130,246,0.10);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 15px 40px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
}

.ansa3-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
}

.ansa3-cta-text h4 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.ansa3-cta-text p {
    margin: 0;
    color: #a0a8b5;
    font-size: 14px;
}

.ansa3-main-btn {
    --ansa3-btn-start: #f43f5e;
    --ansa3-btn-end: #d946ef;
    background: linear-gradient(90deg, var(--ansa3-btn-start), var(--ansa3-btn-end));
    color: #ffffff;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    box-shadow: 0 12px 30px color-mix(in srgb, var(--ansa3-btn-start) 20%, transparent);
}

.ansa3-main-btn:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.ansa3-expert-box {
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 30px;
}

.ansa3-expert-box span {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.ansa3-expert-box small {
    color: #777;
    font-size: 11px;
}

.ansa3-footer-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    flex-wrap: wrap;
}

.ansa3-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ansa3-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex: 0 0 auto;
    overflow: hidden;
}

.ansa3-stat-icon svg,
.ansa3-stat-icon i {
    width: 18px;
    height: 18px;
    color: currentColor;
    fill: currentColor;
}

.ansa3-stat-text span {
    display: block;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
}

.ansa3-stat-text small {
    color: #777;
    font-size: 11px;
}

@supports not (background: color-mix(in srgb, #000 50%, transparent)) {
    .ansa3-card:hover { border-color: rgba(255,255,255,0.25); }
    .ansa3-card::after { background: rgba(255,255,255,0.05); }
    .ansa3-main-btn { box-shadow: 0 12px 30px rgba(244,63,94,0.18); }
}

@media (max-width: 1024px) {
    .ansa3-grid,
    .ansa3-info-row {
        grid-template-columns: 1fr;
    }

    .ansa3-title {
        font-size: 42px;
    }

    .ansa3-cta-bar {
        grid-template-columns: 1fr;
        border-radius: 28px;
        align-items: flex-start;
    }

    .ansa3-expert-box {
        border-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .ansa3-wrapper {
        padding: 58px 16px;
    }

    .ansa3-header {
        margin-bottom: 40px;
    }

    .ansa3-title {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .ansa3-description {
        font-size: 16px;
    }

    .ansa3-card,
    .ansa3-info-box {
        padding: 28px 22px;
    }

    .ansa3-awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ansa3-cta-bar {
        padding: 24px;
    }

    .ansa3-cta-left {
        align-items: flex-start;
    }

    .ansa3-main-btn {
        width: 100%;
    }

    .ansa3-footer-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .ansa3-top-tag {
        font-size: 11px;
    }

    .ansa3-title {
        font-size: 30px;
    }

    .ansa3-footer-stats {
        grid-template-columns: 1fr;
    }
}
