* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Arial, sans-serif; }

body {
    background: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.header {
    background: linear-gradient(135deg, #dc3545, #a71d2a);
    color: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 12px;
    max-width: 1100px;
    margin: 0 auto 30px;
}

.header img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.header h1 { font-size: 32px; margin-bottom: 10px; }
.header p { font-size: 16px; opacity: 0.9; }

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

.section-title {
    text-align: center;
    font-size: 24px;
    margin: 40px 0 20px;
    color: #333;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    border-top: 4px solid #dc3545;
}

.card:hover { transform: translateY(-5px); }

.card.featured {
    border-top-color: #ffc107;
    background: linear-gradient(135deg, #fff9e6, #fff);
}

.card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #dc3545;
}

.card .price {
    font-size: 28px;
    font-weight: 800;
    color: #333;
    margin: 15px 0;
}

.card .price span {
    font-size: 14px;
    font-weight: normal;
    color: #666;
}

.card ul {
    list-style: none;
    margin: 15px 0;
    text-align: left;
}

.card ul li {
    padding: 5px 0;
    font-size: 14px;
    color: #555;
}

.card ul li:before {
    content: "✅ ";
    color: #28a745;
}

.btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #dc3545;
    color: white;
    text-align: center;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    margin-top: 15px;
}

.btn:hover { background: #a71d2a; }

.bundle {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.bundle h3 { color: #856404; margin-bottom: 10px; }
.bundle p { margin: 8px 0; }

.sample-banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.sample-banner img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s;
    width: 280px;
    height: auto;
}

.sample-banner img:hover {
    transform: translateY(-5px);
}

.mockup-label {
    text-align: center;
    color: #666;
    font-size: 13px;
    margin-top: 12px;
    font-style: italic;
}

.form-container {
    background: white;
    max-width: 600px;
    margin: 30px auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-container h2 {
    text-align: center;
    color: #dc3545;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
}

.form-group textarea { resize: vertical; min-height: 80px; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc3545;
}

.success-msg {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
}

.error-msg {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

@media (max-width: 480px) {
    .header h1 { font-size: 24px; }
    .sample-banner img { width: 240px; }
}