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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #111827;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
}

h1 {
    line-height: 1.3;
}

h2 {
    line-height: 1.35;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section */
.section {
    padding: 6rem 0;
}

.section-header {
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-header.center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.75;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #facc15;
    color: #111827;
}

.btn-primary:hover {
    background-color: #eab308;
    transform: scale(1.05);
}

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

.btn-outline:hover {
    background-color: #111827;
    color: #fff;
}

.btn-large {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.logo-btn:hover {
    opacity: 0.8;
}

.logo-img {
    height: 3.5rem;
    width: 3.5rem;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    background: none;
    border: none;
    color: #374151;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-link:hover {
    color: #eab308;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1rem;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.mobile-link {
    padding: 1rem;
    background: none;
    border: none;
    text-align: left;
    color: #374151;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
}

.mobile-link:hover {
    color: #eab308;
}

.mobile-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, #fff, #f9fafb);
    padding-top: 8rem;
    padding-bottom: 8rem;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeIn 0.8s ease-out;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #fef3c7;
    color: #92400e;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.75;
    max-width: 40rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-dot {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid #9ca3af;
    border-radius: 9999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.scroll-dot::before {
    content: '';
    width: 0.375rem;
    height: 0.75rem;
    background-color: #9ca3af;
    border-radius: 9999px;
}

/* Problem Section */
.problem-section {
    background-color: #fff;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.icon-red {
    background-color: #fee2e2;
    color: #dc2626;
}

.icon-green {
    background-color: #d1fae5;
    color: #059669;
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.pain-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.pain-point:hover {
    border-color: #facc15;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pain-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    background-color: #facc15;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-weight: 700;
}

/* Solution Section */
.solution-section {
    background-color: #f9fafb;
}

.two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

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

.solution-image img,
.diff-image img,
.results-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.solution-image:hover img,
.diff-image:hover img,
.results-image:hover img {
    transform: scale(1.05);
}

.features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.check-icon {
    flex-shrink: 0;
    color: #eab308;
    font-size: 1.5rem;
}

/* Framework Section */
.framework-section {
    background-color: #fff;
}

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

.step-card {
    position: relative;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 1rem;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: #facc15;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 4rem;
    height: 4rem;
    background-color: #facc15;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.step-description {
    color: #6b7280;
    line-height: 1.75;
}

.framework-visual {
    position: relative;
    height: 400px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    margin-bottom: 4rem;
}

.framework-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.framework-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(17, 24, 39, 0.6), transparent);
    display: flex;
    align-items: center;
    padding: 3rem;
}

.framework-overlay p {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.75;
    max-width: 40rem;
}

.fundraising-box {
    max-width: 64rem;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(to bottom right, #fef3c7, #fef9c3);
    border-radius: 1rem;
    border: 2px solid #fde047;
    display: flex;
    gap: 1rem;
}

.fundraising-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background-color: #facc15;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.fundraising-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.fundraising-box p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.75;
}

/* Who We Work With Section */
.who-section {
    background-color: #f9fafb;
}

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

.segment-card {
    position: relative;
    padding: 2rem;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.segment-card:hover {
    border-color: #facc15;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.segment-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.segment-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.segment-card p {
    color: #6b7280;
    line-height: 1.75;
}

.center-text {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-top: 4rem;
}

/* Differentiation Section */
.differentiation-section {
    background-color: #fff;
}

.diff-points {
    margin-top: 2rem;
}

.diff-point {
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 0.75rem;
    border-left: 4px solid #facc15;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.diff-point:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.diff-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.5rem;
}

.diff-point h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.diff-point p {
    color: #6b7280;
}

/* Results Section */
.results-section {
    background-color: #f9fafb;
}

.outcomes {
    margin-top: 2rem;
}

.outcome-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.outcome-card:hover {
    border-color: #facc15;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.outcome-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background-color: #fef3c7;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background-color 0.3s;
}

.outcome-card:hover .outcome-icon {
    background-color: #facc15;
}

.outcome-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.outcome-card p {
    color: #6b7280;
    line-height: 1.75;
}

/* Clients Section */
.clients-section {
    background-color: #fff;
}

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

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.client-logo:hover {
    background-color: #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-height: 5rem;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Team Section */
.team-section {
    background-color: #f9fafb;
}

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

.team-card {
    background-color: #fff;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: #facc15;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.team-image {
    position: relative;
    height: 20rem;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.2) contrast(1.05);
    transition: transform 0.7s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 0.5rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #111827;
}

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.team-role {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #eab308;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.team-info p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.75;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(to bottom, #f9fafb, #fff);
}

.cta-box {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    position: relative;
    padding: 5rem 4rem;
    background: linear-gradient(to right, rgba(17, 24, 39, 0.95), rgba(17, 24, 39, 0.8));
    max-width: 48rem;
}

.cta-content h2 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.trust-indicators {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(156, 163, 175, 0.3);
}

.trust-text {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #d1d5db;
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background-color: #111827;
    color: white;
    padding: 4rem 0;
}

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

.footer-col h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #9ca3af;
    line-height: 1.75;
}

.footer-link {
    display: block;
    background: none;
    border: none;
    color: #9ca3af;
    text-align: left;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #facc15;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: all 0.3s;
}

.footer-contact:hover {
    color: #facc15;
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Selection color */
::selection {
    background-color: #facc15;
    color: #111827;
}

/* Focus visible */
*:focus-visible {
    outline: 2px solid #facc15;
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .two-col {
        grid-template-columns: 1fr;
    }

    .framework-steps,
    .segments,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .client-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu.active {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pain-points {
        grid-template-columns: 1fr;
    }

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

    .cta-content {
        padding: 3rem 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}
