/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #007AFF, #5856D6);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #007AFF;
    border: 2px solid #007AFF;
}

.btn-secondary:hover {
    background: #007AFF;
    color: white;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #007AFF;
}

.nav-logo i {
    font-size: 2rem;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #007AFF;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.highlight {
    color: #007AFF;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, #007AFF, #5856D6);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 122, 255, 0.3);
}

.app-screen {
    background: white;
    border-radius: 20px;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #007AFF;
    margin-bottom: 2rem;
}

.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.delivery-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f9ff;
    border-radius: 10px;
    color: #333;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: #f8f9ff;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 3rem;
    color: #007AFF;
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature p {
    color: #666;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9ff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007AFF, #5856D6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Company Section */
.company {
    padding: 80px 0;
    background: white;
}

.company-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.company-info h3 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.company-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.company-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9ff;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007AFF, #5856D6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stat-content h4 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.stat-content p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.company-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-visual {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.1);
    border: 2px solid rgba(0, 122, 255, 0.1);
}

.company-visual i {
    font-size: 4rem;
    color: #007AFF;
    margin-bottom: 1rem;
}

.company-visual h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.company-visual p {
    color: #666;
    margin-bottom: 2rem;
}

.company-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.company-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    font-weight: 500;
}

.company-features i {
    font-size: 1rem;
    color: #28a745;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9ff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: #007AFF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-item p {
    color: #666;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #007AFF;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
}

.delvo-text {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    /* color: #007AFF; */
    color: #5CABC9;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #007AFF;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #007AFF;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007AFF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        position: relative;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .company-container,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .app-mockup {
        width: 250px;
        height: 500px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.hero-image,
.feature,
.service-card {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 80px;
}

/* Lottie анимация доставки */
.lottie-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 0rem; */
}

/* .delivery-lottie {
    width: 300px;
    height: 300px;
    max-width: 100%;
    max-height: 100%;
} */

.delivery-lottie {
    width: 400px;
    height: 200px;
    max-width: 100%;
    max-height: 100%;
}

/* iPhone Frame */
.iphone-frame {
    position: relative;
    width: 188px;
    /* height: 812px; */
    height: 406px;
    background: #1a1a1a;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 
        0 0 0 2px #333,
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px #000;
    margin: 2rem auto;
}

.iphone-notch {
    position: absolute;
    /* top: 0; */
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    /* height: 35px; */
    height: 17px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dynamic-island {
    width: 125px;
    height: 25px;
    background: #000;
    border-radius: 15px;
    position: relative;
}

.dynamic-island::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 42px;
    overflow: hidden;
    position: relative;
}

.screen-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    /* padding: 60px 20px 40px 20px; */
    box-sizing: border-box;
}

.placeholder-content {
    text-align: center;
    color: white;
}

.placeholder-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.placeholder-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.placeholder-content p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.4;
}

.iphone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 134px;
    height: 5px;
    background: #333;
    border-radius: 3px;
}

/* Responsive adjustments for iPhone */
@media (max-width: 768px) {

    .hero-image {
        flex-direction: column;  /* один контейнер под другим */
        align-items: center;     /* выравнивание по центру */
      }

    .iphone-frame {
        /* width: 320px;
        height: 700px;
        border-radius: 40px; */
        width: 188px;
        height: 406px;
        border-radius: 40px;
    }
    
    .iphone-notch {
        width: 140px;
        height: 30px;
    }
    
    .dynamic-island {
        width: 110px;
        height: 22px;
    }
    
    .screen-content {
        /* padding: 50px 15px 35px 15px; */
    }
}

/* Landing Page Styles */
.landing-section {
    padding: 120px 0 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin-top: 80px; /* Добавляем отступ для фиксированного header */
}

.landing-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    direction: rtl;
}

/* Benefits list styles */
.benefits-list {
    margin: 2rem 0;
    text-align: right;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0;
    padding: 0.75rem;
    background: #f8f9ff;
    border-radius: 10px;
    border: 1px solid #e1e5e9;
    transition: all 0.3s ease;
    
}



.benefit-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.1);
    border-color: #007AFF;
}

.benefit-item i {
    color: #007AFF;
    font-size: 1.2rem;
    min-width: 20px;
}

