:root {
    --primary-red: #D31326;
    --primary-cyan: #00D3D6;
    --text-dark: #111111;
    --text-muted: #6A6D73;
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-gray: #F2F4F7;
    --bg-black: #060606;
    --border-color: #E5E7EB;
    
    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

.text-red { color: var(--primary-red); }
.text-cyan { color: var(--primary-cyan); }
.overline {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 800;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-red);
    color: #FFF;
    border: none;
}
.btn-primary:hover {
    background-color: #B50D1E;
}

/* NAVBAR */
.navbar {
    background: var(--bg-white);
    position: relative;
    z-index: 100;
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3rem;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: baseline;
    font-weight: 900;
    letter-spacing: 1.5px;
    font-size: 1.5rem;
}

.logo-sub {
    margin-left: 6px;
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    height: 100%;
}

.nav-links a {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    height: 100%;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-dark);
}

.nav-links a.active {
    color: var(--primary-red);
    border-bottom: 2px solid var(--primary-red);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    position: relative;
}

.cart-btn .cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-red);
    color: #FFF;
    font-size: 0.6rem;
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-actions .btn-primary {
    padding: 0.85rem 1.75rem;
    border-radius: 4px;
}


/* HERO SECTION */
.hero-section {
    padding: 5rem 0 2rem 0;
    background: radial-gradient(circle at 70% 30%, rgba(245,247,250,1) 0%, rgba(255,255,255,1) 60%);
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 50%;
    padding-bottom: 2rem;
    z-index: 10;
}

.main-title {
    font-size: 4rem;
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 2.5rem;
    max-width: 85%;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-image {
    flex: 1;
    position: relative;
    height: 600px;
    display: flex;
    justify-content: flex-end;
}

.hero-img-element {
    position: absolute;
    right: -5%;
    bottom: -15%;
    height: 125%;
    object-fit: contain;
    z-index: 5;
    pointer-events: none;
}


/* FEATURES ROW */
.features-row {
    background-color: var(--bg-white);
    padding: 2rem 0 3rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    position: relative;
}

.feature-item {
    padding: 1rem;
}

.feature-icon {
    margin-bottom: 1.25rem;
}

.feature-item h3 {
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.feature-item p {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}


/* HOW IT WORKS */
.how-it-works {
    padding: 5rem 0 7rem 0;
    background-color: var(--bg-gray);
}

.section-header.center {
    text-align: center;
    margin-bottom: 4.5rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.steps-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.steps-connector {
    position: absolute;
    top: 50%;
    left: 17%;
    right: 17%;
    height: 2px;
    border-top: 3px dotted var(--primary-cyan);
    z-index: 1;
    opacity: 0.7;
}

.step-card {
    background-color: #FFF;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.step-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 1.1rem;
    font-weight: 900;
}

.step-icon {
    margin: 1.5rem 0 2rem 0;
}

.step-card h3 {
    font-size: 0.85rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-card p {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.6;
}


/* WHY CHOOSE SECTION */
.why-choose {
    background-color: #000000;
    color: #FFF;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.why-bg-image {
    position: absolute;
    top: 0;
    right: -10%;
    width: 65%;
    height: 100%;
    z-index: 1;
}

.why-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    opacity: 0.6;
}

.why-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #000000 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0) 100%);
}

.why-container {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.why-left {
    flex: 1;
    max-width: 450px;
}

.why-title {
    font-size: 3rem;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.why-desc {
    font-size: 0.9rem;
    color: #A0A4AA;
    font-weight: 500;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.why-list {
    list-style: none;
    margin-bottom: 3.5rem;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.why-list svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.why-right {
    flex: 1.2;
    display: flex;
    justify-content: center;
}

.benefits-card {
    background-color: #111111;
    border-radius: 16px;
    padding: 3rem;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.benefits-card h4 {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid #222222;
}

.benefit-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.benefit-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-text h5 {
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-text p {
    font-size: 0.8rem;
    color: #8C929A;
    line-height: 1.6;
    font-weight: 500;
}


/* BOTTOM BAR */
.bottom-bar {
    background-color: var(--bg-white);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    
    .hero-container {
        flex-direction: column;
    }
    .hero-content {
        max-width: 100%;
        padding-bottom: 2rem;
    }
    .hero-image {
        width: 100%;
        height: 400px;
        justify-content: center;
    }
    .hero-img-element {
        right: auto;
        bottom: 0;
        height: 100%;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .steps-connector {
        display: none;
    }
    
    .why-container {
        flex-direction: column;
        gap: 4rem;
    }
    .why-bg-image {
        width: 100%;
    }
}
