
.hero-section {
    position: relative;
    min-height: 100vh;
    background: #020b18;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 30px 0 60px;
}

.hero-section__bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 120, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 120, 255, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: 0;
}

.hero-section__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}
.hero-section__glow--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.22) 0%, transparent 70%);
    top: -180px;
    left: -140px;
}
.hero-section__glow--2 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(0, 180, 255, 0.14) 0%, transparent 70%);
    bottom: -100px;
    right: 10%;
}
.hero-section__glow--3 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 60, 180, 0.18) 0%, transparent 70%);
    top: 40%;
    left: 40%;
}

.hero-section__orbs {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.hero-section__orb {
    position: absolute;
    border-radius: 50%;
    animation: orbFloat 8s ease-in-out infinite;
}
.hero-section__orb--1 {
    width: 14px;
    height: 14px;
    background: rgba(0, 140, 255, 0.7);
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    box-shadow: 0 0 18px rgba(0, 140, 255, 0.8);
}
.hero-section__orb--2 {
    width: 8px;
    height: 8px;
    background: rgba(100, 200, 255, 0.8);
    top: 60%;
    left: 8%;
    animation-delay: 2.5s;
    box-shadow: 0 0 12px rgba(100, 200, 255, 0.9);
}
.hero-section__orb--3 {
    width: 18px;
    height: 18px;
    background: rgba(0, 80, 200, 0.6);
    top: 35%;
    right: 12%;
    animation-delay: 5s;
    box-shadow: 0 0 20px rgba(0, 80, 200, 0.7);
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
    50% { transform: translateY(-28px) scale(1.15); opacity: 1; }
}

.hero-section__wrapper {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 100, 255, 0.12);
    border: 1px solid rgba(0, 120, 255, 0.3);
    border-radius: 50px;
    padding: 8px 18px;
    color: #60b4ff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
    animation: fadeSlideDown 0.7s ease both;
}
.hero-section__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b9eff;
    box-shadow: 0 0 10px #3b9eff;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 8px #3b9eff; }
    50% { box-shadow: 0 0 20px #3b9eff; }
}

.hero-section__title {
    font-size: clamp(28px, 3.8vw, 54px);
    font-weight: 800;
    line-height: 1.13;
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    animation: fadeSlideDown 0.8s 0.1s ease both;
}
.hero-section__title span {
    background: linear-gradient(135deg, #3b9eff 0%, #00cfff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section__description {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(200, 220, 255, 0.72);
    margin: 0 0 32px;
    animation: fadeSlideDown 0.8s 0.2s ease both;
}

.hero-section__cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    animation: fadeSlideDown 0.8s 0.3s ease both;
}

.hero-section__btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.01em;
}
.hero-section__btn--primary {
    background: linear-gradient(135deg, #0055ff 0%, #0099ff 100%);
    color: #fff;
    box-shadow: 0 8px 32px rgba(0, 100, 255, 0.38);
}
.hero-section__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0, 100, 255, 0.55);
    background: #fff;
}
.hero-section__btn--secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #c8dcff;
    backdrop-filter: blur(10px);
}
.hero-section__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(100, 180, 255, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

.hero-section__trust-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeSlideDown 0.8s 0.4s ease both;
}
.hero-section__trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(180, 210, 255, 0.75);
    font-size: 13px;
    font-weight: 600;
}
.hero-section__trust-item i {
    color: #3b9eff;
    font-size: 14px;
}
.hero-section__trust-divider {
    width: 1px;
    height: 18px;
    background: rgba(100, 160, 255, 0.25);
}

