/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: #000;
    background: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container */
.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 80px;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgb(255 255 255 / 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 22px 0;
}

.header-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .header-container {
        padding: 0 80px;
    }
}

.logo img {
    height: 30px;
    width: auto;
}

@media (min-width: 768px) {
    .logo img {
        height: 40px;
    }
}

.nav-desktop {
    display: none;
    gap: 32px;
}

.nav-desktop a {
    color: #313131;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-desktop a:hover {
    color: #000;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.menu-btn {
    color: #fff;
    padding: 8px;
}

@media (min-width: 1024px) {
    .menu-btn {
        display: none;
    }
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 16px 20px;
    background: rgb(252 252 252 / 95%);
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    color: rgb(57 57 57 / 80%);
    font-size: 16px;
    padding: 8px 0;
    transition: color 0.3s;
}

.nav-mobile a:hover {
    color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 740px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    background-image: url('img/herosectionmobile.jpg');
    background-size: 100%;
    background-repeat: no-repeat;
}

@media (min-width: 768px) {
    .hero {
        min-height: 110vh;
        background-image: url('img/herosection.jpg');
        background-size: 100%;
        background-repeat: no-repeat;
        background-position-y: bottom;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-badge {
    z-index: 10;
    pointer-events: none;
    width: fit-content;
    margin: auto;
}

@media (min-width: 768px) {
    .hero-badge {
        top: 250px;
    }

    .hero-badge div {
        background: #ff5938;
        padding: 4px 16px;
        border-radius: 9999px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        margin-bottom: 24px;
        color: #fff;
        font-size: 14px!important;
        font-weight: 500;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    }
}

.hero-badge div {
    background: #ff5938;
    padding: 4px 16px;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.hero-badge p {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .hero-badge p {
        font-size: 16px;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    margin-top: -300px;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    max-width: 750px;
    line-height: 1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 56px;
        font-weight: 700;
        margin-bottom: 16px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 60px;
        font-weight: 700;
        margin-bottom: 16px;
    }
}

.gradient-text {
    background: linear-gradient(90deg, #d6d6d6 0%, #ffffff 24%, #ffffff 50%, #d6d6d6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 12px;
    color: #e3e3e3;
    max-width: 620px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 20px;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 16px;
    }
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 128px;
    background: linear-gradient(to top, #000, transparent);
}

/* Badge Component */
.badge {
    display: inline-block;
    background: #ff5938;
    color: #fff;
    padding: 4px 16px;
    border-radius: 9999px;
    margin-bottom: 24px;
    pointer-events: none;
    font-size: 14px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .badge {
        font-size: 14px;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 24px;
    }
}

.section-header h2 {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    line-height: 1.25;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 26px;
        text-transform: capitalize;
    }
}

/* Services Section */
.services {
    padding: 0px 0 32px 0;
    background: #fff;
}

@media (min-width: 768px) {
    .services {
        padding: 16px 0 40px 0;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1800px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

.service-card {
    position: relative;
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 24px;
    min-height: 362px;
    padding: 48px 24px;
    overflow: hidden;
}


@media (min-width: 768px) {
    .service-card {
        position: relative;
        background: #fff;
        border: 1px solid #e3e3e3;
        border-radius: 24px;
        min-height: 362px;
        padding: 48px 32px;
        overflow: hidden;
    }
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 250px;
    overflow: hidden;
}

.service-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.service-bg.trading img {
    mix-blend-mode: luminosity;
    opacity: 0.2;
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.7) 70%, #fff 100%);
}

.service-icons {
    position: relative;
    z-index: 10;
    height: 200px;
    margin-bottom: 32px;
}

.service-icons img {
    position: absolute;
    width: 96px;
    height: 96px;
    object-fit: contain;
}

@media (min-width: 768px) {
    .service-icons img {
        width: 128px;
        height: 128px;
    }
}

.service-icons .icon-1 {
    top: 32px;
    left: 32px;
    transform: rotate(8deg);
}

.service-icons .icon-2 {
    top: 48px;
    right: 32px;
    transform: rotate(-10deg);
}

.service-icons .icon-3 {
    top: 80px;
    left: 50%;
    transform: translateX(-50%) rotate(-15deg);
    width: 80px;
    height: 80px;
}

.rotate-20 {
    transform: rotate(20deg);
}

.rotate-15 {
    transform: rotate(15deg);
}

.rotate-minus-10 {
    transform: rotate(-10deg);
}

.rotate-minus-15 {
    transform: rotate(-15deg);
}

.rotate-minus-20 {
    transform: rotate(-20deg);
}

.service-content {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-top: 140px;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .service-content h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .service-content {
        position: relative;
        z-index: 10;
        text-align: center;
        margin-top: 190px;
    }
}

.service-content p {
    font-size: 16px;
    color: #6c6c6c;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .service-content p {
        font-size: 16px;
        line-height: 1.3;
    }
}

/* Legacy Section */
.legacy {
    position: relative;
    padding: 32px 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .legacy {
        padding: 32px 0;
    }
}

.legacy-bg {
    inset: 0;
    background-image: url('img/legacymobile.jpg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    min-height: 470px;
}

.legacy-bg .badge {
    margin: 24px auto;
    display: table;
}

.legacy-bg .container {
    display: flex;
    padding-top: 16px;
    height: 700px;
    flex-direction: column;
}


@media (min-width: 768px) {
    .legacy-bg .container {
        padding: 0 80px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        height: 470px;
        flex-direction: column;
    }

    .legacy-bg .badge {
        margin: 24px 0px;
        display: table;
    }

    .legacy .section-header h2 {
        color: #fff;
        text-align: left;
    }

    .legacy-bg {
        inset: 0;
        background-image: url('img/legacy.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 470px;
    }
}

.legacy .section-header h2 {
    color: #fff;
    text-align: center;
}

.legacy-description {
    max-width: 620px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .legacy-description {
        margin-bottom: 0px;
    }
}

.legacy-description p {
    font-size: 16px;
    color: #d8d8d8;
    text-align: justify;
    line-height: 1.3;
    font-weight: 300;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .legacy-description p {
        font-size: 16px;
        line-height: 1.3;
        color: #d8d8d8;
        font-weight: 300;
    }
}

@media (min-width: 1024px) {
    .legacy-description p {
        font-size: 16px;
        line-height: 1.3;
        text-align: left;
    }
}

.stats-grid {
    display: grid;
    gap: 32px;
    max-width: 700px;
    align-items: center;
    justify-content: start;
    align-content: center;
    grid-template-columns: repeat(2, 2fr);
}

@media (min-width: 768px) {
    .stats-grid {
        display: grid;
        gap: 32px;
        max-width: 700px;
        /* margin: 0 auto; */
        align-items: center;
        justify-content: start;
        align-content: center;
        grid-auto-flow: column;
    }
}

.stat {
    text-align: center;
}


.stat-value {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0px;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 30px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 8px;
    }
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 16px;
        line-height: 1.3;
    }
}

/* Why Sets Section */
.why-sets {
    padding: 32px 0 64px 0;
    background: #fff;
}

@media (min-width: 768px) {
    .why-sets {
        padding: 24px 0 72px 0;
    }
}

.features {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .features {
        gap: 32px;
        grid-template-columns: repeat(3, 1fr) !important;
        max-width: 1800px;
        margin: 0 auto;
        display: grid;
        flex-direction: row;
        gap: 48px;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: space-evenly;
        align-items: flex-start;
    }
}

.feature {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .feature {
        flex-direction: column;
        gap: 24px;
    }

    .feature.reverse {
        flex-direction: row-reverse;
    }
}

.feature-image {
    width: 100%;
}

@media (min-width: 768px) {
    .feature-image {
        width: 100%;
    }
}

.feature-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 24px;
}

.feature-content {
    width: 100%;
}

@media (min-width: 768px) {
    .feature-content {
        width: 100%;
    }
}

.why-sets .feature-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
    text-align: center;
}



.feature-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .feature-content h3 {
        font-size: 22px;
        margin-bottom: 16px;
    }
}

