/**
 * Объединенный CSS файл
 * Создан: 2025-12-07 12:11:41
 */

/* ========================================
   ИЗ: inner-pages.css
   ======================================== */

.page-header-section {
    background: linear-gradient(135deg, var(--bs-secondary) 0%, var(--bs-secondary-dark) 50%, #059669 100%);
    padding: var(--bs-space-responsive-xl) 0 var(--bs-space-responsive-lg);
    color: white;
    text-align: center;
}

.page-header-section .bs-container,
.page-header-section .container {
    max-width: var(--bs-container-max-width);
}

.breadcrumbs {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumbs a {
    color: white;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs .separator {
    margin: 0 10px;
    opacity: 0.6;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: var(--bs-font-weight-bold);
    margin: 0;
    color: white;
}

.page-content-section {
    padding: var(--bs-space-responsive-xl) 0;
    background: var(--bs-bg-secondary);
    width: 100%;
    overflow-x: hidden;
}

.page-content-section .bs-container,
.page-content-section .container {
    
}

.content-wrapper {
    background: var(--bs-bg-primary);
    border-radius: var(--bs-radius-lg);
    padding: var(--bs-space-responsive-xl);
    box-shadow: var(--bs-shadow-sm);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.content-wrapper * {
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.content-wrapper h2 {
    font-size: clamp(1.75rem, 4vw, 2rem);
    color: var(--bs-text-primary);
    margin: var(--bs-space-xl) 0 var(--bs-space-md);
}

.content-wrapper h3 {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    color: var(--bs-text-secondary);
    margin: var(--bs-space-lg) 0 var(--bs-space-md);
}

.content-wrapper p {
    font-size: var(--bs-font-size-lg);
    line-height: var(--bs-line-height-relaxed);
    color: var(--bs-text-secondary);
    margin-bottom: var(--bs-space-md);
}

.team-member .member-photo img[alt="Живага Валентина Михайлівна"],
.team-member .member-photo img[alt*="Живага"] {
    transform: rotate(90deg);
    transform-origin: center center;
}

@media (max-width: 768px) {
    .page-header-section {
        padding: var(--bs-space-xl) 0 var(--bs-space-lg);
    }
    
    .page-title {
        font-size: clamp(1.75rem, 4vw, 2rem);
    }
    
    .content-wrapper {
        padding: var(--bs-space-lg) var(--bs-space-md);
    }
}

/* ========================================
   ИЗ: contacts-page.css
   ======================================== */

.contact-hero {
    text-align: center;
    padding: var(--bs-space-responsive-xl) 0;
    margin-bottom: var(--bs-space-responsive-xl);
    background: linear-gradient(135deg, var(--bs-gray-50) 0%, var(--bs-gray-100) 100%);
    border-radius: var(--bs-radius-lg);
    max-width: 100%;
    box-sizing: border-box;
}

.contact-hero-image {
    text-align: center;
    margin: var(--bs-space-xl) 0;
    max-width: 100%;
}

.contact-hero-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--bs-radius-lg);
    box-shadow: var(--bs-shadow-md);
}

.contact-hero h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: var(--bs-font-weight-bold);
    color: var(--bs-text-primary);
    margin-bottom: var(--bs-space-md);
    margin-top: var(--bs-space-lg);
}

.contact-hero p {
    font-size: var(--bs-font-size-lg);
    color: var(--bs-text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.contact-cards-section {
    margin-bottom: var(--bs-space-responsive-xl);
    max-width: 100%;
    box-sizing: border-box;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: var(--bs-space-lg);
    max-width: 100%;
    box-sizing: border-box;
}

.contact-card {
    background: var(--bs-bg-primary);
    border: 2px solid var(--bs-gray-200);
    border-radius: var(--bs-radius-lg);
    padding: var(--bs-space-xl);
    box-shadow: var(--bs-shadow-sm);
    transition: all var(--bs-transition-base);
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bs-shadow-lg);
    border-color: var(--bs-primary-200);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%);
    border-radius: var(--bs-radius-full);
    margin: 0 auto var(--bs-space-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: var(--bs-font-weight-bold);
    color: var(--bs-text-primary);
    margin-bottom: var(--bs-space-md);
}

.contact-card p {
    color: var(--bs-text-secondary);
    margin-bottom: var(--bs-space-sm);
}

.contact-card .address {
    font-size: var(--bs-font-size-base);
    line-height: var(--bs-line-height-relaxed);
    margin-bottom: var(--bs-space-md);
}

.office-hours {
    margin-top: var(--bs-space-md);
    padding-top: var(--bs-space-md);
    border-top: 1px solid var(--bs-gray-200);
}

.office-hours h4 {
    font-size: var(--bs-font-size-base);
    font-weight: var(--bs-font-weight-semibold);
    color: var(--bs-text-primary);
    margin-bottom: var(--bs-space-sm);
}

.phone-group {
    margin-bottom: var(--bs-space-md);
}

.phone-group h4 {
    font-size: var(--bs-font-size-base);
    font-weight: var(--bs-font-weight-semibold);
    color: var(--bs-text-primary);
    margin-bottom: var(--bs-space-xs);
}

.person-name {
    font-weight: var(--bs-font-weight-medium);
    color: var(--bs-text-secondary);
    margin-bottom: var(--bs-space-xs);
}

.phone-numbers a {
    display: block;
    color: var(--bs-primary);
    text-decoration: none;
    margin-bottom: var(--bs-space-xs);
    transition: color var(--bs-transition-base);
}

.phone-numbers a:hover {
    color: var(--bs-primary-dark);
    text-decoration: underline;
}

.emails a {
    display: block;
    color: var(--bs-primary);
    text-decoration: none;
    margin-bottom: var(--bs-space-sm);
    transition: color var(--bs-transition-base);
}

.emails a:hover {
    color: var(--bs-primary-dark);
    text-decoration: underline;
}

.contact-form-section {
    margin: var(--bs-space-responsive-xl) 0;
    padding: var(--bs-space-responsive-xl);
    background: var(--bs-bg-primary);
    border-radius: var(--bs-radius-lg);
    box-shadow: var(--bs-shadow-sm);
    max-width: 100%;
    box-sizing: border-box;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-content {
    text-align: center;
    margin-bottom: var(--bs-space-xl);
}

.form-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: var(--bs-font-weight-bold);
    color: var(--bs-text-primary);
    margin-bottom: var(--bs-space-md);
}

.form-content p {
    color: var(--bs-text-secondary);
    font-size: var(--bs-font-size-lg);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--bs-space-lg);
    margin-top: var(--bs-space-xl);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: var(--bs-font-size-base);
    font-weight: var(--bs-font-weight-medium);
    color: var(--bs-text-primary);
    margin-bottom: var(--bs-space-sm);
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--bs-space-sm) var(--bs-space-md);
    font-size: var(--bs-font-size-base);
    color: var(--bs-text-primary);
    background: var(--bs-bg-primary);
    border: 2px solid var(--bs-gray-200);
    border-radius: var(--bs-radius-md);
    transition: all var(--bs-transition-base);
    box-sizing: border-box;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px var(--bs-primary-100);
}

.form-group input[required],
.form-group textarea[required] {
    border-left: 3px solid var(--bs-primary-200);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: var(--bs-primary);
}

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

.form-features {
    margin-top: var(--bs-space-xl);
    padding-top: var(--bs-space-xl);
    border-top: 2px solid var(--bs-gray-200);
}

.form-features h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: var(--bs-font-weight-bold);
    color: var(--bs-text-primary);
    margin-bottom: var(--bs-space-lg);
    text-align: center;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: var(--bs-space-md);
}

