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

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

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

/* Header and Navigation */
.header {
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #202020;
    font-weight: 600;
    font-size: 18px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #0090ff, #0070f3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    margin-right: 8px;
}

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

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #0090ff;
}

.nav-actions {
    display: flex;
    gap: 16px;
}

/* Buttons */
.btn-primary {
    background-color: #0090ff;
    color: white;
    padding: 13px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 400;
    transition: background-color 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #0070f3;
}

.btn-secondary {
    background-color: transparent;
    color: #666;
    padding: 13px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
    display: inline-block;
}

.btn-secondary:hover {
    color: #0090ff;
}

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

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

.announcement {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 24px;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    font-size: 14px;
    color: #666;
}

.announcement a {
    color: #0090ff;
    text-decoration: none;
}

.hero-title {
    font-size: 64px;
    font-weight: 400;
    line-height: 64px;
    color: #202020;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-logos {
    margin-top: 60px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    align-items: center;
    opacity: 0.6;
}

.partner-logo {
    font-weight: 500;
    color: #666;
    text-align: center;
}

/* Features Tabs */
.features-tabs {
    background: #f8f9fa;
    padding: 20px 0;
}

.tabs-nav {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 12px 20px;
    border-radius: 24px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn.active {
    background: #0090ff;
    color: white;
}

.tab-btn:hover {
    background: #e9ecef;
}

.tab-btn.active:hover {
    background: #0070f3;
}

/* Demo Section */
.demo-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.demo-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.demo-sidebar {
    background: #f8f9fa;
    padding: 24px;
}

.demo-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    background: white;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.demo-nav-item.active {
    background: #0090ff;
    color: white;
}

.demo-chat {
    margin-top: 24px;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
}

.chat-message {
    margin-bottom: 12px;
}

.message-content {
    background: white;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.chat-message.user .message-content {
    background: #0090ff;
    color: white;
    margin-left: 20px;
}

.demo-main {
    padding: 24px;
}

.demo-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-number {
    font-size: 32px;
    font-weight: 600;
    color: #202020;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

/* Value Proposition */
.value-prop {
    padding: 80px 0;
    text-align: center;
}

.value-prop h2 {
    font-size: 48px;
    font-weight: 400;
    color: #202020;
    margin-bottom: 16px;
}

.value-prop > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    text-align: left;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #0090ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #202020;
    margin-bottom: 12px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #202020;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta-section .btn-secondary {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #202020;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-contact {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: #202020;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: #666;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #0090ff;
}

.footer-bottom {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* Pricing Styles */
.pricing-hero {
    padding: 80px 0 40px;
    text-align: center;
    background: #f8f9fa;
}

.pricing-hero h1 {
    font-size: 48px;
    font-weight: 400;
    color: #202020;
    margin-bottom: 16px;
}

.pricing-hero p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-plans {
    padding: 60px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 32px;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.plan-card.featured {
    border-color: #0090ff;
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0090ff;
    color: white;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.plan-header {
    text-align: center;
    margin-bottom: 32px;
}

.plan-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #202020;
    margin-bottom: 16px;
}

.plan-price {
    margin-bottom: 16px;
}

.price {
    font-size: 48px;
    font-weight: 600;
    color: #202020;
}

.period {
    font-size: 16px;
    color: #666;
    margin-left: 8px;
}

.plan-header p {
    color: #666;
    line-height: 1.5;
}

.plan-features {
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

.feature-item i {
    color: #0090ff;
    width: 16px;
}

.plan-btn {
    width: 100%;
    text-align: center;
    padding: 16px;
}

.pricing-features {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.pricing-features h2 {
    font-size: 36px;
    font-weight: 400;
    color: #202020;
    margin-bottom: 16px;
}

.pricing-features > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.core-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.core-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #202020;
}

.core-feature i {
    color: #0090ff;
    font-size: 20px;
    width: 24px;
}

.pricing-calculator {
    padding: 80px 0;
    background: #202020;
    color: white;
}

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

.calculator-content h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 16px;
}

.calculator-content > p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 40px;
    line-height: 1.6;
}

.calculator-widget {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
}

.slider-container {
    margin-bottom: 40px;
}

.slider-container label {
    display: block;
    font-size: 18px;
    margin-bottom: 20px;
}

#leads-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    -webkit-appearance: none;
}

#leads-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0090ff;
    cursor: pointer;
}

#leads-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0090ff;
    cursor: pointer;
    border: none;
}

