/* Base Styles */
:root {
    --primary-color: #ff5722;
    --primary-dark: #e64a19;
    --secondary-color: #4a9eff;
    --accent-blue: #3d8cf5;
    --bg-dark: #1a1f2e;
    --bg-darker: #13161f;
    --bg-card: #252b3d;
    --bg-card-hover: #2d3446;
    --text-color: #e8eaf0;
    --text-light: #9ba3b4;
    --white: #fff;
    --border-color: #3a4256;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.4);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

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

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    margin-left: 10px;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* Banner */
.banner {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 10px;
    font-weight: 500;
}

/* Header */
header {
    background-color: var(--bg-darker);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--border-color);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

nav ul li a.btn {
    color: var(--white);
}

/* Hero Section */
.hero {
    background-color: var(--bg-dark);
    padding: 50px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 50px;
}

.hero-image {
    max-width: 1400px;
    margin: 50px auto;
    padding: 0 40px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    animation: fadeInUp 1s ease forwards;
}

.hero-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.hero-cta {
    text-align: center;
    margin: 40px auto 0;
    padding: 0 20px;
}

.hero-cta .btn {
    margin: 0 10px;
}

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

.value-prop {
    font-size: 1.2rem;
    color: #ff8a65;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 50px;
}

.stat {
    text-align: center;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 10px;
}

/* Features Section */
.features {
    background-color: var(--bg-darker);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background-color: var(--bg-card-hover);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    height: 70px;
    width: 70px;
    background-color: rgba(74, 158, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
    border: 2px solid rgba(74, 158, 255, 0.2);
}

.feature:hover .feature-icon {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: rotate(360deg);
    border-color: var(--secondary-color);
}

/* Pricing Section */
.pricing {
    background-color: var(--bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.pricing-card {
    background-color: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 20px rgba(74, 158, 255, 0.3);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 5px 35px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 0 30px rgba(74, 158, 255, 0.4);
}

.pricing-header {
    padding: 30px;
    text-align: center;
    background-color: var(--bg-card-hover);
}

.trial-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-blue));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 15px 0;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul li {
    margin-bottom: 15px;
}

.pricing-features ul li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.pricing-card .btn {
    margin: 0 30px 30px;
    width: calc(100% - 60px);
}

/* Contact Form */
.contact {
    background-color: var(--bg-darker);
    text-align: center;
}

.contact form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: left;
    border: 1px solid var(--border-color);
}

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

.half {
    width: 48%;
    display: inline-block;
    vertical-align: top;
}

.half:nth-child(odd) {
    margin-right: 3%;
}

.full {
    width: 100%;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--bg-darker);
    color: var(--text-color);
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(74, 158, 255, 0.2);
}

.checkbox-group {
    display: flex;
    gap: 20px;
}

.checkbox-group input {
    width: auto;
    margin-right: 8px;
}

button[type="submit"] {
    margin-top: 10px;
}

#formStatus {
    margin-top: 20px;
    font-weight: 500;
}

/* Footer */
footer {
    background-color: var(--bg-darker);
    color: var(--text-color);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .logo {
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

footer .logo:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

footer .logo a {
    display: block;
}

footer .logo img {
    height: 40px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--bg-card);
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    padding: 30px;
    position: relative;
    text-align: center;
    border: 1px solid var(--border-color);
}

.modal-form {
    max-width: 800px;
    text-align: left;
}

.modal-form h2 {
    text-align: center;
    margin-bottom: 10px;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.close:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.hero, .feature, .pricing-card, .contact form {
    animation: slideUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    nav ul {
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--bg-darker);
        padding: 20px;
        display: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .half {
        width: 100%;
        margin-right: 0 !important;
    }
    
    .checkbox-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
} 