html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f3f3f3;
    --accent-color: #22c55e;
    --text-color: #333;
    --gradient-bg: linear-gradient(120deg, #fff5f6 0%, #f0fdf4 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
nav {
    padding: 20px 0;
    background-color: transparent;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.logo .trade {
    color: #16a34a;
}

.logo .citi {
    color: #0f172a;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.nav-link:hover {
    opacity: 1;
}

.login-btn {
    padding: 10px 18px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    text-align: center;
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    color: var(--primary-color);
}

.hero h1 span {
    background: linear-gradient(90deg, #16a34a 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subheadline {
    font-size: 24px;
    color: #4b5563;
    margin-bottom: 32px;
    line-height: 1.4;
}

.funding-banner {
    background: rgba(34, 197, 94, 0.1);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 16px;
    color: #16a34a;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 48px;
}

.hero-cta {
    display: inline-block;
    padding: 16px 32px;
    background: #16a34a;
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 18px;
    margin: 32px 0;
    transition: all 0.2s ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.2);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    margin: 48px auto;
}

.feature-item {
    font-size: 18px;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.demo-section {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 32px;
}

.demo-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.demo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.demo-title h3 {
    font-size: 24px;
    font-weight: 600;
    color: #16a34a;
    margin: 24px 0 16px;
}

.demo-content {
    color: #4b5563;
}

.demo-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.demo-content ul {
    list-style: none;
    padding: 0;
}

.demo-content ul li {
    font-size: 16px;
    margin: 12px 0;
    padding-left: 28px;
    position: relative;
}

.demo-content ul li:before {
    content: "✅";
    position: absolute;
    left: 0;
    color: #16a34a;
}

.demo-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f5f5f5;
}

.demo-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 20px 0 12px;
}

.demo-content h4:first-child {
    margin-top: 0;
}

.demo-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.demo-content ul li {
    margin: 8px 0;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.5;
}

.demo-content ul li:before {
    content: "•";
    color: #9ca3af;
    margin-right: 8px;
}

.ai-enhanced {
    position: absolute;
    top: 32px;
    right: 32px;
    background: rgba(34, 197, 94, 0.1);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    color: #16a34a;
    font-weight: 500;
}

/* Partners Section */
.partners {
    padding: 120px 0;
    background: white;
    text-align: center;
}

.partners h2 {
    font-size: 32px;
    color: #666;
    margin-bottom: 64px;
    font-weight: 500;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.partner-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 64px;
    margin-top: 48px;
}

.partner-logos img,
.partner-logos .partner-text {
    height: 32px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.partner-logos .partner-text {
    font-size: 20px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* How It Works */
.how-it-works {
    padding: 120px 0;
    background: white;
    text-align: center;
}

.how-it-works h2 {
    font-size: 48px;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 24px;
    color: #16a34a;
    margin-bottom: 16px;
    font-weight: 600;
}

.section-desc {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 64px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 32px;
}

.step-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.step-number {
    font-size: 24px;
}

.step-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #16a34a;
    line-height: 1.3;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.step-feature p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}

.compatibility-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
}

.compatibility-section h3 {
    font-size: 32px;
    font-weight: 600;
    color: #16a34a;
    margin-bottom: 32px;
}

.compatibility-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.compatibility-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    text-align: left;
}

.check-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.compatibility-feature p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}

.final-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
    padding: 16px 32px;
    background: rgba(22, 163, 74, 0.1);
    border-radius: 100px;
    display: inline-flex;
}

.note-icon {
    font-size: 20px;
    color: #16a34a;
}

