/* 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: #1a1a1a;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.logo i {
    color: #ffd700;
}

/* Hero Section */
.hero {
    text-align: center;
    color: white;
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.hero-mascots {
    margin-bottom: 2rem;
}

.mascots-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.mascot-mini {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.mascot-celebration {
    font-size: 3rem;
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Money Flow Table */
.money-flow-table {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto 3rem;
    max-width: 700px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.flow-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.flow-row:last-child {
    margin-bottom: 0;
}

.flow-license {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.flow-recruits {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.flow-payout {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2rem;
    min-width: 140px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.flow-arrow {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Quick Comparison Section */
.quick-comparison {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    text-align: center;
}

.comparison-container h3 {
    color: #1a1a1a;
    font-size: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.simple-table {
    overflow-x: auto;
    margin-top: 2rem;
}

.simple-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin: 0 auto;
}

.simple-comparison-table th,
.simple-comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.simple-comparison-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    text-align: center;
}

.simple-comparison-table td:first-child {
    font-weight: 600;
    color: #1a1a1a;
}

.simple-comparison-table tr:hover {
    background: #f8f9fa;
}

/* Plain Language Summary Section */
.plain-summary {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 30px;
    padding: 4rem 3rem;
    margin: 3rem 0;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.summary-container h3 {
    color: #1a1a1a;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.summary-points {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.summary-point {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.point-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.point-content h4 {
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.point-content p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.payment-policy {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.payment-policy h4 {
    color: #856404;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-policy ul {
    color: #856404;
    margin: 0;
    padding-left: 1.5rem;
}

.payment-policy li {
    margin-bottom: 0.5rem;
}

/* Upgrade Path Section */
.upgrade-path {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    text-align: center;
}

.path-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.path-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.path-step h4 {
    color: #667eea;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.path-step p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.4;
}

.path-arrow {
    font-size: 2rem;
    color: #667eea;
    font-weight: bold;
    animation: pulse 3s ease-in-out infinite;
}

@media (max-width: 768px) {
    .path-steps {
        flex-direction: column;
    }
    
    .path-arrow {
        transform: rotate(90deg);
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Pricing Section */
.pricing-section {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 30px;
    padding: 4rem 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.pricing-card.basic {
    border-color: #4CAF50;
}

.pricing-card.pro {
    border-color: #ff6b35;
}

.pricing-card.medclub {
    border-color: #9c27b0;
}

.pricing-card.selected {
    border-color: #667eea;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.recommended-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 8px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.pricing-card.basic .card-title {
    color: #4CAF50;
}

.pricing-card.pro .card-title {
    color: #ff6b35;
}

.pricing-card.medclub .card-title {
    color: #9c27b0;
}

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

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 0.2rem;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
}

.price-subtitle {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.earnings-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.earnings-highlight.pro-earnings {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.earnings-highlight.medclub-earnings {
    background: linear-gradient(135deg, #9c27b0 0%, #673ab7 100%);
}

.earnings-highlight i {
    font-size: 2rem;
    opacity: 0.9;
}

.earnings-amount {
    font-size: 2.2rem;
    font-weight: 700;
}

.earnings-desc {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.earnings-note {
    font-size: 0.8rem;
    opacity: 0.8;
}

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

.features-list li {
    padding: 0.7rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.features-list i {
    color: #4CAF50;
    font-size: 1rem;
    width: 16px;
}

.select-plan-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.select-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.select-plan-btn.pro-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.select-plan-btn.pro-btn:hover {
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.select-plan-btn.medclub-btn {
    background: linear-gradient(135deg, #9c27b0 0%, #673ab7 100%);
}

.select-plan-btn.medclub-btn:hover {
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.4);
}

.paypal-dropdown-container {
    margin-top: 2rem;
}

.select-plan-btn.basic-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    text-decoration: none;
}

.select-plan-btn.basic-btn:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
    transform: translateY(-2px);
}

/* Comparison Table */
.comparison-table-wrapper {
    margin-top: 3rem;
}

.comparison-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.checkmark {
    color: #4CAF50;
    font-size: 1.3rem;
}

.cross {
    color: #f44336;
    font-size: 1.3rem;
}

/* Signup Section */
.signup-section {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 30px;
    padding: 4rem 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.flash-message {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.flash-message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.flash-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.error-messages {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.error-messages h4 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-messages ul {
    margin-left: 1.5rem;
}

.error-messages li {
    margin-bottom: 0.5rem;
}

.signup-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: #667eea;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.form-footer {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.form-footer i {
    color: #4CAF50;
    margin-right: 0.3rem;
}

/* Thank You Page */
.thank-you-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.thank-you-content {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    max-width: 800px;
}

.success-icon {
    font-size: 5rem;
    color: #4CAF50;
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.success-message p {
    font-size: 1.2rem;
    color: #4CAF50;
    margin-bottom: 3rem;
    font-weight: 500;
}

.next-steps {
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.step {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.step-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.earnings-reminder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.earnings-reminder h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.earnings-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.earnings-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.earnings-card.pro {
    background: rgba(255, 107, 53, 0.2);
}

.earnings-plan {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.earnings-card .earnings-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
}

.earnings-card .earnings-desc {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-info p {
    color: #666;
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #764ba2;
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.2);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
}

.footer p {
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-section,
    .signup-section {
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .flow-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        font-size: 1.2rem;
    }
    
    .flow-license, .flow-recruits, .flow-payout {
        min-width: 200px;
        font-size: 1rem;
    }
    
    .simple-table {
        font-size: 0.9rem;
    }
    
    .simple-comparison-table th,
    .simple-comparison-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .summary-points {
        gap: 1.5rem;
    }
    
    .summary-point {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .point-content h4 {
        font-size: 1.1rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .earnings-cards {
        grid-template-columns: 1fr;
    }
    
    .thank-you-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .price .amount {
        font-size: 2.5rem;
    }
    
    .earnings-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .earnings-highlight i {
        font-size: 1.5rem;
    }
}
