* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #2C2C2C;
    line-height: 1.5;
    scroll-behavior: smooth;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.header {
    background: white;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo img {
    height: 48px;
    width: auto;
}
.nav a {
    margin-left: 24px;
    text-decoration: none;
    color: #1E3A5F;
    font-weight: 500;
    transition: color 0.2s;
}
.nav a:hover {
    color: #e63946;
}
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}
h2 {
    font-size: clamp(1.8rem, 5vw, 2.3rem);
    margin-bottom: 1rem;
    text-align: center;
}
.section {
    padding: 80px 0;
    border-bottom: 1px solid #f0f0f0;
}
.section:last-child {
    border-bottom: none;
}
.btn {
    display: inline-block;
    background: #1E3A5F;
    color: white;
    padding: 12px 28px;
    border-radius: 48px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}
.btn-outline {
    background: transparent;
    border: 1px solid #1E3A5F;
    color: #1E3A5F;
}
.btn-outline:hover {
    background: #1E3A5F;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.btn:hover {
    background: #0f2a46;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.hero {
    background: linear-gradient(135deg, #FDF8F2 0%, #fff 100%);
    padding: 60px 0 80px;
    text-align: center;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.discount-badge {
    font-size: 2rem;
    font-weight: 800;
    color: #e63946;
    margin-bottom: 16px;
}
.timer {
    background: rgba(255,255,240,0.9);
    border-radius: 60px;
    padding: 16px 32px;
    display: inline-flex;
    gap: 32px;
    margin: 24px auto;
    font-weight: 700;
    font-size: 1.4rem;
    justify-content: center;
    flex-wrap: wrap;
    backdrop-filter: blur(4px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.timer div {
    background: white;
    padding: 6px 16px;
    border-radius: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.timer span {
    font-size: 2rem;
    font-weight: 800;
    color: #1E3A5F;
    margin-right: 6px;
}
.hero-buttons {
    margin-top: 24px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}
.product-card {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.2s;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-img {
    width: 100%;
    height: 200px;
    background: #faf5ef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}
.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e63946;
    margin: 8px 0;
}
.product-old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-left: 8px;
}
.product-note {
    font-size: 0.75rem;
    color: #777;
    margin: 8px 0;
}
.product-btn {
    margin-top: auto;
    align-self: center;
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}
.card {
    background: #FFFFFF;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}
.card ul {
    margin: 20px 0;
    padding-left: 20px;
    flex-grow: 1;
}
.card .btn {
    align-self: flex-start;
}
.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}
.step-item {
    flex: 1;
    text-align: center;
    min-width: 200px;
}
.step-number {
    width: 60px;
    height: 60px;
    background: #1E3A5F;
    color: white;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.form-container {
    background: #FEFAF5;
    border-radius: 32px;
    padding: 40px;
    margin-top: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 20px;
}
label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
}
input, select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}
input:focus {
    outline: none;
    border-color: #1E3A5F;
    box-shadow: 0 0 0 3px rgba(30,58,95,0.1);
}
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 10px;
}
.radio-group label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
}
.radio-group input[type="radio"] {
    appearance: radio;
    width: auto;
    margin: 0;
}
.checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}
.checkbox input {
    width: auto;
}
.policy-link {
    cursor: pointer;
    color: #1E3A5F;
    text-decoration: underline;
}
.policy-full {
    display: none;
    background: #f9f9f9;
    padding: 16px;
    border-radius: 16px;
    margin-top: 12px;
    font-size: 0.85rem;
}
.policy-full.open {
    display: block;
}
.review-card {
    background: #FEFAF5;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.faq-item {
    border-bottom: 1px solid #eee;
    padding: 16px 0;
}
.faq-question {
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}
.faq-answer {
    display: none;
    padding-top: 12px;
    color: #555;
}
.faq-answer.open {
    display: block;
}
/* Квиз */
.quiz-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
    padding: 20px;
}
.quiz-overlay.active {
    visibility: visible;
    opacity: 1;
}
.quiz-modal {
    background: white;
    border-radius: 32px;
    max-width: 750px;
    width: 100%;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    text-align: center;
    max-height: 90vh;
    overflow-y: auto;
}
.quiz-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 32px;
    cursor: pointer;
    color: #888;
}
.quiz-step {
    display: none;
}
.quiz-step.active-step {
    display: block;
}
.quiz-step h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    word-break: break-word;
}
.quiz-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 28px auto;
}
.quiz-options label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: normal;
    cursor: pointer;
    font-size: 1rem;
    text-align: left;
}
.quiz-input {
    margin: 20px auto;
    width: 80%;
}
.quiz-input input {
    width: 100%;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid #ddd;
    font-size: 1rem;
}
.quiz-footer {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}
.footer {
    background: #F8F4EF;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}
.footer a {
    color: #1E3A5F;
    text-decoration: none;
}
.footer p {
    margin: 8px 0;
}
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .section {
        padding: 50px 0;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .timer {
        gap: 16px;
        padding: 12px 20px;
    }
    .timer div {
        font-size: 0.9rem;
    }
    .timer span {
        font-size: 1.4rem;
    }
    .quiz-modal {
        padding: 24px;
    }
    .quiz-step h3 {
        font-size: 1.4rem;
    }
    .quiz-input {
        width: 100%;
    }
}