.feature-item {
    padding: var(--bs-space-md);
    background: var(--bs-gray-50);
    border-radius: var(--bs-radius-md);
    text-align: center;
    transition: all var(--bs-transition-base);
}

.feature-item:hover {
    background: var(--bs-primary-50);
    transform: translateY(-2px);
}

.feature-item span {
    font-size: var(--bs-font-size-base);
    color: var(--bs-text-secondary);
    font-weight: var(--bs-font-weight-medium);
}

.map-section {
    margin: var(--bs-space-responsive-xl) 0;
    max-width: 100%;
    box-sizing: border-box;
}

.map-section h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: var(--bs-font-weight-bold);
    color: var(--bs-text-primary);
    text-align: center;
    margin-bottom: var(--bs-space-xl);
}

.map-container {
    max-width: 100%;
    box-sizing: border-box;
}

.contact-hero-image {
    text-align: center !important;
    margin: var(--bs-space-xl) 0 !important;
}

.contact-hero-image img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: var(--bs-radius-lg) !important;
}

#contacts-map {
    width: 100% !important;
    height: 600px !important;
    border-radius: var(--bs-radius-lg) !important;
    overflow: hidden !important;
    box-shadow: var(--bs-shadow-lg) !important;
    border: 2px solid var(--bs-primary-200) !important;
}

.contact-hero,
.contact-cards-section,
.contact-form-section,
.map-section,
.offices-map-section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: var(--bs-space-responsive-xl);
}

.contact-hero {
    padding: var(--bs-space-responsive-xl) var(--bs-container-padding);
}

.contact-cards-section {
    padding: 0 var(--bs-container-padding);
}

.contact-form-section {
    padding: var(--bs-space-responsive-xl) var(--bs-container-padding);
    background: var(--bs-bg-primary);
    border-radius: var(--bs-radius-lg);
}

.contact-form-section .form-container {
    max-width: 100%;
}

.contact-form-section form {
    display: block;
    width: 100%;
}

.form-features {
    margin-top: var(--bs-space-xl);
    padding-top: var(--bs-space-xl);
    border-top: 2px solid var(--bs-gray-200);
}

.map-section {
    margin: var(--bs-space-responsive-xl) 0;
    padding: 0 var(--bs-container-padding);
}

.map-container {
    width: 100%;
    max-width: 100%;
}

.map-container #contacts-map {
    width: 100%;
    height: 400px;
    border-radius: var(--bs-radius-lg);
    overflow: hidden;
    box-shadow: var(--bs-shadow-lg);
    border: 2px solid var(--bs-primary-200);
}

.offices-map-section {
    padding: var(--bs-space-responsive-xl) var(--bs-container-padding);
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
}

.offices-map-container #contacts-map {
    width: 100%;
    height: 600px;
    border-radius: var(--bs-radius-lg);
    overflow: hidden;
    box-shadow: var(--bs-shadow-lg);
    border: 2px solid var(--bs-primary-200);
}

.offices-map-section {
    padding: clamp(60px, 8vw, 100px) 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
    position: relative;
    overflow: hidden;
}

.offices-map-section h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: var(--bs-font-weight-bold);
    color: var(--bs-text-primary);
    text-align: center;
    margin-bottom: clamp(50px, 6vw, 80px);
    letter-spacing: -0.02em;
}

.offices-map-container {
    max-width: var(--bs-container-max-width);
    margin: 0 auto;
    padding: 0 var(--bs-container-padding);
    margin-bottom: var(--bs-space-xl);
    box-sizing: border-box;
}

#contacts-map {
    width: 100%;
    height: 600px;
    border-radius: var(--bs-radius-lg);
    overflow: hidden;
    box-shadow: var(--bs-shadow-lg);
    border: 2px solid var(--bs-primary-200);
}

.custom-marker {
    background: transparent !important;
    border: none !important;
}

.offices-legend {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(24px, 3vw, 32px);
    max-width: 800px;
    margin: 0 auto 60px;
    padding: clamp(24px, 3vw, 32px);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.legend-marker {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.marker-representative {
    background-color: #3b82f6;
}

.marker-distribution {
    background-color: #22c55e;
}

.marker-office {
    background-color: #ef4444;
}

.marker-warehouse {
    background-color: #f59e0b;
}

.legend-text {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    font-weight: var(--bs-font-weight-semibold);
    color: var(--bs-text-primary);
}

.offices-list {
    max-width: var(--bs-container-max-width);
    margin: 0 auto;
    padding: 0 var(--bs-container-padding);
    box-sizing: border-box;
}

.offices-category {
    margin-bottom: clamp(60px, 8vw, 80px);
}

.offices-category h3 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--bs-text-primary);
    margin-bottom: clamp(32px, 4vw, 48px);
    padding-bottom: var(--bs-space-md);
    border-bottom: 3px solid var(--bs-primary);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 12px;
}

.offices-category h3::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--bs-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: clamp(24px, 3vw, 32px);
}

.office-item {
    background: white;
    border-radius: 16px;
    padding: clamp(28px, 3vw, 36px);
    border: 2px solid rgba(132, 204, 22, 0.15);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.office-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #84CC16 0%, #65A30D 100%);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top;
}

.office-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.08) 0%, transparent 70%);
    border-radius: 0 0 0 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.office-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px -4px rgba(132, 204, 22, 0.2), 0 8px 16px -4px rgba(0, 0, 0, 0.1);
    border-color: rgba(132, 204, 22, 0.4);
}

.office-item:hover::before {
    transform: scaleY(1);
}

.office-item:hover::after {
    opacity: 1;
}

.office-item-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    width: 100%;
}

.office-item-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.15) 0%, rgba(101, 163, 13, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #84CC16;
}

.office-item-icon svg {
    width: 24px;
    height: 24px;
}

.office-item-title-wrapper {
    flex: 1;
    min-width: 0;
    overflow: visible;
}

.office-item h4 {
    font-size: clamp(1.125rem, 2.2vw, 1.375rem);
    font-weight: 800;
    color: #111827;
    margin: 0 0 8px 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
}

.office-item .office-region {
    font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
    line-height: 1.5;
    color: #6B7280;
    margin: 0;
    font-weight: 500;
}

