* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #010101;
    font-family: 'Manrope', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.sv--container {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}


.sv--header {
    background: transparent;
    padding: 24px 0;
    position: relative;
    z-index: 100;
}

.sv--header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.sv--logo {
    display: flex;
    text-decoration: none;
    align-items: center;
    gap: 12px;
}

.sv--logo img {
    height: 42px;
    width: auto;
}

.sv--brand {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF 0%, #B7B7B7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.sv--nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.sv--nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.sv--nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.sv--nav-links a:hover {
    color: #ffffff;
}

.sv--btn-outline {
    background: linear-gradient(180deg, #f3f3f3 0%, #B7B7B7 100%);
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: 0.5px;
}

.sv--btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.sv--mobile-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}


.sv--banner {
    background: url('../imgs/bg-hero.png') center bottom/cover no-repeat;
    padding: 100px 0 90px;
    text-align: center;
    position: relative;
}

.sv--subtitle {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff6c04;
    margin-bottom: 16px;
}

.sv--banner h1 {
    font-size: 64px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sv--banner-text {
    max-width: 700px;
    margin: 0 auto 32px;
    font-size: 18px;
}

.sv--btn-primary {
    background: linear-gradient(180deg, #f3f3f3 0%, #B7B7B7 100%);
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    display: inline-block;
    transition: all 0.3s;
}

.sv--stats {
    display: flex;
    justify-content: center;
    gap: 20px 70px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.sv--stat-item {
    text-align: center;
}

.sv--stat-number {
    font-size: 70px;
    font-weight: 400;
    color: #fff;
}

.sv--stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}


.sv--section {
    padding: 80px 0;
}

.sv--grid-3 {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.sv--card {
    background: #1d1d1d;
    border: 1px solid #ffffff1a;
    border-radius: 28px;
    padding: 40px 30px;
    flex: 1;
    transition: all 0.3s ease;
}

.sv--card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.3);
}

.sv--card-icon {
    width: 56px;
    height: 56px;
    border: 1px solid #ffffff1a;
    padding: 6px;
    box-sizing: border-box;
    border-radius: 5px;
    margin-bottom: 20px;
}

.sv--card-icon img {
    width: 100%;
    filter: brightness(1) invert(1);
}

.sv--card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.sv--card p {
    font-size: 15px;
    line-height: 1.5;
}


.sv--features-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.sv--left-col h4,
.sv--why-left h4,
.sv--about-content h4 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ff6c04;
    margin-bottom: 12px;
}

.sv--why-left h2 {
    margin-bottom: 20px;
}

.sv--left-col h2,
.sv--why-left h2,
.sv--about-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.sv--features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.sv--feature-item {
    background: #1d1d1d;
    border: 1px solid #ffffff1a;
    border-radius: 24px;
    padding: 32px 28px;
    transition: 0.2s;
}

.sv--feature-item img {
    height: 48px;
    margin-bottom: 20px;
}

.sv--feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.sv--feature-item p {
    font-size: 14px;
    margin-bottom: 20px;
}

.sv--feature-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}


