/* Button Styles */
.btn-cta {
    display: inline-block;
    background: linear-gradient(90deg, #ff0050, #d30042);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(255, 0, 80, 0.6);
    animation: pulse 2s infinite;
    margin-top: 20px;
    border: 2px solid #fff;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 80, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 0, 80, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 80, 0); }
}

/* Header and Hero Section */
header {
    background: #000;
    padding: 40px 0 80px 0;
    position: relative;
}

/* Logo Styling */
.site-logo {
    width: 200px;
    margin-bottom: 40px;
}

.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,242,234, 0.2);
    border: 1px solid #333;
    transform: rotate(2deg);
}

.hero-badge {
    background: #ffe600;
    color: #000;
    display: inline-block;
    padding: 5px 15px;
    font-weight: bold;
    transform: skew(-10deg);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 25px;
}

/* Image Background Section */
.image-bg-section {
    position: relative;
    /* Background Image URL - Dark overlay included */
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.85)),
                url('../images/construction-team.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid #333;
    border-top: 1px solid #333;
}

.image-bg-section h1 {
    text-shadow: 0 4px 10px rgba(0,0,0,0.8);
}

/* Cards */
.card {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: transform 0.3s;
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-accent);
}

/* Module List */
.module-list {
    max-width: 800px;
    margin: 0 auto;
}

.module-item {
    background: #1a1a1a;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    border-left: 4px solid var(--primary-accent);
    display: flex;
    align-items: center;
}

.module-tag {
    font-weight: bold;
    color: var(--primary-accent);
    margin-right: 15px;
    min-width: 90px;
}

/* Bonus Cards */
.bonus-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid #ffd700;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

/* Pricing Section */
.price-area {
    background: #fff;
    color: #000;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-accent);
    line-height: 1;
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #777;
}