.office-item .coordinates {
    font-size: clamp(0.8125rem, 1.4vw, 0.9375rem);
    color: #9CA3AF;
    font-family: 'Courier New', 'Monaco', monospace;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(132, 204, 22, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
}

.office-item .coordinates::before {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2384CC16' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    #contacts-map {
        height: 500px;
    }
    
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .offices-map-section {
        padding: clamp(40px, 6vw, 60px) 0;
    }
    
    #contacts-map {
        height: 400px;
        border-radius: 16px;
    }
    
    .offices-legend {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .office-item {
        padding: 24px;
    }
}

/* ========================================
   ИЗ: seed-selection-page.css
   ======================================== */

.seed-selection-page .seed-selection-hero {
    text-align: center;
    padding: clamp(40px, 6vw, 60px) 0;
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
    border-radius: 20px;
    margin-bottom: clamp(40px, 6vw, 60px);
}

.seed-selection-page .seed-selection-hero h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--bs-text-primary);
    margin-bottom: 20px;
}

.seed-selection-page .seed-selection-hero p {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--bs-text-secondary);
}

.seed-selection-page .technologies-overview-section,
.seed-selection-page .selection-checklist-section,
.seed-selection-page .selection-recommendations-section {
    margin-bottom: clamp(50px, 8vw, 80px);
}

.seed-selection-page .technologies-overview-section h3,
.seed-selection-page .selection-checklist-section h3,
.seed-selection-page .selection-recommendations-section h3 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--bs-text-primary);
    margin-bottom: clamp(24px, 4vw, 32px);
    padding-bottom: 16px;
    border-bottom: 3px solid var(--bs-primary);
}

.seed-selection-page .tech-comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(24px, 4vw, 32px);
    margin-top: clamp(32px, 5vw, 48px);
}

.seed-selection-page .tech-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
    border-radius: 20px;
    padding: clamp(24px, 4vw, 32px);
    border: 2px solid rgba(132, 204, 22, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.seed-selection-page .tech-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(132, 204, 22, 0.2);
    border-color: rgba(132, 204, 22, 0.3);
}

.seed-selection-page .tech-card h4 {
    font-size: clamp(1.375rem, 2.5vw, 1.625rem);
    font-weight: 700;
    color: var(--bs-text-primary);
    margin-bottom: clamp(20px, 3vw, 24px);
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(132, 204, 22, 0.2);
}

.seed-selection-page .tech-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 3vw, 24px);
    margin-bottom: clamp(20px, 3vw, 24px);
}

.seed-selection-page .pros,
.seed-selection-page .cons {
    padding: clamp(16px, 3vw, 20px);
    border-radius: 12px;
}

.seed-selection-page .pros {
    background: rgba(34, 197, 94, 0.1);
    border-left: 4px solid var(--bs-secondary);
}

.seed-selection-page .cons {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
}

.seed-selection-page .pros h5,
.seed-selection-page .cons h5 {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.seed-selection-page .pros h5 {
    color: var(--bs-secondary-dark);
}

.seed-selection-page .cons h5 {
    color: #dc2626;
}

.seed-selection-page .tech-description {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.7;
    color: var(--bs-text-secondary);
    margin-top: clamp(16px, 3vw, 20px);
    padding-top: clamp(16px, 3vw, 20px);
    border-top: 1px solid rgba(132, 204, 22, 0.1);
}

.seed-selection-page .checklist-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(20px, 3vw, 24px);
    margin-top: clamp(32px, 5vw, 48px);
}

.seed-selection-page .checklist-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
    border-radius: 16px;
    padding: clamp(24px, 4vw, 32px);
    border: 2px solid rgba(132, 204, 22, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.seed-selection-page .checklist-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(132, 204, 22, 0.15);
}

.seed-selection-page .checklist-item h4 {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    color: var(--bs-text-primary);
}

.seed-selection-page .recommendation-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
    border-radius: 20px;
    padding: clamp(28px, 4vw, 36px);
    border: 2px solid rgba(132, 204, 22, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: clamp(24px, 4vw, 32px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.seed-selection-page .recommendation-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(132, 204, 22, 0.2);
    border-color: rgba(132, 204, 22, 0.3);
}

.seed-selection-page .recommendation-card h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--bs-text-primary);
    margin-bottom: clamp(16px, 3vw, 20px);
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(132, 204, 22, 0.2);
}

.seed-selection-page .recommendation-card p {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.7;
    color: var(--bs-text-secondary);
}

@media (max-width: 768px) {
    .seed-selection-page .tech-pros-cons {
        grid-template-columns: 1fr;
    }
    
    .seed-selection-page .tech-comparison-cards {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ИЗ: ABOUT_PAGE_FIXES.css
   ======================================== */

body.page-id-9 .about-hero .hero-title,
body.page-id-9 .page-content .about-hero .hero-title,
body.page-id-9 .content-inner .about-hero .hero-title,
body.page-id-9 .ast-article-single .about-hero .hero-title,
.page-id-9 .about-hero .hero-title,
.page-id-9 .page-content .about-hero .hero-title,
.page-id-9 .content-inner .about-hero .hero-title,
.page-id-9 .ast-article-single .about-hero .hero-title {
    background: none !important;
    background-image: none !important;
    background-size: unset !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
    animation: none !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5) !important;
}

body.page-id-9 .about-hero .hero-subtitle,
body.page-id-9 .page-content .about-hero .hero-subtitle,
body.page-id-9 .content-inner .about-hero .hero-subtitle,
body.page-id-9 .ast-article-single .about-hero .hero-subtitle,
.page-id-9 .about-hero .hero-subtitle {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    background: none !important;
    background-image: none !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
}

body.page-id-9 .about-hero .hero-overlay,
.page-id-9 .about-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%) !important;
    z-index: 1 !important;
    opacity: 1 !important;
}

body.page-id-9 .about-hero,
.page-id-9 .about-hero {
    background: transparent !important;
    background-image: none !important;
}

