/* Main Index Page Styles */

/* Global Styles */
* {
    box-sizing: border-box;
}

/* Ensure proper text wrapping and prevent overflow */
.hero-title {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Override base styles for full-width layout */
.main-content {
    padding: 0 !important;
}

.content-container {
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Fix footer for full-width layout */
.footer.with-sidebar,
.footer {
    margin-left: 0 !important;
}

.footer .content-container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

.container {
    width: 100%;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(247, 147, 30, 0.08) 100%);
    padding: 4rem 0 6rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-container {
    width: 100%;
    padding: 0 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
}

.hero-left {
    max-width: 600px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Demo Flow */
.demo-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.demo-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.demo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.demo-header i {
    color: #ff6b35;
    font-size: 1.25rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 0.25rem;
}

.feature-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.demo-tags,
.integration-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tag {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    color: #ff6b35;
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.flow-arrow {
    color: #ff6b35;
    font-size: 1.5rem;
    margin: 1rem 0;
}

.revenue-process {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 400px;
}

.process-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.process-header i {
    color: #ff6b35;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    text-align: center;
}

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

.step span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

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

.btn-primary-lg {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary-lg {
    border: 2px solid #ff6b35;
    color: #ff6b35;
    background: transparent;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-secondary-lg:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-primary-sm {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-primary-sm:hover {
    transform: translateY(-1px);
    color: white;
    text-decoration: none;
}

.btn-cta {
    background: white;
    color: #ff6b35;
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid white;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    color: #ff6b35;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.95);
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.step-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 2rem;
}

.step-icon i {
    font-size: 2rem;
    color: #ff6b35;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.features li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features li::before {
    content: "✓";
    color: #4CAF50;
    font-weight: 600;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(247, 147, 30, 0.05) 100%);
}

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

.benefit-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
}

.benefit-icon.all-in-one { background: rgba(33, 150, 243, 0.1); }
.benefit-icon.ai { background: rgba(156, 39, 176, 0.1); }
.benefit-icon.network { background: rgba(233, 30, 99, 0.1); }
.benefit-icon.revenue { background: rgba(76, 175, 80, 0.1); }
.benefit-icon.professional { background: rgba(255, 193, 7, 0.1); }
.benefit-icon.ownership { background: rgba(103, 58, 183, 0.1); }

.benefit-icon i {
    font-size: 2rem;
    color: #ff6b35;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Platform Features Showcase */
.platform-features {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(247, 147, 30, 0.05) 100%);
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-showcase-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 107, 53, 0.2);
}

.feature-showcase-card .feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.feature-showcase-card .feature-icon i {
    font-size: 2rem;
    color: #ff6b35;
}

.feature-showcase-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-showcase-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-highlights {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-highlights span {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 15px;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

/* Featured Content */
.featured-content {
    padding: 6rem 0;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.content-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.creator-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.creator-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.creator-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.creator-avatar .avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.creator-avatar .avatar-placeholder i {
    font-size: 1.25rem;
}

.creator-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.creator-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.creator-name-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.creator-name-link:hover {
    text-decoration: none;
}

.creator-name-link:hover .creator-name {
    color: var(--primary-main);
}

.creation-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.duration-badge {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 15px;
    font-weight: 600;
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.card-content h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-content h3 a:hover {
    color: #ff6b35;
}

.card-content p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stats {
    display: flex;
    gap: 1rem;
}

.stats span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

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

/* Featured Creators Section */
.featured-creators {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.featured-creators .creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.featured-creators .creator-card {
    background: var(--bg-main);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.featured-creators .creator-card:hover {
    border-color: var(--primary-main);
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.2);
}

.featured-creators .featured-badge {
    position: absolute;
    top: -8px;
    right: 16px;
    background: linear-gradient(135deg, var(--primary-main), var(--primary-dark));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.featured-creators .creator-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.featured-creators .creator-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-light);
}

.featured-creators .avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-secondary);
    border: 3px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.75rem;
}

.featured-creators .creator-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.featured-creators .creator-username {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-weight: 500;
    text-align: center;
}

.featured-creators .creator-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.featured-creators .stat {
    text-align: center;
    flex: 1;
}

.featured-creators .stat-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-main);
    margin-bottom: 0.25rem;
}

.featured-creators .stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.75px;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-text p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-benefits {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-benefits span {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

.cta-action {
    text-align: center;
}

/* Pricing Section Styles */
.pricing-section {
    padding: 6rem 0;
    background: white;
}

.pricing-toggle {
    text-align: center;
    margin-bottom: 3rem;
}

.toggle-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid #e9ecef;
}

.toggle-label {
    font-weight: 500;
    color: #6c757d;
    transition: color 0.3s ease;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #ff6b35;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.discount-badge {
    background: #28a745;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.pricing-grid-homepage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card-homepage {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px;
}

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

.pricing-card-homepage.featured {
    border-color: #ff6b35;
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.card-header-homepage {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 1.5rem;
}

.card-header-homepage h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #212529;
    letter-spacing: -0.025em;
}

.card-header-homepage .description {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.price-display-homepage {
    margin-bottom: 0;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ff6b35;
    align-self: flex-start;
    margin-top: 0.25rem;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #212529;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.period {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 600;
    align-self: flex-end;
    margin-bottom: 0.5rem;
}

.yearly-total {
    display: block;
    color: #6c757d;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
    text-align: center;
}

.features-list-homepage {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.features-list-homepage li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #495057;
}

.features-list-homepage .bi-check-circle {
    color: #28a745;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.card-body-homepage {
    flex: 1;
}

.card-footer-homepage {
    margin-top: auto;
}

.card-footer-homepage .btn {
    width: 100%;
}

/* Mobile-first responsive design */
@media (max-width: 1024px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-left {
        margin-left: 0 !important;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }
    
    .hero-right {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0 4rem;
        min-height: auto;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }

    .steps-grid,
    .benefits-grid,
    .content-grid,
    .features-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-text h2 {
        font-size: 1.75rem;
    }
    
    .cta-text p {
        font-size: 1.1rem;
    }

    .cta-benefits {
        justify-content: center;
        gap: 1rem;
    }

    .feature-showcase-card {
        padding: 1.5rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .demo-card,
    .revenue-process {
        max-width: 100%;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 1.5rem 0 3rem;
    }
    
    .hero-container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .btn-primary-lg,
    .btn-secondary-lg {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .step-card,
    .benefit-card,
    .content-card {
        padding: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }

    .pricing-grid-homepage {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto 4rem auto;
    }

    .pricing-card-homepage {
        padding: 1.5rem;
        min-height: 450px;
    }

    .pricing-card-homepage.featured {
        transform: none;
    }

    .pricing-card-homepage.featured:hover {
        transform: translateY(-4px);
    }

    .toggle-wrapper {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .demo-card,
    .revenue-process {
        padding: 1.25rem;
    }
    
    .feature-grid {
        gap: 0.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}
