/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    padding: 120px 0;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    color: white;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--primary-green);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 48px;
    max-width: 600px;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-text h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.benefit-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background: var(--primary-green);
    color: white;
}

.hero-buttons .btn-primary:hover {
    background: var(--primary-green-light);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Services Section - исправленные карточки */
.services {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
}

.service-card.featured {
    border: 2px solid var(--primary-green);
    background: linear-gradient(180deg, white 0%, var(--primary-green-soft) 100%);
    transform: scale(1.02);
}

.service-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-green);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.service-card-content {
    padding: 32px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--surface);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.75rem;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    background: var(--primary-green);
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-short {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features-list {
    flex: 1;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.service-features i {
    color: var(--primary-green);
    font-size: 1rem;
    flex-shrink: 0;
}

.service-footer {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-top: auto;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: gap 0.2s ease;
}

.service-link:hover {
    gap: 12px;
}

/* Digital Law Intro - полноценный блок */
.digital-law-intro {
    padding: 100px 0;
    background: var(--surface);
}

.digital-law-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 1024px) {
    .digital-law-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.digital-law-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0 0 40px 0;
    line-height: 1.7;
}

.digital-law-highlights {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green);
}

.highlight-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-green-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-text h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.highlight-text p {
    font-size: 0.9375rem;
    color: var(--text-tertiary);
    margin: 0;
    line-height: 1.6;
}

.digital-law-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

/* Digital Law Stats - полноценный блок статистики */
.digital-law-stats {
    position: sticky;
    top: 100px;
}

.stats-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
}

.stats-header {
    background: var(--primary);
    color: white;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.stats-header i {
    font-size: 2rem;
    color: var(--primary-green);
}

.stats-header h3 {
    color: white;
    font-size: 1.25rem;
    margin: 0;
}

.stats-grid {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    width: 100%;
}

.stat-value {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.stat-progress {
    width: 100%;
    height: 8px;
    background: var(--border);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    border-radius: var(--radius-full);
    transition: width 1s ease;
}

.stats-footer {
    padding: 20px 30px 30px;
    border-top: 1px solid var(--border);
    background: var(--surface);
}

.stats-footer p {
    font-size: 0.9375rem;
    color: var(--text-tertiary);
    margin: 0;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stats-footer p:before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
    font-size: 1rem;
}

.stats-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--primary-green-soft);
    border-radius: var(--radius-md);
    border: 1px solid var(--primary-green);
}

.stats-note i {
    color: var(--primary-green);
    font-size: 1.25rem;
}

.stats-note span {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Tech Stack */
.tech-stack-section {
    padding: 80px 0;
    background: white;
}

.tech-stack-header {
    text-align: center;
    margin-bottom: 48px;
}

.tech-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto 32px;
}

.tech-item {
    background: var(--surface);
    color: var(--text-secondary);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid var(--border);
}

.tech-item:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.tech-note {
    text-align: center;
    color: var(--text-tertiary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.9375rem;
}

/* Formula */
.formula {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.formula:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.formula:after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.formula-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.formula h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.formula-intro {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 60px;
}

.formula-equation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

@media (max-width: 768px) {
    .formula-equation {
        flex-direction: column;
        gap: 30px;
    }
}

.formula-side {
    flex: 1;
    max-width: 280px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: transform 0.3s ease;
}

.formula-side:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
}

.formula-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.formula-side h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.formula-side p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 20px 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.formula-side .side-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.side-stat {
    text-align: center;
}

.side-stat .stat-number {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.side-stat .stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.formula-operator {
    font-size: 3rem;
    color: var(--primary-green);
    font-weight: 300;
    background: rgba(255, 255, 255, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--primary-green);
}

@media (max-width: 768px) {
    .formula-operator {
        transform: rotate(90deg);
    }
}

.formula-result {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.result-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.formula-result h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 16px;
}

.formula-result p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto 32px;
    max-width: 500px;
    font-size: 1.125rem;
}

.formula-result .result-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.result-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.9375rem;
}

.result-features i {
    color: var(--primary-green);
    font-size: 1rem;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: var(--surface);
}

.faq-question i {
    transition: transform 0.2s ease;
    color: var(--text-tertiary);
}

.faq-question.active i {
    transform: rotate(180deg);
    color: var(--primary-green);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 0 24px 24px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

/* Blog */
.blog {
    padding: 80px 0;
    background: var(--surface);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 48px;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.blog-image {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    backdrop-filter: blur(4px);
    box-shadow: var(--shadow-sm);
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-content h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-green);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: gap 0.2s ease;
}

.blog-link:hover {
    gap: 10px;
}

.blog-cta {
    text-align: center;
}

/* Contacts - креативный редизайн */
.contacts {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.contacts:before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.contacts:after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.contacts-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.contacts-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contacts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .contacts-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Левая колонка - креативная */
.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
}

.contact-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.75rem;
}

.contact-card-header h3 {
    font-size: 1.25rem;
    margin: 0 0 4px 0;
}

.contact-card-header p {
    color: var(--text-tertiary);
    margin: 0;
    font-size: 0.9375rem;
}

.contact-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-value {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.contact-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-action:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    gap: 12px;
}

.contact-action i {
    font-size: 0.875rem;
}

/* QR-код стилизация */
.contact-qr {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 24px;
}

@media (max-width: 480px) {
    .contact-qr {
        flex-direction: column;
        text-align: center;
    }
}

.qr-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.qr-text h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.qr-text p {
    color: var(--text-tertiary);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

/* Правая колонка - форма */
.contact-form-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-form-wrapper h3 {
    font-size: 1.75rem;
    margin-bottom: 32px;
    position: relative;
    display: inline-block;
}

.contact-form-wrapper h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 3px;
}

.contact-form {
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    font-size: 1rem;
    transition: color 0.2s ease;
}

.input-wrapper textarea ~ i {
    top: 24px;
    transform: none;
}

.input-wrapper input,
.input-wrapper textarea,
.input-wrapper select {
    width: 100%;
    padding: 14px 18px 14px 45px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: var(--surface);
    transition: all 0.2s ease;
}

.input-wrapper textarea {
    padding-left: 45px;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus,
.input-wrapper select:focus {
    outline: none;
    border-color: var(--primary-green);
    background: white;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.input-wrapper input:focus + i,
.input-wrapper textarea:focus + i,
.input-wrapper select:focus + i {
    color: var(--primary-green);
}

.contact-form button {
    width: 100%;
    margin-top: 16px;
    background: var(--primary-green);
    color: white;
    padding: 16px;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form button: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;
}

.contact-form button:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.contact-form button:hover:before {
    left: 100%;
}

.contact-form button i {
    margin-left: 8px;
}

.form-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-top: 24px;
}

.form-note a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
}

.form-note a:hover {
    text-decoration: underline;
}

/* Быстрые контакты */
.quick-contacts {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.quick-contact {
    flex: 1;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-contact:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    transform: translateY(-3px);
}

.quick-contact i {
    font-size: 1.5rem;
}

.quick-contact span {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeIn 0.6s ease forwards;
}