body.page-id-9 .info-icon,
.page-id-9 .info-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 72px !important;
    height: 72px !important;
    background: linear-gradient(135deg, var(--color-primary, #84CC16) 0%, var(--color-accent, #22C55E) 100%) !important;
    border-radius: 50% !important;
    margin: 0 auto 20px !important;
    box-shadow: 0 10px 20px rgba(144, 193, 64, 0.4) !important;
}

body.page-id-9 .info-icon svg,
.page-id-9 .info-icon svg {
    width: 32px !important;
    height: 32px !important;
    color: #ffffff !important;
    fill: currentColor !important;
}

body.page-id-9 .hero-background-image[src*="office-kyiv-exterior.jpg"],
.page-id-9 .hero-background-image[src*="office-kyiv-exterior.jpg"] {
    display: none !important;
}

body.page-id-9 .about-hero:not(:has(.hero-background-image[src]:not([src=""]))) .hero-image-wrapper,
.page-id-9 .about-hero:not(:has(.hero-background-image[src]:not([src=""]))) .hero-image-wrapper {
    background: linear-gradient(135deg, rgba(144, 193, 64, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
}

body.page-id-9 .about-hero:not(:has(.hero-background-image[src]:not([src=""]))) .hero-image-wrapper::before,
.page-id-9 .about-hero:not(:has(.hero-background-image[src]:not([src=""]))) .hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 0;
}

/* ========================================
   ИЗ: pages/delivery-payment.css
   ======================================== */

.delivery-payment-page {
    --dp-primary: #84CC16;
    --dp-primary-dark: #65A30D;
    --dp-primary-light: #A3E635;
    --dp-text-dark: #0f172a;
    --dp-text-medium: #475569;
    --dp-text-light: #64748b;
    --dp-bg-white: #ffffff;
    --dp-bg-light: #f8fafc;
    --dp-border: rgba(226, 232, 240, 0.8);
    --dp-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 20px 40px rgba(0, 0, 0, 0.08);
    --dp-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 32px 64px rgba(132, 204, 22, 0.15);
    --dp-radius: 24px;
    --dp-radius-sm: 16px;
}

.delivery-payment-page {
    padding: 100px 0;
    background: var(--dp-bg-white);
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

.delivery-payment-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(132, 204, 22, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(101, 163, 13, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.delivery-payment-page .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

.delivery-payment-page .container * {
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.delivery-payment-page * {
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.delivery-payment-page section {
    margin-bottom: 100px;
    width: 100%;
    position: relative;
}

.delivery-payment-page section:last-child {
    margin-bottom: 0;
}

.section-header {
    margin-bottom: 64px;
    text-align: center;
    position: relative;
}

.section-content {
    width: 100%;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 900;
    color: var(--dp-text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(135deg, var(--dp-primary), var(--dp-primary-dark));
    border-radius: 2px;
}

.section-description {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--dp-text-light);
    line-height: 1.7;
    max-width: 700px;
    margin: 32px auto 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-weight: 400;
}

.delivery-intro-section {
    margin-bottom: 120px;
    padding: 0;
    position: relative;
}

.delivery-intro-section .section-content {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0;
}

.section-heading {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--dp-text-dark);
    margin-bottom: 28px;
    line-height: 1.1;
    letter-spacing: -0.04em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.delivery-intro-section .section-description {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--dp-text-medium);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
}

.delivery-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
    gap: 32px;
    margin-bottom: 48px;
    width: 100%;
}

.delivery-card {
    background: var(--dp-bg-white);
    border-radius: var(--dp-radius);
    padding: 0;
    box-shadow: var(--dp-shadow-sm);
    border: 2px solid var(--dp-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
}

.delivery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--dp-primary) 0%, var(--dp-primary-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

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

.delivery-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--dp-shadow-md);
    border-color: rgba(132, 204, 22, 0.4);
}

.card-header {
    padding: 48px 48px 36px;
    text-align: center;
    position: relative;
}

.card-body {
    padding: 0 48px 36px;
    flex: 1;
}

.card-footer {
    padding: 32px 48px;
    border-top: 1px solid var(--dp-border);
    background: rgba(248, 250, 252, 0.5);
}

.delivery-icon,
.payment-icon {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.1), rgba(101, 163, 13, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: var(--dp-primary);
    box-shadow: 0 4px 16px rgba(132, 204, 22, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.delivery-card:hover .delivery-icon,
.payment-card:hover .payment-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(132, 204, 22, 0.25);
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.15), rgba(101, 163, 13, 0.15));
}

.delivery-icon svg,
.payment-icon svg {
    width: 48px;
    height: 48px;
}

.card-title {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 800;
    color: var(--dp-text-dark);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.card-description {
    color: var(--dp-text-light);
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.7;
    margin-bottom: 28px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-weight: 400;
}

.delivery-features,
.payment-features {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.delivery-features li,
.payment-features li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--dp-text-medium);
    font-size: clamp(0.9375rem, 1.6vw, 1rem);
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    transition: color 0.3s ease;
}

.delivery-features li:hover,
.payment-features li:hover {
    color: var(--dp-text-dark);
}

.delivery-features li::before,
.payment-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--dp-primary), var(--dp-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(132, 204, 22, 0.3);
}

.delivery-address {
    background: var(--dp-bg-light);
    padding: 24px;
    border-radius: var(--dp-radius-sm);
    margin-bottom: 28px;
    border-left: 4px solid var(--dp-primary);
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
}

.address-label {
    margin: 0 0 12px 0;
    font-size: clamp(0.9375rem, 1.6vw, 1rem);
    font-weight: 600;
}

.address-text {
    margin: 0;
    color: var(--dp-text-medium);
    font-size: clamp(0.9375rem, 1.6vw, 1rem);
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.delivery-price {
    font-weight: 700;
    color: var(--dp-primary);
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    letter-spacing: -0.01em;
}

.delivery-note {
    background: rgba(132, 204, 22, 0.06);
    padding: 32px 40px;
    border-radius: var(--dp-radius-sm);
    border: 2px solid rgba(132, 204, 22, 0.2);
    color: var(--dp-text-dark);
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    box-shadow: 0 4px 16px rgba(132, 204, 22, 0.08);
    position: relative;
}

.delivery-note strong {
    color: var(--dp-primary);
    font-weight: 800;
    font-size: 1.125em;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
    gap: 32px;
    width: 100%;
}

.payment-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: var(--dp-radius);
    padding: 0;
    box-shadow: var(--dp-shadow-sm);
    border: 2px solid var(--dp-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px);
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--dp-primary), var(--dp-primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

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

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--dp-shadow-md);
    border-color: rgba(132, 204, 22, 0.4);
}

.payment-card .card-header {
    padding: 40px 40px 32px;
}

.payment-card .card-body {
    padding: 0 40px 40px;
}

.order-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    gap: 28px;
    position: relative;
    width: 100%;
}

.order-steps::before {
    content: '';
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #84CC16 0%, #65A30D 50%, #84CC16 100%);
    background-size: 200% 100%;
    z-index: 0;
    border-radius: 2px;
    animation: gradient-shift 3s ease infinite;
}

@media (max-width: 1024px) {
    .order-steps::before {
        display: none;
    }
}

.order-step {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: var(--dp-radius);
    padding: 48px 36px;
    box-shadow: var(--dp-shadow-sm);
    border: 2px solid var(--dp-border);
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(20px);
}

.order-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--dp-shadow-md);
    border-color: rgba(132, 204, 22, 0.4);
}

.step-number {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, var(--dp-primary), var(--dp-primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 32px;
    box-shadow: 0 8px 24px rgba(132, 204, 22, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex-shrink: 0;
    letter-spacing: -0.02em;
}

.order-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(132, 204, 22, 0.4);
}

.step-content {
    flex: 1;
    width: 100%;
}

.step-title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: var(--dp-text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.step-description {
    color: var(--dp-text-light);
    font-size: clamp(0.9375rem, 1.6vw, 1rem);
    line-height: 1.7;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-weight: 400;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 20px;
    width: 100%;
}

.document-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: var(--dp-radius-sm);
    padding: 32px;
    box-shadow: var(--dp-shadow-sm);
    border: 2px solid var(--dp-border);
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    min-width: 0;
    backdrop-filter: blur(20px);
}

.document-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--dp-shadow-md);
    border-color: rgba(132, 204, 22, 0.4);
}

