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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow: hidden;
}

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

/* Split-Screen Layout */
.split-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

.content-side {
    width: 50%;
    height: 100vh;
    overflow-y: auto;
    background: white;
}

.app-side {
    width: 50%;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: #FF6B35;
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

#app-frame {
    flex: 1;
    width: 100%;
    border: none;
    background: white;
}

/* Header */
.header {
    background: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo-img {
    height: 60px;
}

.nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.nav a {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.nav a:hover {
    opacity: 0.8;
}

.cta-btn {
    background: #FF6B35;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Hero Section */
.hero {
    background: url('assets/hero-image.jpg') left center / cover no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: #FF6B35;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid white;
    transition: background 0.3s, color 0.3s;
    display: inline-block;
}

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

/* Problem/Solution Section */
.problem-solution {
    padding: 60px 0;
    background: #f8f9fa;
}

.solution {
    margin-bottom: 40px;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.solution-img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
}

.solution-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #FF6B35;
}

.solution-text ul {
    list-style: none;
    margin-bottom: 25px;
}

.solution-text li {
    font-size: 1rem;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.solution-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-weight: bold;
}

/* Homeowners Section */
.homeowners {
    padding: 60px 0;
    background: white;
}

.homeowners h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.feature-icon-img {
    width: 60px;
    height: 60px;
    display: block;
    margin: 0 auto 15px;
    object-fit: contain;
    border-radius: 10px;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #FF6B35;
}

.feature p {
    font-size: 0.9rem;
    color: #666;
}

/* Gift a Mow Section */
.gift-a-mow {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}

.gift-a-mow h2 {
    text-align: center;
    font-size: 2rem;
    color: #FF6B35;
    margin-bottom: 10px;
}

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

.gift-description {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.gift-description > p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.gift-uses h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.use-case {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #FF6B35;
}

.use-case h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
}

.use-case p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.gift-how-it-works {
    margin-top: 30px;
}

.gift-how-it-works h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.gift-how-it-works ol {
    list-style-position: inside;
    padding-left: 0;
}

.gift-how-it-works li {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.gift-how-it-works li strong {
    color: #FF6B35;
}

.gift-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.gift-cta h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.gift-cta p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

/* Business Section */
.business {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.business h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.business-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.benefit {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.benefit h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #FF6B35;
}

.benefit p {
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
}

.benefit ul {
    list-style: none;
}

.benefit li {
    margin-bottom: 8px;
    padding-left: 22px;
    position: relative;
    font-size: 0.9rem;
}

.benefit li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-weight: bold;
}

.business-cta {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.business-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #333;
}

.business-cta p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

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

.how-it-works h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.step p {
    color: #666;
    font-size: 0.9rem;
}

.cta-center {
    text-align: center;
}

/* About Section */
.about {
    padding: 60px 0;
    background: #f8f9fa;
}

.about h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.value {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.value h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #FF6B35;
}

.value p {
    font-size: 0.9rem;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #FF6B35;
}

.contact-item p {
    margin-bottom: 8px;
    color: #555;
    font-size: 0.95rem;
}

.contact-cta {
    text-align: center;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
}

.contact-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.contact-cta p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.contact-cta .btn-primary {
    background: white;
    color: #FF6B35;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-brand {
    text-align: center;
}

.footer-brand h3 {
    color: #FF6B35;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.footer-brand p {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    margin-bottom: 15px;
    color: #FF6B35;
    font-size: 1rem;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #bdc3c7;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Responsive: Mobile/Tablet - Single Column Layout */
@media (max-width: 1024px) {
    body {
        overflow: auto;
    }

    .split-container {
        display: block;
        height: auto;
    }

    .content-side {
        width: 100%;
        height: auto;
        overflow: visible;
    }

    .app-side {
        display: none;
    }

    .header .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .nav {
        display: none;
    }

    .logo-img {
        height: 50px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .solution-content {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .solution-img {
        max-width: 200px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .use-cases {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .btn-primary, .btn-secondary {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .gift-description {
        padding: 20px;
    }

    .benefit {
        padding: 20px;
    }

    .step {
        padding: 20px 15px;
    }
}
