* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background: linear-gradient(180deg, #FFFFFF 0%, #E8F5E9 100%);
    color: #1a3d2e;
    min-height: 100vh;
}

/* Navigation */
.navbar {
    background-color: transparent;
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.8);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a3d2e;
    letter-spacing: -0.02em;
}

.logo-dot {
    color: #4CAF50;
    /* Green dot color */
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #1a3d2e;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

.follow-btn {
    background-color: #1a3d2e;
    color: #f5f1e8 !important;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.follow-btn:hover {
    opacity: 0.9;
}

.follow-btn svg {
    flex-shrink: 0;
}

/* Hero Section */
.hero-section {
    min-height: calc(100vh - 100px);
    padding: 5rem 2rem 4rem;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 180px);
}

.hero-content {
    text-align: left;
}

.main-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a3d2e;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-content .subheading {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 2rem;
}

.hero-content .hero-cta {
    justify-content: flex-start;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Phone Mockup */
.phone-mockup-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-height: 550px;
    overflow: hidden;
    margin-top: -1rem;
}

.phone-mockup {
    width: 400px;
    max-width: 100%;
    height: auto;
    border-radius: 40px 40px 0 0;
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: scale(1.03);
}

.subheading {
    font-size: 1.1rem;
    color: #4a5d54;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #1a3d2e 0%, #2d5a47 100%);
    color: #f5f1e8;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 61, 46, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 61, 46, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #1a3d2e;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #1a3d2e;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #1a3d2e;
    color: #f5f1e8;
}

/* Smaller button variant */
.btn-small {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

/* Follow Section */
.follow-section {
    padding: 3rem 0;
    text-align: center;
    background: linear-gradient(180deg, #E8F5E9 0%, #f5f1e8 100%);
}

.follow-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #1a3d2e;
    color: #f5f1e8;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.follow-btn-large:hover {
    background-color: #2d5a47;
    transform: translateY(-2px);
}

/* Section Styles */
.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-tag {
    display: inline-block;
    background: rgba(26, 61, 46, 0.1);
    color: #1a3d2e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.section-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a3d2e;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-text {
    font-size: 1.15rem;
    color: #4a5d54;
    line-height: 1.7;
    max-width: 600px;
}

/* Trust Section */
.trust-section {
    background: linear-gradient(180deg, #f5f1e8 0%, #eae5d9 100%);
}

.trust-content {
    text-align: center;
}

.trust-content .section-text {
    margin: 0 auto 3rem auto;
}

.trust-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: #1a3d2e;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(26, 61, 46, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a3d2e;
}

/* Testimonials Section */
.testimonials-section {
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: left;
    box-shadow: 0 4px 20px rgba(26, 61, 46, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(26, 61, 46, 0.12);
}

.quote-icon {
    color: rgba(26, 61, 46, 0.15);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1a3d2e;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1a3d2e 0%, #2d5a47 100%);
    color: #f5f1e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #1a3d2e;
}

.author-role {
    font-size: 0.9rem;
    color: #4a5d54;
}

/* FAQ Section */
.faq-section {
    background: #eae5d9;
}

.faq-section .section-container {
    text-align: center;
}

.faq-list {
    max-width: 700px;
    margin: 3rem auto 0;
    text-align: left;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(26, 61, 46, 0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1a3d2e;
    font-size: 1.05rem;
    list-style: none;
    transition: background 0.2s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    background: rgba(26, 61, 46, 0.03);
}

.faq-chevron {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #4a5d54;
    line-height: 1.7;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, #1a3d2e 0%, #2d5a47 100%);
    color: #f5f1e8;
}

.mission-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.mission-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #f5f1e8;
    letter-spacing: -0.02em;
}

.mission-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.mission-section .btn-primary {
    background: #f5f1e8;
    color: #1a3d2e;
}

.mission-section .btn-primary:hover {
    background: white;
}

/* Footer */
.footer {
    background-color: #f5f1e8;
    padding: 3rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand .logo {
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #4a5d54;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #4a5d54;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #1a3d2e;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(26, 61, 46, 0.1);
}

.copyright {
    font-size: 0.85rem;
    color: #4a5d54;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 0.8rem;
        font-size: 0.85rem;
    }

    .nav-links a:not(.follow-btn) {
        font-size: 0.8rem;
    }

    .follow-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .main-heading {
        font-size: 2rem;
    }

    .subheading {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .hero-section {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        min-height: auto;
    }

    .hero-content {
        text-align: center;
        order: 1;
    }

    .hero-content .subheading {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content .hero-cta {
        justify-content: center;
    }

    .hero-image {
        order: 2;
    }

    .phone-mockup-container {
        max-height: 350px;
    }

    .phone-mockup {
        width: 300px;
    }

    .section-container {
        padding: 4rem 1.5rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .trust-features {
        gap: 1.5rem;
    }

    .trust-feature {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .nav-links a:not(.follow-btn) {
        display: none;
    }

    .logo {
        font-size: 1.3rem;
    }

    .follow-btn {
        padding: 0.5rem 0.9rem;
        font-size: 0.8rem;
    }

    .follow-btn svg {
        width: 14px;
        height: 14px;
        margin-right: 4px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: auto;
        text-align: center;
    }

    .btn-small {
        width: auto;
        padding: 0.7rem 2rem;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .subheading {
        font-size: 0.85rem;
        line-height: 1.5;
        padding: 0 0.5rem;
    }

    .section-heading {
        font-size: 1.4rem;
    }

    .hero-container {
        gap: 1rem;
    }

    .btn-small {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1.25rem;
    }

    .mission-heading {
        font-size: 1.8rem;
    }

    .mission-text {
        font-size: 1rem;
    }

    .copyright {
        font-size: 0.75rem;
    }
}