/* Fonts */
@font-face {
    font-family: 'Furore';
    src: url('../fonts/Furore.eot');
    src: url('../fonts/Furore.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Furore.woff2') format('woff2'),
         url('../fonts/Furore.woff') format('woff'),
         url('../fonts/Furore.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #17191e;
    --bg-darker: #212529;
    --accent-red: #E6383D;
    --border-opacity: 0.15;
    --transition-smooth: 280ms ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Site Logo */
.site-logo {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    width: 250px;
    height: auto;
    max-width: calc(100vw - 40px);
}

.logo-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

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

/* Hero Section - Full Width */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile */
    background-image: url('../img/fon.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 36px;
    margin: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 60px 20px 40px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(23, 25, 30, 0.75) 0%, rgba(33, 37, 41, 0.65) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto 120px;
    width: 100%;
}

.hero-title {
    font-family: 'Furore', sans-serif;
    font-size: 42px;
    font-weight: normal;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #B82D31, #8B0000, #A52A2A, #B82D31, #C44D4D, #FFC0CB, #FFFFFF, #F5F5F5, #FF69B4, #B82D31);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerBurgundy 3s ease-in-out infinite;
    text-shadow: none;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.hero-title .underline-text {
    border-bottom: 2px solid #B82D31;
    padding-bottom: 2px;
}

@keyframes shimmerRed {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

@keyframes shimmerFullSpectrum {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes shimmerBurgundy {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

.hero-title-emphasis {
    display: inline-block;
    background: rgba(230, 56, 61, 0.15);
    border: 1px solid rgba(230, 56, 61, 0.4);
    border-radius: 8px;
    padding: 4px 12px;
    margin-right: 4px;
    font-weight: normal;
    text-shadow: none;
}

.hero-subtitle {
    display: none;
}

/* Quiz Overlay - Below Hero Text */
.quiz-overlay {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.quiz-wrapper {
    background: rgba(23, 25, 30, 0.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.02) inset;
    max-width: 600px;
    margin: 0 auto;
}

.quiz-content {
    width: 100%;
}

.quiz-container {
    margin-bottom: 30px;
    position: relative;
    min-height: 200px;
    background: transparent;
}

.quiz-step-indicator {
    font-size: 24px;
    background: linear-gradient(90deg, #B82D31, #8B0000, #A52A2A, #B82D31, #C44D4D, #FFC0CB, #FFFFFF, #F5F5F5, #FF69B4, #B82D31);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerBurgundy 3s ease-in-out infinite;
    margin-bottom: 24px;
    text-align: right;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.quiz-question {
    animation: fadeInSlide 300ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .quiz-question {
        animation: none;
    }
    
    
    .hero-title,
    .hero-subtitle,
    .quiz-step-indicator {
        animation: none;
        background: #B82D31;
        -webkit-text-fill-color: #B82D31;
        color: #B82D31;
    }
}

.quiz-question-label {
    display: block;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Furore', sans-serif;
}

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

.quiz-option {
    position: relative;
    display: block;
    width: 100%;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    cursor: pointer;
    transition: all 280ms ease;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    text-align: left;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.quiz-option::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    pointer-events: none;
}

.quiz-option:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(230, 56, 61, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

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

.quiz-option:active::before {
    width: 400px;
    height: 400px;
    transition: width 0.4s ease, height 0.4s ease;
}

.quiz-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.quiz-option.selected {
    background: rgba(230, 56, 61, 0.18);
    border-color: var(--accent-red);
    border-width: 2px;
    box-shadow: 
        0 0 0 1px rgba(230, 56, 61, 0.3) inset,
        0 0 28px rgba(230, 56, 61, 0.25);
    transform: translateY(-1px);
}

/* Messenger Options with Icons */
.quiz-messenger-options {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
}

.quiz-messenger-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    flex: 1;
    min-width: 120px;
}

.messenger-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.messenger-label {
    font-size: 19px;
    font-weight: 500;
}

/* Quiz Fields */
.quiz-fields {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.quiz-field {
    margin-bottom: 0;
}

.quiz-conditional-field {
    margin-top: 20px;
    animation: fadeInSlide 280ms ease;
}

.quiz-field-label {
    display: block;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.quiz-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, var(--border-opacity));
    border-radius: 10px;
    font-size: 17px;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    transition: all var(--transition-smooth);
}

.quiz-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(230, 56, 61, 0.1);
}

.quiz-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.quiz-next-button {
    margin-top: 24px;
    padding: 14px 32px;
    background: rgba(230, 56, 61, 0.15);
    color: #ffffff;
    border: 1px solid var(--accent-red);
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.quiz-next-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.quiz-next-button:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 56, 61, 0.3);
}

.quiz-next-button:active::before {
    width: 300px;
    height: 300px;
}

/* CTA Button with Ripple */
.cta-button {
    position: relative;
    width: 100%;
    padding: 20px 40px;
    background: var(--accent-red);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all var(--transition-smooth);
    overflow: hidden;
    box-shadow: 
        0 6px 20px rgba(230, 56, 61, 0.35),
        0 0 0 0 rgba(230, 56, 61, 0) inset;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    pointer-events: none;
}

.cta-button:hover {
    background: #d32f34;
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(230, 56, 61, 0.45),
        0 0 0 0 rgba(230, 56, 61, 0) inset;
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 
        0 4px 12px rgba(230, 56, 61, 0.3),
        0 0 0 3px rgba(230, 56, 61, 0.2) inset;
    transition: all 0.15s ease;
}

.cta-button:active::before {
    width: 500px;
    height: 500px;
    transition: width 0.4s ease, height 0.4s ease;
}

.cta-button .button-text {
    position: relative;
    z-index: 1;
}

/* Guarantee Note - Plain Text */
.guarantee-note {
    margin-top: 24px;
    font-size: 16px;
    background: linear-gradient(90deg, #B82D31, #8B0000, #A52A2A, #B82D31, #C44D4D, #FFC0CB, #FFFFFF, #F5F5F5, #FF69B4, #B82D31);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerBurgundy 3s ease-in-out infinite;
    line-height: 1.6;
    text-align: center;
    font-weight: 800;
}

/* Engine Illustration - Hidden */
.quiz-illustration {
    display: none;
}

.engine-image {
    display: none;
}

/* Content Sections */
.content-section {
    padding: 100px 20px;
    background-color: var(--bg-dark);
}

.content-section:first-of-type {
    padding-top: 120px;
}

.section-title {
    font-family: 'Furore', sans-serif;
    font-size: 48px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(33, 37, 41, 0.6);
    border: 1px solid rgba(255, 255, 255, var(--border-opacity));
    border-radius: 16px;
    padding: 30px;
    transition: all var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(230, 56, 61, 0.3);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: rgba(230, 56, 61, 0.15);
    border: 1px solid var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent-red);
    margin-bottom: 20px;
    font-weight: 600;
}

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
    font-family: 'Furore', sans-serif;
}

.benefit-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* How it works Section */
.how-it-works-section {
    background-color: var(--bg-darker);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(230, 56, 61, 0.15);
    border: 2px solid var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-red);
    margin: 0 auto 20px;
    font-family: 'Furore', sans-serif;
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
    font-family: 'Furore', sans-serif;
}

.step-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: rgba(33, 37, 41, 0.6);
    border: 1px solid rgba(255, 255, 255, var(--border-opacity));
    border-radius: 16px;
    padding: 35px;
    transition: all var(--transition-smooth);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(230, 56, 61, 0.3);
}

.category-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: 'Furore', sans-serif;
}

.category-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-darker);
}

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

.faq-item {
    background: rgba(33, 37, 41, 0.6);
    border: 1px solid rgba(255, 255, 255, var(--border-opacity));
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(230, 56, 61, 0.3);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
    font-family: 'Furore', sans-serif;
}

.faq-answer {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Footer */
.footer-section {
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, var(--border-opacity));
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-block {
    text-align: left;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: 'Furore', sans-serif;
}

.footer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

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

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Results Section */
.results-section {
    padding: 60px 20px;
    background-color: var(--bg-darker);
    border-radius: 20px;
    margin: 40px 20px;
}

.results-title {
    font-family: 'Furore', sans-serif;
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 30px;
    text-align: center;
    color: #ffffff;
}

.results-content {
    background: rgba(23, 25, 30, 0.5);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, var(--border-opacity));
}


.about-us-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-us-left {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.8;
}

.about-us-left p {
    margin-bottom: 20px;
}

.about-us-left p:last-child {
    margin-bottom: 0;
}

.about-us-right {
    background: rgba(230, 56, 61, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(230, 56, 61, 0.3);
    color: rgba(255, 255, 255, 0.9);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.7;
}

.about-us-right p {
    margin-bottom: 18px;
}

.about-us-right p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
    }
    
.quiz-wrapper {
    padding: 45px;
    max-width: 550px;
}
}

