:root {
    --dark-blue: #1e3a8a;
    --light-blue: #3b82f6;
    --orange: #f97316;
    --light-orange: #fed7aa;
    --white: #ffffff;
    --gray-light: #f8fafc;
    --gray-medium: #64748b;
    --gray-dark: #334155;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--gray-light) 0%, #e2e8f0 100%);
    /* min-height: 100vh; */
    /* padding: 40px 20px; */
}

table{
    font-size: 1.6em;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    color: var(--gray-dark);
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.header p {
    font-size: 1.1rem;
    color: var(--gray-medium);
}

.currency-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.toggle-btn {
    background: var(--white);
    border: 2px solid var(--light-blue);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    margin: 0 5px;
    transition: all 0.3s ease;
    color: var(--light-blue);
}

.toggle-btn.active {
    background: var(--light-blue);
    color: var(--white);
}

.toggle-btn:hover {
    background: var(--light-blue);
    color: var(--white);
}

.table-container {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    overflow: hidden;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.pricing-table th {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: 25px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
}

.pricing-table th:first-child {
    background: var(--gray-dark);
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
}

.popular-header {
    position: relative;
    background: linear-gradient(135deg, var(--orange) 0%, #ea580c 100%) !important;
}

.popular-header::after {
    content: "MOST POPULAR";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--orange);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 2px solid var(--orange);
}

.pricing-table td {
    padding: 20px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: top;
}

.pricing-table tr:nth-child(even) {
    background: #fafbfc;
}

.pricing-table tr:hover {
    background: var(--light-orange);
}

.row-header {
    font-weight: 600;
    color: var(--dark-blue);
    background: #f1f5f9 !important;
    border-right: 3px solid var(--light-blue);
}

.tier-subtitle {
    font-size: 1.1rem;
    color: var(--gray-medium);
    font-style: italic;
    line-height: 1.4;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.price-sub {
    font-size: 1rem;
    color: var(--gray-medium);
}

.setup-price {
    color: var(--orange);
    font-weight: 600;
}

.setup-sub {
    font-size: 1rem;
    color: var(--gray-medium);
    font-style: italic;
}

.highlight-cell {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(254, 215, 170, 0.3)) !important;
    border-left: 4px solid var(--orange);
}

.section-header {
    background: var(--gray-dark) !important;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.checkmark {
    color: var(--light-blue);
    font-size: 1.2rem;
    font-weight: bold;
}

.cross {
    color: var(--gray-medium);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 20px 10px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .table-container {
        margin: 0 -10px;
        border-radius: 0;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
    
    .price {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .pricing-table th,
    .pricing-table td {
        padding: 12px 8px;
        font-size: 0.8rem;
    }
    
    .price {
        font-size: 1.1rem;
    }
}