/* USER WEB - Convert Pulsa */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f9fafb;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 55%, #1d4ed8 100%);
    color: white;
    padding: 3px 0;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.22);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.site-header .brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-header .brand img {
    width: 40px;
    height: 40px;
}

.site-header .brand .title {
    font-weight: 600;
    font-size: 18px;
}

.site-header .nav {
    display: flex;
    gap: 30px;
}

.site-header .nav a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    font-size: 14px;
}

.site-header .nav a:hover {
    opacity: 0.8;
}

.hero {
    background: transparent;
    color: #1f2937;
    padding: 28px 20px 20px;
    text-align: center;
}

.hero-inner h1 {
    font-size: 36px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #1d4ed8;
}

.hero-inner p {
    font-size: 18px;
    color: #6b7280;
}

.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
}

.card,
.card-form {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.card-form {
    border: 2px solid #3b82f6;
}

.form-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1d4ed8;
}

.form-sub {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.estimasi {
    background: #f0f4ff;
    border-left: 4px solid #3b82f6;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #1d4ed8;
}

.submit-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.34);
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn:hover {
    background: #2563eb;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.btn-gray {
    background: #6b7280;
}

.btn-gray:hover {
    background: #4b5563;
}

.btn-blue {
    background: #3b82f6;
}

.btn-blue:hover {
    background: #2563eb;
}

.btn-green {
    background: #22c55e;
}

.btn-green:hover {
    background: #16a34a;
}

.btn-red {
    background: #ef4444;
}

.btn-red:hover {
    background: #dc2626;
}

.side-panel {}

.feature {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    margin-bottom: 15px;
}

.feature h3,
.feature h4 {
    color: #2563eb;
    margin-bottom: 15px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.step .icon {
    background: #3b82f6;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step h4 {
    margin: 0 0 4px 0;
    color: #333;
    font-size: 14px;
}

.step p {
    margin: 0;
    color: #666;
    font-size: 13px;
}

.site-footer {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
    padding: 22px 20px;
    margin-top: auto;
    border-top: none;
    box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.12) inset;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

th {
    background: #f3f4f6;
    font-weight: 600;
    color: #333;
}

tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .hero-inner h1 {
        font-size: 24px;
    }

    .site-header .nav {
        display: none;
    }

    .row {
        flex-direction: column;
    }

    .row>div {
        width: 100% !important;
    }
}

.site-footer .footer-main {
    font-weight: 600;
}

.site-footer .footer-links {
    margin-top: 8px;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.site-footer .footer-links a {
    color: #dbeafe;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.site-footer .footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}