/* Hero Visual */
.hero-section__visual {
    position: relative;
    animation: fadeSlideUp 0.9s 0.2s ease both;
}
.hero-section__visual-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 120, 255, 0.22);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 100, 255, 0.1);
}
.hero-section__visual-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    filter: brightness(0.7) saturate(1.1);
}
.hero-section__visual-glass {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0, 40, 120, 0.25) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-section__pill {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(8, 20, 50, 0.82);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 120, 255, 0.25);
    border-radius: 14px;
    padding: 10px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.hero-section__pill i {
    color: #3b9eff;
    font-size: 18px;
    flex-shrink: 0;
}
.hero-section__pill div {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.hero-section__pill-label {
    font-size: 10px;
    color: rgba(160, 200, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    display: block;
}
.hero-section__pill-value {
    font-size: 13px;
    color: #fff;
    font-weight: 700;
    display: block;
}
.hero-section__pill--1 { bottom: 20px; left: -20px; animation: floatPill 5s ease-in-out infinite; }
.hero-section__pill--2 { top: 22px; right: -16px; animation: floatPill 5s 1.5s ease-in-out infinite; }
.hero-section__pill--3 { bottom: 80px; right: -16px; animation: floatPill 5s 3s ease-in-out infinite; }

@keyframes floatPill {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-section__floating-card {
    position: absolute;
    top: -22px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 40, 100, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 140, 255, 0.3);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    animation: floatPill 6s 2s ease-in-out infinite;
}
.hero-section__floating-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0055ff 0%, #00aaff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}
.hero-section__floating-card-num {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.hero-section__floating-card-txt {
    font-size: 11px;
    color: rgba(160, 200, 255, 0.7);
    font-weight: 600;
    margin-top: 2px;
}

@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===================== STATS SECTION ===================== */
.stats-section {
    background: #040f20;
    padding: 30px 0;
   
}
.stats-section__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.stats-section__header {
    text-align: center;
    margin-bottom: 56px;
}
.stats-section__title {
    font-size: clamp(20px, 2.4vw, 34px);
    font-weight: 800;
    color: #fff;
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.25;
    letter-spacing: -0.02em;
}
.stats-section__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stats-section__card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 120, 255, 0.14);
    border-radius: 18px;
    padding: 28px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.stats-section__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 140, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.stats-section__card:hover {
    border-color: rgba(0, 140, 255, 0.3);
    background: rgba(0, 60, 160, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 60, 200, 0.18);
}
.stats-section__card:hover::before { opacity: 1; }
.stats-section__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(0, 100, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: #3b9eff;
    font-size: 20px;
    transition: background 0.3s;
}
.stats-section__card:hover .stats-section__card-icon {
    background: rgba(0, 100, 255, 0.28);
}
.stats-section__card-number {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff 0%, #60b4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stats-section__counter,
.stats-section__suffix {
    -webkit-text-fill-color: transparent;
}
.stats-section__card-label {
    font-size: 13px;
    color: rgba(180, 210, 255, 0.65);
    line-height: 1.45;
    font-weight: 500;
}

/* ===================== BENEFITS / SCROLL STACKING ===================== */
.benefits-section {
    background: #020b18;
    padding: 30px 0;
}
.benefits-section__sticky {
    position: sticky;
    top: 0;
}
.benefits-section__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 30px;
}
.benefits-section__header {
    text-align: center;
    margin-bottom: 60px;
}
.benefits-section__title {
    font-size: clamp(20px, 2.4vw, 34px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}
.benefits-section__desc {
    font-size: 16px;
    color: rgba(180, 210, 255, 0.65);
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.7;
}
.benefits-section__layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: center;
}
.benefits-section__steps-col {
    position: sticky;
    top: 60px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.benefits-section__step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    cursor: pointer;
    position: relative;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}
.benefits-section__step--active {
    opacity: 1;
}
.benefits-section__step-num {
    font-size: 11px;
    font-weight: 800;
    color: #3b9eff;
    background: rgba(0, 100, 255, 0.12);
    border: 1px solid rgba(0, 120, 255, 0.2);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.benefits-section__step--active .benefits-section__step-num {
    background: linear-gradient(135deg, #0055ff, #00aaff);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 100, 255, 0.4);
}
.benefits-section__step-line {
    position: absolute;
    left: 18px;
    top: 50px;
    width: 1px;
    height: calc(100% - 2px);
    background: rgba(0, 120, 255, 0.18);
}
.benefits-section__step-label {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    transition: color 0.3s;
}
.benefits-section__step--active .benefits-section__step-label {
    color: #fff;
}
.benefits-section__cards-col {
    position: relative;
    min-height: 320px;
}
.benefits-section__card {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 120, 255, 0.16);
    border-radius: 22px;
    padding: 36px;
    backdrop-filter: blur(12px);
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    height: fit-content;
}
.benefits-section__card--active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    position: relative;
}
.benefits-section__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.benefits-section__card-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 80, 220, 0.3) 0%, rgba(0, 160, 255, 0.2) 100%);
    border: 1px solid rgba(0, 140, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b9eff;
    font-size: 22px;
}
.benefits-section__card-num {
    font-size: 12px;
    color: rgba(100, 160, 255, 0.5);
    font-weight: 700;
    letter-spacing: 0.08em;
}
.benefits-section__card-title {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.benefits-section__card-text {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(180, 210, 255, 0.65);
    margin-bottom: 24px;
}
.benefits-section__card-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 100, 255, 0.1);
    border: 1px solid rgba(0, 120, 255, 0.22);
    border-radius: 50px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #60b4ff;
}
.benefits-section__card-tag i { font-size: 12px; }

