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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #4A4A4A;
    background-color: #FFFFFF;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-logo h2 {
    color: #4A4A4A;
    font-weight: 700;
    font-size: 1.8rem;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4A4A4A;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #7BA05B;
}

.get-started-btn {
    background: #7BA05B;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.get-started-btn:hover {
    background: #6B8F4F;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #F8FDF6 0%, #E8F5E8 100%);
    color: #4A4A4A;
    margin-bottom: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
}

.hero-left h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #4A4A4A;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #7BA05B;
    font-weight: 600;
    line-height: 1.3;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    letter-spacing: -0.01em;
}

.hero-features {
    margin-bottom: 3rem;
}

.hero-features p {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #6B6B6B;
    line-height: 1.6;
    font-weight: 400;
}

.hero-features strong {
    font-weight: 700;
    color: #4A4A4A;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button.primary {
    background: #7BA05B;
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: #7BA05B;
    border: 2px solid #7BA05B;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

/* Quote Section */
.quote-section {
    padding: 80px 0;
    background: #FFFFFF;
    margin-top: 0;
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.quote-left img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.quote-right {
    padding-left: 2rem;
}

.quote-right blockquote {
    font-size: 2.8rem;
    font-weight: 700;
    color: #4A4A4A;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
}

.quote-right cite {
    font-size: 1.1rem;
    color: #888;
    font-style: italic;
    font-weight: 400;
    display: block;
    margin-bottom: 3rem;
}

.quote-steps {
    margin-top: 3rem;
}

.quote-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.quote-step .step-number {
    background: #7BA05B;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.quote-step p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6B6B6B;
    margin: 0;
}

/* Avatar Grid Section */
.avatar-grid-section {
    padding: 80px 0;
    background: #E8F5E8;
}

.avatar-grid-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.avatar-grid-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #4A4A4A;
    font-weight: 700;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
}

.avatar-grid-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #6B6B6B;
    line-height: 1.7;
}

.matchmaking-intro {
    font-weight: 600;
}

.avatar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    max-width: 500px;
}

.avatar-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.avatar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flag {
    position: absolute;
    bottom: -2px;
    right: -2px;
    font-size: 0.8rem;
    background: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #FFFFFF;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #4A4A4A;
    font-weight: 700;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid .feature-card {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 2rem;
    box-sizing: border-box;
}

.features-grid .feature-card .feature-image {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.features-grid .feature-card .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features-grid .feature-card h3 {
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 600;
    color: #4A4A4A;
}

.features-grid .feature-card p {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #6B6B6B;
}

.features-grid .feature-card .feature-subtext {
    margin: 0.5rem 0 0 0;
    font-size: 1rem;
    font-weight: 600;
    color: #7BA05B;
}

.feature-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.feature-card h3 {
    color: #4A4A4A;
    font-size: 1.3rem;
    margin: 1.5rem 1.5rem 1rem;
    font-weight: 600;
}

.feature-card p {
    margin: 0 1.5rem 1rem;
    color: #6B6B6B;
    line-height: 1.6;
}

.feature-subtext {
    font-weight: 600;
    color: #7BA05B;
    margin: 0 1.5rem 1.5rem;
}

.tracking-info {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #F8F9FA;
    border-radius: 12px;
}

.tracking-info p {
    font-size: 1.1rem;
    color: #4A4A4A;
}

/* World of Friends Section */
.world-friends {
    padding: 80px 0;
    background: #2C3E50;
    color: white;
}

.world-friends-content {
    text-align: center;
}

.world-friends h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: white;
    font-weight: 700;
}

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

.stat-card {
    background: white;
    color: #4A4A4A;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(123, 160, 91, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:nth-child(1) {
    transform: translateY(0) rotate(-2deg);
}

.stat-card:nth-child(2) {
    transform: translateY(2rem) rotate(1deg);
}

.stat-card:nth-child(3) {
    transform: translateY(1rem) rotate(1.5deg);
}

.stat-card:nth-child(4) {
    transform: translateY(-0.5rem) rotate(-1deg);
}

.stat-card:hover {
    transform: translateY(-15px) rotate(0deg) scale(1.05);
    box-shadow: 0 25px 80px rgba(123, 160, 91, 0.25);
    z-index: 10;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotateY(360deg);
}

.stat-card h3 {
    color: #7BA05B;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    transition: color 0.3s ease;
}

.stat-card:hover h3 {
    color: #6B8F4F;
}

.stat-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    transition: transform 0.3s ease;
}

.stat-card:hover p {
    transform: translateY(-2px);
}

