/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: rgb(51, 51, 51);
    background-color: rgb(255, 255, 255);
}

/* Navigation */
.navbar {
    background: white;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgb(34, 34, 34);
    font-weight: 600;
    font-size: 24px;
}

.logo-img {
    width: 32px;
    height: 32px;
    margin-right: 8px;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    color: rgb(34, 34, 34);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: rgb(250, 105, 101);
}

.contact-highlight {
    color: rgb(250, 105, 101) !important;
}

.nav-btn {
    background: rgb(120 52 193);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    background: rgb(240, 95, 91);
    transform: translateY(-1px);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: rgb(51, 51, 51);
    text-decoration: none;
    transition: background 0.2s ease;
}

.dropdown-content a:hover {
    background: rgb(250, 250, 250);
    color: rgb(250, 105, 101);
}

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: rgb(229 60 60);
}

.gradient-text {
    color: rgb(250, 105, 101);
    background: linear-gradient(135deg, rgb(123 41 67) 50%, rgb(255, 120, 116) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: rgb(121 0 27);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: rgb(250, 105, 101);
    color: white;
    padding: 14px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: rgb(240, 95, 91);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(250, 105, 101, 0.3);
}

.btn-secondary {
    background: transparent;
    color: rgb(147 7 7);
    padding: 14px 28px;
    border: 2px solid rgb(239, 239, 239);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: rgb(250, 105, 101);
    color: rgb(250, 105, 101);
}

.product-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgb(255, 248, 235);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgb(255, 235, 204);
}

.badge-icon {
    font-size: 16px;
}

.badge-text {
    font-size: 14px;
    font-weight: 500;
    color: rgb(204, 102, 0);
}

/* Hero Demo */
.hero-demo {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.demo-container {
    padding: 24px;
}

.demo-header {
    margin-bottom: 16px;
}

.demo-label {
    font-size: 14px;
    font-weight: 500;
    color: rgb(102, 102, 102);
}

.demo-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.demo-tag {
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgb(239, 239, 239);
    color: rgb(102, 102, 102);
}

.demo-tag.active {
    background: rgb(250, 105, 101);
    color: white;
    border-color: rgb(250, 105, 101);
}

.demo-input {
    margin-bottom: 20px;
}

.demo-input textarea {
    width: 100%;
    min-height: 120px;
    padding: 16px;
    border: 1px solid rgb(239, 239, 239);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
    background: rgb(250, 250, 250);
}

.demo-input textarea:focus {
    outline: none;
    border-color: rgb(250, 105, 101);
}

.demo-btn {
    width: 100%;
    background: rgb(250, 105, 101);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.demo-btn:hover {
    background: rgb(240, 95, 91);
}

/* Companies Section */
.companies {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid rgb(245, 245, 245);
}

.companies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

.companies-label {
    font-size: 14px;
    font-weight: 500;
    color: rgb(102, 102, 102);
    margin-bottom: 24px;
    display: block;
}

.companies-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.company-logo {
    font-size: 18px;
    font-weight: 600;
    color: rgb(153, 153, 153);
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.company-logo:hover {
    opacity: 1;
}

/* Features Preview */
.features-preview {
    padding: 80px 0;
    background: rgb(250, 250, 250);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

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

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgb(34, 34, 34);
}

.feature-desc {
    color: rgb(102, 102, 102);
    line-height: 1.6;
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background: white;
}

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

.solutions-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: rgb(34, 34, 34);
}

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

.solution-card {
    background: white;
    border: 1px solid rgb(239, 239, 239);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.2s ease;
}

.solution-card:hover {
    border-color: rgb(250, 105, 101);
    box-shadow: 0 8px 32px rgba(250, 105, 101, 0.1);
}

.solution-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgb(250, 105, 101);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.solution-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: rgb(34, 34, 34);
}

.solution-desc {
    color: rgb(102, 102, 102);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: rgb(245 172 170 / 68%);
    color: Black;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

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

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

.cta-section .btn-primary {
    background: white;
    color: rgb(250, 105, 101);
}

.cta-section .btn-primary:hover {
    background: rgb(245, 245, 245);
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: rgb(250, 105, 101);
}

/* Footer */
.footer {
    background: rgb(34, 34, 34);
    color: white;
    padding: 60px 0 20px;
}

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

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

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-contact p {
    margin-bottom: 8px;
    color: rgb(204, 204, 204);
}

.footer-contact a {
    color: rgb(250, 105, 101);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgb(204, 204, 204);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: rgb(250, 105, 101);
}

.footer-bottom {
    border-top: 1px solid rgb(68, 68, 68);
    padding-top: 20px;
    text-align: center;
    color: rgb(153, 153, 153);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .companies-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    text-align: center;
}

.pricing-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: rgb(51, 51, 51);
}

.billing-toggle {
    margin-top: 40px;
}

.toggle-container {
    display: inline-flex;
    align-items: center;
    background: rgb(245, 245, 245);
    border-radius: 25px;
    padding: 4px;
    gap: 8px;
}

.toggle-option {
    padding: 12px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    color: rgb(102, 102, 102);
}

.toggle-option.active {
    background: white;
    color: rgb(34, 34, 34);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.toggle-badge {
    background: rgb(250, 105, 101);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

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

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.plan-card {
    background: white;
    border: 2px solid rgb(239, 239, 239);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    position: relative;
    transition: all 0.2s ease;
}

.plan-card.featured {
    border-color: rgb(250, 105, 101);
    transform: scale(1.05);
}

.plan-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(250, 105, 101);
    color: white;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.plan-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgb(34, 34, 34);
}

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

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: rgb(250, 105, 101);
}

.price-period {
    font-size: 16px;
    color: rgb(102, 102, 102);
}

.plan-savings {
    font-size: 14px;
    color: rgb(102, 102, 102);
    margin-bottom: 20px;
}

.plan-description {
    color: rgb(102, 102, 102);
    margin-bottom: 32px;
    line-height: 1.6;
}

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

/* Features Comparison */
.features-comparison {
    padding: 80px 0;
    background: rgb(250, 250, 250);
}

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

.comparison-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: rgb(34, 34, 34);
}

