* {
    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: #1f2937;
}

h1 {
    font-size: 3.75rem;
    font-weight: 500;
    line-height: 1.2;
}

h2 {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
}

p {
    font-size: 1rem;
    line-height: 1.5;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #059669;
    color: white;
}

.btn-primary:hover {
    background: #047857;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid #6ee7b7;
}

.btn-outline:hover {
    background: rgba(16, 185, 129, 0.2);
}

.btn-white {
    background: white;
    color: #064e3b;
}

.btn-white:hover {
    background: #f0fdf4;
}

.btn-lg {
    padding: 1.5rem 2rem;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6, 78, 59, 0.7), rgba(6, 95, 70, 0.6), rgba(20, 83, 45, 0.8));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.hero-logo {
    margin-bottom: 2rem;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInScale 0.8s ease-out 0.2s forwards;
}

.hero-logo img {
    width: 10rem;
    height: 10rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    border: 1px solid rgba(110, 231, 183, 0.3);
    color: #d1fae5;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-highlight {
    color: #6ee7b7;
}

.hero p {
    font-size: 1.5rem;
    color: #d1fae5;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(110, 231, 183, 0.5);
    border-radius: 9999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-dot {
    width: 0.375rem;
    height: 0.375rem;
    background: #6ee7b7;
    border-radius: 9999px;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.fade-in-view {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

section {
    padding: 6rem 1.5rem;
}

.container {
    max-width: 72rem;
    margin: 0 auto;
}

.intro-section {
    background: linear-gradient(to bottom, #ecfdf5, white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-image {
    position: relative;
    height: 500px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

.intro-content h2 {
    color: #064e3b;
    margin-bottom: 1.5rem;
}

.intro-content p {
    color: #374151;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.features-section {
    background: linear-gradient(to bottom, white, #ecfdf5);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #064e3b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 42rem;
    margin: 0 auto;
}

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

.feature-card {
    padding: 2rem;
    background: white;
    border: 1px solid #d1fae5;
    border-radius: 0.5rem;
    transition: box-shadow 0.3s;
}

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

.feature-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: #d1fae5;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #047857;
}

.feature-card h3 {
    color: #064e3b;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #4b5563;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card {
    position: relative;
}

.step-image {
    position: relative;
    height: 16rem;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

.step-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 3rem;
    height: 3rem;
    background: #059669;
    color: white;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.step-card h3 {
    color: #064e3b;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: #4b5563;
}

.testimonials-section {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
    background: linear-gradient(135deg, #ecfdf5, white);
    border: 1px solid #d1fae5;
    border-radius: 0.5rem;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 2rem;
    height: 2rem;
    color: #d1fae5;
}

.testimonial-text {
    color: #374151;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

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

.avatar {
    width: 3rem;
    height: 3rem;
    background: #059669;
    color: white;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.author-info p:first-child {
    color: #064e3b;
    font-weight: 500;
}

.author-info p:last-child {
    color: #6b7280;
    font-size: 0.875rem;
}

.cta-section {
    background: linear-gradient(to bottom, #065f46, #064e3b);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    /* background-image moved to inline style in page-home-content.php for environment-aware URL */
    background-size: cover;
    background-position: center;
}

.cta-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content > p {
    font-size: 1.25rem;
    color: #d1fae5;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cta-note {
    color: #a7f3d0;
}

footer {
    padding: 3rem 1.5rem;
    background: #022c22;
    color: #d1fae5;
}

.footer-content {
    max-width: 72rem;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1rem;
}

.footer-logo span {
    font-size: 1.5rem;
    color: white;
}

.footer-description {
    color: #6ee7b7;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #d1fae5;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #6ee7b7;
}

.footer-bottom {
    border-top: 1px solid #065f46;
    padding-top: 2rem;
}

.footer-copyright {
    color: #6ee7b7;
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero h1 { font-size: 3rem; }
    .hero p { font-size: 1.25rem; }
    
    .intro-grid,
    .features-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-image {
        height: 300px;
    }

    .hero-logo img {
        width: 7rem;
        height: 7rem;
    }
}
