:root {
    --primary-color: #FF6B00;
    /* XPERT Orange */
    --primary-dark: #e65c00;
    --secondary-color: #111111;
    /* Tech Black */
    --text-dark: #111111;
    --text-gray: #333333;
    --bg-light: #F5F5F5;
    --white: #ffffff;
    --whatsapp-green: #25D366;
    --offer-red: #DC2626;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    /* ExtraBold for impact */
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    /* Retail style */
    letter-spacing: -0.5px;
}

h2.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

p {
    margin-bottom: 15px;
    font-weight: 400;
    color: var(--text-gray);
}

.text-highlight {
    color: var(--primary-color);
    font-weight: 900;
}

.text-yellow {
    color: #FFD700;
}

/* Gold for stars */
.text-primary {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--whatsapp-green);
    color: var(--whatsapp-green);
    width: 100%;
    padding: 10px;
    font-size: 1rem;
}

.btn-outline:hover {
    background-color: var(--whatsapp-green);
    color: var(--white);
}

.btn-large {
    font-size: 1.3rem;
    padding: 20px 40px;
    width: 100%;
    max-width: 500px;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Sticky Bar */
.sticky-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-color);
}

.sticky-bar .highlight {
    color: var(--primary-color);
    font-weight: 800;
}

.sticky-bar p {
    margin-bottom: 0;
    color: var(--white);
}

/* Hero Section */
.hero {
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0 120px;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    /* Darker overlay for contrast */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 4px;
    /* Square look for retail */
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.subheadline {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.microcopy {
    font-size: 0.85rem;
    margin-top: 15px;
    color: #cccccc;
    font-weight: 600;
}

/* Authority Section */
.authority {
    padding: 40px 0;
    background-color: #F9FAFB;
    border-bottom: 1px solid #eee;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.auth-item {
    text-align: center;
    padding: 20px;
}

.auth-item i {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Offers Section */
.offers {
    padding: 60px 0;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.card-header {
    background-color: var(--white);
    color: var(--secondary-color);
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.card-header i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.card-body {
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-body .btn {
    margin-top: auto;
}

.price {
    display: block;
    font-weight: 800;
    color: var(--offer-red);
    margin: 15px 0;
    font-size: 1.3rem;
}

/* Why Us Section */
.why-us {
    padding: 60px 0;
    background-color: var(--white);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature {
    display: flex;
    gap: 15px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-color);
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

/* Steps Section */
.steps {
    padding: 60px 0;
    text-align: center;
    background-color: #F5F5F5;
}

.steps-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 200px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    background-color: var(--white);
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 20px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: var(--radius);
    background-color: #fafafa;
}

.faq-item h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    border-top: 5px solid var(--primary-color);
}

.final-cta h2 {
    color: var(--white);
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Footer */
footer {
    background-color: #000;
    color: #E0E0E0;
    padding: 40px 0 20px;
}

footer p {
    color: #E0E0E0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-info h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.copyright {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 0.85rem;
}

/* Floating Button */
.float-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--whatsapp-green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.float-btn:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .btn-large {
        width: 100%;
        font-size: 1.1rem;
        padding: 15px;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}