@media (max-width: 768px) {
    .site-logo {
        top: 15px;
        left: 15px;
        width: 200px;
        max-width: calc(100vw - 30px);
    }
    
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        border-radius: 20px;
        margin: 10px;
        padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    }
    
    .hero {
        padding: 40px 15px 30px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        letter-spacing: 0.3px;
    }
    
    .hero-title-emphasis {
        padding: 3px 10px;
        border-radius: 6px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        font-weight: 700;
        line-height: 1.4;
    }
    
    .hero-content {
        margin-bottom: 60px;
    }
    
    .quiz-overlay {
        padding: 20px 10px;
        margin-top: 50px;
    }
    
    .quiz-wrapper {
        padding: 35px 25px;
        background: rgba(23, 25, 30, 0.1);
    }
    
    .content-section {
        padding: 60px 15px;
    }
    
    .content-section:first-of-type {
        padding-top: 80px;
    }
    
    .quiz-wrapper {
        padding: 35px 25px;
        border-radius: 16px;
        max-width: 100%;
        background: rgba(23, 25, 30, 0.10);
    }
    
    .hero-title-emphasis {
        padding: 3px 10px;
        border-radius: 6px;
    }
    
    .quiz-question-label {
        font-size: 22px;
    }
    
    .quiz-option {
        padding: 18px 20px;
        font-size: 18px;
    }
    
    .quiz-messenger-option {
        padding: 14px 16px;
        min-width: 100px;
    }
    
    .messenger-icon {
        width: 22px;
        height: 22px;
    }
    
    .messenger-label {
        font-size: 17px;
    }
    
    .quiz-input {
        padding: 12px 16px;
        font-size: 16px;
    }
    
    .guarantee-note {
        font-size: 12px;
        font-weight: 800;
    }
    
    .quiz-next-button {
        padding: 12px 28px;
        font-size: 16px;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .results-section {
        margin: 20px 10px;
        padding: 40px 20px;
    }
    
    .results-title {
        font-size: 28px;
    }
    
    .about-us-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-us-left {
        font-size: 14px;
    }
    
    .about-us-right {
        padding: 25px;
        font-size: 17px;
        font-weight: 600;
    }
    
    .content-section {
        padding: 50px 15px;
    }
    
    .section-title {
        font-size: 36px;
        margin-bottom: 35px;
    }
    
    .benefits-grid,
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefit-card,
    .category-card {
        padding: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 375px) {
    .site-logo {
        top: 10px;
        left: 10px;
        width: 160px;
        max-width: calc(100vw - 20px);
    }
    
    .about-us-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-us-left {
        font-size: 13px;
    }
    
    .about-us-right {
        padding: 20px;
        font-size: 16px;
        font-weight: 600;
    }
    
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        margin: 5px;
        border-radius: 16px;
    }
    
    .hero-title {
        font-size: 22px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 16px;
        font-weight: 700;
        line-height: 1.4;
    }
    
    .quiz-overlay {
        padding: 15px 8px;
        margin-top: 20px;
    }
    
    .hero-content {
        margin-bottom: 50px;
    }
    
    .quiz-overlay {
        margin-top: 40px;
    }
    
    .hero-title-emphasis {
        padding: 2px 8px;
        border-radius: 5px;
    }
    
    .quiz-wrapper {
        padding: 25px 18px;
        border-radius: 14px;
        background: rgba(23, 25, 30, 0.08);
    }
    
    .quiz-question-label {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .quiz-option {
        padding: 12px 14px;
        font-size: 16px;
    }
    
    .quiz-messenger-options {
        flex-direction: column;
    }
    
    .quiz-messenger-option {
        padding: 14px 16px;
        min-width: 100%;
    }
    
    .messenger-icon {
        width: 22px;
        height: 22px;
    }
    
    .messenger-label {
        font-size: 16px;
    }
    
    .quiz-input {
        padding: 11px 14px;
        font-size: 15px;
    }
    
    .quiz-field-label {
        font-size: 15px;
    }
    
    .guarantee-note {
        font-size: 11px;
        font-weight: 800;
        margin-top: 20px;
    }
    
    .quiz-next-button {
        padding: 11px 24px;
        font-size: 15px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .quiz-step-indicator {
        font-size: 20px;
        margin-bottom: 18px;
        background-size: 200% auto;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .content-section {
        padding: 40px 10px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .results-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    
    .benefit-card,
    .category-card,
    .faq-item {
        padding: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