/* ===================== SERVICES SECTION ===================== */
.services-section {
    background: #040f20;
    padding: 30px 0;
}
.services-section__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.services-section__header {
    text-align: center;
    margin-bottom: 56px;
}
.services-section__title {
    font-size: clamp(20px, 2.4vw, 34px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}
.services-section__desc {
    font-size: 16px;
    color: rgba(180, 210, 255, 0.65);
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.7;
}
.services-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.services-section__card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 120, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.38s ease;
    cursor: pointer;
}
.services-section__card:hover {
    border-color: rgba(0, 140, 255, 0.32);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 60, 180, 0.22);
}
.services-section__img-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.services-section__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    filter: brightness(0.65) saturate(1.1);
}
.services-section__card:hover .services-section__img {
    transform: scale(1.07);
    filter: brightness(0.8) saturate(1.2);
}
.services-section__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(4, 15, 32, 0.92) 100%);
}
.services-section__card-body {
    padding: 22px 24px 26px;
    position: relative;
}
.services-section__card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0055ff, #00aaff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    margin-bottom: 14px;
    box-shadow: 0 6px 20px rgba(0, 100, 255, 0.35);
}
.services-section__card-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.35;
}
.services-section__card-text {
    font-size: 13.5px;
    color: rgba(180, 210, 255, 0.6);
    line-height: 1.65;
    margin-bottom: 16px;
}
.services-section__card-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 100, 255, 0.12);
    border: 1px solid rgba(0, 120, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b9eff;
    font-size: 14px;
    transition: all 0.3s ease;
}
.services-section__card:hover .services-section__card-link {
    background: linear-gradient(135deg, #0055ff, #00aaff);
    border-color: transparent;
    color: #fff;
    transform: rotate(-45deg);
    box-shadow: 0 4px 16px rgba(0, 100, 255, 0.4);
}
.services-section__cta-wrap {
    text-align: center;
    margin-top: 48px;
}
.services-section__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0055ff, #00aaff);
    color: #fff;
    padding: 15px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0, 100, 255, 0.38);
    transition: all 0.3s ease;
}
.services-section__cta-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 100, 255, 0.5);
}

