:root {
    --bg-page: #f7f3ec;
    --bg-surface: #ffffff;
    --bg-surface-soft: #f0e4d8;
    --bg-deep: #1f2933;
    --text-main: #1f2933;
    --text-soft: #4b5563;
    --text-on-deep: #f9fafb;
    --accent: #356849;
    --accent-hover: #1B4332;
    --accent-soft: #d5e6dd;
    --radius-md: 8px;
    --shadow-1: 0 4px 12px rgba(0,0,0,0.08);
    --container-max: 1120px;
    --header-height: 70px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--text-on-deep);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn-secondary:hover {
    background-color: var(--accent-soft);
}

.section {
    padding: 60px 0;
}

.section--hero {
    background-color: var(--bg-deep);
    color: var(--text-on-deep);
    padding: 80px 0;
}

.section--light {
    background-color: var(--bg-surface);
}

.section--soft {
    background-color: var(--bg-surface-soft);
}

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

.section__eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin: 0 0 20px;
    line-height: 1.2;
}

.section__lead {
    font-size: 1.1rem;
    color: var(--text-soft);
    max-width: 700px;
    margin: 0 auto 40px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.site-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.site-header__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-header__logo-mark svg {
    display: block;
}

.site-header__title-main {
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
}

.site-header__title-sub {
    font-size: 0.8rem;
    color: var(--text-soft);
    text-transform: uppercase;
}

.nav-primary {
    display: none;
}

.nav-primary__list {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-primary__link {
    font-weight: 500;
    color: var(--text-soft);
    transition: color 0.2s;
}

.nav-primary__link:hover,
.nav-primary__link.is-active {
    color: var(--accent);
}

.site-header__burger {
    display: flex; /* Важно: flex, чтобы было видно на мобильных */
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
    padding: 5px;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; /* Ширина во весь экран */
    height: 100vh; /* Высота во весь экран */
    background: var(--bg-deep);
    z-index: 9999; /* Очень высокий слой, чтобы быть поверх всего */
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-y: auto; /* На случай, если меню не влезет в экраны маленьких телефонов */
}

.nav-overlay.is-open {
    display: flex;
}

.nav-overlay__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.nav-overlay__list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.nav-overlay__link {
    font-size: 2rem;
    color: #fff;
    display: block;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero {
    display: grid;
    gap: 40px;
}

.hero__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 24px;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 32px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-card img {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-card__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.hero-card__badge i {
    width: 14px;
    height: 14px;
}

.hero-card__image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.description__grid, .screenshots__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--bg-surface);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-1);
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.screenshot-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-1);
}

.screenshot-card__body {
    padding: 20px;
}

.download-cta {
    display: grid;
    gap: 40px;
    background: var(--bg-surface-soft);
    padding: 40px;
    border-radius: 24px;
}

.download-cta__media img {
    border-radius: 12px;
    box-shadow: var(--shadow-1);
}

.download-cta__legal {
    font-size: 0.85rem;
    margin-top: 16px;
    color: var(--text-soft);
}

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

.accordion__item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.accordion__button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-main);
    text-align: left;
}

.accordion__panel {
    padding-bottom: 20px;
    color: var(--text-soft);
}

.site-footer {
    background: var(--bg-deep);
    color: var(--text-on-deep);
    padding: 60px 0 20px;
    /*margin-top: 60px;*/
}

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

.site-footer__block-title {
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.site-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__list li {
    margin-bottom: 10px;
}

.site-footer__link, .site-footer__contact-item a {
    color: #94a3b8;
    transition: color 0.2s;
}

.site-footer__link:hover, .site-footer__contact-item a:hover {
    color: #fff;
}

.site-footer__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
}

.site-footer__contact-item i {
    width: 16px;
    height: 16px;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

@media(min-width: 768px) {
    .nav-primary {
        display: block;
    }
    .site-header__burger {
        display: none;
    }
    .hero {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    .download-cta {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    .description__grid, .screenshots__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.split-layout {
display: grid;
gap: 40px;
}
@media(min-width: 768px) {
.split-layout {
grid-template-columns: 1fr 1fr;
align-items: center;
}
code
Code
.split-layout.reverse .image-wrapper {
    order: -1;
}
}
.rounded-img {
border-radius: var(--radius-md);
width: 100%;
height: auto;
object-fit: cover;
}
.shadow-lg {
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.pill-list {
display: flex;
flex-wrap: wrap;
gap: 12px;
list-style: none;
padding: 0;
margin-top: 24px;
}
.pill-list li {
background-color: var(--accent-soft);
color: var(--accent);
padding: 6px 16px;
border-radius: 999px;
font-size: 0.9rem;
font-weight: 600;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-card {
    text-align: center;
    background: #fff;
    padding: 30px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-1);
    transition: transform 0.2s;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card__image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-soft);
}

.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.1rem;
    margin: 0 0 5px;
    color: var(--text-main);
}

.team-card__role {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}
.section--deep {
background-color: var(--bg-deep);
color: var(--text-on-deep);
}
.text-white {
color: #fff;
}
.mt-4 {
margin-top: 1.5rem;
}
.contact-layout {
    display: grid;
    gap: 40px;
}

@media(min-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.contact-form-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-1);
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: var(--accent);
    outline: none;
}

.privacy-label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--text-soft);
    cursor: pointer;
    margin: 20px 0;
}