.benefit-item span {
    font-size: 32px;
    color: #333;
    font-weight: 700;
}

/* Hebrew Form Styles */
.landing-form-container {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    transition: transform 0.3s ease;
    direction: rtl;
    text-align: right;
}

.landing-form-container:hover {
    transform: translateY(-5px);
}

.landing-form {
    max-width: 500px;
    margin: 0 auto;
}

.landing-form .form-group {
    margin-bottom: 2rem;
    text-align: right;
}

.landing-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1rem;
}

.landing-form input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9ff;
    direction: rtl;
}

.landing-form input:focus {
    outline: none;
    border-color: #007AFF;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.landing-form input::placeholder {
    color: #999;
    font-style: italic;
}

/* Phone input specific LTR styles */
.landing-form input[type="tel"],
.landing-form input[name="phone"] {
    direction: ltr;
    text-align: left;
    unicode-bidi: normal;
}

.landing-form .btn {
    margin-top: 1rem;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Privacy Checkbox Styles */
.privacy-checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
    direction: rtl;
}

.privacy-checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: #007AFF;
    flex-shrink: 0;
    margin-top: 2px;
}

.privacy-label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    cursor: pointer;
    margin: 0;
}

.privacy-label a {
    color: #007AFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-label a:hover {
    color: #5856D6;
    text-decoration: underline;
}

/* Areas Grid Styles */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.area-card {
    position: relative;
    background: #f8f9ff;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    direction: rtl;
    overflow: hidden;
}

.area-card:hover {
    transform: translateY(-3px);
    border-color: #007AFF;
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.15);
}

.area-card.selected {
    background: linear-gradient(135deg, #007AFF, #5856D6);
    border-color: #007AFF;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

.area-icon {
    margin-bottom: 0.5rem;
}

.area-icon i {
    font-size: 1.5rem;
    color: #007AFF;
    transition: all 0.3s ease;
}

.area-card.selected .area-icon i {
    color: white;
}

.area-name {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.3s ease;
}

.area-card.selected .area-name {
    color: white;
}

.area-check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: #007AFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.area-card.selected .area-check {
    opacity: 1;
    transform: scale(1);
}

.area-check i {
    color: white;
    font-size: 0.8rem;
}

.areas-info {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
    text-align: right;
}

/* Time Grid Styles */
.time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.time-card {
    position: relative;
    background: #f8f9ff;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    direction: rtl;
    overflow: hidden;
}

.time-card:hover {
    transform: translateY(-3px);
    border-color: #007AFF;
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.15);
}

.time-card.selected {
    background: linear-gradient(135deg, #007AFF, #5856D6);
    border-color: #007AFF;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

.time-icon {
    margin-bottom: 0.5rem;
}

.time-icon i {
    font-size: 1.5rem;
    color: #007AFF;
    transition: all 0.3s ease;
}

.time-card.selected .time-icon i {
    color: white;
}

.time-name {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.3s ease;
}

.time-card.selected .time-name {
    color: white;
}

.time-check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: #007AFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.time-card.selected .time-check {
    opacity: 1;
    transform: scale(1);
}

.time-check i {
    color: white;
    font-size: 0.8rem;
}

/* Days Grid Styles */
.days-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.day-card {
    position: relative;
    background: #f8f9ff;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    direction: rtl;
    overflow: hidden;
}

.day-card:hover {
    transform: translateY(-3px);
    border-color: #007AFF;
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.15);
}

.day-card.selected {
    background: linear-gradient(135deg, #007AFF, #5856D6);
    border-color: #007AFF;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

.day-icon {
    margin-bottom: 0.5rem;
}

.day-icon i {
    font-size: 1.5rem;
    color: #007AFF;
    transition: all 0.3s ease;
}

.day-card.selected .day-icon i {
    color: white;
}

.day-name {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.3s ease;
}

.day-card.selected .day-name {
    color: white;
}

.day-check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: #007AFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.day-card.selected .day-check {
    opacity: 1;
    transform: scale(1);
}

.day-check i {
    color: white;
    font-size: 0.8rem;
}

/* Multi-Select Styles (Legacy) */
.multi-select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9ff;
    direction: rtl;
    min-height: 120px;
    font-family: inherit;
}

