:root {
    --purple-100: #6f1170;
    --purple-200: #7a1a84;
    --accent: #d7ff00;
    --white: #ffffff;
    --bg: #f5f6f8;
    --card-radius: 16px;
    --container: 1180px;
    --gap: 20px;
    --nav-height: 64px;
    --text: #0f1720;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

/* Header / hero / modal / form (same as before) */
.header-top {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 36px);
    max-width: var(--container);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    padding: 6px 8px;
    background: linear-gradient(180deg, #fff, #f1f1f4);
    color: #111;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 15, 20, 0.08);
    z-index: 9999;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.brand {
    font-weight: 900;
    font-size: clamp(16px, 2.2vw, 22px);
    padding: 6px 12px;
    border-radius: 10px;
    margin-left: 6px;
    color: var(--purple-200);
    background: linear-gradient(90deg, rgba(122, 26, 132, 0.06), rgba(111, 17, 112, 0.04));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
    letter-spacing: -0.02em;
}

.lang-switch {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-right: 6px;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 6px 8px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 13px;
    color: #222;
    transition: background .15s, box-shadow .15s;
}

.lang-btn[aria-pressed="true"] {
    background: #fff;
    color: var(--purple-100);
    box-shadow: 0 6px 18px rgba(111, 17, 112, 0.09);
}

.main-nav {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.main-nav a {
    color: #222;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    /* make button visually like links */
    cursor: pointer;
}

.main-nav a:hover,
.main-nav a:focus,
.nav-link:focus {
    background: rgba(122, 26, 132, 0.06);
    color: var(--purple-200);
    transform: translateY(-2px);
    outline: none;
}

.main-nav a:active,
.main-nav a:focus,
.main-nav a:focus-visible {
    background: transparent;
    color: #222;
    transform: none;
    outline: none;
    box-shadow: none;
}




.nav-dropdown-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1px;
    vertical-align: middle;
}

.nav-dropdown-wrap .nav-link {
    font-weight: 700;
    text-decoration: none;
    color: #222;
    padding: 6px 8px 6px 6px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.services-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 6px;
    border-radius: 10px;
    border: 1px solid rgba(16, 24, 40, 0.04);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 255, 0.98));
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease, background .12s;
    color: var(--purple-200);
}

.services-toggle {
    box-shadow: -6px 0 10px rgba(122, 26, 132, 0.02);
}

.services-toggle:hover {
    transform: translateY(-2px);
    background: #fff;
}

.services-toggle:focus {
    outline: 3px solid rgba(215, 255, 0, 0.14);
    outline-offset: 2px;
}

.services-caret {
    display: block;
    color: var(--purple-200);
    transition: transform .18s cubic-bezier(.2, .9, .3, 1);
}

.nav-dropdown-wrap.open .services-caret {
    transform: rotate(180deg);
}

.nav-dropdown-wrap .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 140px;
    padding: 8px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(30, 32, 60, 0.08);
    border: 1px solid rgba(16, 24, 40, 0.04);
    display: none;
    opacity: 0;
    pointer-events: auto;
    transition: opacity .14s ease, transform .18s cubic-bezier(.2, .9, .3, 1);
    z-index: 1200;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.nav-dropdown-wrap.open .dropdown-menu {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 14px;
    font-weight: 800;
    font-size: 14px;
    color: #111;
    text-decoration: none;
    border-radius: 8px;
    white-space: nowrap;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(122, 26, 132, 0.06);
    color: var(--purple-200);
    transform: translateX(4px);
    outline: none;
}

@media (max-width: 800px) {
    .nav-dropdown-wrap {
        gap: 6px;
    }

    .nav-dropdown-wrap .dropdown-menu {
        left: 12px;
        right: 12px;
        transform: none;
        min-width: auto;
    }
}


.mobile-item {
    display: block;
    text-decoration: none;
    color: #111827;
    font-weight: 800;
    padding: 14px 12px;
    border-radius: 10px;
    text-align: left;
    font-size: 18px;
    transition: background .12s ease, transform .08s ease, color .12s ease;
}

.mobile-item:hover {
    background: rgba(122, 26, 132, 0.06);
    color: var(--purple-200);
    transform: translateX(4px);
}

.mobile-item:active,
.mobile-item:focus,
.mobile-item:focus-visible {
    background: transparent;
    color: #111827;
    transform: none;
    outline: none;
    box-shadow: none;
}

.btn {
    border-radius: 40px;
    padding: 10px 22px;
    font-weight: 800;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    background: transparent;
    color: #fff;
    transition: transform .12s, box-shadow .12s, opacity .12s, background .12s;
}

.btn:active,
.btn:focus,
.btn:focus-visible {
    transform: none;
    outline: none;
    box-shadow: none;
}

.btn.primary {
    background: var(--accent);
    color: #0b0b0b;
    border: none;
}

.btn.ghost {
    color: #fff;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.06);
}

.actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.bxl--telegram {
    width: 24px;
    height: 24px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='m20.665 3.717l-17.73 6.837c-1.21.486-1.203 1.161-.222 1.462l4.552 1.42l10.532-6.645c.498-.303.953-.14.579.192l-8.533 7.701h-.002l.002.001l-.314 4.692c.46 0 .663-.211.921-.46l2.211-2.15l4.599 3.397c.848.467 1.457.227 1.668-.785l3.019-14.228c.309-1.239-.473-1.8-1.282-1.434'/%3E%3C/svg%3E");
}

