:root {
    --primary-color: #ffd000;
    --primary-dark: #ccaa00;
    --bg-color: #050505;
    --card-bg: #111111;
    --text-color: #ffffff;
    --text-muted: #aaaaaa;
    --blue-accent: #00bfff;
    --green-accent: #00ff00;
    --border-color: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Options */
.white-text { color: #ffffff; }
.yellow-text { color: var(--primary-color); }
.blue-text { color: var(--blue-accent); font-weight: bold; }
.green-text { color: var(--green-accent); font-weight: bold; }

/* Hero Section (Mobile First) */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-image: url('assets/jaguar.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    width: 100%;
}

.main-title {
    font-size: 3rem;
    line-height: 0.9;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.subtitle-box {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #111111, transparent);
    padding: 20px;
    margin: 0 auto 40px auto;
    max-width: 500px;
    border-bottom: 4px solid var(--primary-color);
    border-radius: 10px;
    flex-direction: column;
    text-align: center;
}

.icon-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-right: 0;
    margin-bottom: 15px;
}

.subtitle-top {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.subtitle-bottom {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    color: #000;
    font-weight: 800;
    font-size: 1.5rem;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 208, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 208, 0, 0.6);
}

.cta-button i {
    margin-right: 10px;
    font-size: 1.8rem;
    vertical-align: middle;
}

/* Pricing Section (Mobile First) */
.pricing-section {
    padding: 80px 0;
    background-color: var(--card-bg);
    border-top: 2px solid var(--border-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 5px;
    color: #fff;
}

.section-title .highlight {
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--blue-accent);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.feature-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    color: var(--green-accent);
}

.feature-highlight i {
    font-size: 3rem;
    margin-right: 20px;
}

.feature-text h3 {
    font-size: 1.5rem;
    font-weight: 900;
}

.feature-text p {
    color: #fff;
    font-size: 1rem;
    font-weight: 300;
}

/* Pricing Table (Mobile First) */
.pricing-table {
    border: 1px solid var(--blue-accent);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 50px;
    background: rgba(0, 0, 0, 0.5);
}

.pricing-header, .pricing-row {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.pricing-row:last-child {
    border-bottom: none;
}

.empty-cell {
    display: none;
}

.column-header {
    text-align: center;
    padding: 20px;
    border-left: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: var(--blue-accent);
    font-weight: 900;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.column-header:last-child {
    color: var(--green-accent);
    border-bottom: none;
}

.column-header i {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.row-header {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
}

.row-header i {
    font-size: 2rem;
    color: var(--text-muted);
    margin-right: 20px;
}

.term {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
}

.sub-term {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.price-cell {
    padding: 20px;
    text-align: center;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.price-cell:last-child {
    border-bottom: none;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.05);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--blue-accent);
    margin-right: 15px;
    margin-top: 5px;
}

.benefit-item:nth-child(3) i {
    color: var(--primary-color);
}
.benefit-item:nth-child(2) i {
    color: var(--green-accent);
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.final-cta {
    text-align: center;
    margin-top: 40px;
}

.text-cta {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.text-cta i {
    color: #25D366;
    font-size: 1.5rem;
    vertical-align: middle;
    margin-right: 10px;
}

.text-cta strong {
    color: var(--blue-accent);
}

.text-cta:hover {
    color: var(--primary-color);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s;
}

.floating-whatsapp:hover {
    background-color: #1ebe5d;
    transform: scale(1.1);
}

/* Animations */
.pulse {
    animation: pulse 2s infinite;
}

.pulse-fast {
    animation: pulse-fast 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 208, 0, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 208, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 208, 0, 0); }
}

@keyframes pulse-fast {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Desktop overrides (min-width: 768px) */
@media (min-width: 768px) {
    .main-title {
        font-size: clamp(3rem, 6vw, 5.5rem);
    }
    
    .pricing-header, .pricing-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        text-align: left;
    }
    
    .empty-cell {
        display: block;
        padding: 20px;
    }
    
    .column-header {
        border-left: 1px solid var(--border-color);
        border-bottom: none;
    }
    .column-header:last-child {
        border-bottom: none;
    }
    
    .price-cell {
        border-left: 1px solid var(--border-color);
        border-bottom: none;
    }
    
    .row-header {
        justify-content: flex-start;
        background: transparent;
    }
    
    .hero {
        background-position: center right;
    }
    
    .hero .overlay {
        background: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0.1) 100%);
    }
    
    .hero-content {
        text-align: left;
    }
    
    .subtitle-box {
        margin: 0 0 40px 0;
        border-left: 4px solid var(--primary-color);
        border-bottom: none;
        border-radius: 0 10px 10px 0;
        flex-direction: row;
        text-align: left;
        padding: 15px 25px;
    }
    
    .icon-box i {
        margin-right: 20px;
        margin-bottom: 0;
    }
}