.feature-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid rgb(230, 230, 230);
}

.feature-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgb(34, 34, 34);
}

.feature-desc {
    color: rgb(102, 102, 102);
    line-height: 1.5;
}

.feature-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: center;
}

.feature-check {
    padding: 8px;
    border-radius: 8px;
    font-weight: 500;
    background: rgb(240, 253, 244);
    color: rgb(22, 163, 74);
}

.feature-check.basic {
    background: rgb(254, 249, 195);
    color: rgb(161, 98, 7);
}

.feature-check.limited {
    background: rgb(254, 249, 195);
    color: rgb(161, 98, 7);
}

.feature-cross {
    padding: 8px;
    border-radius: 8px;
    font-weight: 500;
    background: rgb(254, 242, 242);
    color: rgb(220, 38, 38);
}

.pricing-cta {
    padding: 80px 0;
    background: rgb(250, 105, 101);
    color: white;
    text-align: center;
}

.pricing-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-cta-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.pricing-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Contact Page Styles */
.contact-hero {
    padding: 80px 0;
    background: rgb(250, 105, 101);
    color: white;
    text-align: center;
}

.contact-hero-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

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

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

.contact-options {
    padding: 80px 0;
    background: white;
}

.contact-options-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.contact-option {
    background: white;
    border: 1px solid rgb(239, 239, 239);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.2s ease;
}

.contact-option:hover {
    border-color: rgb(250, 105, 101);
    box-shadow: 0 8px 32px rgba(250, 105, 101, 0.1);
}

.option-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgb(250, 105, 101);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.option-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: rgb(34, 34, 34);
}

.option-desc {
    color: rgb(102, 102, 102);
    margin-bottom: 24px;
    line-height: 1.6;
}

.option-btn {
    width: 100%;
    text-align: center;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
    background: rgb(250, 250, 250);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: rgb(34, 34, 34);
}