/* ===================== TESTIMONIALS SECTION ===================== */
.testimonials-section {
    background: #020b18;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 80, 200, 0.12) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    pointer-events: none;
}
.testimonials-section__wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}
.testimonials-section__header {
    text-align: center;
    margin-bottom: 52px;
}
.testimonials-section__title {
    font-size: clamp(20px, 2.4vw, 34px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.testimonials-section__desc {
    font-size: 15px;
    color: rgba(180, 210, 255, 0.6);
    line-height: 1.7;
}
.testimonials-section__slider {
    position: relative;
}
.testimonials-section__track {
    position: relative;
    min-height: 280px;
}
.testimonials-section__slide {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 120, 255, 0.16);
    border-radius: 22px;
    padding: 42px 44px;
    backdrop-filter: blur(12px);
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    height: fit-content;
}
.testimonials-section__slide--active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}
.testimonials-section__quote-mark {
    font-size: 36px;
    color: rgba(0, 140, 255, 0.35);
    margin-bottom: 18px;
}
.testimonials-section__quote {
    font-size: 16.5px;
    line-height: 1.75;
    color: rgba(220, 235, 255, 0.85);
    margin-bottom: 22px;
    font-style: italic;
}
.testimonials-section__stars {
    color: #ffb800;
    font-size: 14px;
    margin-bottom: 22px;
    display: flex;
    gap: 3px;
}
.testimonials-section__author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonials-section__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0055ff, #00aaff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}
.testimonials-section__avatar img{
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
.testimonials-section__author-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}
.testimonials-section__author-role {
    font-size: 13px;
    color: rgba(140, 180, 255, 0.6);
    margin-top: 2px;
}
.testimonials-section__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 32px;
}
.testimonials-section__nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 120, 255, 0.25);
    background: rgba(0, 80, 200, 0.1);
    color: #60b4ff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonials-section__nav-btn:hover {
    background: linear-gradient(135deg, #0055ff, #00aaff);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 100, 255, 0.4);
}
.testimonials-section__dots {
    display: flex;
    gap: 8px;
}
.testimonials-section__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(60, 120, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.testimonials-section__dot--active {
    background: #3b9eff;
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(59, 158, 255, 0.6);
}

/* ===================== INDUSTRIES SECTION ===================== */
.industries-section {
    background: #040f20;
    padding: 30px 0;
}
.industries-section__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.industries-section__header {
    text-align: center;
    margin-bottom: 56px;
}
.industries-section__title {
    font-size: clamp(20px, 2.4vw, 34px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.industries-section__desc {
    font-size: 15px;
    color: rgba(180, 210, 255, 0.65);
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.7;
}
.industries-section__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.industries-section__card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 120, 255, 0.14);
    border-radius: 18px;
    padding: 26px 18px;
    cursor: pointer;
    transition: all 0.35s ease;
    overflow: visible;
}
.industries-section__card:hover {
    border-color: rgba(0, 140, 255, 0.38);
    background: rgba(0, 60, 160, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 60, 200, 0.22);
    z-index: 10;
}
.industries-section__card-front {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}
.industries-section__card-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(0, 100, 255, 0.14);
    border: 1px solid rgba(0, 120, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b9eff;
    font-size: 22px;
    transition: all 0.3s ease;
}
.industries-section__card:hover .industries-section__card-icon {
    background: linear-gradient(135deg, #0055ff, #00aaff);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 100, 255, 0.4);
}
.industries-section__card-title {
    font-size: 14px;
    font-weight: 700;
    color: rgba(200, 225, 255, 0.85);
    line-height: 1.35;
    transition: color 0.3s;
}
.industries-section__card:hover .industries-section__card-title { color: #fff; }
.industries-section__card-arrow {
    color: rgba(60, 140, 255, 0.4);
    font-size: 14px;
    align-self: flex-end;
    transition: all 0.3s ease;
    margin-top: 4px;
}
.industries-section__card:hover .industries-section__card-arrow {
    color: #3b9eff;
    transform: translate(3px, -3px);
}

.industries-section__popup {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 0;
    right: 0;
    background: rgba(5, 18, 50, 0.96);
    border: 1px solid rgba(0, 140, 255, 0.28);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(20px);
    opacity: 0;
    transform: translateY(10px) scale(0.96);
    pointer-events: none;
    transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 20;
    min-width: 240px;
}
.industries-section__card:nth-child(n+6) .industries-section__popup,
.industries-section__card:nth-last-child(-n+5) .industries-section__popup {
    top: calc(100% + 12px);
    bottom: auto;
    transform: translateY(-10px) scale(0.96);
}
.industries-section__card:hover .industries-section__popup {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.industries-section__card:nth-child(n+6):hover .industries-section__popup {
    transform: translateY(0) scale(1);
}
.industries-section__popup-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 120, 255, 0.16);
}
.industries-section__popup-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.industries-section__popup-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(180, 210, 255, 0.75);
    line-height: 1.45;
}
.industries-section__popup-list li i {
    color: #3b9eff;
    font-size: 11px;
    margin-top: 2px;
    flex-shrink: 0;
}
.industries-section__cta-wrap {
    text-align: center;
    margin-top: 48px;
}
.industries-section__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 80, 200, 0.12);
    border: 1px solid rgba(0, 120, 255, 0.28);
    color: #60b4ff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.industries-section__cta-btn:hover {
    background: linear-gradient(135deg, #0055ff, #00aaff);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 32px rgba(0, 100, 255, 0.4);
    transform: translateY(-2px);
}

