


:root {
    --primary-dark: #c41e5d;
    --secondary: #f0f0f0;
    --border: #e0e0e0;
    --accent: #fbbf24;
    --white: #ffffff;
}

.land-page-wrap {

    display: flex;
    flex-direction: column;
    gap: 1rem;
}





/* ============ HEADER ============ */
.land-hero {
    background: linear-gradient(135deg, #6b4eff14 0%, #7a68ffd4 100%);
    color: var(--white);
    padding: 120px 20px;
    text-align: center;
    min-height: calc(60vh - 8rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 3rem;
    margin: 1rem;
}

.land-hero-content {
    max-width: 750px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.land-hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.land-hero h1 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    line-height: 1.2;
    color: var(--text-heading);
}

.land-hero p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    position: relative;
    z-index: 1;
    color: #4b4855;
}

/* ============ MAIN CONTENT ============ */

section {

}

section:last-child {
    border-bottom: none;
}

/* ============ SECTION: ПРОБЛЕМА ============ */
.problem {
    background: var(--secondary);
}

.problem h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.problem-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.problem-item {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-400);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.problem-item p {
    color: var(--text-muted-700);
    font-size: 1rem;
}

.problem-description {
    font-size: 1.1rem;
    color: var(--text-muted-700);
    line-height: 1.8;
}

/* ============ SECTION: АЛЬТЕРНАТИВА ============ */
.alternative {
    background: var(--white);
}

.alternative h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-400);
}

.alt-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.alt-item {
    background: linear-gradient(135deg, rgba(217, 70, 166, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.alt-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(217, 70, 166, 0.15);
    border-color: var(--primary-400);
}

.alt-item p {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* ============ SECTION: ЧТО ТАКОЕ SHINEME ============ */
.about {
    background: linear-gradient(135deg, #f8f4ff 0%, #fff5f3 100%);
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.about-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-400);
    margin-bottom: 20px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-muted-700);
    margin-bottom: 20px;
    max-width: 800px;
}

.about-highlight {
    background: var(--white);
    padding: 20px 25px;
    border-radius: 8px;
    font-style: italic;
    color: var(--primary-dark);
    border-left: 4px solid var(--accent);
    margin-top: 30px;
}

/* ============ SECTION: ВОЗМОЖНОСТИ ============ */
.features {
    background: var(--white);
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--secondary);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(217, 70, 166, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted-700);
    line-height: 1.6;
}

/* ============ SECTION: КАК НАЧАТЬ ============ */
.start {
    background: var(--secondary);
}

.start h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-primary);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.step::before {
    content: attr(data-step);
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step h3 {
    font-size: 1.2rem;
    margin: 20px 0 15px;
    color: var(--text-primary);
}

.step p {
    font-size: 0.95rem;
    color: var(--text-muted-700);
    line-height: 1.7;
}

/* ============ SECTION: FINAL CTA ============ */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============ SECTION: SUPPORT ============ */
.support {
    background: var(--white);
}

.support h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.support-text {
    font-size: 1.05rem;
    color: var(--text-muted-700);
    margin-bottom: 30px;
    line-height: 1.8;
}

.support-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    flex-wrap: wrap;
}

.support-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.support-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(217, 70, 166, 0.1);
}



/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {

    section {
        padding: 50px 20px;
    }

    .problem-list,
    .alt-list,
    .features-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .support-form {
        flex-direction: column;
    }

    .support-form input {
        width: 100%;
    }
}


:root {
    --accent: #ff8a2a;
    --text-primary: #0f172a;
    --border-radius-lg: 1.75rem;
    --border-radius-sm: 1.25rem;
}

/* =========================
   BASE
========================= */

.about-section {

}



.about-section {
    padding: 5rem 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

/* =========================
   CONTENT
========================= */

.about-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
}

.about-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 2rem;
}

/* STATS */

.about-stats {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    gap: 2.5rem;
}

.about-stats strong {
    font-size: 1.5rem;
    display: block;
}

.about-stats span {
    font-size: 0.85rem;
    color: var(--text-muted-700);
    line-height: 1.4;
}

/* DESCRIPTION */

.about-description {
    max-width: 420px;
    font-size: 0.9rem;
    color: var(--text-muted-700);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

/* BUTTON */

.about-button {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.9rem;
}

/* =========================
   MEDIA GRID
========================= */

.about-media {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: end;
}

.media-large {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #9ec9ff, #cfe5ff);
    border-radius: var(--border-radius-lg);
}

.media-small {
    width: 60%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #7bb6ff, #b9dcff);
    border-radius: var(--border-radius-sm);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .media-small {
        width: 70%;
    }
}