.actions .phone {
    color: #111;
    text-decoration: none;
    font-weight: 800;
}

.header-hero {
    min-height: 72vh;
    background: linear-gradient(180deg, rgba(111, 17, 112, 0.95), rgba(122, 26, 132, 0.92));
    color: var(--white);
    padding-top: calc(var(--nav-height) + 40px);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 40px 20px;
}

.hero-left {
    flex: 1;
    min-width: 260px;
    position: relative;
    z-index: 5;
}

#heroTitle {
    margin: 0 0 12px 0;
    font-weight: 900;
    line-height: 1.02;
    color: #fff;
    font-size: clamp(26px, 5.5vw, 44px);
}

.lead {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 680px;
    font-size: clamp(14px, 2.2vw, 18px);
}

.hero-buttons {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-right {
    width: 360px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.team-placeholder {
    width: 320px;
    height: 320px;
    border-radius: 12px;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: auto;
    user-select: none;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 20, 0.45);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 10000;
}

.overlay.open {
    display: flex;
}

.modal {
    width: min(680px, 96vw);
    background: #fff;
    border-radius: 18px;
    padding: 34px 36px;
    box-shadow: 0 24px 60px rgba(15, 15, 20, 0.18);
    position: relative;
    z-index: 10001;
    text-align: center;
}

.modal h2 {
    margin: 0 0 8px 0;
    font-size: 22px;
    color: var(--purple-200);
}

.modal p {
    margin: 0 0 20px;
    color: #666;
}

.close-btn {
    position: absolute;
    right: 18px;
    top: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
}

.close-btn:before {
    content: '✕';
    font-size: 18px;
    color: var(--purple-200);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

.input {
    height: 46px;
    padding: 10px 14px;
    border-radius: 28px;
    border: 1px solid #ddd;
    font-size: 15px;
    width: 100%;
    background: #fff;
}

.phone-wrap {
    position: relative;
    display: block;
}

.phone-local {
    padding: 10px 14px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #e6e6ea;
    width: 100%;
    box-sizing: border-box;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
    padding: 12px 28px;
    border-radius: 40px;
    background: linear-gradient(90deg, var(--purple-200), var(--purple-100));
    color: #fff;
    font-weight: 800;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: transform .12s, box-shadow .12s, opacity .12s;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.submit-btn .spinner {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-left-color: transparent;
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.submit-btn.success {
    box-shadow: 0 8px 30px rgba(46, 59, 214, 0.15);
    transform: translateY(-2px);
}

.hint {
    font-size: 13px;
    color: #999;
    margin-top: 6px;
    text-align: left;
}

.toast {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 28px;
    background: var(--purple-200);
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    display: none;
    z-index: 10001;
}

.toast.show {
    display: block;
}

.input:focus,
.submit-btn:focus,
.close-btn:focus,
button:focus,
a:focus {
    outline: 3px solid rgba(215, 255, 0, 0.34);
    outline-offset: 3px;
}

.iti {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.iti__flag-container {
    position: absolute;
    left: 25px;
    top: 60%;
    transform: translateY(-50%);
    height: 28px;
    width: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    z-index: 3;
    pointer-events: auto;
}

.iti__flag-container .iti__arrow,
.iti__flag-container .iti__selected-flag .iti__arrow {
    display: none !important;
}

.iti__flag-container::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #111;
    pointer-events: auto;
}

.iti__selected-flag {
    height: 24px;
    width: 32px;
    display: inline-block;
}

.iti__flag-container::after,
.iti__flag-container .iti__arrow,
.iti__flag-container .iti__selected-flag .iti__arrow {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
}

.iti__flag-container {
    padding: 0 6px 0 10px !important;
    min-width: 60px;
}

.iti input,
.iti .phone-local {
    padding-left: 56px !important;
}

.iti .iti__selected-flag .iti__arrow,
.iti .iti__flag-container .iti__arrow {
    display: none !important;
}

.iti__flag-container svg,
.iti__flag-container img[role="presentation"]+svg {
    display: none !important;
}


.iti__country-list {
    max-height: 300px;
    overflow: auto;
    z-index: 30000;
}

.iti .phone-local,
.iti input {
    padding-left: 66px;
}

.iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 6px;
    font-weight: 700;
}

.iti input {
    height: 46px;
    padding: 10px 14px;
    border-radius: 28px;
    border: 1px solid #ddd;
    width: 100%;
    box-sizing: border-box;
}

.submit-btn.success {
    background: linear-gradient(90deg, #27d28a 0%, #10b981 100%) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 14px 48px rgba(16, 185, 129, 0.18);
    transform: translateY(-2px);
    transition: background .18s ease, box-shadow .18s ease, transform .12s;
}

.submit-btn.success .check {
    stroke: #fff !important;
    display: inline-block !important;
}

.submit-btn.success .spinner {
    display: none !important;
}

.submit-btn.success {
    box-shadow: 0 14px 48px rgba(16, 185, 129, 0.18) !important;
}

.submit-btn {
    transition: background .22s cubic-bezier(.2, .9, .3, 1), box-shadow .22s, transform .12s;
}

.btn:focus {
    box-shadow: 0 6px 18px rgba(111, 17, 112, 0.12), 0 0 0 4px rgba(215, 255, 0, 0.12);
    outline: none;
}

@media (max-width:1100px) {
    .main-nav {
        display: none;
    }

    .hero-right {
        width: 240px;
    }

    .team-placeholder {
        width: 220px;
        height: 220px;
    }

    .header-top {
        width: calc(100% - 28px);
        top: 12px;
    }

    .header-hero {
        padding-top: calc(var(--nav-height) + 28px);
    }
}

@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        min-width: 0;
        padding: 14px 18px;
        font-size: 16px;
    }

    .hero-right {
        margin-top: 12px;
    }
}

@media (max-width:520px) {
    .brand {
        font-size: 16px;
        padding: 6px 10px;
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 18px;
    }

    .hero-right {
        width: 160px;
        align-self: center;
    }

    .team-placeholder {
        width: 140px;
        height: 140px;
    }

    .header-top {
        height: 56px;
        top: 10px;
        padding: 8px 12px;
        border-radius: 10px;
    }

    #heroTitle {
        font-size: clamp(20px, 10vw, 28px);
    }

    .lead {
        font-size: 14px;
    }

    .actions .phone {
        padding: 6px 10px;
        font-size: 14px;
    }

    .modal {
        padding: 20px;
    }

    .modal h2 {
        font-size: 20px;
    }
}

.about-inner,
.reasons-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 28px 20px;
    position: relative;
    z-index: 1;
}

