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

:root {
    --bg-main: #f5f5f7;
    --bg-soft: #e8e8ec;
    --accent-red: #c41e2a;
    --accent-red-dark: #8b1520;
    --accent-blue: #2a3f6f;
    --accent-purple: #4a3f6f;
    --accent-silver: #8a8a95;
    --text-main: #1a1a1e;
    --text-soft: #4a4a52;
    --white: #ffffff;
    --black: #0a0a0e;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.7;
    font-size: 17px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--accent-blue);
}

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

/* ===== HERO С ФОТО В КОНТЕКСТЕ ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-soft) 0%, #d8d8dc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.hero-text {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: var(--white);
    color: var(--accent-red);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    box-shadow: var(--shadow);
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 24px;
    color: var(--accent-blue);
    line-height: 1.2;
}

.hero h1 span {
    color: var(--accent-red);
    font-style: italic;
    display: block;
    margin-top: 10px;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    color: var(--text-soft);
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 30px;
}

.hero-info-item {
    background: var(--white);
    padding: 14px 24px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-info-item strong {
    color: var(--accent-red);
    display: block;
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.hero-image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-image img {
    display: block;
    width: 100%;
    max-width: 550px;
    height: auto;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 3px solid var(--accent-red);
    border-radius: 20px;
    z-index: -1;
}

.btn {
    display: inline-block;
    padding: 18px 44px;
    background: var(--accent-red);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(196, 30, 42, 0.4);
    border: none;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    --bs-btn-line-height: none;
}

.btn:hover {
    background: var(--accent-red-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 30, 42, 0.5);
}

/* ===== SECTIONS ===== */
section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-soft);
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

.divider {
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-red);
    margin: 20px auto 40px;
    border-radius: 2px;
}

/* ===== ABOUT ===== */
.about {
    background: var(--white);
}

.about-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.about-content p:first-of-type::first-letter {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--accent-red);
    float: left;
    line-height: 1;
    margin-right: 10px;
    margin-top: 5px;
}

/* ===== BLESSING ===== */
.blessing {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    color: var(--white);
    text-align: center;
}

.blessing h2 {
    color: var(--white);
}

.blessing .divider {
    background: var(--accent-red);
}

.blessing-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.95;
}

.blessing-text p {
    margin-bottom: 20px;
}

.blessing-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--white);
    margin-top: 30px;
    padding: 24px;
    border-left: 4px solid var(--accent-red);
    border-right: 4px solid var(--accent-red);
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* ===== GOALS ===== */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.goal-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-red);
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.goal-icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.goal-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.goal-card p {
    color: var(--text-soft);
    font-size: 0.95rem;
}

/* ===== NOMINATIONS ===== */
.nominations {
    background: var(--bg-soft);
}

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

.nomination-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nomination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-blue));
}

.nomination-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.nomination-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.nomination-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--accent-blue);
}

.nomination-card p {
    color: var(--text-soft);
    font-size: 0.98rem;
}

/* Последняя карточка по центру */
.nomination-card.last-card {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

/* ===== HOW TO APPLY ===== */
.how-to {
    background: var(--white);
}

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

.step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(196, 30, 42, 0.3);
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-soft);
}

.deadline-box {
    background: linear-gradient(135deg, #fff5f5, #ffe8e8);
    border: 2px dashed var(--accent-red);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    margin: 40px auto;
    max-width: 600px;
}

.deadline-box strong {
    display: block;
    font-size: 1.4rem;
    color: var(--accent-red);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

/* ===== TIMER ===== */
.timer {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.timer-item {
    background: var(--white);
    padding: 16px 20px;
    border-radius: 12px;
    min-width: 80px;
    box-shadow: var(--shadow);
    text-align: center;
}

.timer-value {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-red);
    display: block;
}

.timer-label {
    font-size: 0.85rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== FORM ===== */
.form-section {
    background: linear-gradient(135deg, var(--bg-soft) 0%, #d8d8dc 100%);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px 45px;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

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

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group label .required {
    color: var(--accent-red);
    margin-left: 4px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #d8d8dc;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: var(--text-main);
    background: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(196, 30, 42, 0.15);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

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

.form-hint {
    font-size: 0.9rem;
    color: var(--text-soft);
    margin-top: 6px;
    font-style: italic;
}

.form-divider {
    border: none;
    border-top: 1px solid #d8d8dc;
    margin: 40px 0;
    position: relative;
}

.form-divider-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 0 20px;
    color: var(--accent-red);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit .btn {
    padding: 18px 60px;
    font-size: 1.1rem;
}

.form-privacy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-soft);
    margin-top: 16px;
}

.form-privacy a {
    color: var(--accent-red);
    text-decoration: none;
}

/* ===== INSPIRATION ===== */
.inspiration {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 24px;
}

.inspiration h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 30px;
}

.inspiration p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
}

.inspiration-symbol {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

/* ===== FOOTER ===== */
footer {
    background: var(--black);
    color: #c8c8d0;
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    color: var(--accent-red);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-section p, .footer-section a {
    color: #c8c8d0;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--accent-red);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.9rem;
    color: #8a8a95;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero-info {
        justify-content: center;
    }

    .hero h1 {
        text-align: center;
    }

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

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero {
        min-height: auto;
        padding: 60px 20px;
    }

    .step {
        flex-direction: column;
        gap: 12px;
    }

    .timer-item {
        min-width: 70px;
        padding: 12px 14px;
    }

    .timer-value {
        font-size: 1.6rem;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .nomination-card.last-card {
        max-width: 100%;
    }
}

.u-AhunterSuggestions
{
    border: 1px solid #d8d8dc;
    background: #f4f4f4;
    overflow: auto;
    border-radius: 5px;
}
.u-AhunterSuggestion
{
    padding: 5px;
    white-space: nowrap;
    overflow: hidden;
    color: var(--text-main);
}
.u-AhunterEmptySuggestion
{
    padding: 5px;
    font-style: italic;
    color: var(--text-main);
}
.u-AhunterSelectedSuggestion
{
    background: #c3c0c0;
    cursor: pointer;
}

input, button, select, optgroup, textarea {
    line-height: normal;
}