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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #0a0a0a;
    font-size: 16px;
    background: #ffffff;
    font-weight: 400;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: #0a0a0a;
}

h1 {
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #525252;
}

.highlight {
    color: #0a0a0a;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    font-size: 15px;
    background: #ffffff;
    color: #0a0a0a;
}

.btn-primary {
    background: #0a0a0a;
    color: #ffffff;
    border-color: #0a0a0a;
}

.btn-primary:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
}

.btn-secondary {
    background: #ffffff;
    color: #0a0a0a;
    border-color: #e5e5e5;
}

.btn-secondary:hover {
    border-color: #0a0a0a;
}

.btn-outline {
    background: transparent;
    color: #0a0a0a;
    border-color: #e5e5e5;
}

.btn-outline:hover {
    background: #f9f9f9;
    border-color: #0a0a0a;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #f0f0f0;
    z-index: 1000;
    padding: 16px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 18px;
    color: #0a0a0a;
}

.nav-logo i.fas.fa-seedling {
    color: #50ae53;
}

.logo-icon {
    font-size: 20px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #525252;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #0a0a0a;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #ffffff;
    text-align: center;
}

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

.hero-badge {
    display: inline-block;
    background: #f9f9f9;
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 32px;
    border: 1px solid #e5e5e5;
}

.badge-text {
    color: #525252;
    font-weight: 500;
    font-size: 14px;
}

.hero-title {
    margin-bottom: 24px;
    color: #0a0a0a;
}

.hero-subtitle {
    font-size: 20px;
    color: #525252;
    margin-bottom: 40px;
    line-height: 1.5;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-proof {
    margin-top: 32px;
}

.proof-text {
    color: #888888;
    font-size: 14px;
    margin: 0;
}

/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 16px;
    color: #0a0a0a;
}