.about-block {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 254, 0.995));
    border-radius: 18px;
    padding: 44px 36px;
    box-shadow: 0 18px 60px rgba(15, 15, 20, 0.06);
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: center;
    overflow: visible;
}

.about-block::after {
    content: "";
    width: 320px;
    height: 320px;
    position: absolute;
    right: 36px;
    top: 12px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(122, 26, 132, 0.12), rgba(111, 17, 112, 0.04) 45%, transparent 60%);
    filter: blur(18px);
    z-index: 0;
    pointer-events: auto;
}

.about-inner>* {
    position: relative;
    z-index: 2;
}

.about-title {
    font-weight: 900;
    font-size: clamp(28px, 4.4vw, 40px);
    color: var(--purple-200);
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
}

.about-lines {
    width: 98px;
    height: 8px;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--purple-200), var(--purple-100));
    transform: skewX(-12deg);
    margin: 12px 0 18px;
    box-shadow: 0 6px 20px rgba(122, 26, 132, 0.06);
}

.about-text {
    font-size: clamp(15px, 1.9vw, 17px);
    color: var(--text);
    line-height: 1.75;
    font-weight: 600;
    max-width: 62ch;
    margin: 0;
}

@media (max-width: 900px) {
    .about-block {
        grid-template-columns: 1fr;
        padding: 28px 18px;
        border-radius: 14px;
    }

    .about-block::after {
        width: 180px;
        height: 180px;
        right: 16px;
        top: -10px;
        opacity: 0.45;
        filter: blur(14px);
    }
}

.reasons-section {
    background: transparent;
    padding: 64px 0 96px;
    color: #111;
    position: relative;
}

#reasonsTitle {
    text-align: center;
    color: #111;
    font-weight: 800;
    font-size: clamp(22px, 2.6vw, 28px);
    letter-spacing: 0.06em;
    margin: 0 0 28px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 24px;
    align-items: stretch;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
}

.reasons-grid .reason {
    position: relative;
    padding: 22px 22px 22px 26px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(16, 24, 40, 0.06);
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06);
    transition: transform .16s ease, box-shadow .16s ease;
    overflow: visible;
}

.reasons-grid .reason::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 14px;
    bottom: 14px;
    width: 8px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.04);
    transition: transform .18s ease, box-shadow .18s ease;
}

.reasons-grid .reason::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
}

.reasons-grid .reason h3 {
    margin: 0 0 10px 0;
    font-weight: 800;
    font-size: clamp(18px, 2.2vw, 22px);
    color: #111;
}

.reasons-grid .reason p {
    margin: 0;
    font-size: 15px;
    color: rgba(17, 24, 39, 0.8);
    line-height: 1.6;
    font-weight: 600;
}

.reasons-grid .reason:hover,
.reasons-grid .reason:focus-within,
.reasons-grid .reason.in-view {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(8, 10, 30, 0.06);
}

.reasons-grid .reason:nth-child(1)::before {
    background: linear-gradient(180deg, rgba(122, 230, 214, 0.9), rgba(74, 198, 175, 0.85));
}

.reasons-grid .reason:nth-child(1)::after {
    background: rgba(74, 198, 175, 0.9);
    box-shadow: 0 6px 20px rgba(74, 198, 175, 0.08);
}

.reasons-grid .reason:nth-child(2)::before {
    background: linear-gradient(180deg, rgba(255, 220, 150, 0.95), rgba(255, 185, 90, 0.88));
}

.reasons-grid .reason:nth-child(2)::after {
    background: rgba(255, 185, 90, 0.95);
    box-shadow: 0 6px 20px rgba(255, 185, 90, 0.08);
}

.reasons-grid .reason:nth-child(3)::before {
    background: linear-gradient(180deg, rgba(200, 190, 255, 0.95), rgba(160, 130, 255, 0.9));
}

.reasons-grid .reason:nth-child(3)::after {
    background: rgba(160, 130, 255, 0.95);
    box-shadow: 0 6px 20px rgba(160, 130, 255, 0.08);
}