.feature-divider {
    width: 100%;
    height: 1px;
    background: #e3e3e3;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .feature-divider {
        margin-bottom: 16px;
    }

    .why-sets .feature-content h3 {
        font-size: 24px;
        font-weight: 600;
        color: #000;
        margin-bottom: 16px;
        text-align: left;
    }
}

.feature-content p {
    font-size: 18px;
    color: #000;
    line-height: 1.5;
    text-align: center;
}

@media (min-width: 768px) {
    .feature-content p {
        font-size: 16px;
        line-height: 1.2;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .feature-content p {
        font-size: 16px;
        line-height: 1.2;
    }
}

/* CTA Section */
.cta {
    position: relative;
    padding: 64px 0;
    overflow: hidden;
    height: 250px;
}

@media (min-width: 768px) {
    .cta {
        padding: 96px 0;
        overflow: hidden;
        height: 220px;

    }
}

.cta-bg {
    position: absolute;
    inset: 0;
    /*    background: linear-gradient(to bottom, #000 0%, #1a1a1a 50%, #000 100%);*/
}

.cta-bg .container {
    display: flex;
    justify-content: space-between;
    padding-top: 48px;
    height: 230px;
    flex-direction: column;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0;
    text-align: left;
}

@media (min-width: 768px) {
    .cta-content {
        text-align: left;
    }

    .cta-bg .container {
        display: flex;
        justify-content: space-between;
        padding-top: 48px;
        flex-direction: row;
        height: 270px;
    }
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .cta-content h2 {
        font-size: 40px;
    }
}

@media (min-width: 1024px) {
    .cta-content h2 {
        font-size: 22px;
    }
}

.cta-content>p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0px;
}

