/* Reset и базовые стили */
* {
    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;
    overflow-x: hidden;
}

/* Улучшенная загрузка изображений */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Фокус для доступности */
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #22c55e;
    outline-offset: 2px;
}

/* Улучшенные переходы */
* {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Кнопки */
.btn-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.btn-primary i {
    font-size: 16px;
}

.btn-secondary {
    background: white;
    color: #16a34a;
    border: 2px solid #16a34a;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #16a34a;
    color: white;
}

.text-green {
    color: #16a34a;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

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

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.logo-text h1 {
    font-size: 20px;
    font-weight: 700;
    color: #0e151d;
    margin-bottom: 2px;
}

.logo-text p {
    font-size: 12px;
    color: #6b7280;
}

.nav {
    display: flex;
    gap: 8px;
    background: rgba(248, 250, 252, 0.7);
    backdrop-filter: blur(8px);
    padding: 8px;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.nav a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 12px 20px;
    border-radius: 12px;
    background: transparent;
    overflow: hidden;
}

.nav a:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(34, 197, 94, 0.2);
}

.nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav a:hover::before {
    left: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info span {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.mobile-menu-btn {
    display: none;
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid rgba(226, 232, 240, 0.6);
    font-size: 18px;
    color: #64748b;
    cursor: pointer;
    padding: 12px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mobile-menu-btn:hover {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
    border-color: transparent;
}

/* Hero Section */
.hero {
    padding: 120px 0 0;
    background: linear-gradient(135deg, #f8fdfb 0%, #f3fcf6 30%, #ecfbf0 70%, #e5f9ea 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.02) 0%, rgba(22, 163, 74, 0.01) 100%);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #0e151d;
}

.hero-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.contact-number span {
    font-size: 16px;
    color: #374151;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(34, 197, 94, 0.2);
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.25);
}

.feature-text {
    flex: 1;
}

.feature-text h4 {
    font-size: 14px;
    font-weight: 600;
    color: #0e151d;
    margin-bottom: 2px;
    line-height: 1.3;
}

.feature-text p {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.badge-24-7 {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 16px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
    font-size: 14px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transform: scale(1);
    transition: all 0.3s ease;
}

.badge-24-7:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.5);
}

.badge-text {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.badge-subtext {
    display: block;
    font-size: 12px;
    opacity: 0.95;
    margin-top: 2px;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 16px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: scale(1);
    transition: all 0.3s ease;
}

.experience-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.years {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #22c55e;
    line-height: 1;
}

.text {
    display: block;
    font-size: 13px;
    color: #64748b;
    margin-top: 2px;
    font-weight: 500;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #374151;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-header-left {
    margin-bottom: 24px;
}

.section-header-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    text-align: left;
}

.about-intro {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-intro strong {
    color: #22c55e;
    font-weight: 600;
}

.about-description {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 32px;
}

.goal-block {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #bbf7d0;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.goal-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.goal-icon i {
    color: white;
    font-size: 20px;
}

.goal-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #16a34a;
    margin: 0 0 8px 0;
}

.goal-content p {
    font-size: 1rem;
    color: #374151;
    margin: 0;
    line-height: 1.6;
}

.about-image-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 475px;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.image-badge i {
    color: #22c55e;
    font-size: 16px;
}

.image-badge span {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 0;
}

.stat-item {
    text-align: center;
    padding: 32px 24px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
    border-color: #22c55e;
}

.stat-item h4 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-item p {
    font-size: 14px;
    color: #6b7280;
}

.about-advantages {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #22c55e;
}

.advantage-item i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.advantage-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #101721;
    margin-bottom: 8px;
}

.advantage-item p {
    color: #6b7280;
    line-height: 1.5;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.services .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.services .section-header h2 {
    color: #0e151d;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.services .section-header p {
    color: #6b7280;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    color: white;
    font-size: 32px;
}

.service-content h3 {
    color: #0e151d;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-content p {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.6;
}

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

.service-list li {
    color: #374151;
    font-size: 15px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
    line-height: 1.5;
}

.service-list li:last-child {
    margin-bottom: 0;
}

.service-list li::before {
    content: "•";
    color: #22c55e;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23e2e8f0" opacity="0.3"/></svg>') repeat;
    background-size: 50px 50px;
    z-index: 0;
}

.advantages .container {
    position: relative;
    z-index: 1;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.advantage-card {
    background: white;
    padding: 32px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
}

.advantage-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.2));
    color: #22c55e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    transform: scale(1.1);
}

.advantage-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0e151d;
    margin-bottom: 12px;
    line-height: 1.4;
}

.advantage-card p {
    color: #6b7280;
    line-height: 1.5;
    font-size: 0.95rem;
}

.advantages-footer {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.advantages-footer h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #166534;
    margin-bottom: 16px;
}

.advantages-footer p {
    color: #166534;
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #f8fafc;
}

.download-btn-container {
    text-align: center;
    margin-bottom: 60px;
}

.btn-download {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.btn-download i {
    font-size: 18px;
}

.product-categories-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
    border-color: #4CAF50;
}

.category-image {
    height: 160px;
    overflow: hidden;
    position: relative;
}

.category-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 1;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: brightness(0.8) contrast(1.2);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
    filter: brightness(0.9) contrast(1.3);
}

.category-content {
    padding: 24px;
    background: white;
}

.category-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0e151d;
    margin-bottom: 16px;
    text-align: center;
    border-bottom: 3px solid #4CAF50;
    padding-bottom: 12px;
}

