/* PAIDD WTM Calculator Styles */

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

body { 
    font-family: 'Lato', sans-serif; 
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

h1, h2, h3 { 
    font-family: 'Bricolage Grotesque', sans-serif; 
    font-weight: 700; 
}

.container { 
    max-width: 700px; 
    width: 100%; 
}

.bg-turquoise { background-color: #00D4AA; }
.bg-green { background-color: #7DFF8F; }
.bg-navy { background-color: #1A2332; }
.text-turquoise { color: #00D4AA; }
.text-green { color: #7DFF8F; }
.text-navy { color: #1A2332; }
.text-white { color: white; }

.card { 
    background: white; 
    border-radius: 20px; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.3); 
    overflow: hidden; 
}

.header { 
    background: linear-gradient(135deg, #000717 0%, #0d3d56 100%); 
    padding: 40px 30px; 
    text-align: center;
    position: relative;
}

.badge {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content { 
    padding: 40px 30px; 
}

.input-group { 
    margin-bottom: 20px; 
}

label { 
    display: block; 
    margin-bottom: 8px; 
    font-weight: 600; 
    color: #334155; 
    font-size: 14px; 
}

.required { 
    color: #dc2626; 
}

input { 
    width: 100%; 
    padding: 14px 16px; 
    border: 2px solid #e2e8f0; 
    border-radius: 10px; 
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.2s;
}

input:focus { 
    outline: none; 
    border-color: #00D4AA; 
}

.grid-2 { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 16px; 
}

.btn { 
    width: 100%; 
    padding: 18px; 
    border: none; 
    border-radius: 12px; 
    font-size: 18px; 
    font-weight: 700; 
    cursor: pointer;
    font-family: 'Bricolage Grotesque', sans-serif;
    transition: all 0.3s;
    position: relative;
}

.btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 10px 25px rgba(0,212,170,0.3); 
}

.btn:disabled { 
    opacity: 0.5; 
    cursor: not-allowed; 
    transform: none; 
}

.info-box {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #00D4AA;
    margin-bottom: 20px;
}

.metric-card { 
    padding: 24px; 
    border-radius: 12px; 
    margin-bottom: 20px;
    border: 3px solid;
}

.big-number { 
    font-size: 40px; 
    font-weight: 700; 
    font-family: 'Bricolage Grotesque', sans-serif;
    line-height: 1;
}

.small-text { 
    font-size: 12px; 
    margin-top: 8px; 
    opacity: 0.8; 
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
}

.feature-list li:last-child { 
    border-bottom: none; 
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: #00D4AA;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 16px;
    color: white;
    font-weight: 700;
}

.pricing-box {
    background: linear-gradient(135deg, rgba(0,212,170,0.1) 0%, rgba(0,212,170,0.05) 100%);
    border: 4px solid #00D4AA;
    border-radius: 16px;
    padding: 24px;
    margin: 20px 0;
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #00D4AA;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.cta-box {
    background: linear-gradient(135deg, #000717 0%, #0d3d56 100%);
    color: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    margin-top: 30px;
}

@media (max-width: 640px) {
    .grid-2 { 
        grid-template-columns: 1fr; 
    }
    
    .header { 
        padding: 30px 20px; 
    }
    
    .content { 
        padding: 30px 20px; 
    }
    
    .big-number {
        font-size: 32px;
    }
}