.document-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.1), rgba(101, 163, 13, 0.1));
    border-radius: var(--dp-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dp-primary);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(132, 204, 22, 0.15);
    transition: all 0.3s ease;
}

.document-item:hover .document-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(132, 204, 22, 0.25);
}

.document-icon svg {
    width: 32px;
    height: 32px;
}

.document-name {
    color: var(--dp-text-medium);
    font-weight: 600;
    font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex: 1;
    min-width: 0;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.delivery-cta-section {
    margin-top: 100px;
    padding: 0;
}

.cta-content {
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.08) 0%, rgba(101, 163, 13, 0.08) 100%);
    border-radius: var(--dp-radius);
    padding: clamp(64px, 10vw, 100px) clamp(48px, 8vw, 80px);
    text-align: center;
    border: 2px solid rgba(132, 204, 22, 0.2);
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 8px 32px rgba(132, 204, 22, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--dp-text-dark);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
    z-index: 1;
}

.cta-description {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--dp-text-medium);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-buttons .btn {
    min-width: 240px;
    padding: 18px 40px;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    font-weight: 700;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(132, 204, 22, 0.3);
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(132, 204, 22, 0.4);
}

@media (max-width: 1024px) {
    .delivery-payment-page {
        padding: 60px 0;
    }
    
    .delivery-payment-page section {
        margin-bottom: 80px;
    }
    
    .delivery-methods-grid,
    .payment-methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
        gap: 28px;
    }
    
    .order-steps {
        grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
        gap: 24px;
    }
    
    .card-header,
    .card-body,
    .card-footer {
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (max-width: 768px) {
    .delivery-payment-page {
        padding: 40px 0;
    }
    
    .delivery-payment-page .container {
        padding: 0 20px;
    }
    
    .delivery-payment-page section {
        margin-bottom: 60px;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .delivery-intro-section {
        margin-bottom: 60px;
        padding: 60px 0;
        border-radius: 24px;
    }
    
    .delivery-methods-grid,
    .payment-methods-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .order-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .card-header {
        padding: 32px 24px 24px;
    }
    
    .card-body {
        padding: 0 24px 24px;
    }
    
    .card-footer {
        padding: 24px;
    }
    
    .delivery-card,
    .payment-card,
    .order-step {
        padding: 0;
    }
    
    .order-step {
        padding: 32px 24px;
    }
    
    .cta-content {
        padding: 48px 32px;
        border-radius: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        min-width: auto;
    }
    
    .delivery-icon,
    .payment-icon {
        width: 72px;
        height: 72px;
    }
    
    .delivery-icon svg,
    .payment-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .step-number {
        width: 72px;
        height: 72px;
        font-size: 1.75rem;
    }
    
    .document-item {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .delivery-payment-page .container {
        padding: 0 16px;
    }
    
    .card-header {
        padding: 28px 20px 20px;
    }
    
    .card-body {
        padding: 0 20px 20px;
    }
    
    .card-footer {
        padding: 20px;
    }
    
    .delivery-features li,
    .payment-features li {
        padding-left: 28px;
        font-size: 0.9375rem;
    }
    
    .delivery-address {
        padding: 20px;
    }
    
    .delivery-note {
        padding: 24px 20px;
    }
    
    .document-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .document-icon {
        width: 64px;
        height: 64px;
    }
    
    .step-number {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }
    
    .order-step {
        padding: 28px 20px;
    }
    
    .cta-content {
        padding: 40px 24px;
    }
}

/* ========================================
   ИЗ: pages/technologies.css
   ======================================== */

.technologies-page * {
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.technologies-page h4,
.technologies-page h5,
.technologies-page h6 {
    margin-top: 0;
    margin-bottom: clamp(16px, 3vw, 24px);
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.technologies-page p,
.technologies-page li {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.technologies-page table {
    width: 100%;
    max-width: 100%;
    table-layout: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.technologies-page img {
    max-width: 100%;
    height: auto;
}

.technologies-page ul,
.technologies-page ol {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.technologies-page a {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.technologies-page,
.technologies-section {
    --tp-primary: #84CC16;
    --tp-primary-dark: #65A30D;
    --tp-primary-light: #A3E635;
    --tp-secondary: #22C55E;
    --tp-text-dark: #0f172a;
    --tp-text-medium: #475569;
    --tp-text-light: #64748b;
    --tp-bg-white: #ffffff;
    --tp-bg-light: #f8fafc;
    --tp-bg-gradient: linear-gradient(135deg, rgba(132, 204, 22, 0.05) 0%, rgba(101, 163, 13, 0.05) 100%);
    --tp-border: rgba(226, 232, 240, 0.8);
    --tp-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
    --tp-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08), 0 16px 48px rgba(132, 204, 22, 0.12);
    --tp-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1), 0 24px 64px rgba(132, 204, 22, 0.15);
    --tp-radius: 28px;
    --tp-radius-sm: 20px;
    --tp-radius-lg: 32px;
}

.technologies-page .content-wrapper {
    background: transparent;
    padding: clamp(40px, 6vw, 60px) 0;
    box-shadow: none;
    border-radius: 0;
    max-width: 100%;
}

.technologies-section {
    padding: 0;
    background: transparent;
    width: 100%;
    overflow-x: hidden;
    position: relative;
    margin: 0;
}

.technologies-section .container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.technologies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(132, 204, 22, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 85% 75%, rgba(101, 163, 13, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(248, 250, 252, 0.5) 100%);
    pointer-events: none;
    z-index: 0;
}

.technologies-section * {
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tech-hero {
    text-align: center;
    padding: clamp(40px, 6vw, 60px) 0 clamp(60px, 8vw, 100px);
    margin-bottom: clamp(60px, 8vw, 100px);
    position: relative;
    z-index: 1;
    max-width: 100%;
    box-sizing: border-box;
}

.tech-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(135deg, var(--tp-primary), var(--tp-primary-dark));
    border-radius: 2px;
}

.tech-hero h2 {
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    font-weight: 900;
    color: var(--tp-text-dark);
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: -0.05em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    background: linear-gradient(135deg, #0f172a 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.tech-hero p {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    color: var(--tp-text-medium);
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
    word-wrap: break-word;
    overflow-wrap: break-word;
    letter-spacing: -0.01em;
}

.tech-tabs {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
    padding-bottom: 32px;
    position: relative;
    z-index: 1;
}

.tech-tabs::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(132, 204, 22, 0.2) 50%, transparent 100%);
    border-radius: 2px;
}

.tech-tab {
    padding: 20px 40px;
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    font-weight: 700;
    color: var(--tp-text-dark) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95)) !important;
    border: 2px solid var(--tp-border);
    border-radius: var(--tp-radius-sm);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    min-width: 220px;
    box-shadow: var(--tp-shadow-sm);
    backdrop-filter: blur(10px);
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-shadow: none;
    z-index: 1;
}

.tech-tab::before {
    display: none !important;
}

.tech-tab,
.tech-tab * {
    position: relative;
    z-index: 2 !important;
    color: var(--tp-text-dark) !important;
}

.tech-tab:hover {
    color: var(--tp-primary) !important;
    border-color: rgba(132, 204, 22, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--tp-shadow-md);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98)) !important;
}

.tech-tab:hover * {
    color: var(--tp-primary) !important;
}

.tech-tab.active {
    color: white !important;
    border-color: var(--tp-primary);
    background: linear-gradient(135deg, var(--tp-primary) 0%, var(--tp-primary-dark) 50%, var(--tp-secondary) 100%) !important;
    box-shadow: 0 8px 24px rgba(132, 204, 22, 0.35), 0 0 0 4px rgba(132, 204, 22, 0.1);
    transform: translateY(-2px);
}

.tech-tab.active,
.tech-tab.active * {
    color: white !important;
    z-index: 2 !important;
}

.tech-tab.active span {
    color: white !important;
}

.tech-tab.active:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(132, 204, 22, 0.4), 0 0 0 4px rgba(132, 204, 22, 0.15);
    color: white !important;
    background: linear-gradient(135deg, var(--tp-primary-dark) 0%, var(--tp-primary) 50%, var(--tp-primary-dark) 100%) !important;
}

.tech-tab.active:hover,
.tech-tab.active:hover * {
    color: white !important;
}

.tech-tab.active:hover span {
    color: white !important;
}

.tech-contents {
    position: relative;
    min-height: 600px;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.tech-content {
    display: none;
    animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-content.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-overview {
    text-align: center;
    margin-bottom: 80px;
    padding: 60px clamp(24px, 4vw, 48px);
    background: var(--tp-bg-gradient);
    border-radius: var(--tp-radius-lg);
    position: relative;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.tech-overview::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.tech-overview h3 {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 900;
    color: var(--tp-text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
    z-index: 1;
}

.tech-overview .lead {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--tp-text-light);
    max-width: 950px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
    z-index: 1;
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
    gap: 36px;
    margin-bottom: 80px;
    width: 100%;
}

.feature {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    border-radius: var(--tp-radius);
    padding: 48px 40px;
    box-shadow: var(--tp-shadow-sm);
    border: 2px solid var(--tp-border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, var(--tp-primary) 0%, var(--tp-primary-dark) 50%, var(--tp-secondary) 100%);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.feature::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature:hover::before {
    transform: scaleX(1);
    animation: gradient-shift 2s ease infinite;
}

.feature:hover::after {
    opacity: 1;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.feature:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--tp-shadow-lg);
    border-color: rgba(132, 204, 22, 0.5);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
}

.feature-icon {
    width: 112px;
    height: 112px;
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.12), rgba(101, 163, 13, 0.12));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    color: var(--tp-primary);
    box-shadow: 0 8px 24px rgba(132, 204, 22, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.2), rgba(101, 163, 13, 0.2));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.feature:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 32px rgba(132, 204, 22, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.18), rgba(101, 163, 13, 0.18));
}