.multi-select:focus {
    outline: none;
    border-color: #007AFF;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.multi-select option {
    padding: 8px 12px;
    background: white;
    color: #333;
    font-size: 0.95rem;
}

.multi-select option:checked {
    background: #007AFF;
    color: white;
}

.multi-select option:hover {
    background: #e8f2ff;
}

.select-info {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
    text-align: right;
}

/* Legacy Checkbox Styles for backward compatibility */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f8f9ff;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.checkbox-item:hover {
    background: #e8f2ff;
    transform: translateY(-2px);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: #007AFF;
}

.checkbox-item label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.checkbox-item input[type="checkbox"]:checked + label {
    color: #007AFF;
    font-weight: 600;
}

/* Legacy placeholder styles for backward compatibility */
.landing-placeholder {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    transition: transform 0.3s ease;
}

.landing-placeholder:hover {
    transform: translateY(-5px);
}

.landing-placeholder i {
    font-size: 4rem;
    color: #007AFF;
    margin-bottom: 2rem;
    display: block;
}

.landing-placeholder h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.landing-placeholder p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive adjustments for landing page */
@media (max-width: 768px) {
    .landing-section {
        padding: 50px 0 60px 0;
        margin-top: 60px; /* Меньший отступ для мобильных */
    }
    
    .landing-form-container {
        padding: 40px 20px;
        margin-top: 30px;
    }
    
    .benefits-list {
        margin: 1.5rem 0;
    }
    
    .benefit-item {
        padding: 0.5rem;
        gap: 0.75rem;
    }
    
    .benefit-item span {
        font-size: 1rem;
        /* font-weight: 800; */
    }
    
    .landing-form {
        max-width: 100%;
    }
    
    .landing-form input {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .landing-form .btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .area-card {
        padding: 0.75rem;
    }
    
    .area-name {
        font-size: 0.9rem;
    }
    
    .time-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .time-card {
        padding: 0.75rem;
    }
    
    .time-name {
        font-size: 0.9rem;
    }
    
    .days-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .day-card {
        padding: 0.75rem;
    }
    
    .day-name {
        font-size: 0.9rem;
    }
    
    .multi-select {
        padding: 12px 15px;
        font-size: 0.95rem;
        min-height: 100px;
    }
    
    .select-info {
        font-size: 0.8rem;
    }
    
    .checkbox-group {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.75rem;
    }
    
    .checkbox-item {
        padding: 0.5rem;
    }
    
    .checkbox-item label {
        font-size: 0.9rem;
    }
    
    .privacy-checkbox-container {
        gap: 0.5rem;
        margin-top: 0.75rem;
    }
    
    .privacy-label {
        font-size: 0.85rem;
    }
    
    .privacy-checkbox-container input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }
    
    .landing-placeholder {
        padding: 40px 20px;
        margin-top: 30px;
    }
    
    .landing-placeholder i {
        font-size: 3rem;
    }
    
    .landing-placeholder h2 {
        font-size: 1.5rem;
    }
    
    .landing-placeholder p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .landing-form-container {
        padding: 30px 15px;
    }
    
    .landing-form input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .landing-form label {
        font-size: 0.9rem;
    }
    
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .area-card {
        padding: 0.5rem;
    }
    
    .area-name {
        font-size: 0.85rem;
    }
    
    .area-icon i {
        font-size: 1.2rem;
    }
    
    .time-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .time-card {
        padding: 0.5rem;
    }
    
    .time-name {
        font-size: 0.85rem;
    }
    
    .time-icon i {
        font-size: 1.2rem;
    }
    
    .days-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .day-card {
        padding: 0.5rem;
    }
    
    .day-name {
        font-size: 0.85rem;
    }
    
    .day-icon i {
        font-size: 1.2rem;
    }
    
    .multi-select {
        padding: 10px 12px;
        font-size: 0.9rem;
        min-height: 80px;
    }
    
    .select-info {
        font-size: 0.75rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .checkbox-item {
        padding: 0.75rem;
    }
    
    .checkbox-item label {
        font-size: 0.85rem;
    }
    
    .privacy-checkbox-container {
        gap: 0.4rem;
        margin-top: 0.5rem;
    }
    
    .privacy-label {
        font-size: 0.8rem;
    }
    
    .privacy-checkbox-container input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
}
