:root {
    --bg-color: #0b0b0b;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    
    /* Brand Colors based on the image */
    --gold: #d4a373;
    --gold-light: #e6c29b;
    --gold-dark: #b58356;
    
    /* Feature Colors */
    --c-green: #4ade80;
    --c-blue: #60a5fa;
    --c-orange: #fb923c;
    --c-purple: #c084fc;
    --c-red: #f87171;
    
    /* Box properties */
    --box-border: rgba(212, 163, 115, 0.4);
    --box-bg: rgba(20, 20, 20, 0.7);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.5;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(212, 163, 115, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(212, 163, 115, 0.05) 0%, transparent 40%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* HEADER */
.header {
    text-align: center;
    margin-bottom: 40px;
}

.main-title {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 10px;
    background: linear-gradient(to bottom, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.subtitle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.subtitle-icon {
    font-size: 2.5rem;
    color: var(--gold);
}

.subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
}

/* TOP BENEFITS */
.top-benefits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 300px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 5px;
}

.benefit-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.separator {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent);
}

/* HERO IMAGE */
.hero-image-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 50px auto;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    overflow: hidden;
}

.hero-mockup {
    width: 100%;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

/* FEATURES BOX */
.features-box {
    width: 100%;
    border: 1px solid var(--box-border);
    border-radius: 20px;
    padding: 30px;
    background: var(--box-bg);
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
}

.features-title {
    text-align: center;
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.feature-card {
    text-align: center;
    padding: 10px;
    position: relative;
}

/* Dividers between feature cards except the last one */
.feature-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

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

/* Feature Colors Utilities */
.color-green { color: var(--c-green); }
.color-blue { color: var(--c-blue); }
.color-orange { color: var(--c-orange); }
.color-purple { color: var(--c-purple); }
.color-red { color: var(--c-red); }

/* FOOTER */
.footer {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    padding-bottom: 40px;
}

.footer-content {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.footer-check {
    font-size: 3rem;
    color: var(--gold);
}

.footer-text {
    text-align: left;
}

.footer-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-text p {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 1px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .main-title { font-size: 4rem; }
    .features-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .feature-card:nth-child(3)::after { display: none; }
}

@media (max-width: 768px) {
    .main-title { font-size: 3rem; }
    .subtitle { font-size: 1.5rem; }
    .top-benefits { flex-direction: column; gap: 20px; }
    .separator { width: 60%; height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-card:nth-child(even)::after { display: none; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-text { text-align: center; }
}

@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .feature-card::after { display: none !important; }
}
