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

:root {
    --primary: #2D5F5D;
    --primary-light: #4A9B8E;
    --accent: #F4A460;
    --accent-light: #FFD7A8;
    --dark: #1a2b2b;
    --text: #2c3e50;
    --text-light: #6c7a8a;
    --bg: #fdfbf7;
    --white: #ffffff;
    --bamboo: #88A96C;
    --gradient: linear-gradient(135deg, #2D5F5D 0%, #4A9B8E 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
}

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

.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    z-index: 1000;
    transition: transform 0.3s ease;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-brand-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    transition: transform 0.3s ease;
}

.nav-brand:hover .nav-brand-photo {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(74, 155, 142, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(45, 95, 93, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.profile-photo-container {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.profile-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-intro {
    font-size: 1.2rem;
    opacity: 0.9;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.6s both;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn.primary {
    background: var(--white);
    color: var(--primary);
}

.hero-btn.primary:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 164, 96, 0.4);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.traction-strip {
    background: linear-gradient(135deg, #1a2b2b 0%, #2D5F5D 100%);
    padding: 3rem 0;
    border-top: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
}

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

.traction-item {
    color: var(--white);
    padding: 1rem;
}

.traction-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.traction-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--white);
}

.traction-sublabel {
    font-size: 0.9rem;
    opacity: 0.7;
    color: var(--accent-light);
}

.conversion-paths {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg) 0%, #f0f7f7 100%);
}

.paths-heading {
    text-align: center;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.paths-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.path-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.path-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.path-card:hover::before {
    transform: scaleX(1);
}

.path-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(45, 95, 93, 0.15);
}

.path-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-light);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.path-card h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.path-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.path-benefits {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.path-benefits li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text);
    border-bottom: 1px solid #f0f0f0;
}

.path-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bamboo);
    font-weight: 700;
    font-size: 1.2rem;
}

.path-social-proof {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f9f9f9, #f0f7f7);
    border-radius: 12px;
}

.proof-stat {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.path-cta {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.path-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(45, 95, 93, 0.3);
}

.about-section {
    padding: 6rem 0;
    background: var(--bg);
}

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

.about-image {
    position: relative;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
}

.about-photo-bg {
    width: 100%;
    max-width: 300px;
    height: 300px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(45, 95, 93, 0.2);
    transition: transform 0.3s ease;
    background-image: url('attached_assets/raj_1760909348387.jpeg');
    background-size: cover;
    background-position: center;
    margin: 0 auto;
}

.about-photo-bg:hover {
    transform: translateY(-10px);
}

.about-badge {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--gradient);
    color: var(--white);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 5px 20px rgba(45, 95, 93, 0.3);
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 2rem;
    font-style: italic;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s;
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(45, 95, 93, 0.1);
}

.highlight-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.highlight-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.about-mission {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.reflection-points {
    padding: 6rem 0;
    background: var(--white);
}

.reflection-points h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.point-card {
    background: var(--bg);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.point-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 95, 93, 0.15);
}

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

.point-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.point-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.point-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.point-link:hover {
    gap: 1rem;
}

.story-section {
    padding: 6rem 0;
    background: var(--bg);
}

.story-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 4rem;
    font-style: italic;
}

.story-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.story-chapter {
    padding: 2.5rem;
    margin-bottom: 2rem;
    background: var(--white);
    border-radius: 16px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.story-chapter:hover {
    box-shadow: 0 8px 30px rgba(45, 95, 93, 0.12);
    transform: translateX(5px);
}

.chapter-marker {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.story-chapter h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.story-chapter p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.insight {
    font-style: italic;
    color: var(--primary-light);
    font-weight: 500;
    padding-left: 1rem;
    border-left: 3px solid var(--accent);
}

.philosophy {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--gradient);
    border-radius: 20px;
    text-align: center;
}

.philosophy h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.philosophy-text {
    color: var(--white);
    font-size: 1.3rem;
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto;
}

.offerings-section {
    padding: 6rem 0;
    background: var(--white);
}

.offerings-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-align: center;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.offering-card {
    background: var(--bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.offering-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(244, 164, 96, 0.15);
}

.offering-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.offering-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.offering-card p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.offering-detail {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.offering-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.8rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.offering-cta:hover {
    background: var(--primary-light);
    transform: translateX(5px);
}

.investor-resources-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a2b2b 0%, #2D5F5D 100%);
    color: var(--white);
}

.investor-resources-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.investor-resources-section .section-intro {
    color: var(--accent-light);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.resource-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.resource-card.featured {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid var(--accent);
}

.resource-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.resource-card h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.resource-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.resource-highlights {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.resource-highlights li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.resource-highlights li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.roadmap-items {
    margin: 1.5rem 0;
}

.roadmap-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--accent);
    margin-bottom: 1rem;
    border-radius: 4px;
    color: var(--white);
}

.roadmap-item strong {
    color: var(--accent);
    display: block;
    margin-bottom: 0.3rem;
}

.resource-cta {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.resource-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    transform: translateY(-2px);
}

.resource-cta.primary {
    background: var(--accent);
    border-color: var(--accent);
}

.resource-cta.primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
}

.investment-cta-box {
    background: rgba(244, 164, 96, 0.15);
    border: 2px solid var(--accent);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
}

.investment-cta-box h3 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.investment-cta-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.investment-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 164, 96, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    transform: translateY(-3px);
}

.testimonials-section {
    padding: 6rem 0;
    background: var(--white);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--bg) 0%, #f0f7f7 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 5px solid var(--accent);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.3;
    line-height: 0;
}

