/* Base Styles */
:root {
    --primary-bg: linear-gradient(to right, #1f2937, #374151);
    --accent-color: #f59e0b;
    --text-color: #f9fafb;
    --dark-bg: #111827;
    --light-bg: #f9fafb;
    --card-bg: #ffffff;
    --border-color: #d1d5db;
    --shadow: 0 1px 4px rgba(0,0,0,0.1);
    --btn-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--primary-bg);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1em;
}

.section {
    padding: 2em 1em;
}

.section-header {
    text-align: center;
    margin-bottom: 2em;
}

.section-header h2 {
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 0.5em;
    font-size: 2rem;
}

.section-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.alt-bg {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Button Styles */
.btn {
    display: inline-block;
    background: var(--accent-color);
    color: #1f2937;
    padding: 0.5em 1em;
    border-radius: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: var(--btn-shadow);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    padding: 1em;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-consent.active {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1140px;
    width: 100%;
    gap: 1em;
}

.cookie-content p {
    margin-right: 1em;
}

/* Header & Navigation */
header {
    background: var(--dark-bg);
    border-bottom: 2px solid var(--accent-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 0;
}

.logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5em;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 4em 1em;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 2em;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5em;
    color: var(--accent-color);
    letter-spacing: 0.02em;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5em;
}

.hero-buttons {
    display: flex;
    gap: 1em;
}

.hero-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2em;
}

.card {
    background: var(--card-bg);
    border-left: 5px solid var(--accent-color);
    box-shadow: var(--shadow);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3 {
    padding: 1em 1em 0.5em;
    color: var(--accent-color);
}

.card p {
    padding: 0 1em 1em;
    color: #374151;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2em;
}

.feature {
    display: flex;
    gap: 1em;
    align-items: flex-start;
}

.feature-icon {
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon img {
    width: 30px;
    height: 30px;
}

.feature-content h3 {
    color: var(--accent-color);
    margin-bottom: 0.5em;
}

/* Benefits Section */
.benefits-container {
    display: flex;
    gap: 2em;
    align-items: center;
}

.benefits-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.benefits-list {
    flex: 1;
}

.benefit-item {
    margin-bottom: 1.5em;
}

.benefit-item h3 {
    color: var(--accent-color);
    margin-bottom: 0.5em;
    display: flex;
    align-items: center;
}

.benefit-item h3:before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    margin-right: 10px;
    border-radius: 50%;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2em;
}

.step {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5em;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    background: var(--accent-color);
    color: var(--dark-bg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1em;
}

.step h3 {
    color: var(--accent-color);
    margin-bottom: 0.5em;
}

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2em;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5em;
    border-radius: 8px;
    border-left: 5px solid var(--accent-color);
}

.testimonial-content {
    margin-bottom: 1.5em;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1em;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: var(--accent-color);
    margin-bottom: 0.2em;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2em;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
}

.pricing-card.featured:before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 0.5em 1em;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom-left-radius: 8px;
}

.pricing-header {
    padding: 2em;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 0.5em;
}

.price {
    margin-bottom: 1em;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price .period {
    font-size: 1rem;
    opacity: 0.7;
}

.pricing-features {
    padding: 2em;
}

.pricing-features ul li {
    margin-bottom: 0.8em;
    position: relative;
    padding-left: 1.5em;
}

.pricing-features ul li:before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.pricing-footer {
    padding: 0 2em 2em;
    text-align: center;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2em;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2em;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5em;
}

.form-group label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.5em;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    color: #374151;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid var(--accent-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

.info-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5em;
    border-radius: 8px;
}

.info-item h3 {
    color: var(--accent-color);
    margin-bottom: 0.5em;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1em;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: rgba(255, 255, 255, 0.05);
    padding: 1em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.faq-toggle {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.faq-answer {
    background: rgba(255, 255, 255, 0.02);
    padding: 0 1em;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1em;
    max-height: 500px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Footer */
footer {
    background: var(--dark-bg);
    border-top: 2px solid var(--accent-color);
    padding: 3em 1em 1em;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    margin-bottom: 2em;
}

.footer-logo {
    flex: 1 1 300px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1em;
}

.footer-links {
    flex: 2 1 600px;
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
}

.footer-column {
    flex: 1 1 150px;
}

.footer-column h4 {
    color: var(--accent-color);
    margin-bottom: 1em;
    font-size: 1.1rem;
}

.footer-column ul li {
    margin-bottom: 0.5em;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 1em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Legal Pages Styles */
.legal-content {
    padding: 4em 1em;
}

.legal-content .section-header h1 {
    color: var(--accent-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.2em;
}

.legal-text {
    background: rgba(255, 255, 255, 0.05);
    padding: 2em;
    border-radius: 8px;
    margin-top: 2em;
}

.legal-text h2 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin: 1.5em 0 0.8em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5em;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin: 1.2em 0 0.6em;
}

.legal-text p {
    margin-bottom: 1em;
    line-height: 1.7;
}

.legal-text ul {
    margin: 1em 0 1.5em 1.5em;
    list-style-type: disc;
}

.legal-text ul li {
    margin-bottom: 0.5em;
    line-height: 1.7;
}

.legal-text a {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-text a:hover {
    text-decoration: none;
}

.legal-text strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .benefits-container {
        flex-direction: column;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        flex-direction: column;
        background: var(--dark-bg);
        width: 80%;
        height: calc(100vh - 60px);
        padding: 2em;
        transition: right 0.3s ease;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .feature {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .legal-content .section-header h1 {
        font-size: 2rem;
    }
    
    .legal-text {
        padding: 1.5em;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .section {
        padding: 2em 0.5em;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .legal-text {
        padding: 1em;
    }
    
    .legal-text h2 {
        font-size: 1.3rem;
    }
    
    .legal-text h3 {
        font-size: 1.1rem;
    }
} 