/* --- CSS Variables --- */
:root {
    --primary-color: #00E676; /* Vibrant Green */
    --secondary-color: #FFEA00; /* Bright Yellow */
    --accent-color: #2979FF; /* Energetic Blue */
    --bg-color: #0B0E14; /* Deep dark background */
    --text-main: #FFFFFF;
    --text-muted: #B0BEC5;
    
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    --font-heading: 'Paytone One', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* --- Abstract Background Shapes --- */
.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
    animation: float 20s infinite alternate;
}
.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    left: -100px;
}
.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    bottom: 20%;
    right: -50px;
    animation-delay: -5s;
}
.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    top: 40%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, 50px) rotate(45deg); }
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    line-height: 1.2;
}

h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
}
h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}
h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.highlight {
    color: var(--primary-color);
    text-transform: uppercase;
    display: inline-block;
    transform: rotate(-2deg);
}

.highlight-text {
    color: var(--secondary-color);
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* --- Components --- */
.badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.4);
}

.scroll-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: #000;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(0, 230, 118, 0.4);
}
.scroll-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.6);
}

.rounded-image {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.rounded-image:hover {
    transform: scale(1.03) rotate(1deg);
}
.shadow {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255,255,255,0.1);
}

/* --- Layout Sections --- */
header.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}
.subtitle {
    font-size: 1.4rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.section {
    padding: 100px 0;
    margin: 40px 0;
    border-radius: 30px;
}
.section-content {
    display: flex;
    align-items: center;
    gap: 50px;
}
.section.reverse .section-content {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
}
.image-content {
    flex: 1;
}

/* --- Glassmorphism --- */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* --- Feature List --- */
.feature-list {
    list-style: none;
    margin-top: 20px;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.03);
    padding: 15px;
    border-radius: 12px;
    transition: transform 0.3s;
}
.feature-list li:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.08);
}
.feature-list .icon {
    font-size: 1.5rem;
    margin-right: 15px;
    line-height: 1;
}

/* --- Stats Cards --- */
.stats-cards {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    padding: 25px;
    border-radius: 20px;
    border-left: 5px solid var(--accent-color);
    transition: transform 0.3s;
}
.card h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.pulse-hover:hover {
    transform: scale(1.05);
    border-left-color: var(--primary-color);
}

/* --- Pricing Box --- */
.pricing-box {
    background: var(--accent-color);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(41, 121, 255, 0.3);
}
.price-label {
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    opacity: 0.9;
}
.price {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin: 15px 0;
    text-shadow: 2px 2px 0px #000;
}
.price-desc {
    font-size: 1rem;
    opacity: 0.9;
}

/* --- CTA Section --- */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), #00C853);
    color: #000;
    padding: 80px 40px;
}
.cta-section h3 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 0px rgba(255,255,255,0.5);
}
.cta-section p, .cta-section strong {
    color: #000;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}
.benefit-item {
    background: rgba(255,255,255,0.2);
    padding: 30px 20px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}
.benefit-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}
.final-word h4 {
    font-size: 1.8rem;
    margin-top: 20px;
}

footer {
    text-align: center;
    padding: 40px;
    opacity: 0.6;
}

/* --- Contact Section --- */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}
.hero-buttons .scroll-btn {
    margin-top: 0;
}
.scroll-btn.outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}
.scroll-btn.outline:hover {
    background-color: rgba(0, 230, 118, 0.1);
    box-shadow: 0 5px 20px rgba(0, 230, 118, 0.2);
}
.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.contact-info .benefit-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    margin-bottom: 0;
}
.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 10px;
}
.contact-info a:hover {
    text-decoration: underline;
}
.form-content {
    flex: 1;
    background: rgba(0,0,0,0.3);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}
.form-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 15px;
    margin-top: 10px;
}

/* --- Animations --- */
.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .section-content, .section.reverse .section-content {
        flex-direction: column;
    }
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
    .glass-panel { padding: 30px; }
    .benefits-grid { grid-template-columns: 1fr; }
}
