:root {
    /* Purple Color Palette */
    --primary-color: #8B5CF6;
    --primary-dark: #7C3AED;
    --primary-light: #EDE9FE;
    --primary-glow: rgba(139, 92, 246, 0.15);
    
    --accent-color: #06b6d4;
    --success-color: #10b981;
    
    --text-color: #1f2937;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    
    --bg-color: #fafafa;
    --bg-subtle: #f5f3ff;
    --bg-section: #fefefe;
    --card-bg: #ffffff;
    --border-color: #e5e7eb;
    --border-light: rgba(139, 92, 246, 0.1);
    
    --font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    
    --radius-sm: 0.5rem;
    --radius: 0.875rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 40px -12px rgba(139, 92, 246, 0.15), 0 8px 16px -8px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 40px -10px rgba(139, 92, 246, 0.3);
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #8B5CF6 0%, #a78bfa 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== HEADER ==================== */
.site-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    text-decoration: none;
}

.logo-image {
    height: 32px;
    width: auto;
    display: block;
    transition: transform 0.2s ease;
}

.logo-image:hover {
    transform: scale(1.02);
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.site-nav a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    position: relative;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
    transition: width 0.2s ease;
}

.site-nav a:hover {
    color: var(--primary-color);
}

.site-nav a:hover::after {
    width: 100%;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    padding: 4rem 0 2rem;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--bg-color) 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 900px;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 500;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.hero-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.25rem 2rem;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    max-width: fit-content;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.125rem;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: var(--border-color);
}

/* ==================== CALCULATOR SECTION ==================== */
.calculator-section {
    padding: 2rem 0 4rem;
    background: var(--bg-color);
}

.calculator-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 0;
    max-width: 680px;
    margin: 0 auto;
    border: 1px solid rgba(139, 92, 246, 0.08);
    overflow: hidden;
}

.calculator-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 1.5rem 2rem;
    text-align: center;
}

.calculator-title {
    color: white;
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.calculator-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

#price-calculator {
    padding: 1.5rem 2rem 2rem;
}

/* Form Steps */
.form-step {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.form-step:last-of-type {
    border-bottom: none;
    padding-bottom: 0.5rem;
}

.step-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-info {
    flex: 1;
}

.step-title {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0.125rem;
}

.step-description {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Form Group */
.form-group {
    margin-bottom: 1rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.sublabel {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.sublabel strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Select */
select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    background-color: #fff;
    transition: all 0.2s ease;
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
}

select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

select:hover {
    border-color: #c4b5fd;
}

/* Range Slider */
input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
    padding: 0;
    border: none;
    margin: 0.75rem 0;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    cursor: pointer;
    margin-top: -9px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
    border: 3px solid #fff;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.5);
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.3), rgba(139, 92, 246, 0.1));
    border-radius: 2px;
}

input[type=range]:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

input[type=range]:disabled::-webkit-slider-thumb {
    background: var(--text-muted);
    cursor: not-allowed;
    box-shadow: none;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.checkbox-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.03);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.checkbox-card:hover {
    background: rgba(139, 92, 246, 0.06);
    border-color: rgba(139, 92, 246, 0.2);
}

.checkbox-card:has(input:checked) {
    background: rgba(139, 92, 246, 0.08);
    border-color: var(--primary-color);
}

.checkbox-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkbox-icon {
    font-size: 1.5rem;
}

.checkbox-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-color);
}

/* Quality Options */
.quality-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quality-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--card-bg);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.quality-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.02);
}

.quality-card:has(input:checked) {
    border-color: var(--primary-color);
    background: rgba(139, 92, 246, 0.05);
}

.quality-card input {
    accent-color: var(--primary-color);
    width: 1.125rem;
    height: 1.125rem;
    cursor: pointer;
}

.quality-badge {
    position: absolute;
    top: -0.5rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
}

.quality-content {
    flex: 1;
}

.quality-title {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
}