/* ===================== COMPLIANCE SECTION ===================== */
.compliance-section {
    background: #020b18;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}
.compliance-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 80, 200, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 80, 200, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}
.compliance-section__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.compliance-section__header {
    text-align: center;
    margin-bottom: 52px;
}
.compliance-section__title {
    font-size: clamp(20px, 2.4vw, 34px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.compliance-section__desc {
    font-size: 15px;
    color: rgba(180, 210, 255, 0.6);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.7;
}
.compliance-section__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.compliance-section__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 120, 255, 0.12);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.32s ease;
    cursor: default;
}
.compliance-section__item:hover {
    border-color: rgba(0, 140, 255, 0.3);
    background: rgba(0, 60, 160, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 60, 200, 0.18);
}
.compliance-section__item-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: rgba(0, 100, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b9eff;
    font-size: 18px;
    transition: all 0.3s;
}
.compliance-section__item:hover .compliance-section__item-icon {
    background: linear-gradient(135deg, #0055ff, #00aaff);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 100, 255, 0.38);
}
.compliance-section__item span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(180, 210, 255, 0.65);
    line-height: 1.45;
    transition: color 0.3s;
}
.compliance-section__item:hover span { color: rgba(200, 230, 255, 0.88); }

/* ===================== WHY SECTION ===================== */
.why-section {
    background: #040f20;
    padding: 30px 0;
}
.why-section__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.why-section__header {
    text-align: center;
    margin-bottom: 56px;
}
.why-section__title {
    font-size: clamp(20px, 2.4vw, 34px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.why-section__desc {
    font-size: 15px;
    color: rgba(180, 210, 255, 0.6);
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.7;
}
.why-section__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.why-section__card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 120, 255, 0.12);
    border-radius: 18px;
    padding: 26px 22px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.why-section__card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 80, 220, 0.06), transparent);
    opacity: 0;
    transition: opacity 0.35s;
}
.why-section__card:hover {
    border-color: rgba(0, 140, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(0, 60, 200, 0.2);
}
.why-section__card:hover::after { opacity: 1; }
.why-section__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(0, 100, 255, 0.14);
    border: 1px solid rgba(0, 120, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b9eff;
    font-size: 20px;
    margin-bottom: 16px;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}
.why-section__card:hover .why-section__card-icon {
    background: linear-gradient(135deg, #0055ff, #00aaff);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 100, 255, 0.4);
}
.why-section__card-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.35;
    position: relative;
    z-index: 1;
}
.why-section__card-text {
    font-size: 13px;
    color: rgba(160, 200, 255, 0.6);
    line-height: 1.65;
    position: relative;
    z-index: 1;
}
.why-section__cta-wrap {
    text-align: center;
    margin-top: 52px;
}
.why-section__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0055ff, #00aaff);
    color: #fff;
    padding: 15px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0, 100, 255, 0.38);
    transition: all 0.3s ease;
}
.why-section__cta-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 100, 255, 0.5);
}