.stat-highlight {
    background: linear-gradient(135deg, #E8F5E8, #D4EDD4);
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    color: #7BA05B;
    font-style: italic;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-card:hover .stat-highlight {
    background: linear-gradient(135deg, #7BA05B, #6B8F4F);
    color: white;
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
    background: #F8F9FA;
}

.success-stories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #4A4A4A;
    font-weight: 700;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-header h4 {
    color: #7BA05B;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.story-card p {
    color: #6B6B6B;
    font-style: italic;
    line-height: 1.7;
}

/* The Learner Section */
.learner-section {
    padding: 80px 0;
    background: #7BA05B;
    color: white;
}

.learner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.learner-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.learner-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
}

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

.learner-right h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
    font-weight: 700;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
}

.learner-right p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* The Pal Section */
.pal-section {
    padding: 80px 0;
    background: #FFFFFF;
    color: #4A4A4A;
}

.pal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pal-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #4A4A4A;
    font-weight: 700;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
}

.pal-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #6B6B6B;
}

.opportunity {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #F0F7ED;
    border-radius: 12px;
    border-left: 4px solid #7BA05B;
    color: #4A4A4A;
}

.pal-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #E8F5E8;
}

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

.pricing-right h2 {
    font-size: 2.5rem;
    color: #4A4A4A;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    line-height: 1.2;
}

.pricing-intro,
.pricing-subtitle {
    color: #6B6B6B;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.pricing-card {
    background: #7BA05B;
    color: white;
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(123, 160, 91, 0.3);
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
}

.pricing-card {
    color: white;
}

.pricing-card p,
.pricing-card blockquote,
.pricing-card cite {
    color: white;
}

.pricing-details {
    margin-bottom: 1.5rem;
}

.pricing-details p {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    opacity: 0.9;
}

.pricing-card blockquote {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.pricing-card cite {
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 600;
    opacity: 0.8;
}

.pricing-note {
    color: #4A4A4A;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: center;
    margin-top: 1rem;
}

/* Footer */
.footer {
    padding: 80px 0;
    background: #2C3E50;
    color: #7BA05B;
    text-align: center;
}

.footer-content h3 {
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 600;
    line-height: 1.2;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    color: #7BA05B;
}

.footer-contact {
    margin-top: 2rem;
}

.footer-contact p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ededed;
    font-weight: 400;
}

.footer-email {
    font-size: 1.4rem;
    font-weight: 1000;
    color: #ededed;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: #A8C471;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-logo h2 {
        font-size: 1.4rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
        flex-shrink: 0;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content,
    .quote-content,
    .avatar-grid-content,
    .learner-content,
    .pal-content,
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .quote-right {
        padding-left: 0;
    }

    .quote-right blockquote {
        font-size: 2rem;
    }

    .hero {
        padding: 100px 0 60px;
        margin-bottom: 0;
    }

    .quote-section {
        margin-top: 0;
        padding-top: 60px;
    }

    .hero-left h1 {
        font-size: 3rem;
    }

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

    .quote-right blockquote {
        font-size: 1.8rem;
    }

    .avatar-grid {
        grid-template-columns: repeat(5, 1fr);
        justify-self: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem 0;
    }

    .stat-card:nth-child(1),
    .stat-card:nth-child(2),
    .stat-card:nth-child(3),
    .stat-card:nth-child(4) {
        transform: none;
    }

    .stat-card:hover {
        transform: translateY(-10px) scale(1.02);
    }

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

    .features-grid .feature-card {
        width: 100%;
        height: auto;
        padding: 2rem;
    }

    .features-grid .feature-card .feature-image {
        width: 120px;
        height: 120px;
        margin-bottom: 1.5rem;
    }

    .features-grid .feature-card h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 1rem 0;
    }

    .features-grid .feature-card p {
        font-size: 1rem;
        margin: 0 0 1rem 0;
    }

    .features-grid .feature-card .feature-subtext {
        font-size: 1rem;
        margin: 1rem 0 0 0;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pricing-right h2 {
        font-size: 2rem;
    }

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

    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0 !important;
    }

    h2 {
        font-size: 2rem !important;
    }

    .footer-content h3 {
        font-size: 2.2rem;
    }

    .footer-contact p {
        font-size: 1.1rem;
    }

    .footer-email {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .nav-logo h2 {
        font-size: 1.2rem;
    }

    .hero {
        padding: 90px 0 50px;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

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

    .quote-right blockquote {
        font-size: 1.5rem;
    }

    .avatar-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-card,
    .stat-card,
    .story-card,
    .pricing-card {
        padding: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .footer-content h3 {
        font-size: 1.8rem;
    }

    .footer-contact p {
        font-size: 1rem;
    }

    .footer-email {
        font-size: 1.1rem;
    }

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Additional utility classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Button hover effects */
.cta-button,
.get-started-btn,
.join-network-btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
