* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Minimal Header - No Navigation */
header {
    background: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 3.5rem;
    font-weight: 800;
    color: #00A651;
    letter-spacing: -0.02em;
}

.header-cta {
    background: #00A651;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s;
    border: 2px solid #00A651;
}

.header-cta:hover {
    background: #008543;
    border-color: #008543;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #00A651 0%, #00C55E 100%);
    color: white;
    padding: 5rem 2rem 6rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    text-align: left;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    object-fit: cover;
    aspect-ratio: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.emphasis {
    font-weight: 700;
    font-size: 1.2em;
}

.hero-text .subheadline {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.5;
    font-weight: 500;
}

.hero-cta-button {
    display: inline-block;
    background: #FAF8F3;
    color: #00A651;
    padding: 1.25rem 3rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-cta-button:hover {
    background: #F0EDE5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Hero Form */
.hero-form {
    margin-top: 1rem;
}

.hero-form-fields {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    flex-wrap: wrap;
}

.hero-form-input {
    flex: 1;
    min-width: 200px;
    padding: 1.25rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: white;
    color: #333;
    transition: box-shadow 0.3s;
}

.hero-form-input::placeholder {
    color: #999;
}

.hero-form-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.hero-form-submit {
    background: #FAF8F3;
    color: #00A651;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.hero-form-submit:hover {
    background: #F0EDE5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Problem Section */
.problem {
    padding: 5rem 2rem;
    background: white;
}

.problem-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.problem h2 {
    font-size: 2.5rem;
    color: #00A651;
    margin-bottom: 2rem;
    font-weight: 800;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.problem-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #00A651;
}

.problem-item h3 {
    color: #00A651;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.problem-item p {
    color: #666;
    line-height: 1.7;
}

/* Solution Section */
.solution {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.solution-content {
    max-width: 1000px;
    margin: 0 auto;
}

.solution h2 {
    font-size: 2.5rem;
    color: #00A651;
    margin-bottom: 1rem;
    font-weight: 800;
    text-align: center;
}

.solution .intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #00A651;
    margin-bottom: 1rem;
    font-weight: 800;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Technology Section */
.technology {
    padding: 5rem 2rem;
    background: white;
}

.technology-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.technology h2 {
    font-size: 2.5rem;
    color: #00A651;
    margin-bottom: 1rem;
    font-weight: 800;
}

.technology .intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.tech-card {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.tech-logo {
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-logo img {
    max-height: 60px;
    max-width: 180px;
    object-fit: contain;
}

.tech-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 800;
}

.tech-card p {
    color: #666;
    line-height: 1.7;
}

/* Founder Section */
.founder {
    padding: 2rem 2rem 5rem;
    background: white;
}

.founder-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: center;
}

.founder-image-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #00A651 0%, #00C55E 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    padding: 2rem;
    line-height: 1.4;
}

.founder-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.founder-image {
    width: 250px;
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    margin-bottom: 1rem;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0077B5;
    transition: transform 0.3s, opacity 0.3s;
    margin-top: 0.5rem;
}

.linkedin-link:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.linkedin-link svg {
    width: 32px;
    height: 32px;
}

.founder-text h2 {
    font-size: 2.2rem;
    color: #00A651;
    margin-bottom: 1rem;
    font-weight: 800;
}

.founder-text .credentials {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.founder-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.founder-text .highlight {
    background: #f8f9fa;
    padding: 1.5rem;
    border-left: 4px solid #00A651;
    margin-top: 1.5rem;
    border-radius: 5px;
}

.founder-text .highlight strong {
    color: #00A651;
}

/* Pricing Section */
.pricing {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h2 {
    font-size: 2.5rem;
    color: #00A651;
    margin-bottom: 1rem;
    font-weight: 800;
}

.pricing-subhead {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pricing-note {
    color: #666;
    font-size: 1.1rem;
}

.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 550px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #00A651;
}

.pricing-card.featured {
    border-color: #00A651;
    border-width: 3px;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00A651;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: #00A651;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.pricing-card .budget-range {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #00A651;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    word-wrap: break-word;
}

.price-note {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    flex-grow: 1;
}

.features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}

.features-list li:before {
    content: "✓ ";
    color: #00A651;
    font-weight: bold;
    margin-right: 0.5rem;
}

.pricing-cta {
    display: inline-block;
    background: #00A651;
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s;
}

.pricing-cta:hover {
    background: #008543;
}

/* Testimonial Section */
.testimonial {
    padding: 3rem 2rem 2rem;
    background: white;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-heading {
    font-size: 2rem;
    color: #00A651;
    margin-bottom: 2rem;
    font-weight: 800;
    text-align: center;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    border-left: 4px solid #00A651;
}

.quote-icon {
    font-size: 3rem;
    color: #00A651;
    margin-bottom: 1rem;
    line-height: 1;
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Social Proof Section */
.social-proof {
    padding: 5rem 2rem;
    background: white;
}

.social-proof-content {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    border-left: 4px solid #00A651;
    margin-bottom: 2rem;
}

.quote-icon {
    font-size: 3rem;
    color: #00A651;
    margin-bottom: 1rem;
}

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

.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-author-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
}

.testimonial-author {
    font-weight: 700;
    color: #00A651;
    font-size: 1.1rem;
}

.testimonial-position {
    color: #666;
    font-size: 0.95rem;
}

.testimonial-linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    color: #0077B5;
    transition: transform 0.3s, opacity 0.3s;
    margin-top: 0.25rem;
}

.testimonial-linkedin-link:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.testimonial-linkedin-link svg {
    width: 24px;
    height: 24px;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.trust-badge {
    padding: 1.5rem;
}

.trust-badge-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.trust-badge h4 {
    color: #00A651;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

/* FAQ Section */
.faq {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.faq h2 {
    font-size: 2.5rem;
    color: #00A651;
    margin-bottom: 3rem;
    font-weight: 800;
    text-align: center;
}

.faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #00A651 0%, #00C55E 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.final-cta-button {
    display: inline-block;
    background: #FAF8F3;
    color: #00A651;
    padding: 1.25rem 3rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.final-cta-button:hover {
    background: #F0EDE5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 2rem;
    text-align: center;
}

footer p {
    color: #95a5a6;
    font-size: 0.9rem;
}

footer a {
    color: #00A651;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.4rem;
        letter-spacing: -0.01em;
    }
    
    .hero-text .subheadline {
        font-size: 1.2rem;
    }
    
    .hero-image-container {
        order: -1;
    }
    
    .hero-image {
        max-width: 300px;
    }
    
    .hero-form-fields {
        flex-direction: column;
    }
    
    .hero-form-input {
        width: 100%;
        min-width: 100%;
    }
    
    .hero-form-submit {
        width: 100%;
    }
    
    .testimonial {
        padding: 2rem 2rem 1.5rem;
    }
    
    .testimonial-heading {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .quote-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .testimonial-quote {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-author-info {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .testimonial-author-details {
        align-items: center;
        width: 100%;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .founder-image-placeholder,
    .founder-image {
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        min-height: auto;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    /* Center align all buttons on mobile */
    .hero-cta-button {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    
    .pricing-cta {
        display: block;
        margin: 0 auto;
        text-align: center;
        width: 100%;
        max-width: 250px;
    }
    
    .final-cta-button {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-cta {
        width: 100%;
        text-align: center;
    }
}