/* ===================== TECH SECTION ===================== */
.tech-section {
    background: #020b18;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}
.tech-section::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 60, 200, 0.1) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    pointer-events: none;
}
.tech-section__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.tech-section__header {
    text-align: center;
    margin-bottom: 56px;
}
.tech-section__title {
    font-size: clamp(20px, 2.4vw, 34px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.tech-section__desc {
    font-size: 15px;
    color: rgba(180, 210, 255, 0.6);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}
.tech-section__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.tech-section__cat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 120, 255, 0.14);
    border-radius: 18px;
    padding: 26px 22px;
    transition: all 0.35s ease;
}
.tech-section__cat:hover {
    border-color: rgba(0, 140, 255, 0.28);
    background: rgba(0, 50, 150, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 14px 42px rgba(0, 60, 200, 0.2);
}
.tech-section__cat-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: rgba(0, 100, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b9eff;
    font-size: 20px;
    margin-bottom: 14px;
    transition: all 0.3s;
}
.tech-section__cat:hover .tech-section__cat-icon {
    background: linear-gradient(135deg, #0055ff, #00aaff);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 100, 255, 0.38);
}
.tech-section__cat-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}
.tech-section__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.tech-section__tag {
    background: rgba(0, 80, 200, 0.12);
    border: 1px solid rgba(0, 120, 255, 0.2);
    border-radius: 50px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(140, 190, 255, 0.8);
    transition: all 0.3s;
}
.tech-section__cat:hover .tech-section__tag {
    border-color: rgba(0, 140, 255, 0.32);
    color: #90c8ff;
}

/* ===================== PROCESS SECTION ===================== */
.process-section {
    background: #040f20;
    padding: 30px 0;
}
.process-section__wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}
.process-section__header {
    text-align: center;
    margin-bottom: 60px;
}
.process-section__title {
    font-size: clamp(20px, 2.4vw, 34px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.process-section__desc {
    font-size: 15px;
    color: rgba(180, 210, 255, 0.6);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}
.process-section__timeline {
    position: relative;
    display: grid;
    grid-template-columns: 4px 1fr;
    gap: 0 36px;
}
.process-section__line-wrap {
    position: relative;
}
.process-section__line-track {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 4px;
    background: rgba(0, 80, 180, 0.18);
    border-radius: 2px;
    overflow: hidden;
}
.process-section__line-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, #0055ff, #00ccff);
    border-radius: 2px;
    transition: height 0.8s ease;
    box-shadow: 0 0 16px rgba(0, 140, 255, 0.6);
}
.process-section__steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.process-section__step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 20px;
    align-items: flex-start;
    padding: 0 0 40px;
    position: relative;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.process-section__step.visible {
    opacity: 1;
    transform: translateX(0);
}
.process-section__node {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 60, 160, 0.3);
    border: 2px solid rgba(0, 120, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: -26px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}
.process-section__node span {
    font-size: 14px;
    font-weight: 800;
    color: rgba(100, 160, 255, 0.7);
    transition: color 0.4s;
}
.process-section__step.visible .process-section__node {
    background: linear-gradient(135deg, #0044dd, #0099ff);
    border-color: transparent;
    box-shadow: 0 0 0 4px rgba(0, 100, 255, 0.18), 0 8px 24px rgba(0, 100, 255, 0.38);
}
.process-section__step.visible .process-section__node span { color: #fff; }
.process-section__content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 120, 255, 0.14);
    border-radius: 16px;
    padding: 22px 26px;
    transition: all 0.35s ease;
    margin-top: 0;
    backdrop-filter: blur(10px);
}
.process-section__step.visible .process-section__content {
    border-color: rgba(0, 140, 255, 0.24);
    background: rgba(0, 50, 150, 0.08);
    box-shadow: 0 10px 32px rgba(0, 50, 180, 0.15);
}
.process-section__step-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}
.process-section__step-desc {
    font-size: 14px;
    color: rgba(160, 200, 255, 0.6);
    line-height: 1.65;
    margin: 0;
}