.cost-display {
    margin-bottom: 40px;
}

.cost-amount {
    font-size: 48px;
    font-weight: 600;
    color: white;
}

.cost-period {
    font-size: 16px;
    opacity: 0.8;
    margin-left: 8px;
}

.cost-breakdown {
    text-align: left;
    margin-bottom: 32px;
}

.breakdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.breakdown-item i {
    color: #0090ff;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-faq {
    padding: 80px 0;
}

.pricing-faq h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    color: #202020;
    margin-bottom: 60px;
}

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

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #202020;
    margin-bottom: 12px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.nav-link.active {
    color: #0090ff;
    font-weight: 500;
}

/* Features Page Styles */
.features-hero {
    padding: 80px 0 40px;
    text-align: center;
    background: #f8f9fa;
}

.features-hero h1 {
    font-size: 48px;
    font-weight: 400;
    color: #202020;
    margin-bottom: 16px;
}

.features-hero p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.features-overview {
    padding: 80px 0;
}

.features-grid-large {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

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

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

.feature-icon-large {
    width: 64px;
    height: 64px;
    background: #0090ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: 24px;
}

.feature-large h2 {
    font-size: 32px;
    font-weight: 600;
    color: #202020;
    margin-bottom: 16px;
}

.feature-large p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-benefits {
    list-style: none;
    padding: 0;
}

.feature-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #202020;
}

.feature-benefits i {
    color: #0090ff;
    width: 16px;
}

.feature-visual {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 32px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-dashboard {
    background: white;
    border-radius: 8px;
    padding: 24px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dashboard-header h4 {
    color: #202020;
    margin-bottom: 20px;
    font-size: 18px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-item {
    text-align: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-number {
    font-size: 24px;
    font-weight: 600;
    color: #202020;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #666;
}

.analytics-chart {
    background: white;
    border-radius: 8px;
    padding: 24px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.chart-header h4 {
    color: #202020;
    margin-bottom: 20px;
    font-size: 18px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 120px;
}

.bar {
    background: #0090ff;
    border-radius: 4px 4px 0 0;
    flex: 1;
    min-height: 20px;
}

.social-integration {
    width: 100%;
}

.social-platforms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.platform-item i {
    font-size: 24px;
    color: #0090ff;
}

.features-grid-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.features-grid-section h2 {
    font-size: 36px;
    font-weight: 400;
    color: #202020;
    margin-bottom: 16px;
}

.features-grid-section > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-section {
    padding: 80px 0;
}

.comparison-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    color: #202020;
    margin-bottom: 16px;
}

.comparison-section > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: #f8f9fa;
    font-weight: 600;
    color: #202020;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #e9ecef;
}

.comparison-row:last-child {
    border-bottom: none;
}

.feature-col,
.bosonfuse-col,
.competitor-col {
    padding: 16px 20px;
    display: flex;
    align-items: center;
}

.bosonfuse-col,
.competitor-col {
    justify-content: center;
}

.bosonfuse-col i.fa-check {
    color: #28a745;
    font-size: 18px;
}

.competitor-col i.fa-times {
    color: #dc3545;
    font-size: 18px;
}

.competitor-col i.fa-minus {
    color: #ffc107;
    font-size: 18px;
}

/* Product Page Styles */
.product-hero {
    padding: 80px 0 40px;
    text-align: center;
    background: #f8f9fa;
}

.product-hero h1 {
    font-size: 48px;
    font-weight: 400;
    color: #202020;
    margin-bottom: 16px;
}

.product-hero p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

.product-overview {
    padding: 80px 0;
}

.product-overview h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    color: #202020;
    margin-bottom: 16px;
}

.product-overview > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.workflow-step {
    text-align: center;
}

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

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #202020;
    margin-bottom: 12px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.product-demo {
    padding: 80px 0;
    background: #f8f9fa;
}

.product-demo h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    color: #202020;
    margin-bottom: 16px;
}

.product-demo > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.demo-interface {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.demo-sidebar {
    background: #f8f9fa;
    padding: 24px;
}

.demo-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.demo-nav-item:hover {
    background: white;
}

.demo-nav-item.active {
    background: #0090ff;
    color: white;
}

.demo-content {
    padding: 24px;
    position: relative;
}

.demo-screen {
    display: none;
}

.demo-screen.active {
    display: block;
}

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

.screen-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #202020;
    margin-bottom: 8px;
}

.screen-header p {
    color: #666;
}

.dashboard-mockup,
.campaigns-mockup,
.analytics-mockup,
.social-mockup,
.automation-mockup {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 24px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: #0090ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 24px;
    font-weight: 600;
    color: #202020;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.stat-change {
    font-size: 12px;
}

.stat-change.positive {
    color: #28a745;
}

.campaign-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.campaign-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 8px;
}

