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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

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

/* ==================== HEADER ==================== */
header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.logo img {
    height: 50px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.contact-info {
    text-align: right;
}

.phone-number {
    margin-bottom: 2px;
}

.phone-label {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-right: 5px;
}

.contact-info a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.contact-info a:hover {
    opacity: 0.8;
}

.email-link a {
    font-size: 0.9rem;
    font-weight: normal;
}

/* ==================== HERO ==================== */
.hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3c72 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: #0096c7;
    color: white;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 150, 199, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 150, 199, 0.5);
    background: #00a8e8;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-badges span {
    font-size: 0.95rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ==================== VIDEO SECTION ==================== */
.video-section {
    padding: 60px 0;
    background: white;
}

.video-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.video-container h2 {
    color: #2c5aa0;
    margin-bottom: 20px;
    font-size: 2rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 3px dashed #adb5bd;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.video-placeholder-content {
    text-align: center;
}

.video-placeholder h3 {
    color: #2c5aa0;
    margin-bottom: 10px;
}

.video-placeholder p {
    color: #6c757d;
}

.play-icon {
    width: 80px;
    height: 80px;
    background: #2c5aa0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.play-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 25px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
}

/* ==================== QUIZ SECTION ==================== */
.quiz-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.quiz-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2c5aa0;
}

.quiz-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 40px;
}

.quiz-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.quiz-progress {
    margin-bottom: 25px;
}

.progress-bar {
    height: 10px;
    background: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2c5aa0, #0096c7);
    border-radius: 5px;
    transition: width 0.4s ease;
    width: 14.28%;
}