.reasons-grid .reason:nth-child(4)::before {
    background: linear-gradient(180deg, rgba(255, 170, 190, 0.95), rgba(255, 120, 150, 0.9));
}

.reasons-grid .reason:nth-child(4)::after {
    background: rgba(255, 120, 150, 0.95);
    box-shadow: 0 6px 20px rgba(255, 120, 150, 0.08);
}

@media (max-width: 900px) {
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 12px;
    }

    .reasons-grid .reason::before {
        left: 12px;
        top: 12px;
        bottom: 12px;
        width: 6px;
    }

    .reasons-grid .reason {
        padding-left: 22px;
    }
}

.reasons-wrap-alt {
    padding: 48px 0 72px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbff 100%);
}

.reasons-inner-alt {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.reasons-heading-alt {
    text-align: center;
    font-size: clamp(34px, 6vw, 56px);
    color: #2e33d6;
    font-weight: 900;
    margin: 8px 0 28px;
    position: relative;
}

.reasons-cards-alt {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 28px 36px;
    align-items: stretch;
}

.reason-card-alt {
    display: block;
    padding: 22px 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, #5b45e6 0%, #9a57d9 100%);
    color: #fff;
    box-shadow: 0 12px 40px rgba(80, 60, 160, 0.12);
    min-height: 160px;
    position: relative;
    overflow: visible;
}

.reason-card-alt {
    padding-left: 96px;
}

.reason-card-alt .icon-alt {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(15, 18, 40, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.reason-card-alt .icon-alt svg {
    width: 36px;
    height: 36px;
    display: block;
}

.reason-card-alt:nth-child(1) .icon-alt {
    background: linear-gradient(135deg, rgba(107, 200, 190, 0.12), rgba(74, 198, 175, 0.06));
}

.reason-card-alt:nth-child(2) .icon-alt {
    background: linear-gradient(135deg, rgba(255, 220, 150, 0.10), rgba(255, 185, 90, 0.06));
}

.reason-card-alt:nth-child(3) .icon-alt {
    background: linear-gradient(135deg, rgba(200, 180, 255, 0.10), rgba(160, 130, 255, 0.06));
}

.reason-card-alt:nth-child(4) .icon-alt {
    background: linear-gradient(135deg, rgba(200, 180, 255, 0.10), rgba(160, 130, 255, 0.06));
}


.reason-body-alt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.reason-title-alt {
    margin: 0 0 12px 0;
    font-size: clamp(18px, 2.4vw, 24px);
    line-height: 1.05;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.98);
}

.reason-text-alt {
    margin: 0;
    font-size: clamp(14px, 1.9vw, 15px);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 600;
    max-width: 68ch;
}

@media (max-width: 1000px) {
    .reasons-cards-alt {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .reason-card-alt {
        padding: 18px;
        border-radius: 18px;
        min-height: auto;
    }

    .reason-card-alt {
        padding-left: 82px;
    }

    .reason-card-alt .icon-alt {
        left: 16px;
        width: 56px;
        height: 56px;
    }

    .reason-card-alt .icon-alt svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 640px) {
    .reason-card-alt {
        padding-left: 78px;
    }

    .reason-card-alt .icon-alt {
        left: 12px;
        width: 52px;
        height: 52px;
    }

    .reason-card-alt .icon-alt svg {
        width: 28px;
        height: 28px;
    }
}

.visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: -1px;
}

.pricing-section {
    padding: 64px 20px;
    background: linear-gradient(180deg, rgba(250, 250, 255, 0.6), rgba(245, 246, 250, 0.6));
}

.pricing-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-heading {
    text-align: center;
    font-size: clamp(20px, 2.8vw, 28px);
    color: var(--purple-200);
    font-weight: 900;
    margin: 0 0 28px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    border-radius: 20px;
    padding: 22px;
    background: linear-gradient(180deg, #ffffff, #fbfbff);
    box-shadow: 0 18px 40px rgba(30, 32, 60, 0.06);
    border: 1px solid rgba(16, 24, 40, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: visible;
}

.pricing-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 6px;
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background: linear-gradient(90deg, rgba(122, 26, 132, 0.95), rgba(111, 17, 112, 0.85));
}

.pricing-card-head {
    margin-bottom: 12px;
}

.pricing-name {
    font-size: clamp(16px, 1.8vw, 18px);
    margin: 0 0 8px 0;
    font-weight: 800;
    color: #111;
}

.pricing-price {
    font-size: 20px;
    color: var(--purple-200);
    font-weight: 900;
}

.pricing-body {
    margin: 12px 0;
    color: rgba(17, 24, 39, 0.9);
    font-weight: 600;
    line-height: 1.6;
}

.pricing-body ul {
    margin: 0;
    padding-left: 20px;
    list-style: none;
}

.pricing-body ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(17, 24, 39, 0.86);
}

.pricing-body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: linear-gradient(180deg, rgba(122, 26, 132, 0.95), rgba(111, 17, 112, 0.85));
    box-shadow: 0 6px 10px rgba(122, 26, 132, 0.08);
}

.pricing-foot {
    margin-top: 12px;
    display: flex;
    justify-content: center;
}

.pricing-cta {
    width: 100%;
    border-radius: 40px;
    padding: 12px 18px;
    font-weight: 900;
    font-size: 14px;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(30, 32, 60, 0.08);
}

@media (max-width: 1000px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .pricing-price {
        font-size: 18px;
    }

    .pricing-heading {
        font-size: 20px;
    }
}

.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown .nav-link {
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 700;
    color: #222;
    padding: 6px 10px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
}

.nav-dropdown .nav-link:focus {
    outline: none;
    box-shadow: 0 6px 18px rgba(111, 17, 112, 0.06);
}

.nav-dropdown .caret {
    font-size: 12px;
    color: rgba(34, 34, 34, 0.8);
    transform: translateY(1px);
    transition: transform .18s ease;
    margin-right: 8px;
}

.nav-dropdown.open .caret {
    transform: rotate(180deg) translateY(0);
}

.dropdown-menu {
    /* position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 12px);
    min-width: 180px;
    background: #fff;
    border-radius: 12px;
    padding: 8px 10px;
    box-shadow: 0 18px 40px rgba(30, 32, 60, 0.08);
    border: 1px solid rgba(16, 24, 40, 0.04);
    display: none;
    z-index: 1200;
    text-align: left;

    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    list-style: none; */
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 160px;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 18px 40px rgba(30, 32, 60, 0.08);
    border: 1px solid rgba(16, 24, 40, 0.04);
    z-index: 1200;
    flex-direction: column;
    /* ensure one-per-row */
    gap: 6px;
    text-align: left;
}


.dropdown-menu::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -8px;
    width: 14px;
    height: 14px;
    background: #fff;
    transform-origin: center;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: 0 4px 10px rgba(30, 32, 60, 0.06);
}