.testimonial-author {
    border-top: 2px solid rgba(45, 95, 93, 0.1);
    padding-top: 1rem;
}

.author-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.author-title {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 0.3rem;
}

.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg) 0%, #f0f7f7 100%);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(45, 95, 93, 0.1);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
}

.frenlyverse-section {
    padding: 6rem 0;
    background: var(--bg);
}

.frenlyverse-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-align: center;
}

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

.ecosystem-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid #e8e8e8;
    transition: all 0.3s;
}

.ecosystem-item.primary {
    grid-column: span 2;
    background: var(--gradient);
    color: var(--white);
    border: none;
}

.ecosystem-item.primary h3,
.ecosystem-item.primary p {
    color: var(--white);
}

.ecosystem-item:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(45, 95, 93, 0.15);
}

.ecosystem-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.ecosystem-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.ecosystem-features span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.ecosystem-item:not(.primary) .ecosystem-features span {
    background: var(--accent-light);
    color: var(--dark);
}

.ecosystem-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.ecosystem-item.primary .ecosystem-link {
    color: var(--white);
}

.ecosystem-link:hover {
    transform: translateX(5px);
}

.bamboo-explainer {
    margin-top: 4rem;
    padding: 2.5rem;
    background: var(--bamboo);
    border-radius: 16px;
    text-align: center;
}

.bamboo-explainer h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.bamboo-explainer p {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section {
    padding: 6rem 0;
    background: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

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

.cta-primary,
.cta-secondary {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.cta-primary {
    background: var(--primary);
    color: var(--white);
}

.cta-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(45, 95, 93, 0.3);
}

.cta-secondary {
    background: var(--accent);
    color: var(--white);
}

.cta-secondary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 164, 96, 0.3);
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    opacity: 0.8;
    font-style: italic;
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-style: italic;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 0.8rem;
        border-bottom: 1px solid rgba(45, 95, 93, 0.1);
        text-align: center;
    }
    
    .hero {
        padding: 5rem 1rem 3rem;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-intro {
        font-size: 1rem;
    }
    
    .profile-photo {
        width: 120px;
        height: 120px;
    }
    
    .cta-buttons,
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .cta-primary,
    .cta-secondary,
    .hero-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        padding: 0 1rem;
    }
    
    .about-photo-bg {
        max-width: min(200px, 100%);
        height: min(200px, 50vw);
    }
    
    .about-text h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .about-intro,
    .about-mission {
        font-size: 0.95rem;
    }
    
    .highlights-grid {
        gap: 1.5rem;
    }
    
    .highlight-item h4 {
        font-size: 1rem;
    }
    
    .highlight-item p {
        font-size: 0.9rem;
    }
    
    .nav-content {
        padding: 0.8rem 1rem;
    }
    
    .nav-links {
        gap: 0.8rem;
        font-size: 0.85rem;
    }
    
    .nav-brand {
        font-size: 1.1rem;
    }
    
    .nav-brand-photo {
        width: 35px;
        height: 35px;
    }
    
    .ecosystem-item.primary {
        grid-column: span 1;
    }
    
    .ecosystem-map {
        grid-template-columns: 1fr;
    }
    
    .points-grid,
    .offerings-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1.2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .story-chapter h3 {
        font-size: 1.3rem;
    }
    
    .story-chapter p {
        font-size: 0.95rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .philosophy-text {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .traction-strip {
        padding: 2rem 0;
    }
    
    .traction-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .traction-number {
        font-size: 2rem;
    }
    
    .traction-label {
        font-size: 0.9rem;
    }
    
    .traction-sublabel {
        font-size: 0.75rem;
    }
    
    .paths-heading {
        font-size: 2rem;
    }
    
    .paths-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .paths-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .path-card {
        padding: 2rem;
    }
    
    .path-card h3 {
        font-size: 1.5rem;
    }
    
    .path-description {
        font-size: 0.95rem;
    }
    
    .path-social-proof {
        flex-wrap: wrap;
        gap: 0.8rem;
        padding: 1rem;
    }
    
    .proof-stat {
        flex: 1 1 40%;
        min-width: 80px;
    }
    
    .testimonials-section h2,
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-quote {
        font-size: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .faq-item p {
        font-size: 0.95rem;
    }
    
    .hero-btn,
    .cta-primary,
    .cta-secondary,
    .path-cta,
    .resource-cta,
    .btn-primary,
    .btn-secondary,
    .offering-cta {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .investor-resources-section h2 {
        font-size: 2rem;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .resource-card {
        padding: 2rem;
    }
    
    .investment-cta-box {
        padding: 2rem;
    }
    
    .investment-cta-box h3 {
        font-size: 1.8rem;
    }
    
    .investment-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(45, 95, 93, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(45, 95, 93, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
}

@media (min-width: 1200px) {
    h2, .section-heading {
        font-size: 3.25rem !important;
    }
    
    h3 {
        font-size: 2.4rem;
    }
    
    section {
        padding: 8rem 0 !important;
    }
    
    .hero {
        padding: 8rem 2rem 6rem !important;
    }
    
    .container {
        padding: 0 3rem;
    }
    
    .traction-strip,
    .conversion-paths,
    .investor-resources-section,
    .testimonials-section,
    .faq-section {
        padding: 8rem 0 !important;
    }
    
    .paths-heading {
        font-size: 3.5rem !important;
    }
    
    .investor-resources-section h2,
    .testimonials-section h2,
    .faq-section h2 {
        font-size: 3.25rem !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        padding: 0 2.5rem;
    }
    
    .paths-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .path-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 800px;
        margin: 0 auto;
    }
    
    section {
        padding: 5rem 0;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
}
