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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: #faf8f9;
    color: #333;
    min-height: 100vh;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.pricing-header h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #2c1810;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.pricing-header p {
    font-size: 1.4rem;
    color: #555;
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.currency-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.currency-label {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
    min-width: 50px;
    text-align: center;
}

.currency-label.active {
    color: #000;
    background: rgba(232, 165, 209, 0.1);
    transform: scale(1.1);
}

.toggle-switch {
    position: relative;
}

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

.toggle-slider {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    background: linear-gradient(135deg, #e8d1df, #f6b8de);
    border-radius: 30px;
    cursor: pointer;
    transition: 0.4s;
    border: 2px solid #d4a6c8;
    box-shadow: 0 2px 10px rgba(212, 166, 200, 0.3);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 2px;
    top: 2px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

input:checked + .toggle-slider:before {
    transform: translateX(28px);
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: start;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(232, 165, 209, 0.15);
    display: block;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.pricing-card.best-value {
    border: 3px solid #d768ba;
    box-shadow: 0 25px 70px rgba(215, 104, 186, 0.25);
    transform: scale(1.02);
}

.pricing-card.best-value:hover {
    transform: scale(1.02) translateY(-8px);
}

.best-value-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e8a5d1, #d4a6c8);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 0 0 15px 15px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(232, 165, 209, 0.4);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    z-index: 20;
}

.star-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.card-header {
    position: relative;
    padding: 2.5rem 2rem 0;
    background: linear-gradient(135deg, #e8d1df 0%, #d4a6c8 100%);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
    padding-bottom: 3rem;
    text-align: center;
}

.basic .card-header {
    background: linear-gradient(135deg, #e8d1df 0%, #ddc4d3 100%);
    box-shadow: inset 0 1px 3px rgba(255,255,255,0.3);
}

.intermediate .card-header {
    background: linear-gradient(135deg, #e8d1df 0%, #ddc4d3 100%);
    box-shadow: inset 0 1px 3px rgba(255,255,255,0.3);
}

.advanced .card-header {
    background: linear-gradient(135deg, #f6b8de 0%, #e8a5d1 100%);
    box-shadow: inset 0 1px 3px rgba(255,255,255,0.3);
}

.plan-name {
    font-size: 2.4rem;
    font-weight: 800;
    color: #2c1810;
    text-shadow: 0 1px 2px rgba(255,255,255,0.3);
    margin-bottom: 0.3rem;
    letter-spacing: -0.3px;
}

.plan-subtitle {
    font-size: 1.2rem;
    color: #2c1810;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.2px;
}

.price-section {
    padding: 2.5rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(232, 165, 209, 0.1);
    background: white;
}


.price {
    font-size: 3.6rem;
    font-weight: 900;
    color: #2c1810;
    margin-bottom: 0.8rem;
    line-height: 0.9;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.2rem;
    letter-spacing: -1px;
}

.currency-symbol {
    font-size: 2.8rem;
    color: #000;
    margin-right: 0.1rem;
    margin-left: 0;
    font-weight: 700;
    vertical-align: top;
    line-height: 1;
    order: -1;
}

.savings {
    background: #d768ba;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 20px rgba(215, 104, 186, 0.3);
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.savings .currency-symbol {
    font-size: 0.9rem;
    color: inherit;
    margin-right: 0.1rem;
    margin-left: 0;
    font-weight: 700;
    vertical-align: baseline;
    order: -1;
}

.price-description {
    color: #666;
    font-style: italic;
}

.features-section {
    padding: 2.5rem 2rem;
    border-bottom: 1px solid rgba(232, 165, 209, 0.1);
    text-align: center;
}

.features-section h3 {
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.features-section ul {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.features-section li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
}

.bonus-item {
    background: linear-gradient(135deg, #fff8fc 0%, #fef5fb 100%);
    border: 1px dashed #d768ba;
    border-radius: 8px;
    padding: 1.2rem;
    margin: 0.5rem 0;
    position: relative;
    color: #2c1810;
    font-weight: 500;
}


.icon {
    width: 20px;
    height: 20px;
    stroke: #f6b8de;
    fill: none;
    stroke-width: 3;
    flex-shrink: 0;
    margin-top: 2px;
}

.gift-icon {
    width: 20px;
    height: 20px;
    stroke: #d768ba;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 2px;
}


.expandable-section {
    position: relative;
}

.section-divider {
    position: absolute;
    top: -1px;
    left: 2rem;
    right: 2rem;
    height: 2px;
    z-index: 10;
}

.divider-line {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, #d4a6c8 20%, #e8a5d1 50%, #d4a6c8 80%, transparent 100%);
    opacity: 0.6;
}

.divider-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(212, 166, 200, 0.3);
}

.whats-inside {
    padding: 2.5rem 2rem;
    background: #faf8f9;
    border-radius: 15px;
    text-align: center;
}

.whats-inside h4 {
    font-size: 1.2rem;
    color: #2c1810;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.divider-icon {
    width: 14px;
    height: 14px;
    fill: #d4a6c8;
}

.inside-content p {
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 1rem;
}

.inside-content ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
    display: inline-block;
}

.inside-content li {
    color: #555;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.inside-content li:before {
    content: "•";
    color: #d4a6c8;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    line-height: 1;
}

.original-price {
    margin-bottom: 0.3rem;
    text-align: center;
}

.crossed-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.8rem;
    font-weight: 500;
    text-decoration-color: #e74c3c;
    text-decoration-thickness: 2px;
    display: inline-block;
    opacity: 0.8;
    white-space: nowrap;
}

.crossed-price .currency-symbol {
    font-size: 1.8rem;
    color: #999;
    margin-right: 0;
    vertical-align: baseline;
}

.cta-button {
    width: calc(100% - 4rem);
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 2rem;
}

.basic .cta-button {
    background: #d768ba;
    color: white;
    box-shadow: 0 4px 15px rgba(215, 104, 186, 0.4);
}

.intermediate .cta-button,
.cta-button.primary {
    background: #d768ba;
    color: white;
    box-shadow: 0 6px 25px rgba(215, 104, 186, 0.4);
}

.advanced .cta-button {
    background: #d768ba;
    color: white;
    box-shadow: 0 4px 15px rgba(215, 104, 186, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.cta-button:active {
    transform: translateY(-1px);
}


@media (max-width: 768px) {
    .pricing-table {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.best-value {
        transform: none;
    }
    
    .pricing-card.best-value:hover {
        transform: translateY(-10px);
    }
    
    .pricing-header h1 {
        font-size: 2rem;
    }
    
    .currency-toggle {
        gap: 1.2rem;
        margin-bottom: 3rem;
    }
    
    .currency-label {
        font-size: 1.4rem;
        padding: 0.8rem 1rem;
        min-width: 60px;
    }
    
    .toggle-slider {
        width: 80px;
        height: 40px;
    }
    
    .toggle-slider:before {
        height: 32px;
        width: 32px;
        left: 3px;
        top: 3px;
    }
    
    input:checked + .toggle-slider:before {
        transform: translateX(38px);
    }
    
    .best-value-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        top: -8px;
        letter-spacing: 0.5px;
    }
    
    .star-icon {
        width: 14px;
        height: 14px;
    }
    
    .pricing-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .plan-name {
        font-size: 1.8rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .features-section,
    .whats-inside {
        padding: 1.5rem;
    }
}