/* ================================
   FIX LAYOUT + REMOVE GP WIDTH
================================ */
.page-template-page-landing body,
.page-template-page-landing .site,
.page-template-page-landing .site-content,
.page-template-page-landing .content-area,
.page-template-page-landing .site-main,
.page-template-page-landing .inside-article {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    background: #fff !important;
    overflow-x: hidden !important; /* убираем правую полоску */
}

.page-template-page-landing .entry-title,
.page-template-page-landing .entry-content,
.page-template-page-landing .page-header,
.page-template-page-landing header,
.page-template-page-landing .site-footer {
    display: none !important;
}

/* ================================
   MAIN LANDING WRAPPER
================================ */
#dn-landing-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.dn-landing {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 20px;
    box-sizing: border-box;
    text-align: center;
}

/* ================================
   TYPOGRAPHY / SPACING
================================ */
.dn-section {
    margin-top: 40px; /* ЛОГИЧНЫЕ БЛОКИ */
    text-align: left;
}

.dn-section__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.dn-section__text {
    font-size: 15px;
    line-height: 1.55;
    color: #444;
    margin-bottom: 18px;
}

/* ================================
   HEADLINE AREA
================================ */
.dn-title {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    margin: 20px 0 12px;
}

.dn-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

/* ================================
   TIMER
================================ */
.dn-timer {
    font-size: 13px;
    color: #777;
    margin: 20px 0 10px;
}

/* ================================
   STEPS LIST
================================ */
.dn-steps {
    padding-left: 20px;
}

.dn-steps li {
    margin-bottom: 8px;
    font-size: 15px;
}

/* ================================
   AGE CHECK BUTTONS
================================ */
.dn-age__buttons {
    margin-top: 18px;
    display: flex;
    gap: 12px;
}

.dn-btn-secondary,
.dn-btn-ghost {
    flex: 1;
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 10px;
    cursor: pointer;
}

/* primary */
.dn-btn-secondary {
    background: #111827;
    color: white;
    border: none;
}
.dn-btn-secondary:hover {
    background: #000;
}

/* ghost */
.dn-btn-ghost {
    background: transparent;
    border: 1px solid #cbd5e1;
    color: #1f2937;
}
.dn-btn-ghost:hover {
    background: #f1f5f9;
}

/* ================================
   CHOICES GRID
================================ */
.dn-choices__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.dn-choice {
    padding: 14px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
}

.dn-choice:hover {
    background: #fee2e2;
    border-color: #f87171;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 480px) {
    .dn-age__buttons {
        flex-direction: column;
    }

    .dn-choices__grid {
        grid-template-columns: 1fr;
    }
}
