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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #29292B;
    overflow-x: hidden;
}

/* CSS Variables */
:root {
    --jet-black: #29292B;
    --pale-taupe: #C9C7BA;
    --bright-orange: #F66435;
    --vanilla: #F4EFCA;
    --white: #ffffff;
    --overlay-dark: rgba(41, 41, 43, 0.7);
    --overlay-light: rgba(41, 41, 43, 0.5);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: var(--jet-black);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo svg {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--bright-orange);
}

.nav-link.cta-btn {
    background: var(--bright-orange);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    color: var(--white);
}

.nav-link.cta-btn:hover {
    background: #e55a2e;
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero-headline {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-subheadline {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s both;
}

/* CTA Buttons */
.cta-primary {
    background: var(--bright-orange);
    color: var(--white);
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-primary:hover {
    background: #e55a2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(246, 100, 53, 0.3);
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    padding: 16px 32px;
    text-decoration: none;
    border: 2px solid var(--bright-orange);
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-secondary:hover {
    background: var(--bright-orange);
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--jet-black);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

.about-content {
    color: var(--white);
}

.about-text h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--vanilla);
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 60px;
    color: var(--jet-black);
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
}

.step-image {
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.step-image:hover img {
    transform: scale(1.1);
}

.step h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--jet-black);
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Old vs New Ways Section */
.old-vs-new {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

.old-way,
.new-way {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.old-way .comparison-image {
    filter: grayscale(100%) brightness(0.7);
}

.new-way .comparison-image {
    opacity: 0.75;
}

.comparison-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
}

.comparison-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 40px;
}

.comparison-content h3 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--vanilla);
}

.comparison-content ul {
    list-style: none;
    font-size: 18px;
    line-height: 2;
}

.comparison-content li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
}

.old-way .comparison-content li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: 600;
}

.new-way .comparison-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #51cf66;
    font-weight: 600;
}

/* Benefits Section */
.benefits {
    padding: 120px 0;
    background: var(--pale-taupe);
}

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

.benefit-card {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-light);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover .benefit-overlay {
    opacity: 1;
}

.benefit-content {
    text-align: center;
    color: var(--white);
    padding: 30px;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.benefit-content p {
    font-size: 16px;
    line-height: 1.5;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.pricing-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.pricing-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.pricing .section-title {
    color: var(--jet-black);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    color: var(--jet-black);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--bright-orange);
    border-width: 2px;
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--jet-black);
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--bright-orange);
    margin-bottom: 30px;
}

.price span {
    font-size: 18px;
    font-weight: 400;
    color: rgba(41, 41, 43, 0.7);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(41, 41, 43, 0.1);
    font-size: 16px;
    color: var(--jet-black);
}

.pricing-card li:last-child {
    border-bottom: none;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial {
    text-align: center;
    padding: 40px 30px;
    background: var(--vanilla);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 30px;
}

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

.testimonial blockquote {
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
    color: var(--jet-black);
}

.testimonial cite {
    font-style: normal;
}

.testimonial cite strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--jet-black);
    margin-bottom: 4px;
}

.testimonial cite span {
    font-size: 14px;
    color: #666;
}

/* Final CTA Section */
.final-cta {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
}

.cta-content {
    text-align: center;
    color: var(--white);
    max-width: 600px;
    padding: 0 20px;
    z-index: 1;
}

.cta-headline {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-subtext {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--jet-black);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--bright-orange);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--bright-orange);
}

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

.footer-copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 48px;
    }
    
    .about-container {
        gap: 60px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--jet-black);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-headline {
        font-size: 40px;
    }
    
    .hero-subheadline {
        font-size: 18px;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .comparison-container {
        grid-template-columns: 1fr;
    }
    
    .old-vs-new {
        height: auto;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .cta-headline {
        font-size: 36px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 32px;
    }
    
    .hero-subheadline {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-text h2 {
        font-size: 32px;
    }
    
    .comparison-content h3 {
        font-size: 28px;
    }
    
    .cta-headline {
        font-size: 28px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
}