.privacy-label input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
}

.privacy-label a {
    color: var(--accent);
    text-decoration: underline;
}

.full-width {
    width: 100%;
    justify-content: center;
}

.disclaimer {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 16px;
    text-align: center;
    line-height: 1.4;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--bg-surface-soft);
    padding: 30px;
    border-radius: var(--radius-md);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-main);
}

.info-list li i {
    color: var(--accent);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-1);
    height: 300px;
}

.mb-4 {
    margin-bottom: 1.5rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-1);
    height: 400px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* ДОБАВЬТЕ ЭТО в ваш CSS файл */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
}

.benefit-tile {
    background: #fff;
    padding: 20px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.2s;
    text-align: center;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.benefit-tile i {
    width: 36px;
    height: 36px;
    color: var(--accent);
    margin-bottom: 12px;
    background: var(--accent-soft);
    padding: 8px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-tile h3 {
    font-size: 1rem;
    margin: 0 0 8px;
    color: var(--text-main);
    line-height: 1.2;
}

.benefit-tile p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-soft);
    line-height: 1.4;
}
@media (min-width: 375px) {
    .benefit-tile {
        padding: 22px 18px;
    }
    
    .benefit-tile i {
        width: 40px;
        height: 40px;
    }
}
@media (min-width: 480px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .benefit-tile {
        padding: 24px 20px;
        min-height: 200px;
    }
    
    .benefit-tile h3 {
        font-size: 1.1rem;
    }
    
    .benefit-tile p {
        font-size: 0.9rem;
    }
}
@media (min-width: 768px) {
    .benefits-grid {
        gap: 24px;
    }
    
    .benefit-tile {
        padding: 28px 24px;
    }
    
    .benefit-tile i {
        width: 44px;
        height: 44px;
        padding: 10px;
    }
}
@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
    
    .benefit-tile {
        padding: 32px 28px;
        min-height: 220px;
    }
    
    .benefit-tile h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .benefit-tile p {
        font-size: 0.95rem;
    }
}
@media (min-width: 1280px) {
    .benefits-grid {
        gap: 32px;
    }
    
    .benefit-tile {
        padding: 36px 32px;
    }
}
/* description секция - для feature-card */
.description__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
}

.feature-card {
    background-color: var(--bg-surface);
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-card__icon i {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.feature-card__title {
    font-size: 1.1rem;
    margin: 0 0 12px;
    color: var(--text-main);
    font-weight: 600;
}

.feature-card__text {
    font-size: 0.9rem;
    color: var(--text-soft);
    margin: 0;
    line-height: 1.5;
}
@media (min-width: 640px) {
    .description__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .feature-card {
        padding: 28px 24px;
    }
}
@media (min-width: 1024px) {
    .feature-card {
        padding: 32px 28px;
    }
    
    .feature-card__title {
        font-size: 1.2rem;
    }
    
    .feature-card__text {
        font-size: 0.95rem;
    }
}
.screenshots__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
}

.screenshot-card {
    background-color: var(--bg-surface);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.screenshot-card:hover {
    transform: translateY(-4px);
}

.screenshot-card__media {
    position: relative;
    height: 200px; /* Фиксированная высота на мобильных */
    overflow: hidden;
}

.screenshot-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.screenshot-card:hover .screenshot-card__media img {
    transform: scale(1.05);
}

.screenshot-card__body {
    padding: 20px;
}

.screenshot-card__title {
    font-size: 1.1rem;
    margin: 0 0 8px;
    color: var(--text-main);
    font-weight: 600;
}

.screenshot-card__text {
    font-size: 0.9rem;
    color: var(--text-soft);
    margin: 0;
    line-height: 1.4;
}
@media (min-width: 480px) {
    .screenshots__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .screenshot-card__media {
        height: 180px;
    }
}
@media (min-width: 768px) {
    .screenshots__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .screenshot-card__media {
        height: 200px;
    }
    
    .screenshot-card__body {
        padding: 24px;
    }
}
@media (min-width: 1024px) {
    .screenshots__grid {
        gap: 32px;
    }
    
    .screenshot-card__media {
        height: 240px;
    }
    
    .screenshot-card__title {
        font-size: 1.2rem;
    }
    
    .screenshot-card__text {
        font-size: 0.95rem;
    }
}
.accordion__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.accordion__icon i[data-feather="chevron-up"] {
    transform: rotate(180deg);
}

.accordion__button[aria-expanded="true"] .accordion__icon {
    transform: rotate(180deg);
}
.button-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.button-group .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    min-height: 52px;
}

.button-group .btn i {
    width: 18px;
    height: 18px;
}
@media (min-width: 480px) {
    .button-group {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }
    
    .button-group .btn {
        width: auto;
        min-width: 180px;
    }
}
@media (max-width: 374px) {
    .button-group {
        gap: 10px;
    }
    
    .button-group .btn {
        padding: 12px 20px;
        min-height: 48px;
        font-size: 0.95rem;
    }
}
.legal-main {
    padding: 40px 0 60px;
    background-color: var(--bg-page);
}

.legal-article {
    background-color: var(--bg-surface);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 32px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--accent-soft);
}

