/* Minification failed. Returning unminified contents.
(48,22): run-time error CSS1039: Token not allowed after unary operator: '-bg-gray'
(56,24): run-time error CSS1039: Token not allowed after unary operator: '-primary-blue'
(78,17): run-time error CSS1039: Token not allowed after unary operator: '-text-gray'
(103,22): run-time error CSS1039: Token not allowed after unary operator: '-gradient'
(122,17): run-time error CSS1039: Token not allowed after unary operator: '-text-gray'
(128,22): run-time error CSS1039: Token not allowed after unary operator: '-gradient'
(179,24): run-time error CSS1039: Token not allowed after unary operator: '-primary-blue'
(192,22): run-time error CSS1039: Token not allowed after unary operator: '-gradient'
(215,17): run-time error CSS1039: Token not allowed after unary operator: '-text-gray'
(223,35): run-time error CSS1039: Token not allowed after unary operator: '-bg-gray'
(229,17): run-time error CSS1039: Token not allowed after unary operator: '-text-dark'
(234,17): run-time error CSS1039: Token not allowed after unary operator: '-text-gray'
(245,17): run-time error CSS1039: Token not allowed after unary operator: '-text-dark'
(253,17): run-time error CSS1039: Token not allowed after unary operator: '-primary-blue'
(260,17): run-time error CSS1039: Token not allowed after unary operator: '-text-gray'
(271,17): run-time error CSS1039: Token not allowed after unary operator: '-text-gray'
(286,17): run-time error CSS1039: Token not allowed after unary operator: '-text-gray'
(292,17): run-time error CSS1039: Token not allowed after unary operator: '-primary-blue'
(346,22): run-time error CSS1039: Token not allowed after unary operator: '-gradient'
(374,24): run-time error CSS1039: Token not allowed after unary operator: '-primary-blue'
(389,17): run-time error CSS1039: Token not allowed after unary operator: '-text-dark'
(392,22): run-time error CSS1039: Token not allowed after unary operator: '-bg-gray'
(396,17): run-time error CSS1039: Token not allowed after unary operator: '-primary-blue'
(402,17): run-time error CSS1039: Token not allowed after unary operator: '-primary-blue'
(417,22): run-time error CSS1039: Token not allowed after unary operator: '-bg-gray'
(423,22): run-time error CSS1039: Token not allowed after unary operator: '-bg-gray'
(427,17): run-time error CSS1039: Token not allowed after unary operator: '-text-gray'
(452,17): run-time error CSS1039: Token not allowed after unary operator: '-text-gray'
 */
/* SwiftMerge Home Page Specific Styles */

/* Browser Mockup */
.browser-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.browser-header {
    background: #F3F4F6;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E5E7EB;
}

.browser-content {
    padding: 3rem;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: white;
    text-align: left;
}

/* Features Section */
.features {
    padding: 0px 2rem;
    background: white;
}

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

.feature-card {
    padding: 2rem;
    border-radius: 16px;
    background: var(--bg-gray);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
    background: white;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    padding: 0px 2rem;
    /*background: var(--bg-gray);*/
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 105, 255, 0.3);
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.step p {
    color: var(--text-gray);
}

/* Stats Section */
.stats {
    padding: 80px 2rem;
    background: var(--gradient);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Pricing Section */
.pricing {
    padding: 0px 2rem;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card-featured {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 30px rgba(0, 105, 255, 0.15);
}

.pricing-card-featured:hover {
    box-shadow: 0 16px 50px rgba(0, 105, 255, 0.25);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 105, 255, 0.3);
}

.pricing-header {
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--bg-gray);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.price-period {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.pricing-features .check {
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-top: 1rem;
}

.pricing-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #E5E7EB;
    font-size: 1.05rem;
    color: var(--text-gray);
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}

.toggle-label {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.toggle-label.active {
    color: var(--primary-blue);
    font-weight: 600;
}

.save-badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

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

input:checked + .slider {
    background: var(--gradient);
}

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

/* FAQ Section */
.faq {
    padding: 0px 2rem;
    /*background: var(--bg-gray);*/
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0, 105, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: all 0.3s ease;
    background: var(--bg-gray);
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
    background: var(--bg-gray);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
    background: var(--bg-gray);
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 0px 2rem;
    background: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .features-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.25rem 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }

    .billing-toggle {
        gap: 0.5rem;
    }

    .toggle-label {
        font-size: 0.85rem;
    }

    .save-badge {
        font-size: 0.65rem;
        padding: 0.15rem 0.4rem;
    }
}