.category-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-content li {
    padding: 8px 0;
    color: #4b5563;
    font-weight: 500;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.category-content li:before {
    content: '•';
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

.category-content li:last-child {
    border-bottom: none;
}

.category-content li:hover {
    color: #0e151d;
    background: #f9fafb;
    padding-left: 24px;
    transition: all 0.3s ease;
}

.category-content li::before {
    content: '•';
    color: #22c55e;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8fafc;
}

.contact .section-header h2 {
    color: #0e151d;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.contact .section-header p {
    color: #6b7280;
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* Form Section */
.contact-form-section {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: 100%;
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0e151d;
    margin-bottom: 12px;
}

.form-description {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus {
    outline: none;
    border-color: #22c55e;
    background: white;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    padding: 18px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.privacy-notice {
    font-size: 12px;
    color: #9ca3af;
    text-align: center;
    line-height: 1.5;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0e151d;
    margin-bottom: 20px;
}

.contact-items-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #f3f4f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0e151d;
    margin-bottom: 4px;
}

.contact-details a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.contact-details a:hover {
    color: #1f2937;
}

.contact-details span {
    color: #6b7280;
    font-size: 14px;
    font-weight: 400;
}

/* Benefits Section */
.benefits-section {
    background: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    margin-top: 32px;
}

.benefits-section h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0e151d;
    margin-bottom: 16px;
}

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

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #374151;
    font-size: 14px;
    line-height: 1.5;
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.benefits-list li i {
    color: #6b7280;
    font-size: 16px;
    flex-shrink: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #22c55e;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #0e151d;
    color: white;
    padding: 48px 0 0;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 0;
}

/* Footer Main Section */
.footer-main .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-main .logo-icon {
    width: 40px;
    height: 40px;
    background: #22c55e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-main .logo-icon span {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.footer-main .logo-text h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.footer-main .logo-subtitle {
    margin: 0;
    font-size: 14px;
    color: #9ca3af;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid #374151;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #22c55e;
    color: white;
    border-color: #22c55e;
}

/* Footer Sections */
.footer-section h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-list .contact-item {
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    transition: transform 0.2s ease;
}

.footer-contact-list .contact-item:hover {
    transform: translateY(-2px);
}

.footer-contact-list .contact-item a,
.footer-contact-list .contact-item span {
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: block;
}

.footer-contact-list .contact-item a:hover {
    color: #22c55e;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-list li {
    color: #9ca3af;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-list li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list li:hover,
.footer-list li a:hover {
    color: white;
}

/* Footer Separator */
.footer-separator {
    height: 1px;
    background: #374151;
    margin: 32px 0;
}

/* Schedule Section */
.footer-schedule-section {
    margin-bottom: 32px;
}

.footer-schedule-section h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.schedule-item .schedule-title {
    color: white;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 4px;
}

.schedule-item .schedule-text {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
    padding-bottom: 32px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright p {
    color: #9ca3af;
    font-size: 14px;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 32px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease;
}

.close {
    color: #9ca3af;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 16px;
    right: 20px;
}

.close:hover {
    color: #374151;
}

.modal-content h2 {
    margin-bottom: 24px;
    color: #0e151d;
    font-size: 1.5rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .footer-main-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .advantage-card {
        padding: 24px 16px;
    }
    
    .advantages-footer {
        padding: 30px 20px;
    }
    
    .advantages-footer h3 {
        font-size: 1.5rem;
    }
    
    .product-categories-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-item {
        padding: 20px 18px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .advantage-card {
        padding: 28px 20px;
    }
    
    .product-categories-new {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .category-content ul {
        display: block;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(16px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        flex-direction: column;
        padding: 16px;
        gap: 8px;
        border-radius: 20px;
        border: 1px solid rgba(226, 232, 240, 0.8);
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav.mobile-active {
        display: flex;
    }
    
    .nav a {
        padding: 16px 20px;
        border-radius: 12px;
        text-align: center;
        font-size: 15px;
        background: rgba(248, 250, 252, 0.5);
        margin: 0;
        border: 1px solid rgba(226, 232, 240, 0.3);
    }
    
    .nav a:hover {
        background: linear-gradient(135deg, #22c55e, #16a34a);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-actions {
        gap: 12px;
    }
    
    .header-actions .contact-info {
        display: none;
    }
    
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        width: 100%;
    }
    
    .hero-actions .btn-primary {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-item {
        flex-direction: row;
        text-align: left;
        gap: 16px;
        padding: 20px 16px;
    }
    
    .feature-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: start;
    }
    
    .about-image-section {
        order: -1;
    }
    
    .section-header-left h2 {
        font-size: 2rem;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .goal-block {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .goal-icon {
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .advantage-card {
        padding: 24px 16px;
    }
    
    .advantages-footer {
        padding: 24px 16px;
    }
    
    .advantages-footer h3 {
        font-size: 1.3rem;
    }
    
    .product-categories-new {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .category-content {
        padding: 24px 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-form-card {
        padding: 24px;
    }
    
    .contact-info-card {
        padding: 20px;
    }
    
    .contact .section-header h2 {
        font-size: 2rem;
    }
    
    .contact .section-header p {
        font-size: 1rem;
    }
    
    .contact-form-card h3 {
        font-size: 1.5rem;
    }
    
    .contact-info-card h3 {
        font-size: 1.125rem;
        margin-bottom: 16px;
    }
    
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 24px;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn-primary {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .hero-image img {
        height: 300px;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .contact .section-header h2 {
        font-size: 1.75rem;
    }
    
    .contact-form-card {
        padding: 20px;
    }
    
    .contact-info-card {
        padding: 16px;
    }
    
    .contact-form-card h3 {
        font-size: 1.25rem;
    }
    
    .contact-info-card h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .contact-item {
        gap: 12px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .contact-items-list {
        gap: 12px;
    }
    
    .benefits-section {
        padding: 16px;
    }
}