.form-subtitle {
    color: rgb(102, 102, 102);
    font-size: 16px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: rgb(34, 34, 34);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgb(220, 220, 220);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(250, 105, 101);
}

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

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

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
}

.form-success {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.success-icon {
    width: 60px;
    height: 60px;
    background: rgb(34, 197, 94);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.form-success h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgb(34, 34, 34);
}

.form-success p {
    color: rgb(102, 102, 102);
    line-height: 1.6;
}

.contact-info {
    padding: 60px 0;
    background: white;
}

.contact-info-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.contact-info-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: rgb(34, 34, 34);
}

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

.contact-method {
    text-align: center;
}

.method-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-method h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: rgb(34, 34, 34);
}

.contact-method p {
    color: rgb(102, 102, 102);
    line-height: 1.6;
}

.contact-method a {
    color: rgb(250, 105, 101);
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

/* Product Page Styles */
.product-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    text-align: center;
}

.product-hero-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: rgb(51, 51, 51);
}

.product-subtitle {
    font-size: 18px;
    color: rgb(102, 102, 102);
    margin-bottom: 40px;
    line-height: 1.6;
}

.product-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: rgb(250, 105, 101);
    display: block;
}

.stat-label {
    font-size: 14px;
    color: rgb(102, 102, 102);
    font-weight: 500;
}

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

.how-it-works {
    padding: 100px 0;
    background: white;
}

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

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: rgb(34, 34, 34);
}

.section-subtitle {
    font-size: 18px;
    color: rgb(102, 102, 102);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.6;
}

.workflow-steps {
    display: grid;
    gap: 40px;
}

.workflow-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgb(250, 105, 101);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: rgb(34, 34, 34);
}

.step-desc {
    color: rgb(102, 102, 102);
    margin-bottom: 20px;
    line-height: 1.6;
}

.step-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.step-feature {
    background: rgb(250, 250, 250);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 14px;
    color: rgb(102, 102, 102);
}

.competitive-advantages {
    padding: 100px 0;
    background: rgb(250, 250, 250);
}

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

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

.advantage-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.advantage-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgb(34, 34, 34);
}

.advantage-desc {
    color: rgb(102, 102, 102);
    margin-bottom: 24px;
    line-height: 1.6;
}

.advantage-comparison {
    display: grid;
    gap: 12px;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgb(250, 250, 250);
    border-radius: 8px;
}

.comparison-label {
    font-weight: 500;
    color: rgb(102, 102, 102);
}

.comparison-value {
    font-weight: 600;
}

.comparison-value.slow {
    color: rgb(220, 38, 38);
}

.comparison-value.fast {
    color: rgb(34, 197, 94);
}

.advantage-stats {
    display: flex;
    gap: 20px;
}

.stat-highlight {
    text-align: center;
    padding: 16px;
    background: rgb(250, 250, 250);
    border-radius: 8px;
    flex: 1;
}

.stat-highlight .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: rgb(250, 105, 101);
    display: block;
}

.stat-highlight .stat-label {
    font-size: 12px;
    color: rgb(102, 102, 102);
    font-weight: 500;
}

.integration-logos {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.integration-logo {
    background: rgb(250, 250, 250);
    padding: 8px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    color: rgb(102, 102, 102);
}

.pricing-highlight {
    text-align: center;
    padding: 16px;
    background: rgb(250, 250, 250);
    border-radius: 8px;
}

.price-range {
    font-size: 24px;
    font-weight: 700;
    color: rgb(250, 105, 101);
    display: block;
}

.price-label {
    font-size: 12px;
    color: rgb(102, 102, 102);
}

.technology-stack {
    padding: 100px 0;
    background: white;
}

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

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

.tech-item {
    text-align: center;
    padding: 32px;
    background: rgb(250, 250, 250);
    border-radius: 12px;
}

.tech-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.tech-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: rgb(34, 34, 34);
}

.tech-desc {
    color: rgb(102, 102, 102);
    line-height: 1.6;
}