@media (min-width: 768px) {
    .cta-content>p {
        font-size: 20px;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 32px;
    }
}

@media (min-width: 1024px) {
    .cta-content>p {
        font-size: 16px;
    }
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .cta-buttons {
        justify-content: flex-start;
    }
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px 16px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    height: 48px;
    width: -webkit-fill-available;
}

@media (min-width: 768px) {
    .btn {
        font-size: 16px;
        font-weight: 600;
        transition: all 0.3s;
        height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 24px 32px;
        border-radius: 9999px;
        width: fit-content;
    }
}

.btn svg {
    flex-shrink: 0;
}

.btn-white {
    background: #fff;
    color: #000;
}

.btn-white:hover {
    background: #f5f5f5;
}

.btn-whatsapp {
    background: linear-gradient(to right, #16c53a, #45f06e);
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp:hover {
    background: linear-gradient(to right, #14b034, #3de062);
}

/* Footer */
.footer {
    position: relative;
    background: #000;
    color: #fff;
    padding: 24px 0 32px 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .footer {
        padding: 8px 0 32px 0;
    }
}

.footer-bg {
    position: absolute;
    inset: 0;
    /*    background: linear-gradient(to top, #565656 0%, #2b2b2b 50%, #000 100%);*/
    opacity: 0.8;
}

.footer-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        position: relative;
        z-index: 10;
        display: grid;
        gap: 0px;
        margin-bottom: 48px;
    }
}

.footer-col h3 {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .footer-col h3 {
        font-size: 16px;
        margin-bottom: 24px;
    }
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 24px;
}

.footer-tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links p {
    font-size: 16px;
    color: #fff;
}

@media (min-width: 768px) {
    .footer-links p {
        font-size: 16px;
        line-height: 1;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
}

.footer-links a {
    text-decoration: underline;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col>p {
    font-size: 16px;
    color: #fff;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .footer-col>p {
        font-size: 16px;
    }
}

.footer-divider {
    position: relative;
    z-index: 10;
    height: 1px;
    background: #3f3f3f;
    margin-bottom: 32px;
}

.footer-bottom {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p,
.footer-bottom a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {

    .footer-bottom p,
    .footer-bottom a {
        font-size: 14px;
    }
}

.footer-bottom a:hover {
    color: #fff;
}

.total {
    background-image: linear-gradient(to top, #000000, #0f0f0f, #191919, #212121, #2a2a2a);
}


.privacy {
    margin: 100px 0px 32px 0px;
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}


.privacy h5 {
    font-size: 16px;
    font-weight: 500;
    text-decoration: underline;
}


.privacy ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
    color: #353535;
}

.privacy p {
    font-size: 14px;
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
    color: #353535;
}