.sv--about-wrap {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.sv--about-img {
    flex: 1;
}

.sv--about-img img {
    width: 100%;
    border-radius: 32px;
    border: 1px solid #ffffff1a;
}

.sv--about-content {
    flex: 1;
}



.sv--about-content p {
    margin: 20px 0;
    font-size: 16px;
}


.sv--why-wrap {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.sv--why-img {
    flex: 1;
}

.sv--why-img img {
    width: 100%;
    border-radius: 32px;
    border: 1px solid #ffffff1a;
}

.sv--why-left {
    flex: 1;
}

.sv--check-list {
    list-style: none;
    margin: 24px 0;
}

.sv--check-list li {
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    font-weight: 500;
}

.sv--check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
}


.sv--cta-wrap {
    background: #000 url('../imgs/bg-hero.png') center no-repeat;
    background-size: cover;
    border: 1px solid #333;
    border-radius: 28px;
    padding: 56px 48px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.sv--cta-left h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 12px;
}


.sv--footer {
    background: #0c0c0c;
    padding: 70px 0 30px;
    margin-top: 40px;
    border-top: 1px solid #ffffff1a;
}

.sv--footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.sv--footer-logo {
    max-width: 260px;
}

.sv--footer-logo img {
    height: 45px;
}

.sv--footer-logo p {
    font-size: 14px;
}

.sv--footer-logo .sv--logo {
    margin-bottom: 30px;
}

.sv--footer-contacts {
    display: flex;
    gap: 20px 60px;
    flex-wrap: wrap;
}

.sv--contact-item .sv--label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.sv--contact-item a,
.sv--contact-item span {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.sv--footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid #ffffff1a;
    font-size: 14px;
}

.sv--footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.sv--footer-links a,
.sv--menu-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.sv--footer-links a:hover,
.sv--menu-links a:hover {
    color: white;
}

.sv--menu-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.sv--page-header {
    padding: 60px 0 20px;
    text-align: center;
}

.sv--page-header h1 {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.sv--breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.sv--breadcrumbs a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.sv--breadcrumbs a:hover {
    color: #fff;
}

.sv--breadcrumbs span {
    color: rgba(255, 255, 255, 0.3);
}

.sv--breadcrumbs .sv--current {
    color: #fff;
}


.sv--contact-section {
    padding: 40px 0 100px;
}

.sv--contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.sv--contact-form-wrap {
    flex: 1.2;
    background: #1d1d1d;
    border: 1px solid #ffffff1a;
    border-radius: 32px;
    padding: 48px 40px;
}

.sv--contact-info-wrap {
    flex: 0.9;
    background: #1d1d1d;
    border: 1px solid #ffffff1a;
    border-radius: 32px;
    padding: 48px 40px;
}


.sv--form-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.sv--form-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

.sv--form-group {
    margin-bottom: 24px;
}

.sv--form-group input,
.sv--form-group textarea {
    width: 100%;
    background: #0c0c0c;
    border: 1px solid #ffffff1a;
    border-radius: 20px;
    padding: 16px 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: #fff;
    transition: all 0.2s;
    outline: none;
}

.sv--form-group input:focus,
.sv--form-group textarea:focus {
    border-color: rgba(255, 255, 255, 0.4);
}

.sv--form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.sv--btn-submit {
    background: linear-gradient(180deg, #f3f3f3 0%, #B7B7B7 100%);
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    letter-spacing: 0.5px;
}

.sv--btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.sv--thankyou-message {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sv--thankyou-message h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 12px;
}

.sv--thankyou-message p {
    font-size: 15px;
}


.sv--info-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.sv--info-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.sv--contact-details {
    margin-top: 24px;
}

.sv--contact-detail-item {
    margin-bottom: 28px;
}

.sv--contact-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.sv--contact-value {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    display: block;
    line-height: 1.4;
}

.sv--contact-value a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.sv--contact-value a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .sv--page-header h1 {
        font-size: 38px;
    }

    .sv--contact-form-wrap,
    .sv--contact-info-wrap {
        padding: 32px 24px;
    }

    .sv--form-title,
    .sv--info-title {
        font-size: 24px;
    }
}

.sv--about-mission {
    padding: 40px 0 60px;
}

.sv--mission-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.sv--mission-card {
    flex: 1;
    background: #1d1d1d;
    border: 1px solid #ffffff1a;
    border-radius: 22px;
    padding: 48px 36px;
    transition: all 0.3s ease;
}

.sv--mission-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.25);
}

.sv--mission-icon {
    font-size: 48px;
    margin-bottom: 24px;
    width: 55px;
    height: 55px;
}

.sv--mission-icon img {
    width: 100%;
}

.sv--mission-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.sv--mission-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}


.sv--about-story {
    padding: 60px 0 100px;
}

.sv--story-wrap {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.sv--story-img {
    flex: 1;
}

.sv--story-img img {
    width: 100%;
    border-radius: 32px;
    border: 1px solid #ffffff1a;
}

.sv--story-content {
    flex: 1;
}

.sv--story-content h3 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff6c04;
    margin-bottom: 12px;
}

.sv--story-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.sv--story-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.sv--values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.sv--value-item {
    flex: 1;
    min-width: 200px;
    background: #1d1d1d;
    border: 1px solid #ffffff1a;
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    transition: 0.2s;
}

.sv--value-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.sv--value-icon {
    font-size: 40px;
    margin-bottom: 20px;
    width: 55px;
    height: 55px;
    margin-left: auto;
    margin-right: auto;
}

.sv--value-icon img {
    width: 100%;
}

.sv--value-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.sv--value-item p {
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .sv--page-header h1 {
        font-size: 38px;
    }

    .sv--story-content h2 {
        font-size: 32px;
    }

    .sv--mission-card {
        padding: 32px 24px;
    }

    .sv--values-grid {
        flex-direction: column;
    }
}