.section-subtitle {
    text-align: center;
    color: #525252;
    font-size: 18px;
    margin-bottom: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Problem Section */
.problem-section {
    padding: 120px 0;
    background: #ffffff;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 64px;
}

.problem-card {
    text-align: center;
    padding: 40px 32px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.problem-card:hover {
    border-color: #e5e5e5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.problem-card h3 {
    color: #0a0a0a;
    margin-bottom: 16px;
}

.problem-card p {
    color: #525252;
    font-size: 15px;
}

/* Solution Section */
.solution-section {
    padding: 120px 0;
    background: #fafafa;
}

.funnel-visualization {
    margin-top: 80px;
}

.funnel-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.funnel-stage {
    width: 100%;
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.top-funnel {
    max-width: 800px;
}

.mid-funnel {
    max-width: 650px;
}

.bottom-funnel {
    max-width: 500px;
}

.stage-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.stage-icon {
    font-size: 56px;
    margin-bottom: 8px;
}

.stage-content h3 {
    color: #0a0a0a;
    font-size: 28px;
    margin-bottom: 8px;
}

.stage-content p {
    color: #525252;
    font-size: 18px;
    margin-bottom: 24px;
}

.stage-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 32px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.stage-details.active {
    opacity: 1;
    max-height: 500px;
}

.detail-item {
    background: #f9f9f9;
    padding: 16px 20px;
    border-radius: 8px;
    border-left: 4px solid #0a0a0a;
}

.detail-item h4 {
    color: #0a0a0a;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-item p {
    color: #525252;
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

.funnel-stage:hover {
    border-color: #0a0a0a;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.funnel-stage.active {
    border-color: #0a0a0a;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.funnel-stage.active .stage-details {
    opacity: 1;
    max-height: 200px;
}

/* Funnel Connector Lines */
.funnel-connector {
    width: 3px;
    height: 60px;
    background: linear-gradient(180deg, #d1d5db 0%, #9ca3af 50%, #d1d5db 100%);
    margin: 0 auto;
    position: relative;
}

.funnel-connector::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #0a0a0a;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Click Indicator */
.click-indicator {
    position: absolute;
    top: 16px;
    right: 20px;
    color: #888888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.click-indicator i {
    font-size: 10px;
}

.funnel-stage.active .click-indicator {
    color: #0a0a0a;
}

/* Responsive Design for Funnel */
@media (max-width: 1024px) {
    .funnel-shape {
        gap: 24px;
    }
    
    .stage-content {
        padding: 32px 24px;
    }
    
    .stage-content h3 {
        font-size: 20px;
    }
    
    .stage-icon {
        font-size: 40px;
        margin-bottom: 12px;
    }
    
    .top-funnel,
    .mid-funnel,
    .bottom-funnel {
        width: 100%;
        max-width: none;
    }
    
    .stage-details {
        grid-template-columns: 1fr;
    }
    
    .stage-details.active {
        max-height: 600px;
    }
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: #ffffff;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 120px;
    margin-top: 80px;
}

.feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-card.reverse {
    direction: rtl;
}

.feature-card.reverse > * {
    direction: ltr;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

.feature-points {
    margin-bottom: 24px;
}

.feature-point {
    margin-bottom: 16px;
    padding-left: 0;
    color: #525252;
    font-size: 15px;
}

.feature-point strong {
    color: #0a0a0a;
}

.feature-description {
    color: #525252;
    font-size: 16px;
}

.feature-content h3 {
    margin-bottom: 24px;
    color: #0a0a0a;
}

/* Resources Section */
.resources-section {
    padding: 120px 0;
    background: #fafafa;
}

.resources-header {
    text-align: center;
    margin-bottom: 80px;
}

.goldmine-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 24px;
    border: 1px solid #f0f0f0;
    margin-top: 24px;
    transition: all 0.2s ease;
}

.goldmine-badge:hover {
    border-color: #e5e5e5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.goldmine-icon {
    font-size: 20px;
}

.goldmine-text {
    color: #525252;
    font-weight: 500;
    font-size: 14px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.resource-category {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: all 0.2s ease;
    min-width: 0;
}

.resource-category:hover {
    border-color: #e5e5e5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.category-header {
    padding: 32px 24px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.category-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.category-header h3 {
    color: #0a0a0a;
    margin-bottom: 8px;
    font-size: 20px;
}

.category-header p {
    color: #525252;
    font-size: 14px;
    margin: 0;
}

.resource-list {
    padding: 24px;
}

.resource-item {
    display: block;
    padding: 16px 20px;
    margin-bottom: 8px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.resource-item:hover {
    background: #f9f9f9;
    border-color: #f0f0f0;
    transform: translateX(4px);
}

.resource-item.featured {
    background: rgba(10, 10, 10, 0.03);
    border-color: #e5e5e5;
}

.resource-item.featured:hover {
    background: rgba(10, 10, 10, 0.05);
    border-color: #0a0a0a;
}

.resource-title {
    color: #0a0a0a;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 4px;
    line-height: 1.3;
}

.resource-type {
    color: #888888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.resource-item.featured .resource-type {
    color: #0a0a0a;
}

.resources-cta {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    max-width: 1400px;
    margin: 0 auto;
}

.cta-content h3 {
    color: #0a0a0a;
    margin-bottom: 12px;
    font-size: 24px;
}

.cta-content p {
    color: #525252;
    margin-bottom: 24px;
    font-size: 16px;
}

.goldmine-link {
    text-align: center;
}

.goldmine-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: #0a0a0a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.goldmine-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.goldmine-btn .goldmine-icon {
    font-size: 16px;
}

/* Resources Responsive Design */
@media (max-width: 1024px) {
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .category-header {
        padding: 24px;
    }
    
    .category-icon {
        font-size: 40px;
        margin-bottom: 12px;
    }
    
    .category-header h3 {
        font-size: 18px;
    }
    
    .resource-list {
        padding: 20px 24px 24px;
    }
    
    .resources-cta {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 24px;
        text-align: center;
    }
    
    .cta-content h3 {
        font-size: 20px;
    }
}

/* Video Demo Section */
.video-demo-section {
    padding: 120px 0;
    background: #fafafa;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 64px;
}

.video-placeholder {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: all 0.2s ease;
    position: relative;
}

.video-placeholder:hover {
    border-color: #e5e5e5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.coming-soon-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #0a0a0a;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.2s ease;
}

.video-placeholder:hover .video-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0a0a0a;
    transition: all 0.2s ease;
}

.video-placeholder:hover .play-button {
    background: #ffffff;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 24px;
}

.video-info h3 {
    margin-bottom: 8px;
    color: #0a0a0a;
    font-size: 18px;
}

.video-info p {
    color: #525252;
    font-size: 14px;
    margin-bottom: 12px;
}

.video-duration {
    display: inline-block;
    background: #f0f0f0;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: #888888;
    font-weight: 500;
}

/* Results Section */
.results-section {
    padding: 120px 0;
    background: #ffffff;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.result-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.result-card:hover {
    border-color: #e5e5e5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.result-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.result-card h3 {
    color: #0a0a0a;
    margin-bottom: 16px;
}

.result-card p {
    color: #525252;
    font-size: 15px;
}

/* Social Proof Section */
.social-proof-section {
    padding: 120px 0;
    background: #fafafa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    padding: 32px;
    text-align: center;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card:hover {
    border-color: #e5e5e5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 24px;
    border: 3px solid #f0f0f0;
    transition: all 0.2s ease;
}

.profile-image:hover {
    border-color: #0a0a0a;
}

.profile-image.cta-profile {
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #e5e5e5;
}

.profile-initials {
    color: #0a0a0a;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 0.5px;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-header {
    margin-bottom: 20px;
}

.testimonial-header h4 {
    color: #0a0a0a;
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 18px;
}

.testimonial-header p {
    color: #888888;
    font-size: 14px;
    margin: 0;
}

.testimonial-text {
    color: #525252;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.5;
    flex: 1;
}

.testimonial-metric {
    color: #0a0a0a;
    font-weight: 600;
    font-size: 14px;
    background: #f9f9f9;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

/* How It Works Section */
.how-it-works-section {
    padding: 120px 0;
    background: #ffffff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.step-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #f0f0f0;
    position: relative;
}

.step-number {
    background: #0a0a0a;
    color: #ffffff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
    margin: 0 auto 24px;
}

.step-card h3 {
    margin-bottom: 16px;
    color: #0a0a0a;
}

.step-card p {
    color: #525252;
    font-size: 15px;
}

/* Pricing Section */
.pricing-section {
    padding: 120px 0;
    background: #fafafa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
    margin-top: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.2s ease;
}

.pricing-card:hover {
    border-color: #e5e5e5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.pricing-card.featured {
    border-color: #0a0a0a;
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0a0a0a;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.pricing-header {
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #0a0a0a;
    font-weight: 500;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 24px;
    color: #525252;
    font-weight: 400;
}

.amount {
    font-size: 48px;
    font-weight: 600;
    color: #0a0a0a;
}

.period {
    font-size: 16px;
    color: #525252;
    font-weight: 400;
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px 0;
}

.feature-item i {
    color: #0a0a0a;
    font-size: 16px;
    width: 16px;
}

.feature-item span {
    color: #525252;
    font-size: 15px;
}

.feature-item.highlight {
    background: #fafafa;
    border-radius: 8px;
    padding: 12px;
    margin: 8px -12px;
}

.feature-item.highlight span {
    color: #0a0a0a;
    font-weight: 500;
}

.pricing-guarantee {
    text-align: center;
    margin-top: 40px;
    color: #888888;
    font-size: 14px;
}

.pricing-guarantee i {
    color: #0a0a0a;
    margin-right: 8px;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: #0a0a0a;
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #a3a3a3;
}

.cta-subtext {
    font-size: 14px;
    color: #888888;
    margin-top: 16px;
}

.cta-section .btn-primary {
    background: #ffffff;
    color: #0a0a0a;
    border-color: #ffffff;
}

.cta-section .btn-primary:hover {
    background: #f0f0f0;
    border-color: #f0f0f0;
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: #ffffff;
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #262626;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 18px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: #a3a3a3;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 15px;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #888888;
}

.footer-founders a {
    color: #a3a3a3;
    text-decoration: none;
}

.footer-founders a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .feature-card.reverse {
        direction: ltr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .features-grid {
        gap: 80px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .profile-image {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .profile-initials {
        font-size: 20px;
    }
    
    .testimonial-header h4 {
        font-size: 16px;
    }
    
    section {
        padding: 80px 0 !important;
    }
}

@media (max-width: 480px) {
    .problem-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-badge {
        margin: 0 16px 24px;
    }
    
    .badge-text {
        font-size: 13px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .profile-image {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .profile-initials {
        font-size: 18px;
    }
    
    .testimonial-header h4 {
        font-size: 15px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .testimonial-metric {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 16px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 12px;
    }
} 