/* ================================
   CSS Variables & Reset
   ================================ */
:root {
    --primary: #7B1F3C;
    --primary-dark: #5a1629;
    --primary-light: #9a2a4e;
    --secondary: #1a1a2e;
    --accent: #E8B923;
    --text: #2d2d2d;
    --text-light: #666;
    --text-muted: #999;
    --bg: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
    --border: #e5e5e5;
    --success: #22c55e;
    --warning: #f59e0b;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

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

/* ================================
   Header
   ================================ */
.header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    height: 40px;
    width: auto;
}

.header-cta {
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    background: var(--primary);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
}

.header-cta:hover {
    background: var(--primary-dark);
}

/* ================================
   Hero Section
   ================================ */
.hero {
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-light) 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123,31,60,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: center;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.hero-expert {
    text-align: center;
}

.hero-expert img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: var(--shadow-lg);
    margin-bottom: 15px;
}

.hero-expert-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-expert-info strong {
    font-size: 16px;
    color: var(--secondary);
}

.hero-expert-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--secondary);
    margin-bottom: 20px;
}

.hero h1 .highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-subtitle strong {
    color: var(--text);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    background: white;
    padding: 10px 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.trust-badge svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 36px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 14px rgba(123,31,60,0.3);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123,31,60,0.4);
}

.cta-button svg {
    transition: transform var(--transition);
}

.cta-button:hover svg {
    transform: translateX(4px);
}

.cta-button-light {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.cta-button-light:hover {
    background: white;
    color: var(--primary-dark);
}

.cta-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 15px;
}

/* ================================
   Urgency Banner
   ================================ */
.urgency-banner {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 16px 0;
}

.urgency-banner .container {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    text-align: center;
}

.urgency-banner svg {
    flex-shrink: 0;
}

.urgency-banner p {
    font-size: 15px;
}

/* ================================
   Problem Section
   ================================ */
.problem-section {
    padding: 80px 0;
    background: var(--bg);
}

.problem-section h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.problem-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.problem-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.problem-icon svg {
    color: var(--primary);
}

.problem-card p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.5;
}

.solution-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.solution-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.solution-box p {
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.95;
}

.solution-box strong {
    color: var(--accent);
}

/* ================================
   Reviews Section
   ================================ */
.reviews-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.google-rating {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.google-logo {
    height: 24px;
    width: auto;
}

.rating-stars {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stars {
    color: #fbbc04;
    font-size: 28px;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 14px;
    color: var(--text-muted);
}

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

.review-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.review-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.review-stars {
    color: #fbbc04;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 15px;
    color: var(--text);
}

.author-info span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ================================
   Process Section
   ================================ */
.process-section {
    padding: 80px 0;
    background: var(--bg);
}

.process-section h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary);
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.process-step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: white;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary);
}

.process-step p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.5;
}

.process-arrow {
    display: flex;
    align-items: center;
    padding-top: 15px;
    color: var(--border);
}

.process-cta {
    text-align: center;
}

/* ================================
   Expert Section
   ================================ */
.expert-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.expert-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

.expert-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.expert-info h2 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 8px;
}

.expert-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.expert-title {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.expert-credentials {
    list-style: none;
    margin-bottom: 30px;
}

.expert-credentials li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.expert-credentials li:last-child {
    border-bottom: none;
}

.expert-credentials svg {
    color: var(--success);
    flex-shrink: 0;
}

.expert-quote {
    background: white;
    padding: 25px 30px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    font-size: 16px;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
}

/* ================================
   FAQ Section
   ================================ */
.faq-section {
    padding: 80px 0;
    background: var(--bg);
}

.faq-section h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 20px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ================================
   Final CTA Section
   ================================ */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #2d2d4a 100%);
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 15px;
}

.final-cta > p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 35px;
}

.final-note {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 20px;
}

/* ================================
   Footer
   ================================ */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 35px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-info p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-contact p,
.footer-links p {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-contact a,
.footer-links a {
    color: white;
    opacity: 0.8;
    display: block;
    margin-bottom: 8px;
    transition: opacity var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.6;
}

/* ================================
   Quiz Modal
   ================================ */
.quiz-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.quiz-modal.active {
    opacity: 1;
    visibility: visible;
}

.quiz-container {
    background: white;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.quiz-modal.active .quiz-container {
    transform: translateY(0);
}

.quiz-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.quiz-close:hover {
    background: var(--border);
}

/* Progress Bar */
.quiz-progress {
    height: 6px;
    background: var(--bg-light);
    border-radius: 3px;
    margin-bottom: 10px;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
    width: 20%;
}

.quiz-progress-text {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 30px;
}

/* Quiz Steps */
.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.quiz-step h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
    text-align: center;
}

.quiz-subtitle {
    font-size: 15px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 30px;
}

/* Quiz Options */
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-align: left;
}