.sv--features-intro {
    text-align: center;
    max-width: 800px;
    margin: 20px auto 60px;
}

.sv--features-intro p {
    font-size: 18px;
    line-height: 1.6;
}


.sv--features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0 80px;
}

.sv--feature-card {
    background: #1d1d1d;
    border: 1px solid #ffffff1a;
    border-radius: 32px;
    padding: 40px 32px;
    transition: all 0.3s ease;
}

.sv--feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.25);
}

.sv--feature-icon {
    margin-bottom: 24px;
}

.sv--feature-icon img {
    height: 56px;
    width: auto;
}

.sv--feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.sv--feature-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.75);
}

.sv--feature-detail {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 18px;
    margin-top: 8px;
}


.sv--advanced-section {
    padding: 40px 0 80px;
}

.sv--section-title {
    text-align: center;
    margin-bottom: 60px;
}

.sv--section-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.sv--section-title p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.sv--advanced-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.sv--advanced-col {
    flex: 1;
    background: #1d1d1d;
    border: 1px solid #ffffff1a;
    border-radius: 32px;
    padding: 40px;
}

.sv--advanced-col h3 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.sv--advanced-list {
    list-style: none;
}

.sv--advanced-list li {
    margin-bottom: 20px;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    line-height: 1.5;
}

.sv--advanced-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: bold;
}

.sv--badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .sv--features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sv--page-header h1 {
        font-size: 38px;
    }

    .sv--features-grid {
        grid-template-columns: 1fr;
    }

    .sv--section-title h2 {
        font-size: 32px;
    }

    .sv--advanced-col {
        padding: 32px 24px;
    }
}



.sv--legal-content {
    padding: 40px 0 100px;
}

.sv--legal-card {
    background: #1d1d1d;
    border: 1px solid #ffffff1a;
    border-radius: 32px;
    padding: 48px 56px;
}

.sv--last-updated {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sv--legal-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 32px 0 16px;
}

.sv--legal-card h2:first-of-type {
    margin-top: 0;
}

.sv--legal-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 24px 0 12px;
}

.sv--legal-card p {
    margin-bottom: 16px;
    font-size: 15px;
}

.sv--legal-card ul,
.sv--legal-card ol {
    margin: 16px 0 16px 24px;
}

.sv--legal-card li {
    margin-bottom: 8px;
    font-size: 15px;
}

.sv--legal-card a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.sv--legal-card a:hover {
    opacity: 0.8;
}

.sv--contact-info-block {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 24px 32px;
    margin: 32px 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sv--contact-info-block p {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .sv--page-header h1 {
        font-size: 38px;
    }

    .sv--legal-card {
        padding: 32px 24px;
    }

    .sv--legal-card h2 {
        font-size: 24px;
    }
}










































@media (max-width: 1024px) {
    .sv--container {
        padding: 0 20px;
    }

    .sv--features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sv--mobile-toggle {
        display: block;
    }

    .sv--nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100vh;
        background: #010101;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s;
        z-index: 1000;
        gap: 40px;
    }

    .sv--nav.active {
        left: 0;
    }

    .sv--nav-links {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }

    .sv--close-menu {
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 32px;
        cursor: pointer;
        color: white;
    }

    .sv--banner h1 {
        font-size: 42px;
    }

    .sv--grid-3,
    .sv--features-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .sv--cta-wrap {
        flex-direction: column;
        text-align: center;
    }

    .sv--footer-top {
        flex-direction: column;
    }

    .sv--stats {
        gap: 30px;
    }

    .sv--why-wrap,
    .sv--about-wrap {
        flex-direction: column;
    }
}

@media (min-width: 769px) {
    .sv--close-menu {
        display: none;
    }

}

@media(max-width: 767px) {
    .sv--stat-number {
        font-size: 40px;
    }

    .sv--features-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .sv--features-header h2 {
        margin-bottom: 20px;
    }

    .sv--section {
        padding: 50px 0;
    }

    .sv--contact-info-wrap {
        flex: auto;
    }
    .sv--left-col h2, .sv--why-left h2, .sv--about-content h2{
        font-size: 36px;
    }
    .sv--story-wrap{
        flex-direction: column;
    }
    .sv--mission-grid{
        flex-direction: column;
    }
}