.quality-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.125rem;
}

/* Form Actions */
.form-actions {
    padding-top: 1rem;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
    font-size: 1rem;
    font-family: inherit;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    width: 100%;
    box-shadow: 0 4px 14px -3px rgba(139, 92, 246, 0.5);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -4px rgba(139, 92, 246, 0.6);
}

.cta-button.secondary {
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 14px -3px rgba(16, 185, 129, 0.4);
}

.cta-button.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -4px rgba(16, 185, 129, 0.5);
}

.cta-button.outline {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.cta-button.outline:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.cta-button svg {
    flex-shrink: 0;
}

/* Error Message */
.error-message {
    color: #991b1b;
    background-color: #fef2f2;
    padding: 0.875rem 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    border: 1px solid #fca5a5;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9rem;
}

.error-message::before {
    content: "!";
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background: #991b1b;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ==================== RESULT SECTION ==================== */
.result-section {
    padding: 0 0 3rem;
    background: var(--bg-color);
}

.result-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    max-width: 680px;
    margin: 0 auto;
    border: 1px solid rgba(139, 92, 246, 0.08);
    overflow: hidden;
}

.result-header {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.result-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.price-range {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.5;
}

.result-body {
    padding: 2rem;
}

.summary {
    background: rgba(139, 92, 246, 0.04);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(139, 92, 246, 0.08);
}

.summary h3 {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.summary ul {
    list-style-type: none;
    padding-left: 0;
    display: grid;
    gap: 0.5rem;
}

.summary li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.summary li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.8rem;
    width: 18px;
    height: 18px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.result-cta {
    text-align: center;
}

.cta-text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Loader */
.loader {
    padding: 3rem 2rem;
    text-align: center;
}

.spinner {
    border: 3px solid rgba(139, 92, 246, 0.15);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==================== SECTION DIVIDER ==================== */
.section-divider {
    padding: 2rem 0;
}

.divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

/* ==================== FACTORS SECTION ==================== */
.factors-section {
    padding: 3rem 0 5rem;
    background: var(--bg-section);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(139, 92, 246, 0.08);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
}

.section-intro {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Factors Grid */
.factors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.factor-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.factor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(139, 92, 246, 0.15);
}

.factor-icon {
    width: 48px;
    height: 48px;
    background: rgba(139, 92, 246, 0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.factor-content h3 {
    font-size: 1rem;
    margin-bottom: 0.375rem;
    font-weight: 600;
}

.factor-content p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    padding: 0 0 5rem;
    background: var(--bg-section);
}

.about-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.about-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.about-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: white;
}

.about-content p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.check-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.check-list li svg {
    flex-shrink: 0;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background-color: #0f0f14;
    color: #9ca3af;
    padding: 2rem 0;
    font-size: 0.875rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-brand p {
    margin: 0;
}

.footer-divider {
    color: var(--text-muted);
}

.site-footer a {
    color: #c4b5fd;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: #ffffff;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    justify-content: center;
}

.footer-links a {
    color: #9ca3af;
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: #c4b5fd;
}

/* ==================== UTILITIES ==================== */
.hidden {
    display: none !important;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .site-nav ul {
        gap: 1.25rem;
    }
    
    .site-nav a {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        padding: 1rem 1.25rem;
        gap: 1rem;
    }
    
    .stat-value {
        font-size: 1.1rem;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .factors-grid {
        grid-template-columns: 1fr;
    }
    
    .check-list {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .about-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 2.5rem 0 1.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-intro {
        font-size: 1rem;
    }
    
    .calculator-header {
        padding: 1.25rem 1.5rem;
    }
    
    #price-calculator {
        padding: 1.25rem 1.5rem 1.5rem;
    }
    
    .step-header {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .price-range {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.625rem;
    }
    
    .footer-brand {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .footer-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .site-nav {
        display: none;
    }
    
    .logo-image {
        height: 28px;
    }
}
