/* CSS Variables for Consistency */
:root {
    --bg-dark: #120014;
    --accent-pink: #FF4FD8;
    --text-light: #f5f5f5;
    --text-dim: #b0b0b0;
    --lava-glow: 0 0 15px rgba(255, 79, 216, 0.6);
    --lava-gradient: linear-gradient(135deg, #FF4FD8 0%, #a1005d 100%);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body.AbCdEfGhIjKl {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Nav */
header.MnOpQrStUvWx {
    background: rgba(18, 0, 20, 0.95);
    border-bottom: 2px solid var(--accent-pink);
    box-shadow: 0 5px 20px rgba(255, 79, 216, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

div.YzAbCdEfGhIj {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

div.KlMnOpQrStUv {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: var(--lava-glow);
}

nav.UvWxYzAbCdEf ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav.UvWxYzAbCdEf ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

nav.UvWxYzAbCdEf ul li a:hover {
    color: var(--accent-pink);
    text-shadow: var(--lava-glow);
}

/* Burger Menu (Hidden by default) */
.WxYzAbCdEfGh { display: none; }
.IjKlMnOpQrSt { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.IjKlMnOpQrSt span { width: 25px; height: 3px; background: var(--accent-pink); border-radius: 2px; }

/* Hero Section */
section.EfGhIjKlMnOp {
    padding: 80px 0;
    position: relative;
}

.CdEfGhIjKlMn {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.YzAbCdEfGhIj-links {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tempo-button-link {
    padding: 8px 20px;
    border: 1px solid var(--accent-pink);
    color: var(--accent-pink);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.tempo-button-link:hover {
    background: var(--accent-pink);
    color: #fff;
    box-shadow: var(--lava-glow);
}

.KlMnOpQrStUv-hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.WxYzAbCdEfGh-hero-image {
    flex: 1;
}

.WxYzAbCdEfGh-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255, 79, 216, 0.3);
    border: 1px solid rgba(255, 79, 216, 0.2);
}

.UvWxYzAbCdEf-hero-text {
    flex: 1.2;
}

.GhIjKlMnOpQr {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: var(--lava-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.StUvWxYzAbCd-sub {
    font-size: 1.4rem;
    color: var(--text-dim);
    margin-bottom: 25px;
}

.EfGhIjKlMnOp-desc, .CdEfGhIjKlMn-desc {
    margin-bottom: 20px;
    color: var(--text-dim);
}

.YzAbCdEfGhIj-cta {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-pink);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 10px;
    transition: var(--transition);
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0% { box-shadow: 0 0 5px rgba(255, 79, 216, 0.4); }
    50% { box-shadow: 0 0 20px rgba(255, 79, 216, 0.8); }
    100% { box-shadow: 0 0 5px rgba(255, 79, 216, 0.4); }
}

/* Reviews Carousel (Pure CSS) */
.KlMnOpQrStUv-reviews {
    background: #1a001d;
    padding: 100px 0;
    overflow: hidden;
}

.WxYzAbCdEfGh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.IjKlMnOpQrSt-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-light);
}

.UvWxYzAbCdEf-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.GhIjKlMnOpQr-radio { display: none; }

.StUvWxYzAbCd-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%;
}

.EfGhIjKlMnOp-slide {
    width: 33.333%;
    padding: 20px;
}

.CdEfGhIjKlMn-card {
    background: #250029;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 79, 216, 0.3);
    text-align: center;
}

.YzAbCdEfGhIj-text {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.KlMnOpQrStUv-author {
    color: var(--accent-pink);
    font-weight: bold;
}

.WxYzAbCdEfGh-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.WxYzAbCdEfGh-controls label {
    width: 12px;
    height: 12px;
    background: #444;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

#slide1:checked ~ .StUvWxYzAbCd-slides { transform: translateX(0); }
#slide2:checked ~ .StUvWxYzAbCd-slides { transform: translateX(-33.333%); }
#slide3:checked ~ .StUvWxYzAbCd-slides { transform: translateX(-66.666%); }

#slide1:checked ~ .WxYzAbCdEfGh-controls label:nth-child(1),
#slide2:checked ~ .WxYzAbCdEfGh-controls label:nth-child(2),
#slide3:checked ~ .WxYzAbCdEfGh-controls label:nth-child(3) {
    background: var(--accent-pink);
    box-shadow: var(--lava-glow);
}

/* Pricing Section */
.IjKlMnOpQrSt-pricing {
    padding: 100px 0;
}

.GhIjKlMnOpQr-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.StUvWxYzAbCd-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.EfGhIjKlMnOp-price-card {
    background: #1e0021;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 79, 216, 0.1);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    text-align: center;
    transition: var(--transition);
}

.EfGhIjKlMnOp-price-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-pink);
}

.EfGhIjKlMnOp-price-card.featured {
    border: 2px solid var(--accent-pink);
    box-shadow: 0 0 20px rgba(255, 79, 216, 0.1);
    background: #2a002e;
}

.CdEfGhIjKlMn-package {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.YzAbCdEfGhIj-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-pink);
    margin-bottom: 30px;
}

.KlMnOpQrStUv-list {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.KlMnOpQrStUv-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
}

.KlMnOpQrStUv-list li::before {
    content: "⚡";
    margin-right: 10px;
}

.WxYzAbCdEfGh-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--accent-pink);
    color: var(--accent-pink);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
}

.WxYzAbCdEfGh-btn:hover {
    background: var(--accent-pink);
    color: white;
}

.IjKlMnOpQrSt-quick-nav {
    text-align: center;
    margin-top: 50px;
    color: var(--text-dim);
}

.IjKlMnOpQrSt-quick-nav a {
    color: var(--accent-pink);
    text-decoration: none;
    margin: 0 10px;
}

/* For Whom Section */
.UvWxYzAbCdEf-for-whom {
    background: #120014;
    padding: 100px 0;
}

.CdEfGhIjKlMn-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.YzAbCdEfGhIj-feature-item {
    background: rgba(255, 79, 216, 0.05);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    border-left: 4px solid var(--accent-pink);
}

.KlMnOpQrStUv-line {
    display: block;
    height: 1px;
    background: linear-gradient(to right, var(--accent-pink), transparent);
    margin-bottom: 15px;
}

.WxYzAbCdEfGh-discount {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #00ffcc;
    text-transform: uppercase;
    font-weight: bold;
}

/* Expert Section */
.IjKlMnOpQrSt-expert {
    padding: 100px 0;
    background: linear-gradient(rgba(18,0,20,0.8), rgba(18,0,20,0.8)), url('https://placehold.co/1200x600/120014/120014?text=Background&width=1200&height=600');
    background-size: cover;
}

.GhIjKlMnOpQr-quote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.GhIjKlMnOpQr-quote p {
    font-size: 2rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 30px;
}

.StUvWxYzAbCd-author {
    font-size: 1.2rem;
    color: var(--accent-pink);
    font-weight: bold;
}

/* Benefits Section */
.EfGhIjKlMnOp-benefits {
    padding: 100px 0;
    background: #1a001d;
}

.YzAbCdEfGhIj-flex-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.KlMnOpQrStUv-text-side { flex: 1; }
.UvWxYzAbCdEf-img-side { flex: 1; }
.UvWxYzAbCdEf-img-side img { width: 100%; border-radius: 15px; }

.WxYzAbCdEfGh-h2 { font-size: 2.5rem; margin-bottom: 30px; }

.IjKlMnOpQrSt-benefits-list {
    list-style: none;
}

.IjKlMnOpQrSt-benefits-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.IjKlMnOpQrSt-benefits-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--accent-pink);
}

