* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    background: #e74c3c;
    color: white;
    padding: 10px 16px;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 4px;
}

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

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
}

.get-listed-btn {
    background: #4a5568;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.get-listed-btn:hover {
    background: #2d3748;
}

.search-icon-btn,
.menu-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    padding: 8px;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    padding: 80px 0;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
    margin-bottom: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 150%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(-15deg);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.2;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
}

.benefit-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* Sales Banner */
.sales-banner {
    background: linear-gradient(135deg, #2c3e50 0%, #000 100%);
    color: white;
    text-align: center;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.sales-banner::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    transform: skewY(-2deg);
    z-index: 1;
}

.sales-content {
    position: relative;
    z-index: 2;
}

.sales-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.sales-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.sales-discount {
    font-size: 5rem;
    font-weight: bold;
    color: #4ecdc4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Update Network & Pricing Section */
.network-pricing-section {
    padding: 30px 0 80px;
    background: #f8f9fa;
}

.network-pricing-section .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Remove the network-header from this section since it's now in facts */
.network-pricing-section .network-header {
    display: none;
}

.pricing-card {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    background: white;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #17a2b8;
    color: white;
    padding: 12px;
    border-radius: 100%;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2c3e50;
}

.pricing-price {
    margin-bottom: 20px;
}

.price-number {
    font-size: 3.5rem;
    font-weight: 300;
    color: #2c3e50;
}

.price-currency {
    font-size: 1.2rem;
    color: #666;
    margin-left: 8px;
}

.price-original {
    text-decoration: line-through;
    color: #999;
    margin-left: 15px;
    font-size: 1.1rem;
}

.pricing-badges {
    margin-bottom: 30px;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 250;
    margin: 5px;
}

.badge-purple {
    background: #9b59b6;
    color: #dddbdb(250, 224, 224);
}

.badge-brown {
    background: #c47740;
    color: #dddbdb(207, 205, 205);
}

.pricing-note {
    color: #666;
    font-size: 0.9rem;
    margin-top: 10px;
}

.pricing-features {
    text-align: center;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.feature i {
    color: #2bdf76;
    font-size: 1rem;
}

.feature span {
    font-size: 0.95rem;
    color: #333;
}

.btn-pricing {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    background: #f5897d;
    color: #dddbdb;
    border: none;
    border-radius: 45px;
    font-weight: 300;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-pricing:hover {
    background: #c0392b;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .network-header {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        margin-bottom: 50px;
    }

    .network-title {
        font-size: 1.8rem;
    }

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

    .pricing-card {
        padding: 25px;
    }

    .price-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .network-pricing-section {
        padding: 60px 0;
    }

    .network-title {
        font-size: 1.6rem;
    }

    .pricing-card {
        padding: 20px;
    }
}

/* Payment Section */
.payment-section {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.payment-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.paypal-logo {
    height: 60px;
    width: auto;
}

.credit-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.card-logo {
    padding: 10px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.8rem;
    color: #666;
    background: white;
}

.visa {
    border-color: #1a1f71;
    color: #1a1f71;
}

.mastercard {
    border-color: #eb001b;
    color: #eb001b;
}

.discover {
    border-color: #ff6000;
    color: #ff6000;
}

.amex {
    border-color: #006fcf;
    color: #006fcf;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.benefit-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.benefit-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

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

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0;
}

.faq-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
}

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

.text-link {
    color: #4ecdc4;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #f8f9fa;
    color: #333;
    padding: 60px 0 20px;
    border-top: 1px solid #e9ecef;
}

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

.footer-column h4 {
    margin-bottom: 25px;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: #4ecdc4;
}

.support-section {
    margin-top: 40px;
}

.support-section p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.btn-support {
    background: #27ae60;
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
    font-size: 0.95rem;
}

.btn-support:hover {
    background: #219a52;
}

.footer-brand {
    padding-left: 40px;
}

.footer-logo .logo-text {
    background: #6c757d;
    color: white;
    padding: 10px 16px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.1rem;
}

.footer-description {
    margin: 25px 0;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #e9ecef;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.social-link:hover {
    background: #4ecdc4;
    color: white;
}

.footer-stats {
    border-top: 1px solid #e9ecef;
    padding-top: 40px;
    margin-bottom: 40px;
}

.footer-stats h4 {
    margin-bottom: 30px;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 800px;
}

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

.stat-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid #e9ecef;
    padding-top: 25px;
    text-align: left;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-bottom a {
    color: #666;
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: #4ecdc4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .sales-title {
        font-size: 2.5rem;
    }

    .sales-discount {
        font-size: 3rem;
    }

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

    .pricing-featured {
        transform: none;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }

    .footer-brand {
        padding-left: 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .credit-cards {
        gap: 10px;
    }

    .card-logo {
        font-size: 0.7rem;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .benefit-item {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .nav-menu {
        gap: 10px;
    }

    .search-icon-btn,
    .menu-toggle {
        display: none;
    }
}