.dropdown-item {
    /* display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    font-weight: 700;
    color: var(--purple-200);
    text-decoration: none;
    border-radius: 8px;
    margin: 4px 4px;
    transition: background .12s, color .12s, transform .12s;
    font-size: 15px; */
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    color: #111;
    white-space: nowrap;

}

.dropdown-item:hover,
.dropdown-item:focus {
    background: linear-gradient(90deg, rgba(122, 26, 132, 0.06), rgba(111, 17, 112, 0.04));
    color: var(--purple-100);
    transform: translateX(4px);
    outline: none;
}

.nav-dropdown.open .dropdown-menu {
    display: flex;
}

@media (max-width: 800px) {
    .nav-dropdown .dropdown-menu {
        left: 8px;
        right: 8px;
        min-width: auto;
    }

    .dropdown-menu {
        left: 12px;
        transform: none;
        right: 12px;
        min-width: auto;
    }

    .dropdown-menu::before {
        left: 28px;
        transform: rotate(45deg);
    }
}

/*==========================
        RESULTS
==========================*/

/* .results-section {
    padding: 70px 20px;
    background: #f5f6f8;
}

.results-inner {
    max-width: 1180px;
    margin: auto;
}

.results-header {
    text-align: center;
    margin-bottom: 18px;
}

.results-heading {
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 900;
    color: var(--purple-200);
    margin-bottom: 18px;
}

.results-subtitle {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 20px;
}

.cases-grid {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;

}

.case-card {

    background: #fff;

    border-radius: 28px;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);

    transition: .35s;

    border: 1px solid rgba(122, 26, 132, .08);

}

.case-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 30px 60px rgba(122, 26, 132, .18);

    border-color: rgba(122, 26, 132, .25);

}

.case-image {

    height: 280px;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(circle at top left, #8b3dff, #6f1170 55%, #571060);

}

.case-image::before {

    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    right: -170px;
    top: -210px;

    background: rgba(255, 255, 255, .07);

}

.case-image::after {

    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    left: -110px;
    bottom: -180px;

    background: rgba(255, 255, 255, .05);

}

.case-result {

    position: absolute;

    left: 28px;

    bottom: 24px;

    z-index: 3;

    color: #fff;

}

.case-result span {

    display: block;

    font-size: 14px;

    opacity: .8;

}

.case-result strong {

    font-size: 44px;

    font-weight: 900;

}

.case-content {

    padding: 28px;

}

.case-content h3 {

    height: 28px;

    margin: 0;

}

.case-content p {

    height: 48px;

    margin: 15px 0 28px;

}

.case-bottom {

    display: flex;

    gap: 14px;

    flex-wrap: wrap;

}

.case-btn.primary {

    border: none;

    background: var(--accent);

    color: #111;

    font-weight: 800;

    border-radius: 50px;

    padding: 14px 24px;

    transition: .25s;

}

.case-btn.primary:hover {

    transform: translateY(-2px);

    box-shadow: 0 15px 30px rgba(215, 255, 0, .35);

}

.case-btn.ghost {

    border-radius: 50px;

    padding: 14px 22px;

    border: 2px solid rgba(122, 26, 132, .15);

    color: var(--purple-200);

    background: #fff;

    font-weight: 800;

    transition: .25s;

}

.case-btn.ghost:hover {

    background: var(--purple-200);

    color: #fff;

}

.results-footer {

    margin-top: 55px;

    display: flex;

    justify-content: center;

}

.all-cases-btn {

    background: linear-gradient(90deg,
            var(--purple-100),
            var(--purple-200));

    color: #fff;

    font-size: 17px;

    font-weight: 800;

    border: none;

    padding: 18px 42px;

    border-radius: 60px;

    cursor: pointer;

    transition: .3s;

}

.all-cases-btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 20px 40px rgba(122, 26, 132, .25);

}

@media(max-width:900px) {

    .cases-grid {

        grid-template-columns: 1fr;

    }

}

@media(max-width:700px) {

    .results-section {

        padding: 80px 16px;

    }

    .case-image {

        height: 220px;

    }

    .case-bottom {

        flex-direction: column;

    }

    .case-btn {

        width: 100%;

    }

    .all-cases-btn {

        width: 100%;

    }

} */

