html {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #040404;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: #878685;
    overflow-x: hidden;
}

.container {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    overflow-x: hidden;
}


h1,
h2,
h3,
h4,
.logo-text,
.nav-link,
.btn {
    font-family: 'Inter', sans-serif;
}


.section-subtitle {
    display: inline-block;
    background: linear-gradient(90deg, #0d0d0d, #6a2a00 34%, #f6721b 54%, #6a2a00 72%, #0d0d0d);
    padding: 2px;
    border-radius: 40px;
    margin-bottom: 1rem;
}

.section-subtitle span {
    background-color: #040404;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    padding: 4px 16px;
    border-radius: 40px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title span {
    color: #878685;
    font-weight: 500;
}

.section-desc {
    color: #878685;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}


.btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: #f6721b;
    color: #000;
}

.btn-primary:hover {
    background-color: #ff8a3c;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #fff;
    color: #040404;
}

.btn-secondary:hover {
    background-color: #e6e6e6;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    border: 1px solid #f6721b;
    color: #f6721b;
}

.btn-outline-light:hover {
    background: #f6721b;
    color: #000;
}


.card-bg {
    background-color: #161616;
    border-radius: 20px;
    padding: 1.8rem;
    transition: 0.2s;
}


.header {
    padding: 24px 0;
    position: relative;
    z-index: 20;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}

.logo-img {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #040404;
}

.logo-img img {
    max-width: 100%;
}

.brand {
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-menu li a.btn-primary {
    border-radius: 4px;
    font-weight: 600 !important;
    font-size: 0.9rem;
}

.nav-menu li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu li a:hover {
    color: #f6721b;
}

.mobile-toggle {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        background: #0e0e0e;
        width: 80%;
        height: calc(100vh - 80px);
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        transition: 0.3s;
        z-index: 100;
        border-right: 1px solid #2a2a2a;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: block;
    }

    .navbar {
        flex-wrap: nowrap;
    }
}


.banner-shape {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: #4a2109;
    filter: blur(95px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}


.banner {
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
}

.banner .section-title {
    font-size: 3.5rem;
}

.banner-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.benefits-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-item {
    flex: 1;
    min-width: 260px;
    background: #161616;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: 0.2s;
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit-icon img {
    width: 52px;
    height: 52px;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.features-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-card {
    background: #161616;
    border-radius: 20px;
    padding: 1.8rem;
    flex: 1;
    min-width: 240px;
    transition: 0.2s;
}

.feature-icon img {
    width: 48px;
    margin-bottom: 5px;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin: 0.8rem 0 0.5rem;
}

.feature-card p {
    margin-bottom: 1rem;
}

.feature-link {
    color: #f6721b;
    text-decoration: none;
    font-weight: 500;
}

.about-section,
.whyus-section {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
    margin: 5rem 0;
}

.about-img,
.whyus-img {
    flex: 1;
}

.about-img img,
.whyus-img img {
    width: 100%;
    border-radius: 24px;
    display: block;
}

.about-content,
.whyus-content {
    flex: 1;
}

.list-styled {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.list-styled li {
    padding-left: 28px;
    background: url('../img/list.svg') left center no-repeat;
    background-size: 18px;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.cta-section {
    text-align: center;
    background: #161616;
    border-radius: 32px;
    padding: 3.5rem 2rem;
    margin: 4rem 0;
}

.footer {
    background-color: #0e0e0e;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 180px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 1rem;
}

.footer-logo .brand {
    font-size: 1.3rem;
}

.footer-col p {
    color: #878685;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.7rem;
}

.footer-menu li a {
    color: #878685;
    text-decoration: none;
    transition: 0.2s;
}

.footer-menu li a:hover {
    color: #f6721b;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.legal-links a {
    color: #878685;
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 0.8rem;
}

.legal-links a:first-child {
    margin-left: 0;
}

.contact-section {
    max-width: 1170px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #040404;
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-subtitle {
    display: inline-block;
    background: linear-gradient(90deg, #0d0d0d, #6a2a00 34%, #f6721b 54%, #6a2a00 72%, #0d0d0d);
    padding: 2px;
    border-radius: 40px;
    margin-bottom: 1rem;
}

.contact-subtitle span {
    background-color: #040404;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    padding: 4px 20px;
    border-radius: 40px;
}

.contact-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.contact-title span {
    color: #878685;
    font-weight: 500;
}


.contact-grid {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 260px;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
    background: #161616;
    border-radius: 24px;
    padding: 32px 28px;
}


.info-heading {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.info-text {
    color: #878685;
    line-height: 1.6;
    margin-bottom: 32px;
    font-size: 1rem;
}

.contact-details {
    margin-top: 24px;
}

.contact-item {
    margin-bottom: 28px;
}

.contact-label {
    font-weight: 600;
    color: #f6721b;
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.contact-value {
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
}

.contact-value:hover {
    color: #f6721b;
}

hr {
    border-color: #2a2a2a;
    margin: 24px 0;
}


.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
}

.form-row .form-group {
    flex: 1;
}

input,
textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: #0e0e0e;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #fff;
    transition: 0.2s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #f6721b;
    box-shadow: 0 0 0 2px rgba(246, 114, 27, 0.2);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    background-color: #f6721b;
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
    background-color: #ff8a3c;
    transform: translateY(-2px);
}

.thankyou-message {
    margin-top: 20px;
    padding: 12px 16px;
    background-color: #1e2a1a;
    color: #d0ffc0;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

.thankyou-message.show {
    display: block;
}

::placeholder {
    color: #5a5a5a;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-grid {
        gap: 32px;
    }
}


.about-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 2;
}


.about-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-subtitle {
    display: inline-block;
    background: linear-gradient(90deg, #0d0d0d, #6a2a00 34%, #f6721b 54%, #6a2a00 72%, #0d0d0d);
    padding: 2px;
    border-radius: 40px;
    margin-bottom: 1rem;
}

.section-subtitle span {
    background-color: #040404;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    padding: 4px 20px;
    border-radius: 40px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.section-title span {
    color: #878685;
    font-weight: 500;
}


.full-text-block {
    background-color: #161616;
    border-radius: 28px;
    padding: 48px 40px;
    margin-bottom: 64px;
}

.text-columns {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.text-col {
    flex: 1;
    min-width: 240px;
}

.text-col p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #d0d0d0;
}

.text-col .highlight {
    color: #f6721b;
    font-weight: 500;
}

.quote-line {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #2a2a2a;
    font-style: italic;
    font-size: 1.05rem;
    color: #fff;
}

@media (max-width: 768px) {
    .full-text-block {
        padding: 32px 24px;
    }

    .section-title {
        font-size: 2rem;
    }

    .text-columns {
        flex-direction: column;
        gap: 20px;
    }
}


.values-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.value-card {
    flex: 1;
    min-width: 260px;
    background: #161616;
    border-radius: 24px;
    padding: 32px 24px;
    transition: transform 0.2s, background 0.2s;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-6px);
    background: #1f1f1f;
}

.value-icon {
    margin-bottom: 24px;
}

.value-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.value-text {
    color: #878685;
    font-size: 0.95rem;
    line-height: 1.5;
}


@media (max-width: 480px) {
    .about-container {
        padding: 40px 16px;
    }

    .value-card {
        padding: 28px 20px;
    }
}

.capabilities-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 2;
}


.capabilities-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-subtitle {
    display: inline-block;
    background: linear-gradient(90deg, #0d0d0d, #6a2a00 34%, #f6721b 54%, #6a2a00 72%, #0d0d0d);
    padding: 2px;
    border-radius: 40px;
    margin-bottom: 1rem;
}

.section-subtitle span {
    background-color: #040404;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    padding: 4px 20px;
    border-radius: 40px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.section-title span {
    color: #878685;
    font-weight: 500;
}


.features-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.row-duo {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.row-duo .feature-card {
    flex: 1;
    min-width: 280px;
}

.row-single {
    display: flex;
    justify-content: center;
}

.fullwidth-card {
    width: 100%;
}


.feature-card {
    background: #161616;
    border-radius: 28px;
    padding: 32px 28px;
    transition: transform 0.25s ease, box-shadow 0.2s;
    border: 1px solid rgba(246, 114, 27, 0.1);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(246, 114, 27, 0.4);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.feature-title {
    font-size: 1.7rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.feature-description {
    color: #a5a5a5;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.feature-detail-list {
    list-style: none;
    margin-top: 18px;
}

.feature-detail-list li {
    padding-left: 24px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23f6721b" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') left center no-repeat;
    background-size: 16px;
    margin-bottom: 10px;
    color: #c0c0c0;
    font-size: 0.9rem;
}

.feature-link {
    display: inline-block;
    margin-top: 18px;
    color: #f6721b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: 1px dashed rgba(246, 114, 27, 0.4);
    transition: 0.2s;
}

.feature-link:hover {
    color: #ff9142;
    border-bottom-color: #f6721b;
}


@media (max-width: 768px) {
    .capabilities-container {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .row-duo {
        flex-direction: column;
    }

    .feature-title {
        font-size: 1.4rem;
    }
}


.legal-container {
    max-width: 1170px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 60px 20px;
}

.legal-header {
    text-align: center;
    margin-bottom: 48px;
}

.legal-subtitle {
    display: inline-block;
    background: linear-gradient(90deg, #0d0d0d, #6a2a00 34%, #f6721b 54%, #6a2a00 72%, #0d0d0d);
    padding: 2px;
    border-radius: 40px;
    margin-bottom: 1rem;
}

.legal-subtitle span {
    background-color: #040404;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    padding: 4px 20px;
    border-radius: 40px;
}

.legal-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.legal-title span {
    color: #878685;
    font-weight: 500;
}

.update-date {
    margin-top: 16px;
    font-size: 0.85rem;
    color: #f6721b;
    letter-spacing: 0.5px;
}

.legal-card {
    background: #161616;
    border-radius: 28px;
    padding: 48px 40px;
    margin-bottom: 40px;
}

.legal-card h2 {
    font-size: 1.8rem;
    color: #fff;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.legal-card h2:first-of-type {
    margin-top: 0;
}

.legal-card h3 {
    font-size: 1.3rem;
    color: #f6721b;
    margin: 1.2rem 0 0.8rem;
    font-weight: 500;
}

.legal-card p {
    margin-bottom: 1rem;
    color: #a5a5a5;
}

.legal-card ul,
.legal-card ol {
    margin: 1rem 0 1rem 2rem;
    color: #a5a5a5;
}

.legal-card li {
    margin-bottom: 0.5rem;
}

.legal-card a {
    color: #f6721b;
    text-decoration: none;
}

.legal-card a:hover {
    text-decoration: underline;
}

.contact-line {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #2a2a2a;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .legal-title {
        font-size: 2rem;
    }

    .legal-card {
        padding: 32px 24px;
    }

    .legal-card h2 {
        font-size: 1.5rem;
    }
}

.legal-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.legal-nav a {
    color: #fff;
    background: #161616;
    padding: 8px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.legal-nav a:hover,
.legal-nav a.active {
    background: #f6721b;
    color: #000;
}

hr {
    border-color: #2a2a2a;
}

























@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .banner .section-title {
        font-size: 2.3rem;
    }

    .about-section,
    .whyus-section {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .legal-links a {
        margin: 0 0.75rem;
    }
}

hr {
    border-color: #222;
}

a {
    cursor: pointer;
}


@media(max-width: 500px) {
    .banner-shape {
        max-width: 100%;
        width: 100%;
        left: 0;
    }

    .legal-links {}
}