.quiz-option:hover {
    border-color: var(--primary);
    background: white;
}

.quiz-option.selected {
    border-color: var(--primary);
    background: rgba(123,31,60,0.05);
}

.option-icon {
    font-size: 24px;
}

.option-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
}

/* Quiz Select */
.quiz-select-wrapper {
    margin-bottom: 25px;
}

.quiz-select {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: white;
    cursor: pointer;
    transition: border-color var(--transition);
}

.quiz-select:focus {
    outline: none;
    border-color: var(--primary);
}

.quiz-next-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
}

.quiz-next-btn:disabled {
    background: var(--border);
    cursor: not-allowed;
}

.quiz-next-btn:not(:disabled):hover {
    background: var(--primary-dark);
}

/* Quiz Result Header */
.quiz-result-header {
    text-align: center;
    margin-bottom: 30px;
}

.result-icon {
    width: 60px;
    height: 60px;
    background: var(--success);
    color: white;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* Quiz Form */
.quiz-form {
    text-align: left;
}

.form-note {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
    text-align: center;
}

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

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: border-color var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.phone-input {
    display: flex;
    align-items: stretch;
}

.phone-prefix {
    display: flex;
    align-items: center;
    padding: 0 14px;
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 15px;
    color: var(--text-light);
}

.phone-input input {
    border-radius: 0 var(--radius) var(--radius) 0;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.form-checkbox label {
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
}

.quiz-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    background: var(--primary);
    color: white;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    margin-top: 10px;
}

.quiz-submit-btn:hover:not(:disabled) {
    background: var(--primary-dark);
}

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

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-privacy {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 15px;
    line-height: 1.5;
}

.form-privacy a {
    color: var(--text-light);
    text-decoration: underline;
}

/* Thank You */
.thankyou-content {
    text-align: center;
    padding: 10px 0;
}

.thankyou-icon {
    color: var(--success);
    margin-bottom: 15px;
}

.thankyou-content > h2 {
    margin-bottom: 10px;
    font-size: 22px;
}

.thankyou-content > p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.thankyou-steps {
    text-align: left;
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 20px;
}

.thankyou-steps h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 15px;
    text-align: center;
}

.thankyou-step {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.thankyou-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.thankyou-step-number {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.thankyou-step-content strong {
    display: block;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 4px;
}

.thankyou-step-content p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.highlight-text {
    color: var(--primary);
    font-weight: 600;
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 900px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-expert {
        order: 1;
    }

    .hero-expert img {
        width: 120px;
        height: 120px;
    }

    .hero-content {
        max-width: 100%;
    }

    .trust-badges {
        justify-content: center;
    }

    .expert-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .expert-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .process-arrow {
        display: none;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .header-phone span {
        display: none;
    }

    .header-phone {
        padding: 10px;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .trust-badges {
        flex-direction: column;
    }

    .trust-badge {
        justify-content: center;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 16px;
    }

    .urgency-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .problem-section,
    .reviews-section,
    .process-section,
    .expert-section,
    .faq-section {
        padding: 60px 0;
    }

    .solution-box {
        padding: 30px 20px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .quiz-container {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ================================
   Accessibility
   ================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Hidden utility */
.hidden {
    display: none !important;
}

/* ================================
   Cookie Consent Banner
   ================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    color: var(--text);
    padding: 24px 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.2);
    border-top: 3px solid var(--primary);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: var(--text-light);
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(123,31,60,0.3);
}

.cookie-btn-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background: var(--bg-light);
    color: var(--text-light);
    border: 1px solid var(--border);
}

.cookie-btn-decline:hover {
    background: var(--border);
    color: var(--text);
}

.cookie-privacy-link {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: underline;
}

.cookie-privacy-link:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 20px 16px;
        padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-text h3 {
        font-size: 16px;
    }

    .cookie-text p {
        font-size: 13px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }

    .cookie-btn {
        width: 100%;
        padding: 14px 20px;
    }

    .cookie-btn-accept {
        order: -1;
    }
}