/* Text Blocks */
section.StUvWxYzAbCd-text-block, 
section.YzAbCdEfGhIj-text-block, 
section.IjKlMnOpQrSt-text-block {
    padding: 80px 0;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.EfGhIjKlMnOp-container p, .KlMnOpQrStUv-container p, .UvWxYzAbCdEf-container p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--text-dim);
}

.KlMnOpQrStUv-container ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.KlMnOpQrStUv-container ul li {
    margin-bottom: 10px;
    color: var(--text-dim);
}

/* FAQ Section */
.StUvWxYzAbCd-faq {
    padding: 100px 0;
    background: #1a001d;
}

.YzAbCdEfGhIj-faq-item {
    background: #250029;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 79, 216, 0.2);
}

.YzAbCdEfGhIj-faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: var(--text-light);
    outline: none;
    list-style: none;
}

.YzAbCdEfGhIj-faq-item summary::-webkit-details-marker { display: none; }

.YzAbCdEfGhIj-faq-item summary:hover {
    background: rgba(255, 79, 216, 0.1);
}

.KlMnOpQrStUv-faq-content {
    padding: 0 20px 20px;
    color: var(--text-dim);
}

/* Form Section */
.WxYzAbCdEfGh-form-section {
    padding: 100px 0;
}

.StUvWxYzAbCd-form {
    max-width: 600px;
    margin: 40px auto 0;
    background: #250029;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--accent-pink);
}

.EfGhIjKlMnOp-form-group {
    margin-bottom: 20px;
}

.EfGhIjKlMnOp-form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
}

.EfGhIjKlMnOp-form-group input, 
.EfGhIjKlMnOp-form-group textarea {
    width: 100%;
    padding: 12px;
    background: #120014;
    border: 1px solid #444;
    border-radius: 5px;
    color: white;
}

.EfGhIjKlMnOp-form-group textarea {
    height: 120px;
}

.CdEfGhIjKlMn-checkbox {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.CdEfGhIjKlMn-checkbox a {
    color: var(--accent-pink);
}

.YzAbCdEfGhIj-submit {
    width: 100%;
    padding: 15px;
    background: var(--accent-pink);
    border: none;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.YzAbCdEfGhIj-submit:hover {
    box-shadow: var(--lava-glow);
    transform: scale(1.02);
}

/* Footer */
.KlMnOpQrStUv-footer {
    padding: 60px 0;
    background: #09000a;
    border-top: 1px solid #333;
    text-align: center;
}

.IjKlMnOpQrSt-copy {
    font-weight: bold;
    margin-bottom: 10px;
}

.UvWxYzAbCdEf-email a {
    color: var(--accent-pink);
    text-decoration: none;
}

.GhIjKlMnOpQr-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.GhIjKlMnOpQr-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
}

.GhIjKlMnOpQr-links a:hover {
    color: var(--accent-pink);
}

/* Responsive */
@media (max-width: 992px) {
    .KlMnOpQrStUv-hero-content, .YzAbCdEfGhIj-flex-row {
        flex-direction: column;
    }
    .GhIjKlMnOpQr { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .IjKlMnOpQrSt { display: flex; }
    nav.UvWxYzAbCdEf {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1a001d;
        padding: 20px;
        border-bottom: 2px solid var(--accent-pink);
    }
    .WxYzAbCdEfGh:checked ~ nav.UvWxYzAbCdEf { display: block; }
    nav.UvWxYzAbCdEf ul { flex-direction: column; text-align: center; }
}