/*==========================
    RESULTS SECTION
==========================*/

.results-section {
    background: #060606;
    padding: 110px 20px;
}

.results-inner {
    max-width: 1200px;
    margin: auto;
}

.results-header {
    text-align: center;
    margin-bottom: 55px;
}

.results-heading {
    color: #fff;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    margin: 0;
    letter-spacing: -.03em;
}

.results-subtitle {
    margin-top: 18px;
    color: rgba(255, 255, 255, .55);
    font-size: 18px;
    line-height: 1.7;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.case-card {
    overflow: hidden;
    border-radius: 28px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, .06);
    transition: .35s;
    position: relative;
}

.case-card:hover {
    transform: translateY(-8px);
    border-color: rgba(122, 26, 132, .5);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .45);
}

.case-image {
    height: 310px;
    position: relative;

    background:
        linear-gradient(rgba(0, 0, 0, .05), rgba(0, 0, 0, .65)),
        radial-gradient(circle at top, #5d2cff 0%, #171717 65%);
}

.case-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .18), transparent 35%),
        radial-gradient(circle at 80% 60%, rgba(255, 255, 255, .08), transparent 30%);
}

.case-result {

    position: absolute;
    left: 26px;
    bottom: 24px;
    z-index: 2;

    color: #fff;

    display: flex;
    flex-direction: column;
    gap: 5px;
}

.case-result span {

    font-size: 14px;
    color: rgba(255, 255, 255, .7);

}

.case-result strong {

    font-size: 42px;
    font-weight: 900;

}

.case-content {

    padding: 28px;

    min-height: 170px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

}

.case-content h3 {

    margin: 0;
    height: 28px;

}

.case-content p {

    margin: 14px 0 30px;
    height: 50px;

}

.case-bottom {

    display: flex;
    align-items: center;
    gap: 14px;

}

.case-btn {

    height: 48px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 800;
    transition: .3s;
    font-size: 15px;

}

.case-btn.primary {

    border: none;

    color: #111;

    padding: 0 24px;

    background: var(--accent);

}

.case-btn.primary:hover {

    transform: translateY(-2px);

}

.case-btn.ghost {

    background: transparent;

    color: #fff;

    border: 1px solid rgba(255, 255, 255, .15);

    padding: 0 22px;

}

.case-btn.ghost:hover {

    background: #fff;
    color: #111;

}

.results-footer {

    display: flex;
    justify-content: center;

    margin-top: 55px;

}

.all-cases-btn {

    height: 58px;

    padding: 0 42px;

    border-radius: 999px;

    cursor: pointer;

    font-size: 17px;

    font-weight: 800;

    border: none;

    color: #111;

    background: var(--accent);

    transition: .35s;

}

.all-cases-btn:hover {

    transform: translateY(-3px);

    box-shadow: 0 20px 45px rgba(215, 255, 0, .28);

}


/*======================
      TABLET
=======================*/

@media(max-width:1000px) {

    .cases-grid {

        grid-template-columns: 1fr;

    }

}


/*======================
      MOBILE
=======================*/

@media(max-width:650px) {

    .results-section {

        padding: 80px 18px;

    }

    .results-heading {

        font-size: 38px;

    }

    .results-subtitle {

        font-size: 15px;

    }

    .case-image {

        height: 240px;

    }

    .case-content {

        padding: 22px;

    }

    .case-bottom {

        flex-direction: column;
        align-items: stretch;

    }

    .case-btn {

        width: 100%;

    }

    .all-cases-btn {

        width: 100%;

    }

}

.clients-section {
    padding: 48px 20px 72px;
    background: linear-gradient(180deg, #fff 0%, #fbfbff 100%);
}

.clients-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.clients-heading {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-weight: 900;
    font-size: clamp(22px, 3.8vw, 40px);
    color: #0b3b6f;
    background: rgba(213, 237, 255, 0.9);
    /* pale blue highlight */
    padding: 10px 16px;
    border-radius: 8px;
    margin: 0 0 36px;
    letter-spacing: -0.02em;
    box-shadow: inset 0 -6px 0 rgba(0, 0, 0, 0.02);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    gap: 26px;
    align-items: stretch;
}

.client-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 22px;
    box-shadow: 0 14px 40px rgba(15, 18, 30, 0.06);
    border: 1px solid rgba(15, 18, 30, 0.04);
    text-align: center;
    transition: transform .16s ease, box-shadow .16s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-height: 170px;
}

.client-card:focus,
.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(15, 18, 30, 0.09);
    outline: none;
}

.icon-wrap {
    width: 92px;
    height: 92px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(250, 250, 255, 0.8), rgba(255, 255, 255, 0.7));
    box-shadow: 0 6px 20px rgba(122, 26, 132, 0.03);
    transition: transform .18s ease, box-shadow .18s ease;
}

.icon {
    width: 56px;
    height: 56px;
    display: block;
}

.client-card {
    --g-start: #7a57d9;
    --g-end: #3ac8ff;
}

