* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #03030a;
    font-family: 'Inter Tight', 'Inter', sans-serif;
    color: #94919d;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.scContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}


.scTitle {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.scSubtitle {
    color: #938cf5;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: inline-block;
}

.scText {
    font-family: 'Inter', 'Inter Tight', sans-serif;
    color: #94919d;
    font-size: 1rem;
    line-height: 1.5;
}


.scBlock {
    background: #efeefc0a;
    border: 1px solid #efeefc0a;
    border-radius: 24px;
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.scBlock img {
    margin-left: auto;
    margin-right: auto;
}

.scBlock:hover {
    border-color: rgba(147, 140, 245, 0.3);
    background: rgba(239, 238, 252, 0.08);
}


.scBtn {
    background: radial-gradient(circle farthest-side at 50% 0, #8683ff, #605dff);
    border-radius: 5px;
    padding: 12px 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 15px;
    color: white;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-family: 'Inter Tight', sans-serif;
    letter-spacing: -0.2px;
    box-shadow: 0 4px 12px rgba(96, 93, 255, 0.25);
}

.scBtn:hover {
    opacity: 0.92;
    transform: translateY(-2px);
}


.scCtaBg {
    background: radial-gradient(circle closest-corner at 50% 0, #8683ff, #605dff);
    border-radius: 24px;
}


.scBanner {
    background-image: url('../image/main-bg.svg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
    border-radius: 32px;
    margin-top: 20px;
}

.scBanner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(92deg, #5f54ff, #b658ff 51.8%, #54f9ff 89.21%);
    filter: blur(70px);
    opacity: 0.3;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.scBanner>* {
    position: relative;
    z-index: 2;
}


.scAdvantageItem {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.scAdvantageIcon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
}


.scToolsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.scFaqItem {
    background: #efeefc0a;
    border: 1px solid #efeefc0a;
    border-radius: 20px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.2s;
}

.scFaqQuestion {
    padding: 20px 28px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
}

.scFaqQuestion span:last-child {
    font-size: 24px;
    color: #938cf5;
    transition: transform 0.2s;
}

.scFaqAnswer {
    max-height: 0;
    padding: 0 28px;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.2s ease;
    color: #b0adbc;
    border-top: 0px solid transparent;
}

.scFaqItem.active .scFaqAnswer {
    max-height: 260px;
    padding: 0 28px 24px 28px;
    border-top: 1px solid rgba(147, 140, 245, 0.2);
}

.scFaqItem.active .scFaqQuestion span:last-child {
    transform: rotate(45deg);
}


.scFooterMenu a,
.scFooterLegal a,
.scFooterContact p {
    color: #94919d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.scFooterMenu a:hover,
.scFooterLegal a:hover {
    color: #b0aaff;
}


.scNavToggle {
    display: none;
    background: none;
    border: 1px solid #efeefc30;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    color: white;
    font-size: 24px;
}

@media (max-width: 900px) {
    .scNavMenu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: #0c0f17;
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 40px 30px;
        transition: 0.3s;
        z-index: 1000;
        border-right: 1px solid #efeefc1a;
    }

    .scNavMenu.open {
        left: 0;
    }

    .scNavToggle {
        display: block;
    }

    .scToolsGrid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .scAdvantageItem {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .scFooterInner {
        flex-direction: column;
        gap: 32px;
    }

    .scContainer {
        padding: 0 20px;
    }
}

@media (min-width: 901px) and (max-width: 1100px) {
    .scToolsGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.scFlexBetween {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scNavMenu {
    display: flex;
    gap: 42px;
    align-items: center;
}

.scNavMenu a {
    color: #dddce4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.scNavMenu a:hover {
    color: #b0aaff;
}

.scLogo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.scLogo span>span {
    color: #938cf5;
}

.scLogo img {
    height: 42px;
    width: auto;
}

.scLogo span {
    font-weight: 700;
    font-size: 1.6rem;
    color: white;
    letter-spacing: -0.02em;
}

.scGrid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.scAboutGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.scWhyGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.scChecklist {
    list-style: none;
    margin-top: 20px;
}

.scChecklist li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #c5c2d0;
}

.scChecklist li::before {
    content: "✓";
    color: #8f86ff;
    font-weight: bold;
    font-size: 1.2rem;
}

img {
    max-width: 100%;
    display: block;
}

hr {
    border-color: #efeefc1a;
    margin: 16px 0;
}

.scFooterInner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding: 48px 0 32px;
}

.scFooterCol {
    flex: 1;
    min-width: 160px;
}

.scFooterCol p {
    margin: 8px 0;
}

.scCopyright {
    border-top: 1px solid #efeefc0a;
    padding: 24px 0;
    text-align: left;
    font-size: 0.8rem;
}

.scContactSection {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0px 80px;
}


.scContactHeader {
    margin-bottom: 56px;
}

.scContactTitle {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 48px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.scBreadcrumbs {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 14px;
    color: #94919d;
}

.scBreadcrumbs a {
    color: #938cf5;
    text-decoration: none;
    transition: color 0.2s;
}

.scBreadcrumbs a:hover {
    color: #b0aaff;
}

.scBreadcrumbs span {
    color: #5a5670;
}


.scContactCards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 70px;
}

.scContactCard {
    background: #efeefc0a;
    border: 1px solid #efeefc0a;
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.scContactCard:hover {
    border-color: rgba(147, 140, 245, 0.4);
    background: rgba(239, 238, 252, 0.08);
    transform: translateY(-4px);
}

.scCardIcon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
}

.scCardTitle {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 20px;
    margin-bottom: 12px;
}

.scCardContent {
    font-family: 'Inter', 'Inter Tight', sans-serif;
    color: #b2b0ae;
    line-height: 1.5;
    font-size: 16px;
}

.scCardContent a {
    color: #b2b0ae;
    text-decoration: none;
    transition: color 0.2s;
}

.scCardContent a:hover {
    color: #938cf5;
}


.scFormWrapper {
    background: #efeefc0a;
    border: 1px solid #efeefc0a;
    border-radius: 24px;
    padding: 48px;
}

.scFormTitle {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 32px;
    margin-bottom: 12px;
}

.scFormSubtitle {
    color: #94919d;
    margin-bottom: 32px;
    font-size: 16px;
}

.scFormGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.scFormGroup {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.scFormGroup.fullWidth {
    grid-column: span 2;
}

.scFormLabel {
    color: #e0dfed;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter Tight', sans-serif;
}

.scFormInput,
.scFormTextarea {
    background: #0f111a;
    border: 1px solid #efeefc30;
    border-radius: 10px;
    padding: 14px 18px;
    font-family: 'Inter', 'Inter Tight', sans-serif;
    font-size: 15px;
    color: #fff;
    transition: all 0.2s;
    outline: none;
}

.scFormInput:focus,
.scFormTextarea:focus {
    border-color: #938cf5;
    box-shadow: 0 0 0 3px rgba(147, 140, 245, 0.2);
}

.scFormTextarea {
    resize: vertical;
    min-height: 120px;
}

.scSubmitBtn {
    background: radial-gradient(circle farthest-side at 50% 0, #8683ff, #605dff);
    border-radius: 5px;
    padding: 14px 36px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    color: white;
    cursor: pointer;
    font-family: 'Inter Tight', sans-serif;
    transition: opacity 0.2s, transform 0.2s;
    margin-top: 12px;
    width: auto;
}

.scSubmitBtn:hover {
    opacity: 0.92;
    transform: translateY(-2px);
}

.scThankYouMessage {
    margin-top: 24px;
    padding: 16px 20px;
    background: rgba(99, 255, 163, 0.1);
    border-radius: 12px;
    color: #b5ffd4;
    font-size: 15px;
    font-weight: 500;
    display: none;
}

.scThankYouMessage.show {
    display: block;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .scContactCards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .scFormGrid {
        grid-template-columns: 1fr;
    }

    .scFormGroup.fullWidth {
        grid-column: span 1;
    }

    .scFormWrapper {
        padding: 32px 24px;
    }

    .scContactTitle {
        font-size: 36px;
    }
}


.scAboutSection {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0px 80px;
}


.scAboutHeader {
    margin-bottom: 56px;
}

.scAboutTitle {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 48px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.scBreadcrumbs {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 14px;
    color: #94919d;
}

.scBreadcrumbs a {
    color: #938cf5;
    text-decoration: none;
    transition: color 0.2s;
}

.scBreadcrumbs a:hover {
    color: #b0aaff;
}

.scBreadcrumbs span {
    color: #5a5670;
}


.scAboutCenter {
    text-align: center;
    max-width: 1080px;
    margin: 0 auto 70px;
}

.scSubtitle {
    color: #938cf5;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: inline-block;
}

.scCenterHeading {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 42px;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.scAboutTextBlock {
    background: #efeefc0a;
    border: 1px solid #efeefc0a;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    margin-top: 20px;
}

.scAboutTextBlock p {
    font-family: 'Inter', 'Inter Tight', sans-serif;
    color: #b2b0ae;
    line-height: 1.7;
    font-size: 17px;
    margin-bottom: 20px;
}

.scAboutTextBlock p:last-child {
    margin-bottom: 0;
}

.scHighlightText {
    color: #c2bcff;
    font-weight: 500;
}


.scStatsRow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    text-align: center;
}

.scStatItem {
    background: #efeefc0a;
    border: 1px solid #efeefc0a;
    border-radius: 20px;
    padding: 40px 24px;
    transition: all 0.3s ease;
}

.scStatItem:hover {
    border-color: rgba(147, 140, 245, 0.4);
    background: rgba(239, 238, 252, 0.08);
    transform: translateY(-4px);
}

.scStatNumber {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 52px;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, #b0aaff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.scStatLabel {
    font-family: 'Inter', 'Inter Tight', sans-serif;
    color: #94919d;
    font-size: 16px;
    font-weight: 500;
}


.scFeaturesRow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.scFeatureBlock {
    background: #efeefc0a;
    border: 1px solid #efeefc0a;
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}

.scFeatureBlock:hover {
    border-color: rgba(147, 140, 245, 0.4);
    background: rgba(239, 238, 252, 0.08);
    transform: translateY(-4px);
}

.scFeatureIcon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
}

.scFeatureTitle {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 22px;
    margin-bottom: 14px;
}

.scFeatureText {
    font-family: 'Inter', 'Inter Tight', sans-serif;
    color: #b2b0ae;
    line-height: 1.6;
    font-size: 15px;
}

@media (max-width: 900px) {
    .scStatsRow {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .scFeaturesRow {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .scCenterHeading {
        font-size: 32px;
    }

    .scAboutTextBlock {
        padding: 28px;
    }

    .scStatNumber {
        font-size: 44px;
    }
}






.scToolsSection {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0px 80px;
}


.scToolsHeader {
    margin-bottom: 56px;
}

.scToolsPageTitle {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 48px;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}



.scToolsIntro {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 60px;
}

.scSubtitle {
    color: #938cf5;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: inline-block;
}

.scIntroHeading {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 42px;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.scIntroText {
    font-family: 'Inter', 'Inter Tight', sans-serif;
    color: #b2b0ae;
    font-size: 18px;
    line-height: 1.6;
}


.scDetailedToolsGrid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.scToolDetailedCard {
    background: #efeefc0a;
    border: 1px solid #efeefc0a;
    border-radius: 28px;
    padding: 40px;
    transition: all 0.3s ease;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.scToolDetailedCard:hover {
    border-color: rgba(147, 140, 245, 0.4);
    background: rgba(239, 238, 252, 0.08);
    transform: translateX(6px);
}

.scToolIconLarge {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(147, 140, 245, 0.12);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.scToolIconLarge img {
    width: 100%;
    height: auto;
}

.scToolContent {
    flex: 1;
}

.scToolName {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 28px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.scToolDescription {
    font-family: 'Inter', 'Inter Tight', sans-serif;
    color: #c5c2d0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.scToolFeatures {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.scToolFeatures li {
    font-family: 'Inter', 'Inter Tight', sans-serif;
    color: #b2b0ae;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.scToolFeatures li::before {
    content: "✓";
    color: #8f86ff;
    font-weight: bold;
    font-size: 14px;
}

.scToolLink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #938cf5;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: gap 0.2s;
}

.scToolLink:hover {
    gap: 12px;
    color: #b0aaff;
}


@media (max-width: 900px) {
    .scToolDetailedCard {
        flex-direction: column;
        padding: 28px;
        gap: 20px;
    }

    .scToolIconLarge {
        width: 64px;
        height: 64px;
    }

    .scToolName {
        font-size: 24px;
    }

    .scToolsPageTitle {
        font-size: 36px;
    }

    .scIntroHeading {
        font-size: 32px;
    }
}







.scLegalSection {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0px 80px;
}

.scLegalHeader {
    margin-bottom: 48px;
}

.scLegalTitle {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 48px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}


.scLastUpdated {
    color: #6b6879;
    font-size: 14px;
    margin-top: 8px;
    padding: 12px 0;
    border-bottom: 1px solid #efeefc1a;
}

.scLegalContent {
    background: #efeefc0a;
    border: 1px solid #efeefc0a;
    border-radius: 28px;
    padding: 48px;
}

.scLegalContent h2 {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 28px;
    margin: 32px 0 16px 0;
}

.scLegalContent h2:first-of-type {
    margin-top: 0;
}

.scLegalContent h3 {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    color: #e0dfed;
    font-size: 20px;
    margin: 24px 0 12px 0;
}

.scLegalContent p {
    font-family: 'Inter', 'Inter Tight', sans-serif;
    color: #b2b0ae;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 18px;
}

.scLegalContent ul,
.scLegalContent ol {
    margin: 16px 0 20px 28px;
    color: #b2b0ae;
    line-height: 1.7;
}

.scLegalContent li {
    margin-bottom: 8px;
}

.scLegalContent strong {
    color: #d0ccff;
    font-weight: 600;
}

.scContactBlock {
    background: rgba(147, 140, 245, 0.08);
    padding: 20px 28px;
    border-radius: 16px;
    margin: 28px 0;
}

.scContactBlock p {
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    .scLegalContent {
        padding: 28px 20px;
    }

    .scLegalTitle {
        font-size: 36px;
    }

    .scLegalContent h2 {
        font-size: 24px;
    }
}
















@media (max-width: 750px) {

    .scAboutGrid,
    .scWhyGrid {
        grid-template-columns: 1fr;
    }

    .scGrid3 {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 520px) {
    .scFooterInner {
        gap: 20px;
    }

    .scTitle {
        font-size: 32px !important;
    }

    .scBanner .scTitle {
        font-size: 38px !important;
    }

    .scBanner {
        padding: 50px 20px !important;
    }

    .scBlock .scTitle {
        font-size: 26px !important;
    }
}