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

:root {
    --primary: #FF4500;
    --secondary: #FFD700;
    --accent: #FF8C00;
    --dark: #111111;
    --light: #FFFFFF;
    --gray: #333333;
    --light-gray: #F2F2F2;
    --text-dark: #111111;
    --text-light: #FFFFFF;
    --gradient: linear-gradient(to right, var(--primary), var(--secondary));
    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: var(--dark);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--gradient);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.highlight {
    color: var(--primary);
    font-weight: 700;
    position: relative;
}

/* Header Styles */
.site-header {
    position: sticky;
    top: 0;
    background-color: var(--light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 15px 0;
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
}

.site-logo {
    margin-right: 10px;
}

.site-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    color: var(--dark);
    font-weight: 600;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gradient);
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

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

.nav-list a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,69,0,0.2) 0%, rgba(255,215,0,0.1) 70%, rgba(255,255,255,0) 100%);
    border-radius: 50%;
    z-index: 1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gray);
}

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

.button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.primary-button {
    background: var(--gradient);
    color: var(--light);
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.5);
    color: var(--light);
}

.secondary-button {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.secondary-button:hover {
    background: rgba(255, 69, 0, 0.1);
    transform: translateY(-3px);
}

.large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.hero-visual {
    position: relative;
}

.hero-image {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Features Section */
.features {
    background-color: var(--light);
}

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

.feature-card {
    background: var(--light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
}

/* How It Works Section */
.how-it-works {
    background-color: var(--light-gray);
    position: relative;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    min-width: 60px;
}

.step-content h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.step-content p {
    color: var(--gray);
}

.cta-box {
    background: var(--gradient);
    border-radius: 10px;
    padding: 50px;
    text-align: center;
    color: var(--light);
    box-shadow: var(--card-shadow);
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light);
}

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

.testimonial-card {
    background: var(--light);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.rating {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.quote {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--gray);
}

.author {
    font-weight: 600;
    color: var(--dark);
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23111111"/><circle cx="20" cy="20" r="10" fill="%23FF4500" fill-opacity="0.3"/><circle cx="80" cy="80" r="15" fill="%23FFD700" fill-opacity="0.3"/></svg>');
    background-size: cover;
    background-position: center;
    color: var(--light);
    position: relative;
    z-index: 1;
}

.cta-wrapper {
    text-align: center;
    padding: 80px 0;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.site-footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 70px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-site-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.footer-site-info p {
    color: var(--secondary);
}

.footer-nav {
    display: flex;
    gap: 80px;
}

.footer-nav-column h4 {
    margin-bottom: 20px;
    position: relative;
}

.footer-nav-column h4::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--gradient);
    bottom: -8px;
    left: 0;
}

.footer-nav-column ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav-column a {
    color: var(--light);
    transition: color 0.3s ease;
}

.footer-nav-column a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 50px;
    }
    
    .button-group {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .footer-nav {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: var(--light);
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 10;
        gap: 0;
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .nav-list li {
        width: 100%;
        text-align: center;
    }
    
    .nav-list a {
        display: block;
        padding: 15px;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .steps {
        gap: 30px;
    }
    
    .step {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .step-number {
        min-width: auto;
    }
    
    .cta-box {
        padding: 30px;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .button-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-site-info {
        text-align: center;
    }
    
    .footer-nav-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-nav-column {
        text-align: center;
    }
}