.client-card:nth-child(1) {
    --g-start: #6DD3FF;
    --g-end: #7A57D9;
}

.client-card:nth-child(2) {
    --g-start: #FFD580;
    --g-end: #FF7AA0;
}

.client-card:nth-child(3) {
    --g-start: #8AE29D;
    --g-end: #3AC8FF;
}

.client-card:nth-child(4) {
    --g-start: #A78BFF;
    --g-end: #FFB86B;
}

.client-card:nth-child(5) {
    --g-start: #FF7C7C;
    --g-end: #FFCD3A;
}

.client-title {
    margin: 0;
    font-size: clamp(16px, 1.9vw, 18px);
    font-weight: 800;
    color: #0f1720;
}

.client-text {
    margin: 0;
    color: rgba(17, 24, 39, 0.78);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    max-width: 36ch;
}

.clients-action {

    display: flex;

    justify-content: center;

    margin-top: 55px;

}

.clients-btn {

    padding: 18px 42px;

    border-radius: 999px;

    font-size: 17px;

    font-weight: 800;

    box-shadow: 0 20px 40px rgba(122, 26, 132, .18);

}

@media (max-width: 1100px) {
    .clients-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 640px) {
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .icon-wrap {
        width: 72px;
        height: 72px;
        border-radius: 16px;
    }

    .icon {
        width: 48px;
        height: 48px;
    }

    .clients-heading {
        font-size: clamp(18px, 6vw, 22px);
        padding: 8px 12px;
    }
}