.campaign-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #202020;
    margin-bottom: 4px;
}

.campaign-info p {
    font-size: 14px;
    color: #666;
}

.campaign-stats {
    display: flex;
    gap: 16px;
}

.campaign-stats .stat {
    font-size: 12px;
    color: #666;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
}

.chart-container {
    background: white;
    border-radius: 8px;
    padding: 20px;
}

.chart-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #202020;
    margin-bottom: 16px;
}

.chart-placeholder {
    height: 200px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.social-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.platform-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.platform-card i {
    font-size: 32px;
    color: #0090ff;
    margin-bottom: 12px;
}

.platform-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #202020;
    margin-bottom: 8px;
}

.platform-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.status {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
}

.status.connected {
    background: #d4edda;
    color: #155724;
}

.automation-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: white;
    padding: 32px;
    border-radius: 8px;
}

.flow-step {
    text-align: center;
    flex: 1;
}

.flow-icon {
    width: 48px;
    height: 48px;
    background: #0090ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin: 0 auto 12px;
}

.flow-step h4 {
    font-size: 14px;
    font-weight: 600;
    color: #202020;
    margin-bottom: 8px;
}

.flow-step p {
    font-size: 12px;
    color: #666;
}

.flow-arrow {
    font-size: 20px;
    color: #0090ff;
    font-weight: bold;
}

.product-benefits {
    padding: 80px 0;
}

.product-benefits h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    color: #202020;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: #0090ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin: 0 auto 20px;
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #202020;
    margin-bottom: 12px;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-hero {
    padding: 80px 0 40px;
    text-align: center;
    background: #f8f9fa;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 400;
    color: #202020;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 600;
    color: #202020;
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-benefits {
    margin-bottom: 40px;
}

.contact-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #202020;
}

.contact-benefits i {
    color: #0090ff;
    width: 16px;
}

.contact-details h3 {
    font-size: 20px;
    font-weight: 600;
    color: #202020;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-item i {
    color: #0090ff;
    font-size: 18px;
    margin-top: 2px;
    width: 20px;
}

.contact-item strong {
    display: block;
    color: #202020;
    margin-bottom: 4px;
}

.contact-item p {
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #202020;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0090ff;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.checkbox-label a {
    color: #0090ff;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit {
    margin-top: 20px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
}

.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.success-content i {
    font-size: 48px;
    color: #28a745;
    margin-bottom: 20px;
}

.success-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #155724;
    margin-bottom: 12px;
}

.success-content p {
    font-size: 16px;
    color: #155724;
}

.contact-faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-faq h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    color: #202020;
    margin-bottom: 60px;
}

/* Legal Pages Styles */
.legal-hero {
    padding: 80px 0 40px;
    text-align: center;
    background: #f8f9fa;
}

.legal-hero h1 {
    font-size: 48px;
    font-weight: 400;
    color: #202020;
    margin-bottom: 16px;
}

.legal-hero p {
    font-size: 16px;
    color: #666;
}

.legal-content {
    padding: 80px 0;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.legal-document h2 {
    font-size: 24px;
    font-weight: 600;
    color: #202020;
    margin: 40px 0 16px 0;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    font-size: 20px;
    font-weight: 600;
    color: #202020;
    margin: 24px 0 12px 0;
}

.legal-document p {
    color: #666;
    margin-bottom: 16px;
}

.legal-document ul {
    margin: 16px 0;
    padding-left: 20px;
}

.legal-document li {
    color: #666;
    margin-bottom: 8px;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.contact-info p {
    margin: 0;
    color: #202020;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 40px;
        line-height: 44px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .demo-content {
        grid-template-columns: 1fr;
    }
    
    .demo-stats {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
        line-height: 36px;
    }
    
    .value-prop h2 {
        font-size: 32px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .feature-card {
        padding: 24px;
    }
}
