* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: #F0EBE8;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1A1C1E;
    background: #FFFAF8;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    overflow-x: hidden;
}

/* Обеспечиваем адаптивность изображений */
img {
    max-width: 100%;
    height: auto;
}

/* Header */
.header {
    position: relative;
    width: 100%;
    background: transparent;
    padding: 2rem 0 1.5rem;
}

.nav {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 64px;
    height: 64px;
    border-radius: 8px;
}

.logo {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FF7A5A;
    letter-spacing: -0.01em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #1A1C1E;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #FF7A5A;
}

.btn-primary {
    background: #FF7A5A;
    color: #FFFFFF;
    border: none;
    padding: 0.9rem 1.8rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 122, 90, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: #E66A4A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 122, 90, 0.4);
}

/* Hero Section */
.hero {
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    padding: 0 0 3rem;
    background: #FFFAF8;
    color: #1A1C1E;
    border-radius: 0 0 50px 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: flex-start;
    width: 100%;
    flex: 1;
    padding: 2rem 2.5rem 0;
    position: relative;
    z-index: 1;
}

.hero-header {
    text-align: left;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.hero-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.6rem;
    color: #1A1C1E;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: #A7C947;
    font-weight: 600;
    opacity: 1;
}

/* Search Section */
.search-section {
    margin-bottom: 2rem;
    max-width: 480px;
}

/* Example Quotes */
.example-quotes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.quote-section {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.quote-section-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #8B6B47;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quote-card {
    background: #F8F3F1;
    border-radius: 10px;
    padding: 1rem 1.2rem;
    position: relative;
    border-left: 3px solid #FF7A5A;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 0.2rem;
}

.quote-card.seeking {
    background: #E8F4FD;
    border-left-color: #4ECDC4;
}

.quote-card.about {
    background: #F8F3F1;
    border-left-color: #FF7A5A;
}

.quote-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quote-card.seeking:hover {
    border-left-color: #3BB5B0;
}

.quote-card.about:hover {
    border-left-color: #E66A4A;
}

.quote-card:hover .quote-icon {
    opacity: 1;
    transform: scale(1.1);
}

.quote-icon {
    position: absolute;
    top: -3px;
    left: 8px;
    font-size: 1.8rem;
    color: #FF7A5A;
    font-weight: bold;
    line-height: 1;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.quote-card.seeking .quote-icon {
    color: #4ECDC4;
}

.quote-card.about .quote-icon {
    color: #FF7A5A;
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-shrink: 0;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 122, 90, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 122, 90, 0.1);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: rgba(255, 122, 90, 0.08);
    transform: translateY(-1px);
}

.feature-highlight .feature-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1A1C1E;
    margin: 0 0 0.3rem 0;
}

.feature-content p {
    font-size: 0.8rem;
    color: #6F5B52;
    margin: 0;
    line-height: 1.3;
}

.quote-text {
    font-size: 0.85rem;
    color: #1A1C1E;
    line-height: 1.4;
    margin: 0;
    padding-top: 0.3rem;
    font-style: italic;
    font-weight: 400;
}

.search-input-container {
    position: relative;
    background: #F8F3F1;
    border-radius: 12px;
    border: 2px solid #9D8578;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.search-input-container:focus-within {
    border-color: #FF7A5A;
    box-shadow: 0 0 0 3px rgba(255, 122, 90, 0.1);
}

.search-textarea {
    width: 100%;
    min-height: 85px;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    color: #1A1C1E;
    font-family: 'Inter', sans-serif;
    resize: none;
    outline: none;
    padding: 1rem;
    line-height: 1.4;
}

.search-textarea::placeholder {
    color: #9D8578;
    opacity: 0.8;
}

.char-counter {
    position: absolute;
    bottom: 0.5rem;
    right: 0.8rem;
    font-size: 0.75rem;
    color: #9D8578;
    font-weight: 500;
}

.char-count {
    color: #6F5B52;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-box {
    display: flex;
    background: #F8F3F1;
    border-radius: 12px;
    padding: 0.4rem;
    max-width: 320px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid #9D8578;
}

.search-input {
    flex: 1;
    border: none;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    color: #1A1C1E;
    outline: none;
    background: transparent;
}

.search-btn {
    background: #FF7A5A;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 122, 90, 0.3);
    color: #FFFFFF;
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 122, 90, 0.4);
    background: #E66A4A;
}

.stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6F5B52;
    font-weight: 500;
}

.rating {
    color: #A7C947;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    width: 100%;
}

/* Profile Card Styles */
.profile-card {
    width: 100%;
    max-width: 350px;
    height: 540px;
    background: #FFFAF8;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid #9D8578;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.profile-photo-section {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        transparent 100%
    );
    pointer-events: none;
}

.compatibility-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #4ECDC4;
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(78, 205, 196, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.profile-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 16px 12px;
    color: white;
    text-align: left;
}

.profile-name {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 4px 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.profile-location {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    margin-left: -3px;
}

.location-icon {
    color: #A7C947;
    margin-right: 4px;
    font-size: 16px;
}

.profile-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    height: auto;
    min-height: 140px;
}