.partners-section {
    padding: 48px 20px 80px;
    background: linear-gradient(180deg, #fff 0%, #fbfbff 100%);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

.partners-inner {
    max-width: var(--container, 1200px);
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.partners-heading {
    font-size: clamp(22px, 3.6vw, 36px);
    font-weight: 900;
    color: var(--purple-200, #6a1b9a);
    margin: 0 0 8px;
}

.partners-desc {
    margin: 0 auto 26px;
    color: rgba(17, 24, 39, 0.72);
    font-weight: 600;
    font-size: clamp(14px, 1.9vw, 16px);
    max-width: 920px;
    line-height: 1.6;
}

.partners-frame {
    margin: 0 auto;
    padding: 28px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 18px 48px rgba(15, 18, 30, 0.04);
    max-width: 1100px;
}

.partners-logos {
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.partner {
    flex: 1 1 45%;
    min-width: 280px;
    height: 120px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 36px rgba(15, 18, 30, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform .25s ease, box-shadow .25s ease;
}

.partner:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(15, 18, 30, 0.12);
}

.partner-img {
    max-width: 50%;
    max-height: 50%;
    object-fit: contain;
    -webkit-user-drag: none;
    user-select: none;
}

.partner-img-2 {
    max-width: 80%;
    max-height: 100%;
    object-fit: contain;
    -webkit-user-drag: none;
    user-select: none;
}


@media (max-width: 768px) {
    .partner {
        flex: 1 1 100%;
        height: 100px;
    }

    .partner-img {
        max-width: 80%;
        max-height: 60px;
    }
}

.team-section {
    padding: 64px 20px;
    background: linear-gradient(180deg, rgba(250, 245, 251, 0.45), rgba(255, 255, 255, 1));
    color: var(--text);
}

.team-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.team-title {
    font-size: clamp(22px, 4.6vw, 38px);
    font-weight: 900;
    margin: 0 0 8px;
    color: #111827;
    letter-spacing: -0.02em;
}

.team-sub {
    margin: 0 0 28px;
    color: rgba(17, 24, 39, 0.66);
    font-weight: 600;
    font-size: clamp(14px, 1.6vw, 16px);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 44px 40px;
    align-items: start;
    margin-top: 18px;
}

.member {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    outline: none;
}

.member-avatar {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(245, 245, 250, 1), rgba(249, 249, 255, 1));
    display: block;
    position: relative;
    box-shadow: 0 8px 28px rgba(15, 18, 30, 0.06);
    overflow: visible;
}

.member-avatar::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: conic-gradient(from 120deg, #6dd3ff, #7a57d9, #ff7aa0, #6dd3ff);
    z-index: -1;
    filter: blur(6px);
    opacity: 0.95;
}

.member-avatar::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 6px;
    right: 6px;
    bottom: 6px;
    border-radius: 50%;
    background: linear-gradient(180deg, #fff, #fafafa);
    z-index: 1;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    position: relative;
    z-index: 2;
}

.member-name {
    font-weight: 900;
    font-size: clamp(15px, 1.8vw, 16px);
    color: #111827;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.member-role {
    font-weight: 800;
    font-size: 13px;
    color: #ff6fa8;
    margin-top: -2px;
}

.member:focus .member-avatar,
.member:hover .member-avatar {
    transform: translateY(-6px);
    transition: transform .22s ease;
    box-shadow: 0 28px 80px rgba(15, 18, 30, 0.12);
}

.member:focus .member-avatar::after,
.member:hover .member-avatar::after {
    filter: blur(4px);
    opacity: 1;
}

@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 36px;
    }

    .member-avatar {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 680px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .team-title {
        font-size: clamp(20px, 10vw, 28px);
    }

    .member-avatar {
        width: 128px;
        height: 128px;
    }

    .member-name {
        font-size: 15px;
    }
}

.principles-section {
    padding: 64px 20px;
    background: linear-gradient(180deg, rgba(48, 19, 60, 0.96) 0%, rgba(12, 6, 16, 1) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.principles-section::before {
    content: "";
    position: absolute;
    inset: -10% -5% auto -5%;
    height: 420px;
    background:
        radial-gradient(at 10% 10%, rgba(122, 26, 132, 0.06) 0 12%, transparent 20%),
        radial-gradient(at 90% 40%, rgba(107, 80, 255, 0.04) 0 14%, transparent 26%),
        radial-gradient(at 60% 80%, rgba(255, 120, 170, 0.03) 0 14%, transparent 28%);
    filter: blur(26px);
    pointer-events: auto;
    z-index: 0;
}

.principles-inner {
    max-width: var(--container, 1180px);
    margin: 0 auto;
    padding: 28px 20px;
    position: relative;
    z-index: 2;
}

.kicker {
    display: inline-block;
    color: rgba(255, 193, 224, 0.9);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    text-transform: uppercase;
    opacity: 0.95;
}

.principles-title {
    margin: 6px 0 18px;
    font-weight: 900;
    font-size: clamp(26px, 4.6vw, 44px);
    line-height: 1.05;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.principles-desc {
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.7;
    text-align: left;
}

.principles-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(12, 6, 16, 0) 0%, rgba(6, 3, 8, 0.18) 60%, rgba(6, 3, 8, 0.36) 100%);
    pointer-events: auto;
    z-index: 1;
}

@media (max-width: 900px) {
    .principles-section {
        padding: 44px 16px;
    }

    .principles-title {
        font-size: clamp(22px, 7.2vw, 34px);
    }

    .principles-desc {
        font-size: 15px;
        padding: 0 6px;
    }

    .kicker {
        font-size: 12px;
    }
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 6px;
    z-index: 10001;
}

.mobile-toggle .hamb {
    display: block;
    width: 22px;
    height: 2px;
    background: #222;
    position: relative;
    transition: transform .18s ease;
}

.mobile-toggle .hamb::before,
.mobile-toggle .hamb::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: #222;
    transition: transform .18s ease, top .18s ease, bottom .18s ease;
}

.mobile-toggle .hamb::before {
    top: -7px;
}

.mobile-toggle .hamb::after {
    bottom: -7px;
}

.mobile-toggle.open .hamb {
    transform: rotate(45deg);
}

.mobile-toggle.open .hamb::before {
    transform: rotate(90deg);
    top: 0;
}

.mobile-toggle.open .hamb::after {
    transform: rotate(90deg);
    bottom: 0;
}

@media (max-width: 1100px) {
    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: inline-flex;
    }
}

.mobile-menu {
    position: fixed;
    inset: 0;
    display: none;
    background: rgba(6, 6, 10, 0.6);
    z-index: 11000;
    align-items: center;
    justify-content: center;
    transition: opacity .18s ease, visibility .18s ease;
    visibility: hidden;
    opacity: 0;
}

.mobile-menu.open {
    display: flex;
    visibility: visible;
    opacity: 1;
}

.mobile-menu-inner {
    width: min(92%, 420px);
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 30px 80px rgba(6, 8, 22, 0.24);
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
}

.mobile-close {
    background: transparent;
    border: none;
    color: var(--purple-200);
    font-weight: 800;
    font-size: 20px;
    justify-self: flex-end;
    align-self: flex-end;
    cursor: pointer;
}

.mobile-item {
    display: block;
    text-decoration: none;
    color: #111827;
    font-weight: 800;
    padding: 14px 12px;
    border-radius: 10px;
    text-align: left;
    font-size: 18px;
}

.header-top {
    transition: transform .36s cubic-bezier(.2, .9, .25, 1), box-shadow .32s, top .32s;
    will-change: transform, top;
}

.header-top.peek {
    transform: translate(-50%, 6px);
    box-shadow: 0 20px 46px rgba(15, 15, 20, 0.14);
}

@media (max-width: 520px) {
    .header-top {
        top: 10px;
    }

    .header-top.peek {
        top: 6px;
        transform: translate(-50%, 0);
    }
}

.hero-buttons .btn {
    touch-action: manipulation;
}

.nav-link,
.mobile-item,
.mobile-close,
.mobile-toggle {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
}

.nav-link:focus,
.mobile-item:focus {
    outline: 3px solid rgba(111, 17, 112, 0.14);
    outline-offset: 6px;
    border-radius: 8px;
}


/* logo roller */

.logo-roller-full {
    width: 100%;
    display: block;
    overflow: hidden;
    background: transparent;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.logo-roller-viewport {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-roller-track {
    display: flex;
    gap: 36px;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    transform: translateZ(0);
    animation-name: lr-scroll;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: var(--lr-duration, 18s);
    animation-play-state: running !important;
    pointer-events: auto;
}

.logo-item {
    flex: 0 0 auto;
    width: 180px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    box-sizing: border-box;
    background: transparent;
    border: none;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: auto;
    -webkit-user-drag: none;
}

@keyframes lr-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(var(--lr-distance, -1200px));
    }
}

@media (max-width: 1000px) {
    .logo-item {
        width: 150px;
        height: 64px;
    }

    .logo-roller-track {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .logo-item {
        width: 110px;
        height: 50px;
    }

    .logo-roller-track {
        gap: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo-roller-track {
        animation: none !important;
        transform: none !important;
    }
}