.feature:hover .feature-icon::before {
    opacity: 1;
}

.feature-icon svg {
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 2px 4px rgba(132, 204, 22, 0.2));
    transition: filter 0.3s ease;
    color: var(--tp-primary);
    fill: none;
    stroke: currentColor;
}

.feature-icon svg use {
    color: inherit;
}

.feature:hover .feature-icon svg {
    filter: drop-shadow(0 4px 8px rgba(132, 204, 22, 0.3));
    color: var(--tp-primary-dark);
}

.feature-content h4 {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 800;
    color: var(--tp-text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.feature-content p {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    color: var(--tp-text-light);
    line-height: 1.8;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tech-benefits {
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.08) 0%, rgba(101, 163, 13, 0.08) 100%);
    border-radius: var(--tp-radius-lg);
    padding: 56px 64px;
    margin-bottom: 80px;
    border: 2px solid rgba(132, 204, 22, 0.25);
    box-shadow: 0 8px 32px rgba(132, 204, 22, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.tech-benefits::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.tech-benefits h4 {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 900;
    color: var(--tp-text-dark);
    margin-bottom: 40px;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
    z-index: 1;
}

.tech-benefits ul {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tech-benefits li {
    padding: 16px 0;
    padding-left: 40px;
    position: relative;
    color: var(--tp-text-medium);
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    transition: all 0.3s ease;
}

.tech-benefits li:hover {
    color: var(--tp-text-dark);
    transform: translateX(8px);
}

.tech-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--tp-primary), var(--tp-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(132, 204, 22, 0.35);
    transition: all 0.3s ease;
}

.tech-benefits li::after {
    content: '✓';
    position: absolute;
    left: 0;
    top: 16px;
    width: 26px;
    height: 26px;
    color: white;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.tech-benefits li:hover::before {
    transform: scale(1.15);
    box-shadow: 0 6px 16px rgba(132, 204, 22, 0.45);
}

.tech-products {
    margin-bottom: 80px;
    margin-top: 64px;
}

.tech-products h4 {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 900;
    color: var(--tp-text-dark);
    margin-bottom: 48px;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 24px;
    width: 100%;
}

.product-link {
    text-decoration: none;
    display: block;
    width: 100%;
}

.product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    border-radius: var(--tp-radius);
    padding: 40px 32px;
    box-shadow: var(--tp-shadow-sm);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--tp-border);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, var(--tp-primary) 0%, var(--tp-primary-dark) 50%, var(--tp-secondary) 100%);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.product-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.product-link:hover .product-card::before {
    transform: scaleX(1);
    animation: gradient-shift 2s ease infinite;
}

.product-link:hover .product-card::after {
    opacity: 1;
}

.product-link:hover .product-card {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--tp-shadow-lg);
    border-color: rgba(132, 204, 22, 0.5);
}

.product-card h5 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--tp-text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.product-card p {
    color: var(--tp-text-light);
    margin: 0;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.breeding-process {
    margin-bottom: clamp(50px, 6vw, 80px);
    max-width: 100%;
    box-sizing: border-box;
}

.breeding-process h4 {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 900;
    color: var(--tp-text-dark);
    margin-bottom: 64px;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: 32px;
    position: relative;
    width: 100%;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--tp-primary) 0%, var(--tp-primary-dark) 50%, var(--tp-secondary) 100%);
    background-size: 200% 100%;
    z-index: 0;
    border-radius: 2px;
    animation: gradient-shift 3s ease infinite;
    box-shadow: 0 2px 8px rgba(132, 204, 22, 0.3);
}

@media (max-width: 1024px) {
    .process-timeline::before {
        display: none;
    }
}

.process-step {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    border-radius: var(--tp-radius);
    padding: 48px 40px;
    box-shadow: var(--tp-shadow-sm);
    border: 2px solid var(--tp-border);
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
}

.process-step:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--tp-shadow-lg);
    border-color: rgba(132, 204, 22, 0.5);
}

