:root {
    --primary: #010305;
    --primary-light: #2d3748;
    --primary-dark: #1a202c;
    --secondary: #FF6600;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e2e8f0;
    --dark: #1a202c;
    --gray: #4a5568;
    --dark-gray: #2d3748;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background-color: #f9fafb;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

.display-1 {
    font-size: 3.5rem;
}

.display-2 {
    font-size: 3rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
}

/* Buttons */
.btn-main {
    background-color: var(--primary);
    color: white;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-main:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

.btn-secondary:hover {
    background-color: #e65c00;
    color: white;
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--dark);
    position: relative;
    display: block;
    font-size: 2.5rem;
    text-align: center;
    width: 100%;
}

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

.section-subtitle {
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 1.25rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('https://images.unsplash.com/photo-1480714378408-67cf0d13bc1b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
    background-size: cover;
    opacity: 0.15;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-text {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 600px;
    opacity: 0.9;
}

.hero-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image {
    width: 50%;
    height: auto;
    display: block;
    margin-left: 30%;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-card:hover:before {
    width: 8px;
    background: var(--secondary);
}

.feature-title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: var(--dark);
}

.feature-description {
    color: var(--gray);
    font-size: 1rem;
}

/* Showcase Section */

.showcase-section {
    background-color: white;
    padding: 40px 0;
}

.feature-card {
    border: 1px solid #f0f0f0; 
    border-radius: 8px;
    padding: 20px; 
    transition: all 0.3s ease; 
}

.feature-card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 100%; 
    height: 80%; 
    margin-bottom: 15px;
    border: 2px solid #e0e0e0; 
    border-radius: 6px; 
    overflow: hidden;
    transition: all 0.3s ease; 
}


.feature-icon img {
    width: 100%; 
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease; 
}

.feature-card:hover .feature-icon {
    border-color: #FF6600; 
}

.feature-card:hover .feature-icon img {
    transform: scale(1.05); 
}


.feature-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.feature-description p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .feature-icon {
        height: 160px; 
    }
}


/* Comparison Section */
.comparison-section {
    background: linear-gradient(135deg, #f9fafb 0%, #f0f4f8 100%);
}

.comparison-card {
    background: white;
    border-radius: 16px;
    padding: 50px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.comparison-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.comparison-card ul {
    list-style-type: none;
    padding: 0;
    display: inline-block;
    text-align: left;
    margin: 0 auto;
}

.comparison-card li {
    padding: 12px 0;
    position: relative;
    padding-left: 30px;
    font-size: 1.1rem;
}

.comparison-card li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary);
}

/* Features Grid */
.features-grid-section {
    background-color: white;
}

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

.feature-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--medium-gray);
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.feature-item-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(1, 3, 5, 0.05);
    border-radius: 12px;
}

.feature-item-icon img {
    max-width: 30px;
    max-height: 30px;
}

.feature-item-title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--dark);
}

.feature-item-description {
    color: var(--gray);
    font-size: 0.9rem;
}

/* How It Works */
.how-it-works-section {
    background: linear-gradient(135deg, #f9fafb 0%, #f0f4f8 100%);
}

.step-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--medium-gray);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-image {
    width: 80%;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
}

/* Testimonial */
.testimonial-section {
    background-color: white;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(1, 3, 5, 0.05);
    line-height: 1;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h5 {
    margin-bottom: 5px;
    font-weight: 700;
}

.testimonial-author-info p {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars img {
    height: 24px;
}

.testimonial-headline {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.testimonial-subheadline {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 40px;
}

/* Footer CTA */
.footer-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 40px;
    border-radius: 16px;
    margin-top: -80px;
    position: relative;
    z-index: 2;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

.footer-cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom{
    color: white;
}


/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    .section {
        padding: 80px 0;
    }

    .hero-section {
        padding: 100px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-cta {
        padding: 60px 30px;
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .footer-cta h2 {
        font-size: 2rem;
    }

    .footer-cta p {
        font-size: 1.1rem;
    }

    .testimonial-card {
        padding: 30px;
    }

    .comparison-card {
        padding: 30px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .footer-cta {
        padding: 50px 20px;
        margin-top: -60px;
    }

    .footer-cta h2 {
        font-size: 1.8rem;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-quote {
        font-size: 1.1rem;
    }
}