.legal-eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.legal-title {
    font-size: 2rem;
    margin: 0 0 16px;
    color: var(--text-main);
    line-height: 1.2;
}

.legal-intro {
    font-size: 1.1rem;
    color: var(--text-soft);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.legal-section {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--bg-surface-soft);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    font-size: 1.4rem;
    margin: 0 0 16px;
    color: var(--text-main);
    line-height: 1.3;
}

.legal-section p {
    font-size: 1rem;
    color: var(--text-soft);
    margin: 0 0 16px;
    line-height: 1.6;
}

.legal-section ul {
    margin: 0 0 16px 20px;
    padding: 0;
    color: var(--text-soft);
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.legal-section strong {
    color: var(--text-main);
}
@media (max-width: 767px) {
    .legal-main {
        padding: 24px 0 40px;
    }
    
    .legal-article {
        padding: 24px 20px;
        border-radius: 10px;
    }
    
    .legal-title {
        font-size: 1.6rem;
    }
    
    .legal-section h2 {
        font-size: 1.2rem;
    }
    
    .legal-section p {
        font-size: 0.95rem;
    }
}

@media (max-width: 374px) {
    .legal-article {
        padding: 20px 16px;
    }
    
    .legal-title {
        font-size: 1.4rem;
    }
    
    .legal-section h2 {
        font-size: 1.1rem;
    }
}
/* Thanks Page Styles */
.thanks-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-page) 0%, #e8dfd1 100%);
    padding: 40px 0;
}

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

.thanks-hero {
    margin-bottom: 60px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.thanks-icon i {
    width: 40px;
    height: 40px;
}

.thanks-title {
    font-size: 2.2rem;
    margin: 0 0 16px;
    color: var(--text-main);
    line-height: 1.2;
}

.thanks-subtitle {
    font-size: 1.2rem;
    color: var(--text-soft);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.thanks-info {
    margin-bottom: 60px;
    text-align: left;
}

.thanks-info h2 {
    text-align: center;
    font-size: 1.8rem;
    margin: 0 0 40px;
    color: var(--text-main);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.step-card {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.2rem;
    margin: 0 0 12px;
    color: var(--text-main);
}

.step-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.5;
    font-size: 0.98rem;
}

.thanks-cta {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.thanks-cta h2 {
    font-size: 1.6rem;
    margin: 0 0 16px;
    color: var(--text-main);
}

.thanks-cta p {
    font-size: 1.05rem;
    color: var(--text-soft);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.thanks-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.thanks-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    min-height: 56px;
    width: 100%;
}

.thanks-buttons .btn i {
    width: 20px;
    height: 20px;
}

/* Адаптивность */
@media (min-width: 640px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .thanks-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .thanks-buttons .btn {
        width: auto;
        min-width: 180px;
    }
}

@media (min-width: 768px) {
    .thanks-title {
        font-size: 2.5rem;
    }
    
    .thanks-subtitle {
        font-size: 1.3rem;
    }
    
    .step-card {
        padding: 35px 30px;
    }
    
    .thanks-cta {
        padding: 50px 40px;
    }
}

@media (max-width: 639px) {
    .thanks-main {
        padding: 30px 0;
    }
    
    .thanks-title {
        font-size: 1.8rem;
    }
    
    .thanks-subtitle {
        font-size: 1.1rem;
    }
    
    .thanks-info h2 {
        font-size: 1.5rem;
    }
    
    .thanks-cta h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 374px) {
    .thanks-icon {
        width: 64px;
        height: 64px;
    }
    
    .thanks-icon i {
        width: 32px;
        height: 32px;
    }
    
    .thanks-title {
        font-size: 1.6rem;
    }
    
    .step-card {
        padding: 25px 20px;
    }
    
    .thanks-cta {
        padding: 30px 24px;
    }
}
.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

.grid-3 .feature-card {
    background: var(--bg-surface);
    padding: 30px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.grid-3 .feature-card:hover {
    transform: translateY(-5px);
}

.grid-3 .feature-card__icon {
    width: 60px;
    height: 60px;
    background: var(--accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.grid-3 .feature-card__icon i {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.grid-3 .feature-card h3 {
    font-size: 1.2rem;
    margin: 0 0 12px;
    color: var(--text-main);
}

.grid-3 .feature-card p {
    font-size: 0.95rem;
    color: var(--text-soft);
    margin: 0;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .grid-3 .feature-card {
        padding: 35px 28px;
    }
}

@media (max-width: 767px) {
    .grid-3 .feature-card {
        padding: 25px 20px;
    }
    
    .grid-3 .feature-card__icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }
    
    .grid-3 .feature-card h3 {
        font-size: 1.1rem;
    }
}