.process-step .step-number {
    width: 112px;
    height: 112px;
    background: linear-gradient(135deg, var(--tp-primary) 0%, var(--tp-primary-dark) 50%, var(--tp-secondary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 900;
    margin: 0 auto 32px;
    box-shadow: 0 8px 24px rgba(132, 204, 22, 0.3), 0 0 0 4px rgba(132, 204, 22, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.03em;
    position: relative;
}

.process-step .step-number::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.3), rgba(101, 163, 13, 0.3));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.process-step:hover .step-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 32px rgba(132, 204, 22, 0.4), 0 0 0 6px rgba(132, 204, 22, 0.15);
}

.process-step:hover .step-number::before {
    opacity: 1;
}

.process-step h5 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: var(--tp-text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.process-step p {
    color: var(--tp-text-light);
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.8;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.breeding-advantages {
    margin-bottom: 80px;
}

.breeding-advantages h4 {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 900;
    color: var(--tp-text-dark);
    margin-bottom: 64px;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 36px;
    width: 100%;
}

.advantage-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    border-radius: var(--tp-radius);
    padding: 48px 40px;
    box-shadow: var(--tp-shadow-sm);
    border: 2px solid var(--tp-border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, var(--tp-primary) 0%, var(--tp-primary-dark) 50%, var(--tp-secondary) 100%);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.advantage-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.advantage-item:hover::before {
    transform: scaleX(1);
    animation: gradient-shift 2s ease infinite;
}

.advantage-item:hover::after {
    opacity: 1;
}

.advantage-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--tp-shadow-lg);
    border-color: rgba(132, 204, 22, 0.5);
}