.final-note p {
    font-size: 18px;
    color: #16a34a;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 80px 0;
    }

    .how-it-works h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .section-subtitle {
        font-size: 20px;
    }

    .section-desc {
        font-size: 16px;
        margin-bottom: 48px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .step-card {
        padding: 24px;
    }

    .compatibility-section {
        padding: 0 20px;
    }

    .compatibility-section h3 {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .compatibility-feature p {
        font-size: 16px;
    }

    .final-note {
        padding: 12px 24px;
        margin-top: 32px;
    }

    .final-note p {
        font-size: 16px;
    }
}

/* Platform Support */
.platform-support {
    padding: 80px 0;
    text-align: center;
    background: white;
}

.platform-desc {
    margin: 24px 0 48px;
    color: #64748b;
    font-size: 18px;
}

.platform-icons {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.platform-icon {
    font-size: 16px;
    font-weight: 500;
    color: #475569;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 100px;
    transition: all 0.2s ease;
}

.platform-icon:hover {
    transform: translateY(-1px);
    background: rgba(0, 0, 0, 0.08);
}

/* Templates Section */
.templates {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 245, 246, 0.8) 0%, rgba(240, 253, 244, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.templates .container,
.templates-reversed .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.template-content,
.template-content-right {
    padding-right: 32px;
}

.template-content h2,
.template-content-right h2 {
    font-size: 48px;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 24px;
    font-weight: 700;
}

.template-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 32px;
}

.template-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.template-tag {
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    background: white;
    color: #4b5563;
    transition: all 0.2s ease;
}

.template-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.template-tag.highlight {
    background: #16a34a;
    color: white;
}

.template-preview,
.template-preview-left {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.template-preview {
    transform: rotate(-5deg);
}

.template-preview-left {
    transform: rotate(5deg);
}

.template-preview:hover {
    transform: rotate(-5deg) translateY(-5px);
}

.template-preview-left:hover {
    transform: rotate(5deg) translateY(-5px);
}

.template-preview-header {
    margin-bottom: 24px;
}

.template-preview-title {
    font-size: 20px;
    font-weight: 600;
    color: #16a34a;
    margin-top: 16px;
}

.template-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.2s ease;
    margin-bottom: 16px;
}

.template-feature:hover {
    background: rgba(22, 163, 74, 0.05);
}

.feature-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.template-feature p {
    font-size: 15px;
    line-height: 1.5;
    color: #4b5563;
    margin: 0;
}

.customization-note {
    margin-top: 24px;
    background: rgba(22, 163, 74, 0.05);
    border-radius: 12px;
}

.customization-note p {
    color: #16a34a;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .templates .container,
    .templates-reversed .container {
        gap: 48px;
    }

    .template-content h2,
    .template-content-right h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .templates,
    .templates-reversed {
        padding: 80px 0;
    }

    .templates .container,
    .templates-reversed .container {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 24px;
    }

    .template-content,
    .template-content-right {
        padding: 0;
        text-align: center;
    }

    .template-content-right {
        order: 1;
    }

    .template-preview-left {
        order: 2;
    }

    .template-tags {
        justify-content: center;
    }

    .template-preview,
    .template-preview-left {
        transform: none;
        padding: 24px;
    }

    .template-preview:hover,
    .template-preview-left:hover {
        transform: translateY(-5px);
    }

    .template-feature {
        padding: 12px;
    }

    .template-feature p {
        font-size: 14px;
    }
}

/* Features Section */
.features {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 245, 246, 0.8) 0%, rgba(240, 253, 244, 0.8) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.features .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.features h2 {
    font-size: 48px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.features-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 64px;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.feature-header {
    margin-bottom: 24px;
}

.feature-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #16a34a;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.feature-item:hover {
    background: rgba(22, 163, 74, 0.05);
}

.feature-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.5;
    color: #4b5563;
    margin: 0;
}

.features-note {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(22, 163, 74, 0.1);
    padding: 16px 32px;
    border-radius: 100px;
    margin-top: 32px;
}

.note-icon {
    font-size: 24px;
}

.features-note p {
    font-size: 18px;
    font-weight: 500;
    color: #16a34a;
    margin: 0;
}

@media (max-width: 1024px) {
    .features-grid {
        gap: 24px;
    }

    .feature-card {
        padding: 24px;
    }

    .feature-header h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 80px 0;
    }

    .features h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .features-subtitle {
        font-size: 16px;
        margin-bottom: 48px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-item {
        padding: 12px;
    }

    .feature-item p {
        font-size: 15px;
    }

    .features-note {
        padding: 12px 24px;
        margin-top: 24px;
    }

    .features-note p {
        font-size: 16px;
    }
}

/* Share Section */
.share {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 245, 246, 0.8) 0%, rgba(240, 253, 244, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.share .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.share h2 {
    font-size: 48px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.share-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.share-demo {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.share-preview {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    width: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: left;
}

.share-content {
    margin: 24px 0;
}

.share-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #16a34a;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-platforms {
    display: flex;
    justify-content: space-around;
    margin: 24px 0;
}

.platform-icon {
    font-size: 24px;
    opacity: 0.8;
    transition: all 0.2s ease;
}

.platform-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

.share-button {
    background: #16a34a;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
}

.share-button:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21, 128, 61, 0.2);
}

.share-options-left,
.share-options-right {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 1;
}

.share-options-left {
    right: calc(100% + 48px);
    align-items: flex-end;
}

.share-options-right {
    left: calc(100% + 48px);
    align-items: flex-start;
}

.share-option {
    background: white;
    padding: 12px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #475569;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.share-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.share-option .icon {
    font-size: 20px;
}

.share-option.email {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.share-option.social {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.share-option.marketplace {
    background: rgba(234, 179, 8, 0.1);
    color: #ca8a04;
}

.share-option.traffic {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.share-option.engage {
    background: rgba(168, 85, 247, 0.1);
    color: #9333ea;
}

.share-option.network {
    background: rgba(14, 165, 233, 0.1);
    color: #0284c7;
}

.share-benefits {
    margin-top: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #16a34a;
    margin-bottom: 24px;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-card ul li {
    font-size: 16px;
    color: #4b5563;
    margin: 16px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
}

.benefit-card ul li:before {
    content: "•";
    color: #16a34a;
    font-size: 24px;
    position: absolute;
    left: 8px;
    top: -2px;
}

.share-note {
    margin-top: 48px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(22, 163, 74, 0.1);
    padding: 16px 32px;
    border-radius: 100px;
}

.note-icon {
    font-size: 24px;
    color: #16a34a;
}

.share-note p {
    font-size: 18px;
    font-weight: 500;
    color: #16a34a;
    margin: 0;
}

@media (max-width: 1200px) {
    .share-options-left,
    .share-options-right {
        display: none;
    }
    
    .share-demo {
        min-height: auto;
    }

    .share-preview {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .share {
        padding: 80px 0;
    }

    .share h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .share-subtitle {
        font-size: 16px;
        margin-bottom: 48px;
    }

    .share-preview {
        padding: 24px;
    }

    .share-content h3 {
        font-size: 18px;
    }

    .platform-icon {
        font-size: 20px;
    }

    .share-button {
        padding: 14px 28px;
        font-size: 15px;
    }

    .benefit-card {
        padding: 24px;
    }

    .benefit-card h3 {
        font-size: 20px;
    }

    .benefit-card ul li {
        font-size: 15px;
    }

    .share-note {
        padding: 12px 24px;
    }

    .share-note p {
        font-size: 16px;
    }
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 245, 246, 0.8) 0%, rgba(240, 253, 244, 0.8) 100%);
    text-align: center;
}

.testimonials h2 {
    font-size: 48px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.testimonials-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 64px;
    max-width: 800px;
    margin: 0 auto 64px;
}

.efficiency-features {
    background: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 800px;
    margin: 0 auto 64px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.efficiency-features h3 {
    font-size: 24px;
    font-weight: 600;
    color: #16a34a;
    margin-bottom: 32px;
    text-align: left;
}

.efficiency-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.efficiency-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.efficiency-item .check {
    font-size: 20px;
    flex-shrink: 0;
}

.efficiency-item p {
    font-size: 16px;
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
}

.testimonials-heading {
    font-size: 32px;
    font-weight: 600;
    color: #16a34a;
    margin-bottom: 32px;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 64px;
    padding: 0 24px;
}

.tweet-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.tweet-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.rating {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
}

.testimonials-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 32px;
    background: rgba(22, 163, 74, 0.1);
    border-radius: 16px;
}

.cta-text {
    font-size: 20px;
    font-weight: 500;
    color: #16a34a;
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 80px 0;
    }

    .testimonials h2 {
        font-size: 36px;
    }

    .testimonials-subtitle {
        font-size: 16px;
        margin-bottom: 48px;
    }

    .efficiency-features {
        padding: 24px;
        margin-bottom: 48px;
    }

    .efficiency-features h3 {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .testimonials-cta {
        padding: 24px;
    }

    .cta-text {
        font-size: 18px;
    }
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 245, 246, 0.8) 0%, rgba(240, 253, 244, 0.8) 100%);
}

.final-cta .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.final-cta h2 {
    font-size: 48px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.final-cta-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 48px;
    line-height: 1.6;
}

.final-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto 48px;
    text-align: left;
}

.final-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.final-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.final-feature .check {
    font-size: 20px;
    flex-shrink: 0;
    color: #16a34a;
}

.final-feature p {
    font-size: 16px;
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
}

.contact-info {
    margin-top: 32px;
    color: #64748b;
    font-size: 16px;
    display: flex;
    justify-content: center;
    gap: 32px;
}

.contact-info a {
    color: #64748b;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
    padding: 12px 24px;
    background: white;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-info a:hover {
    color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .final-cta {
        padding: 80px 0;
    }

    .final-cta h2 {
        font-size: 36px;
    }

    .final-cta-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .final-features {
        margin-bottom: 32px;
    }

    .final-feature {
        padding: 12px 20px;
    }

    .final-feature p {
        font-size: 15px;
    }

    .contact-info {
        flex-direction: column;
        gap: 16px;
    }

    .contact-info a {
        justify-content: center;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.2s ease;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 32px;
}

@media (max-width: 768px) {
    .final-cta {
        padding: 80px 0;
    }

    .final-cta h2 {
        font-size: 36px;
    }

    .final-cta-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .contact-info {
        flex-direction: column;
        gap: 16px;
    }

    .whatsapp-button {
        bottom: 24px;
        right: 24px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        font-size: 28px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .demo-section {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .hero .subheadline {
        font-size: 20px;
    }

    .hero-features {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-right {
        gap: 20px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .funding-banner {
        font-size: 14px;
        padding: 10px 20px;
    }

    .hero-cta {
        font-size: 16px;
        padding: 14px 28px;
    }

    .feature-item {
        font-size: 16px;
    }
    
    .demo-section {
        padding: 0 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .how-it-works h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .quote, .quote-subtitle {
        font-size: 24px;
    }

    .templates .container,
    .templates-reversed .container {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 24px;
    }

    .template-content,
    .template-content-right {
        padding: 0;
        text-align: center;
    }

    .template-content-right {
        order: 1;
    }

    .template-preview-left {
        order: 2;
    }

    .template-tags {
        justify-content: center;
    }

    .template-preview,
    .template-preview-left {
        transform: none;
    }

    .template-preview:hover,
    .template-preview-left:hover {
        transform: translateY(-5px);
    }

    .features {
        padding: 80px 0;
    }

    .features h2 {
        font-size: 36px;
    }

    .features-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .features-capsules {
        gap: 8px;
    }

    .feature-capsule {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Common Styles */
h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.fade-out {
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 