.profile-about {
    color: #1A1C1E;
    font-size: 13px;
    font-style: italic;
    letter-spacing: 0.05px;
    line-height: 1.4;
    margin: 0 0 16px 0;
    font-weight: normal;
    overflow: visible;
}

.profile-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px;
}

.action-btn {
    border: none;
    border-radius: 50%;
    cursor: default;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.action-btn:active::before {
    width: 300px;
    height: 300px;
}

.skip-btn {
    width: 56px;
    height: 56px;
    color: #4ECDC4;
    border: 2px solid #4ECDC4;
    font-size: 28px;
}

.favorite-btn {
    width: 44px;
    height: 44px;
    color: #4ECDC4;
    border: 2px solid #4ECDC4;
    font-size: 22px;
}

.like-btn {
    width: 56px;
    height: 56px;
    background: #FF7A5A;
    color: #FFFFFF;
    border: 2px solid #FF7A5A;
    font-size: 26px;
}

.like-btn::before {
    background: rgba(255, 255, 255, 0.3);
}

/* Features Section */
.features {
    padding: 4rem 2.5rem;
    background: #F8F3F1;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #FF7A5A;
    border-radius: 2px;
}

.features-grid {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    background: #FFFAF8;
    color: #1A1C1E;
    transform: translateY(0);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #9D8578;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.feature-card:nth-child(1) .feature-icon {
    color: #FF7A5A;
}

.feature-card:nth-child(2) .feature-icon {
    color: #4ECDC4;
}

.feature-card:nth-child(3) .feature-icon {
    color: #A7C947;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #1A1C1E;
}

/* How it Works Section */
.how-it-works {
    padding: 4rem 2.5rem;
    background: #FFFAF8;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #FF7A5A;
    border-radius: 2px;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1A1C1E;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.steps-grid {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.step-card {
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #9D8578;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.step-1 {
    background: #FFDAD4;
}

.step-2 {
    background: #B8F2EE;
}

.step-3 {
    background: #E5F4BD;
}

.step-4 {
    background: #FFDAD4;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1A1C1E;
    font-weight: 600;
}

/* Beta Testing Section */
.beta-section {
    padding: 4rem 2.5rem;
    background: #F8F3F1;
    text-align: center;
    position: relative;
}

.beta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #FF7A5A;
    border-radius: 2px;
}

.beta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1A1C1E;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.beta-subtitle {
    font-size: 1.1rem;
    color: #6F5B52;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.beta-grid {
    max-width: 800px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.beta-card {
    background: #FFFAF8;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #9D8578;
    transition: all 0.3s ease;
}

.beta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.beta-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FF7A5A;
}

.beta-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #1A1C1E;
}

.beta-cta-btn {
    background: #FF7A5A;
    color: #FFFFFF;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 122, 90, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.beta-cta-btn:hover {
    background: #E66A4A;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 122, 90, 0.4);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 2.5rem;
    background: #FFFAF8;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #FF7A5A;
    border-radius: 2px;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1A1C1E;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #F8F3F1;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #9D8578;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: #1A1C1E;
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: #6F5B52;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #2F3033;
    color: #F1F0F4;
    padding: 3rem 2.5rem;
    border-radius: 40px 40px 0 0;
    margin-top: 3rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-content {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #F1F0F4;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: #FF9D86;
}

.footer-social {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
}

.footer-cta {
    background: #FF7A5A;
    color: #FFFFFF;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 122, 90, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.footer-cta:hover {
    background: #E66A4A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 122, 90, 0.4);
}

.telegram-icon {
    width: 28px;
    height: 28px;
    display: inline-block;
    vertical-align: middle;
    background: white;
    border-radius: 50%;
    padding: 4px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Mobile CTA Button */
.mobile-cta {
    display: none;
    text-align: center;
    margin-top: 2rem;
    padding: 0 1.5rem;
}

.mobile-cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
}

/* Улучшенные медиа-запросы */
@media (max-width: 1024px) {
    .nav {
        padding: 0 2rem;
    }
    
    .hero-content {
        gap: 2.5rem;
        padding: 2rem 2rem 0;
    }
    
    .hero-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1.5rem 0 1rem;
    }
    
    .nav {
        padding: 0 1.5rem;
        justify-content: center;
    }
    
    .nav .btn-primary {
        display: none;
    }
    
    .mobile-cta {
        display: block;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .btn-primary {
        padding: 0.8rem 1.4rem;
        font-size: 0.9rem;
        gap: 8px;
        min-height: 44px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        align-items: center;
        padding: 1.5rem 1.5rem 0;
        max-width: 100%;
    }
    
    .hero-header {
        text-align: center;
        margin-bottom: 1rem;
    }
        
    .hero-header h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-text {
        padding-top: 0;
        align-items: center;
        height: auto;
        min-height: auto;
        justify-content: flex-start;
    }
    
    .hero-features {
        margin-top: 1rem;
    }
    
    .search-section {
        max-width: 100%;
    }
    
    .search-textarea {
        min-height: 75px;
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .hero-image {
        padding-top: 0;
        align-items: center;
        justify-content: center;
    }
    
    .example-quotes {
        margin-top: 1rem;
    }
    
    .quote-card {
        padding: 1rem;
    }
    
    .quote-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .features {
        padding: 3rem 1.5rem;
    }
    
    .how-it-works {
        padding: 3rem 1.5rem;
    }
    
    .beta-section {
        padding: 3rem 1.5rem;
    }
    
    .faq-section {
        padding: 3rem 1.5rem;
    }
    
    .footer {
        padding: 2.5rem 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .profile-card {
        width: 100%;
        max-width: 300px;
        height: auto;
        min-height: 460px;
        margin: 0 auto;
    }
    
    .profile-name {
        font-size: 18px;
    }
    
    .profile-content {
        height: auto;
        min-height: 140px;
        padding: 16px 14px;
    }
    
    .profile-about {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        overflow: visible;
        display: -webkit-box;
        -webkit-line-clamp: none;
        -webkit-box-orient: vertical;
    }
    
    .action-btn {
        font-size: 16px;
        min-width: 44px;
        min-height: 44px;
    }
    
    .skip-btn, .like-btn {
        width: 50px;
        height: 50px;
    }
    
    .favorite-btn {
        width: 44px;
        height: 44px;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .hero-header h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 1rem 1rem 0;
    }
    
    .mobile-cta {
        padding: 0 1rem;
        margin-top: 1.5rem;
    }
    
    .features,
    .how-it-works,
    .beta-section,
    .faq-section,
    .footer {
        padding: 2.5rem 1rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .beta-grid {
        grid-template-columns: 1fr;
    }
    
    .beta-form {
        flex-direction: column;
    }
    
    .beta-email {
        min-width: auto;
    }
    
    .quote-text {
        font-size: 0.85rem;
    }
    
    .btn-primary {
        padding: 0.9rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .footer-links {
        gap: 0.8rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .hero-header h1 {
        font-size: 1.6rem;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .profile-card {
        max-width: 280px;
        min-height: 480px;
    }
    
    .profile-content {
        min-height: 160px;
        padding: 16px 12px;
    }
    
    .profile-about {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .profile-name {
        font-size: 16px;
    }
    
    .modal-content {
        width: 98%;
        margin: 5% auto;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-text {
    animation: fadeInLeft 0.8s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    width: 100%;
    height: auto;
    min-height: 540px;
}

.hero-image {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

/* .profile-card {
    animation: float 6s ease-in-out infinite;
} */

.feature-card,
.step-card {
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.4s;
}

.step-card:nth-child(2) {
    animation-delay: 0.2s;
}

.step-card:nth-child(3) {
    animation-delay: 0.4s;
}

.step-card:nth-child(4) {
    animation-delay: 0.6s;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: #FFFAF8;
    margin: 5% auto;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid #9D8578;
}

.modal-header {
    padding: 20px 24px 16px;
    border-bottom: 1px solid #9D8578;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F8F3F1;
    border-radius: 16px 16px 0 0;
}

.modal-header h3 {
    margin: 0;
    color: #1A1C1E;
    font-size: 20px;
    font-weight: 600;
}

.modal-close {
    color: #6F5B52;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #FF7A5A;
}

.modal-body {
    padding: 24px;
    color: #1A1C1E;
    line-height: 1.6;
}

.modal-body h4 {
    color: #1A1C1E;
    margin: 20px 0 8px 0;
    font-weight: 600;
    font-size: 16px;
}

.modal-body p {
    margin: 12px 0;
}

.modal-body ul {
    margin: 8px 0 12px 20px;
    padding: 0;
}

.modal-body li {
    margin: 4px 0;
}

.modal-body a {
    color: #FF7A5A;
    text-decoration: none;
    font-weight: 500;
}

.modal-body a:hover {
    text-decoration: underline;
}

/* Form Styles */
.feedback-form {
    margin-top: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #1A1C1E;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #9D8578;
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    background: #F8F3F1;
    color: #1A1C1E;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF7A5A;
    box-shadow: 0 0 0 2px rgba(255, 122, 90, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    background: #FF7A5A;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 12px rgba(255, 122, 90, 0.3);
    text-transform: uppercase;
}

.btn-submit:hover {
    background: #E66A4A;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 122, 90, 0.4);
}

.btn-submit:disabled {
    background: #9D8578;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 8px rgba(157, 133, 120, 0.3);
}

.btn-submit:disabled:hover {
    background: #9D8578;
    transform: none;
    box-shadow: 0 2px 8px rgba(157, 133, 120, 0.3);
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 16px 20px 12px;
    }
    
    .modal-body {
        padding: 20px;
        font-size: 0.9rem;
    }
    
    .modal-header h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 2% auto;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 12px 16px 8px;
    }
    
    .modal-body {
        padding: 16px;
        font-size: 0.85rem;
    }
    
    .modal-header h3 {
        font-size: 16px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Предотвращает зум на iOS */
    }
} 