.advantage-item h5 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: var(--tp-text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.advantage-item p {
    color: var(--tp-text-light);
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.8;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tech-cta {
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.1) 0%, rgba(101, 163, 13, 0.1) 100%);
    border-radius: var(--tp-radius-lg);
    padding: clamp(60px, 10vw, 100px) clamp(40px, 6vw, 80px);
    text-align: center;
    border: 3px solid rgba(132, 204, 22, 0.25);
    max-width: 100%;
    box-sizing: border-box;
    margin-top: clamp(60px, 8vw, 100px);
    box-shadow: 0 12px 48px rgba(132, 204, 22, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.tech-cta::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.tech-cta::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(101, 163, 13, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.tech-cta h2 {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    font-weight: 900;
    color: var(--tp-text-dark);
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: -0.04em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
    z-index: 1;
}

.tech-cta p {
    font-size: clamp(1.25rem, 3vw, 1.625rem);
    color: var(--tp-text-medium);
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.tech-cta .btn,
.tech-cta .btn-primary,
.tech-cta a.btn,
.tech-cta a.btn-primary,
div.tech-cta .btn,
div.tech-cta .btn-primary,
div.tech-cta a.btn,
div.tech-cta a.btn-primary,
section .tech-cta .btn,
section .tech-cta .btn-primary,
section .tech-cta a.btn,
section .tech-cta a.btn-primary {
    min-width: 280px !important;
    padding: 20px 48px !important;
    font-size: clamp(1.125rem, 2vw, 1.25rem) !important;
    font-weight: 800 !important;
    border-radius: var(--tp-radius-sm) !important;
    box-shadow: 0 8px 24px rgba(132, 204, 22, 0.35) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    z-index: 1 !important;
    letter-spacing: -0.01em !important;
    
    background: linear-gradient(135deg, #84CC16 0%, #65A30D 50%, #22C55E 100%) !important;
    color: white !important;
    border: none !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    line-height: 1.5 !important;
    white-space: nowrap !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

.tech-cta .btn:hover,
.tech-cta .btn-primary:hover,
.tech-cta a.btn:hover,
.tech-cta a.btn-primary:hover,
div.tech-cta .btn:hover,
div.tech-cta .btn-primary:hover,
div.tech-cta a.btn:hover,
div.tech-cta a.btn-primary:hover,
section .tech-cta .btn:hover,
section .tech-cta .btn-primary:hover,
section .tech-cta a.btn:hover,
section .tech-cta a.btn-primary:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 12px 32px rgba(132, 204, 22, 0.45) !important;
    background: linear-gradient(135deg, #65A30D 0%, #84CC16 50%, #65A30D 100%) !important;
    color: white !important;
    filter: brightness(1.1) !important;
    text-decoration: none !important;
    border: none !important;
}

.tech-cta .btn:focus,
.tech-cta .btn-primary:focus,
.tech-cta a.btn:focus,
.tech-cta a.btn-primary:focus,
div.tech-cta .btn:focus,
div.tech-cta .btn-primary:focus,
div.tech-cta a.btn:focus,
div.tech-cta a.btn-primary:focus,
section .tech-cta .btn:focus,
section .tech-cta .btn-primary:focus,
section .tech-cta a.btn:focus,
section .tech-cta a.btn-primary:focus {
    outline: 3px solid rgba(132, 204, 22, 0.5) !important;
    outline-offset: 4px !important;
    background: linear-gradient(135deg, #84CC16 0%, #65A30D 50%, #22C55E 100%) !important;
    color: white !important;
}

.tech-cta .btn:active,
.tech-cta .btn-primary:active,
.tech-cta a.btn:active,
.tech-cta a.btn-primary:active,
div.tech-cta .btn:active,
div.tech-cta .btn-primary:active,
div.tech-cta a.btn:active,
div.tech-cta a.btn-primary:active,
section .tech-cta .btn:active,
section .tech-cta .btn-primary:active,
section .tech-cta a.btn:active,
section .tech-cta a.btn-primary:active {
    transform: translateY(-2px) scale(0.98) !important;
    box-shadow: 0 4px 16px rgba(132, 204, 22, 0.3) !important;
    background: linear-gradient(135deg, #65A30D 0%, #84CC16 50%, #65A30D 100%) !important;
    color: white !important;
}

.tech-cta * .btn,
.tech-cta * .btn-primary,
.tech-cta * a.btn,
.tech-cta * a.btn-primary {
    background: linear-gradient(135deg, #84CC16 0%, #65A30D 50%, #22C55E 100%) !important;
    color: white !important;
    border: none !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.tech-herbicides {
    margin-top: clamp(50px, 6vw, 60px);
    padding: clamp(32px, 5vw, 48px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
    border-radius: var(--tp-radius);
    border: 2px solid rgba(132, 204, 22, 0.15);
    box-shadow: var(--tp-shadow-md);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tech-herbicides h4 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--tp-text-dark);
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--tp-primary);
}

.tech-herbicides h5 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--tp-text-dark);
    margin-top: 32px;
    margin-bottom: 20px;
}

.tech-herbicides h6 {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    color: var(--tp-text-medium);
    margin-top: 24px;
    margin-bottom: 16px;
}

.herbicide-info,
.herbicide-recommendations {
    margin-top: 32px;
    padding: clamp(24px, 4vw, 32px);
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--tp-radius-sm);
    border: 2px solid rgba(132, 204, 22, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    max-width: 100%;
    box-sizing: border-box;
}

.tech-herbicides p {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.8;
    color: var(--tp-text-medium);
    margin-bottom: 16px;
}

.tech-herbicides ul {
    margin: 20px 0;
    padding-left: 24px;
}

.tech-herbicides li {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.8;
    color: var(--tp-text-medium);
    margin-bottom: 12px;
}

.tech-herbicides strong {
    color: var(--tp-text-dark);
    font-weight: 700;
}

.tech-regulations {
    margin-top: clamp(50px, 6vw, 60px);
    padding: clamp(32px, 5vw, 48px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
    border-radius: var(--tp-radius);
    border: 2px solid rgba(132, 204, 22, 0.15);
    box-shadow: var(--tp-shadow-md);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tech-regulations h4 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--tp-text-dark);
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--tp-primary);
}

.tech-regulations h5 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--tp-text-dark);
    margin-top: 32px;
    margin-bottom: 20px;
}

.clearfield-recommendations {
    margin-top: clamp(24px, 4vw, 32px);
    padding: clamp(24px, 4vw, 32px);
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--tp-radius-sm);
    border: 2px solid rgba(132, 204, 22, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    max-width: 100%;
    box-sizing: border-box;
}

.tech-regulations p {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.8;
    color: var(--tp-text-medium);
    margin-bottom: 16px;
}

.tech-regulations ul {
    margin: 20px 0;
    padding-left: 24px;
}

.tech-regulations li {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.8;
    color: var(--tp-text-medium);
    margin-bottom: 12px;
}

.rotation-notes {
    margin-top: 24px;
    padding: clamp(20px, 3vw, 24px);
    background: rgba(255, 243, 205, 0.5);
    border-radius: var(--tp-radius-sm);
    border: 2px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    max-width: 100%;
    box-sizing: border-box;
}

.rotation-notes p {
    font-weight: 600;
    color: var(--tp-text-dark);
    margin-bottom: 12px;
}

.crop-rotation-table-wrapper {
    margin-top: 32px;
    overflow-x: auto;
}

@media (max-width: 1024px) {
    .technologies-section {
        padding: clamp(50px, 6vw, 80px) 0;
    }
    
    .tech-hero {
        padding-bottom: clamp(50px, 6vw, 80px);
        margin-bottom: clamp(50px, 6vw, 80px);
    }
    
    .tech-tabs {
        gap: 16px;
        margin-bottom: 64px;
    }
    
    .tech-tab {
        min-width: 180px;
        padding: 18px 32px;
    }
    
    .tech-features {
        grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
        gap: 28px;
    }
    
    .process-timeline {
        grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .technologies-section {
        padding: clamp(40px, 5vw, 60px) 0;
    }
    
    .tech-hero {
        padding-bottom: clamp(40px, 5vw, 60px);
        margin-bottom: clamp(40px, 5vw, 60px);
    }
    
    .tech-tabs {
        flex-direction: column;
        gap: 16px;
    }
    
    .tech-tab {
        width: 100%;
        min-width: auto;
    }
    
    .tech-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .tech-overview {
        margin-bottom: 60px;
        padding: 48px 0;
    }
    
    .tech-benefits {
        padding: 40px 32px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .tech-cta {
        padding: 64px 48px;
        margin-top: 80px;
    }
    
    .feature {
        padding: 40px 32px;
    }
    
    .feature-icon {
        width: 96px;
        height: 96px;
    }
    
    .feature-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .process-step .step-number {
        width: 96px;
        height: 96px;
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .tech-hero h2 {
        font-size: 2.25rem;
    }
    
    .tech-hero p {
        font-size: 1.25rem;
    }
    
    .tech-benefits {
        padding: 32px 24px;
    }
    
    .tech-benefits li {
        padding-left: 36px;
        font-size: 1rem;
    }
    
    .tech-benefits li::before,
    .tech-benefits li::after {
        width: 28px;
        height: 28px;
        top: 14px;
    }
    
    .feature {
        padding: 36px 28px;
    }
    
    .product-card {
        padding: 40px 32px;
    }
    
    .process-step {
        padding: 40px 32px;
    }
    
    .advantage-item {
        padding: 40px 32px;
    }
    
    .tech-cta {
        padding: 56px 32px;
        margin-top: 60px;
    }
}

.tech-comparison-section {
    margin: clamp(60px, 8vw, 100px) 0;
    padding: clamp(50px, 6vw, 80px) clamp(24px, 4vw, 40px);
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
    border-radius: var(--tp-radius-lg);
    position: relative;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.tech-comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(132, 204, 22, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(101, 163, 13, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.comparison-table-wrapper {
    position: relative;
    z-index: 1;
    overflow-x: auto;
    margin-top: 60px;
    border-radius: var(--tp-radius);
    box-shadow: var(--tp-shadow-md);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
}

.tech-comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    background: transparent;
}

.tech-comparison-table thead {
    background: linear-gradient(135deg, var(--tp-primary) 0%, var(--tp-primary-dark) 100%);
}

.tech-comparison-table thead th {
    padding: clamp(20px, 3vw, 28px) clamp(16px, 2vw, 24px);
    text-align: center;
    color: white;
    font-weight: 800;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    letter-spacing: -0.01em;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.tech-comparison-table thead th:first-child {
    text-align: left;
    border-left: none;
    background: linear-gradient(135deg, var(--tp-primary-dark) 0%, var(--tp-primary) 100%);
}

.tech-comparison-table thead th:last-child {
    border-right: none;
}

.tech-comparison-table tbody tr {
    border-bottom: 2px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s ease;
}

.tech-comparison-table tbody tr:hover {
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.05) 0%, rgba(101, 163, 13, 0.05) 100%);
    transform: scale(1.01);
}

.tech-comparison-table tbody tr:last-child {
    border-bottom: none;
}

.tech-comparison-table tbody td {
    padding: clamp(20px, 3vw, 28px) clamp(16px, 2vw, 24px);
    text-align: center;
    color: var(--tp-text-medium);
    font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
    vertical-align: middle;
    border-right: 1px solid rgba(226, 232, 240, 0.4);
}

.tech-comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 700;
    color: var(--tp-text-dark);
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
    padding-left: clamp(24px, 3.5vw, 32px);
}

.tech-comparison-table tbody td:last-child {
    border-right: none;
}

.tech-comparison-table tbody td strong {
    color: var(--tp-text-dark);
    font-weight: 800;
}

@media (max-width: 1024px) {
    .tech-comparison-section {
        margin: 80px 0;
        padding: 60px 0;
    }
    
    .comparison-table-wrapper {
        margin-top: 48px;
    }
}

@media (max-width: 768px) {
    .tech-comparison-section {
        margin: 60px 0;
        padding: 48px clamp(20px, 4vw, 32px);
    }
    
    .comparison-table-wrapper {
        margin-top: 40px;
        padding: 16px;
    }
    
    .tech-comparison-table {
        font-size: 0.875rem;
        min-width: 600px;
    }
    
    .tech-comparison-table thead th,
    .tech-comparison-table tbody td {
        padding: 12px 8px;
    }
    
    .tech-overview {
        padding: 40px clamp(20px, 4vw, 32px);
    }
    
    .technologies-section {
        padding: 60px 0;
    }
    
    .tech-hero {
        padding: 0 0 60px;
        margin-bottom: 60px;
    }
}