.product-cta {
    padding: 80px 0;
    background: rgb(250, 105, 101);
    color: white;
    text-align: center;
}

.product-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-cta-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.6;
}

.product-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Features Page Styles */
.features-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    text-align: center;
}

.features-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: rgb(51, 51, 51);
}

.features-subtitle {
    font-size: 18px;
    color: rgb(102, 102, 102);
    line-height: 1.6;
}

.core-features {
    padding: 100px 0;
    background: white;
}

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

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

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

.feature-showcase-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: rgb(34, 34, 34);
}

.feature-showcase-desc {
    color: rgb(102, 102, 102);
    margin-bottom: 24px;
    line-height: 1.6;
}

.feature-benefits {
    display: grid;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.benefit-text {
    color: rgb(102, 102, 102);
    font-weight: 500;
}

.feature-visual {
    background: rgb(250, 250, 250);
    border-radius: 16px;
    padding: 32px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-placeholder {
    width: 100%;
}

.ai-demo,
.social-demo,
.analytics-demo {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.demo-header {
    font-weight: 600;
    margin-bottom: 20px;
    color: rgb(34, 34, 34);
    text-align: center;
}

.demo-metrics {
    display: grid;
    gap: 16px;
}

.metric {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 12px;
    align-items: center;
}

.metric-label {
    font-size: 12px;
    color: rgb(102, 102, 102);
}

.metric-bar {
    height: 8px;
    background: rgb(239, 239, 239);
    border-radius: 4px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: rgb(250, 105, 101);
    border-radius: 4px;
}

.metric-value {
    font-weight: 600;
    color: rgb(34, 34, 34);
    text-align: right;
}

.social-platforms {
    display: grid;
    gap: 12px;
}

.platform-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: rgb(250, 250, 250);
    border-radius: 8px;
}

.platform-item.active {
    background: rgb(240, 253, 244);
}

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

.platform-name {
    font-weight: 500;
    color: rgb(34, 34, 34);
}

.platform-status {
    font-size: 12px;
    color: rgb(34, 197, 94);
    font-weight: 500;
}

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

.stat-card {
    text-align: center;
    padding: 16px;
    background: rgb(250, 250, 250);
    border-radius: 8px;
}

.stat-card .stat-number {
    font-size: 20px;
    font-weight: 700;
    color: rgb(250, 105, 101);
    display: block;
}

.stat-card .stat-label {
    font-size: 12px;
    color: rgb(102, 102, 102);
}

.feature-grid {
    padding: 100px 0;
    background: rgb(250, 250, 250);
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.features-cta {
    padding: 80px 0;
    background: rgb(250, 105, 101);
    color: white;
    text-align: center;
}

.features-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.features-cta-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.6;
}

.features-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Legal Pages Styles */
.legal-hero {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    text-align: center;
}

.legal-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: rgb(51, 51, 51);
}

.legal-subtitle {
    color: rgb(102, 102, 102);
    font-size: 16px;
}

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

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

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgb(34, 34, 34);
}

.legal-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 12px;
    color: rgb(34, 34, 34);
}

.legal-section p {
    color: rgb(102, 102, 102);
    line-height: 1.6;
    margin-bottom: 16px;
}

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

.legal-section li {
    color: rgb(102, 102, 102);
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-info {
    background: rgb(250, 250, 250);
    padding: 20px;
    border-radius: 8px;
    margin-top: 16px;
}

.contact-info p {
    margin-bottom: 4px;
}

.contact-info a {
    color: rgb(250, 105, 101);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .companies-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pricing-container {
        grid-template-columns: 1fr;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-plans {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .product-stats {
        gap: 40px;
    }
    
    .workflow-step {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-showcase.reverse {
        direction: ltr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .solutions-title {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary,
    .btn-secondary {
        text-align: center;
    }
    
    .pricing-title {
        font-size: 32px;
    }
    
    .product-title {
        font-size: 36px;
    }
    
    .features-title {
        font-size: 36px;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .legal-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 32px;
    }
}