.progress-text {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

/* Quiz Error */
.quiz-error {
    background: #fff3f3;
    border: 1px solid #ffcdd2;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.quiz-error .error-icon,
.form-error .error-icon {
    width: 24px;
    height: 24px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.quiz-error .error-text,
.form-error .error-text {
    color: #c62828;
    font-size: 0.95rem;
}

/* Quiz Questions */
.quiz-question {
    display: none;
}

.quiz-question.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.quiz-question h3 {
    font-size: 1.35rem;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.question-context {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
    padding: 12px 16px;
    background: #f0f7ff;
    border-left: 4px solid #0096c7;
    border-radius: 0 8px 8px 0;
    line-height: 1.5;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-option {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: #fafafa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.quiz-option:hover {
    border-color: #2c5aa0;
    background: #f5f9ff;
}

.quiz-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.option-marker {
    width: 22px;
    height: 22px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.quiz-option input:checked + .option-marker {
    border-color: #2c5aa0;
    background: #2c5aa0;
}

.quiz-option input:checked + .option-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.quiz-option:has(input:checked) {
    border-color: #2c5aa0;
    background: #f0f7ff;
}

.quiz-option:has(input:checked) .option-text {
    font-weight: 600;
    color: #2c5aa0;
}

.option-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.4;
}

/* Quiz Navigation */
.quiz-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 15px;
}

.quiz-nav-btn {
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prev-btn {
    background: #e9ecef;
    color: #495057;
}

.prev-btn:hover {
    background: #dee2e6;
}

.next-btn {
    background: linear-gradient(135deg, #0096c7, #2c5aa0);
    color: white;
    margin-left: auto;
}

.next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 150, 199, 0.4);
}

.btn-arrow {
    font-size: 1.1rem;
}

/* ==================== RESULTS DISPLAY ==================== */
.results-display {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.results-header {
    text-align: center;
    margin-bottom: 35px;
}

.score-circle {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
}

.score-circle svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.score-bg {
    fill: none;
    stroke: #e9ecef;
    stroke-width: 10;
}

.score-fill {
    fill: none;
    stroke: #2c5aa0;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 1.5s ease, stroke 0.5s ease;
}

.score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c5aa0;
}

.score-text .percent {
    font-size: 1.2rem;
}

/* Urgency Badge */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 15px;
    animation: fadeIn 0.5s ease 0.5s both;
}

.urgency-badge.urgent {
    background: linear-gradient(135deg, #dc3545, #c62828);
    color: white;
    animation: pulse 2s infinite;
}

.urgency-badge.moderate {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
}

.urgency-badge.maintenance {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: white;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 0 20px 5px rgba(220, 53, 69, 0.2); }
}

.urgency-icon {
    font-size: 1.3rem;
}

/* Risk Badge */
.risk-badge {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 15px;
}

.risk-badge.high-risk {
    background: #ffebee;
    color: #c62828;
}

.risk-badge.medium-risk {
    background: #fff8e1;
    color: #f57f17;
}

.risk-badge.low-risk {
    background: #e8f5e9;
    color: #2e7d32;
}

.risk-description {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 550px;
    margin: 0 auto;
}

/* Results Breakdown */
.results-breakdown {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.results-breakdown h4 {
    color: #2c5aa0;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.breakdown-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #e9ecef;
}

.breakdown-item.good {
    border-left-color: #28a745;
}

.breakdown-item.warning {
    border-left-color: #ffc107;
}

.breakdown-item.danger {
    border-left-color: #dc3545;
}

.breakdown-label {
    font-size: 0.95rem;
    color: #333;
}

.breakdown-status {
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breakdown-item.good .breakdown-status {
    color: #28a745;
}

.breakdown-item.warning .breakdown-status {
    color: #f57f17;
}

.breakdown-item.danger .breakdown-status {
    color: #dc3545;
}

/* Results CTA */
.results-cta {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    border: 2px dashed #dee2e6;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.results-cta h4 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
}

.results-cta > p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.results-cta .cta-primary {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Urgency-specific CTA styling */
.results-cta.urgent-cta {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-color: #dc3545;
}

.results-cta.urgent-cta .cta-primary {
    background: linear-gradient(135deg, #dc3545, #c62828);
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(220, 53, 69, 0.6); }
}

.results-cta.moderate-cta {
    background: linear-gradient(135deg, #fffbf0 0%, #fff3e0 100%);
    border-color: #ff9800;
}

.results-cta.moderate-cta .cta-primary {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.results-cta.maintenance-cta {
    background: linear-gradient(135deg, #f0fff4 0%, #e8f5e9 100%);
    border-color: #28a745;
}

.results-cta.maintenance-cta .cta-primary {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.cta-phone {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #666;
}

.cta-phone a {
    color: #2c5aa0;
    font-weight: bold;
    text-decoration: none;
}

.cta-phone a:hover {
    text-decoration: underline;
}

/* ==================== CONTACT FORM ==================== */
.contact-form-container {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header h3 {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-bottom: 8px;
}

.form-header p {
    color: #666;
    font-size: 1rem;
}

.form-container {
    background: #fafafa;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.form-error {
    background: #fff3f3;
    border: 1px solid #ffcdd2;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.required {
    color: #dc3545;
}

.optional {
    color: #6c757d;
    font-weight: normal;
    font-size: 0.85rem;
}

input, select, textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    background: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

input::placeholder {
    color: #adb5bd;
}

input:focus, select:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 4px rgba(44, 90, 160, 0.1);
}

input.error, select.error {
    border-color: #dc3545;
    background: #fff8f8;
}

input.error:focus, select.error:focus {
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.field-error {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
    min-height: 20px;
}

.submit-btn {
    background: linear-gradient(135deg, #0096c7, #2c5aa0);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 150, 199, 0.3);
    position: relative;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 150, 199, 0.4);
}

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

.form-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 15px;
}

/* ==================== FORM SUCCESS ==================== */
.form-success {
    text-align: center;
    padding: 40px;
    animation: fadeIn 0.5s ease;
}

.form-success .success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 25px;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
}

.form-success h3 {
    font-size: 1.8rem;
    color: #28a745;
    margin-bottom: 15px;
}

.form-success p {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.success-contact {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
}

.success-contact p {
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

.success-contact .cta-button {
    padding: 14px 35px;
}

/* ==================== BENEFITS ==================== */
.benefits {
    padding: 80px 0;
    background: white;
}

.benefits h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 50px;
    color: #2c5aa0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: #fafafa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #2c5aa0;
}

.benefit-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #2c5aa0, #1e3c72);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.benefit-card h3 {
    color: #2c5aa0;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3c72 100%);
    color: white;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
}

.contact-section > .container > p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.1);
    padding: 20px 30px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    min-width: 280px;
}

.contact-option:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 2rem;
}

.contact-details {
    text-align: left;
}

.contact-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.85;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 1.15rem;
    font-weight: bold;
}

/* ==================== FOOTER ==================== */
footer {
    background: #1e3c72;
    color: white;
    text-align: center;
    padding: 35px 0;
}

footer p {
    opacity: 0.9;
    margin-bottom: 10px;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* ==================== LEGAL PAGES ==================== */
.legal-page {
    padding: 60px 0;
    background: #f8f9fa;
}

.legal-page h1 {
    color: #2c5aa0;
    margin-bottom: 10px;
    font-size: 2.5rem;
    text-align: center;
}

.legal-page > .container > p {
    text-align: center;
    color: #6c757d;
    margin-bottom: 30px;
}

.legal-content {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: #2c5aa0;
    margin-top: 35px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #495057;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #495057;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-right {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 10px;
    }
    
    .quiz-container {
        padding: 25px 20px;
    }
    
    .quiz-question h3 {
        font-size: 1.2rem;
    }
    
    .quiz-navigation {
        flex-direction: column;
    }
    
    .quiz-nav-btn {
        width: 100%;
        justify-content: center;
    }
    
    .prev-btn {
        order: 2;
    }
    
    .next-btn {
        order: 1;
        margin-left: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 25px 20px;
    }
    
    .results-display {
        padding: 30px 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-option {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .quiz-section, .benefits, .contact-section {
        padding: 60px 0;
    }
    
    .quiz-section h2, .benefits h2, .contact-section h2 {
        font-size: 1.8rem;
    }
    
    .score-circle {
        width: 130px;
        height: 130px;
    }
    
    .score-text {
        font-size: 2rem;
    }
    
    .urgency-badge {
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    .results-cta {
        padding: 25px 20px;
    }
    
    .legal-content {
        padding: 25px 20px;
    }
}