/* ===================== FAQ SECTION ===================== */
.faq-section {
    background: #020b18;
    padding: 30px 0 100px;
}
.faq-section__wrapper {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}
.faq-section__header {
    text-align: center;
    margin-bottom: 52px;
}
.faq-section__title {
    font-size: clamp(20px, 2.4vw, 34px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}
.faq-section__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-section__item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 120, 255, 0.14);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.faq-section__item.open {
    border-color: rgba(0, 140, 255, 0.3);
    background: rgba(0, 50, 150, 0.07);
}
.faq-section__question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}
.faq-section__question:hover { background: rgba(0, 80, 200, 0.06); }
.faq-section__question-text {
    font-size: 16px;
    font-weight: 600;
    color: rgba(210, 230, 255, 0.9);
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s;
}
.faq-section__item.open .faq-section__question-text { color: #fff; }
.faq-section__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 80, 200, 0.12);
    border: 1px solid rgba(0, 120, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b9eff;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.35s ease;
}
.faq-section__item.open .faq-section__icon {
    background: linear-gradient(135deg, #0055ff, #00aaff);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 100, 255, 0.4);
    transform: rotate(45deg);
}
.faq-section__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 26px;
}
.faq-section__answer p {
    font-size: 15px;
    color: rgba(160, 200, 255, 0.65);
    line-height: 1.75;
    padding-bottom: 22px;
    margin: 0;
}
.faq-section__item.open .faq-section__answer {
    max-height: 400px;
}

/* ===================== SCROLL ANIMATION UTILITY ===================== */
.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
    .stats-section__grid { grid-template-columns: repeat(4, 1fr); }
    .services-section__grid { grid-template-columns: repeat(2, 1fr); }
    .industries-section__grid { grid-template-columns: repeat(3, 1fr); }
    .compliance-section__grid { grid-template-columns: repeat(3, 1fr); }
    .why-section__grid { grid-template-columns: repeat(3, 1fr); }
    .tech-section__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .hero-section__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-section__visual { display: none; }
    .benefits-section__layout {
        grid-template-columns: 1fr;
    }
    .benefits-section__steps-col {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    .benefits-section__step-line { display: none; }
    .benefits-section__step { padding: 8px 12px; }
    .stats-section__grid { grid-template-columns: repeat(2, 1fr); }
    .industries-section__grid { grid-template-columns: repeat(2, 1fr); }
    .compliance-section__grid { grid-template-columns: repeat(2, 1fr); }
    .why-section__grid { grid-template-columns: repeat(2, 1fr); }
    .tech-section__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .hero-section { padding: 60px 0 40px; }
    .hero-section__title { font-size: 28px; }
    .stats-section__grid { grid-template-columns: repeat(2, 1fr); }
    .services-section__grid { grid-template-columns: 1fr; }
    .industries-section__grid { grid-template-columns: repeat(2, 1fr); }
    .compliance-section__grid { grid-template-columns: repeat(2, 1fr); }
    .why-section__grid { grid-template-columns: 1fr; }
    .tech-section__grid { grid-template-columns: repeat(2, 1fr); }
    .hero-section__cta-group { flex-direction: column; }
    .hero-section__btn { justify-content: center; }
    .testimonials-section__slide { padding: 26px 22px; }
    .process-section__timeline { grid-template-columns: 3px 1fr; gap: 0 22px; }
    .process-section__node { width: 40px; height: 40px; margin-left: -20px; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-section__orb,
    .hero-section__pill,
    .hero-section__floating-card,
    .hero-section__badge-dot { animation: none; }
    .anim-fade-up,
    .process-section__step { transition: none; }
}