/* ===================================
   Homepage V2 - Trust-Focused Design
   Senior-Friendly, Modern, Professional
   =================================== */

/* Main Hero Section */
.hero-main {
    background: linear-gradient(135deg, #005a29 0%, #007a39 100%);
    color: white;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-size: 3.5em;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
    color: white;
}

.hero-subtitle {
    font-size: 1.5em;
    line-height: 1.6;
    margin: 0 0 40px 0;
    opacity: 0.95;
    font-weight: 300;
}

.hero-features {
    margin: 40px 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.3em;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.5em;
    color: #90EE90;
    font-weight: bold;
}

.hero-cta {
    margin-top: 50px;
}

.button-hero {
    font-size: 1.4em;
    padding: 22px 50px;
    background: white;
    color: #005a29;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.button-hero:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.cta-reassurance {
    margin-top: 20px;
    font-size: 1.1em;
    opacity: 0.9;
    font-style: italic;
}

/* Hero Image / Trust Badge */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trust-badge {
    background: white;
    color: #005a29;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: 400px;
}

.badge-icon {
    font-size: 5em;
}

.badge-content {
    text-align: left;
}

.badge-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 5px;
}

.badge-subtitle {
    font-size: 1.3em;
    font-weight: 400;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Titles */
.section-title {
    font-size: 2.8em;
    color: #005a29;
    text-align: center;
    margin: 0 0 20px 0;
    font-weight: 700;
}

.section-intro {
    font-size: 1.4em;
    text-align: center;
    color: #555;
    margin: 0 auto 60px;
    max-width: 800px;
    line-height: 1.7;
}

/* What You Get Section */
.what-you-get {
    padding: 100px 20px;
    background: white;
}

.service-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-highlight {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #005a29;
}

.service-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 90, 41, 0.15);
}

.highlight-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #005a29, #007a39);
    color: white;
    font-size: 2em;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-highlight h3 {
    font-size: 1.6em;
    color: #005a29;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.service-highlight p {
    font-size: 1.2em;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Help With Section */
.help-with-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #f0f7f4, #ffffff);
}

.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.help-category {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.category-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.help-category h3 {
    font-size: 1.7em;
    color: #005a29;
    margin: 0 0 25px 0;
    font-weight: 600;
}

.help-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-list li {
    font-size: 1.15em;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.help-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #005a29;
    font-weight: bold;
    font-size: 1.2em;
}

.help-cta {
    text-align: center;
    margin-top: 60px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 20px;
    background: white;
}

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

.testimonial-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 90, 41, 0.15);
}

.testimonial-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.why-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 90, 41, 0.15);
}

.why-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.6em;
    color: #005a29;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.why-detail {
    font-size: 1.15em;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Meet Zane Section */
.meet-zane-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #005a29 0%, #007a39 100%);
    color: white;
}

.meet-zane-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: center;
}

.meet-zane-image {
    text-align: center;
}

.zane-photo {
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 5px solid white;
}

.meet-zane-text h2 {
    font-size: 3em;
    color: white;
    margin: 0 0 30px 0;
}

.intro-text {
    font-size: 1.4em;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 500;
}

.meet-zane-text p {
    font-size: 1.25em;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

.meet-zane-text strong {
    font-weight: 600;
    opacity: 1;
}

.meet-zane-text .button {
    margin-top: 30px;
    background: white;
    color: #005a29;
}

.meet-zane-text .button:hover {
    background: #f0f0f0;
}

/* Pricing Preview Section */
.pricing-preview {
    padding: 100px 20px;
    background: white;
}

.pricing-box {
    max-width: 600px;
    margin: 40px auto 0;
    background: linear-gradient(to bottom, #f8f9fa, white);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 3px solid #005a29;
}

.price-display {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin-bottom: 30px;
}

.price-dollar {
    font-size: 2.5em;
    color: #005a29;
    font-weight: 600;
    margin-top: 15px;
}

.price-amount {
    font-size: 6em;
    color: #005a29;
    font-weight: 700;
    line-height: 1;
}

.price-period {
    font-size: 1.3em;
    color: #666;
    align-self: flex-end;
    margin-bottom: 15px;
}

.price-description {
    font-size: 1.3em;
    line-height: 1.7;
    color: #555;
    margin: 0 0 30px 0;
}

.price-includes {
    list-style: none;
    padding: 0;
    margin: 30px 0 40px;
    text-align: left;
    display: inline-block;
}

.price-includes li {
    font-size: 1.2em;
    line-height: 2;
    color: #333;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #f0f7f4, white);
    text-align: center;
}

.final-cta-title {
    font-size: 3.2em;
    color: #005a29;
    margin: 0 0 25px 0;
    font-weight: 700;
}

.final-cta-text {
    font-size: 1.5em;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.final-reassurance {
    font-size: 1.2em;
    color: #666;
    margin-top: 25px;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 18px 45px;
    font-size: 1.2em;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: none;
}

.button-primary {
    background: linear-gradient(135deg, #005a29 0%, #007a39 100%);
    color: white;
}

.button-primary:hover {
    background: linear-gradient(135deg, #003d1e 0%, #005a29 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 90, 41, 0.3);
}

.button-secondary {
    background: white;
    color: #005a29;
    border: 3px solid #005a29;
}

.button-secondary:hover {
    background: #005a29;
    color: white;
    transform: translateY(-2px);
}

.button-large {
    font-size: 1.5em;
    padding: 25px 60px;
}

/* Footer Enhancements */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 40px 20px;
    font-size: 1em;
}

footer p {
    margin: 10px 0;
}

.footer-contact {
    margin-top: 20px;
    font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8em;
    }
    
    .meet-zane-content {
        grid-template-columns: 1fr;
    }
    
    .meet-zane-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-main {
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 2.2em;
    }
    
    .hero-subtitle {
        font-size: 1.2em;
    }
    
    .hero-feature {
        font-size: 1.1em;
    }
    
    .trust-badge {
        padding: 35px;
    }
    
    .badge-title {
        font-size: 1.6em;
    }
    
    .section-title {
        font-size: 2.2em;
    }
    
    .service-highlight-grid,
    .help-categories,
    .why-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .what-you-get,
    .help-with-section,
    .testimonials-section,
    .why-choose-section,
    .meet-zane-section,
    .pricing-preview,
    .final-cta-section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .button-hero {
        font-size: 1.2em;
        padding: 18px 35px;
    }
    
    .button-large {
        font-size: 1.3em;
        padding: 20px 40px;
    }
    
    .trust-badge {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 1.8em;
    }
    
    .price-amount {
        font-size: 4.5em;
    }
    
    .pricing-box {
        padding: 40px 25px;
    }
}
