/* Automation Page Styles */
.automation-hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #1a1a1a;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.automation-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.automation-hero .hero-container {
    position: relative;
    z-index: 2;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.what-is-automation {
    padding: 80px 0;
    background: #f8fafc;
}

.what-is-automation .section-header {
    text-align: center;
}

.automation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.automation-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.automation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.benefits-section {
    padding: 80px 0;
}

.benefits-section .section-header {
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.benefit-metric {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-top: auto;
    padding-top: 1rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.automation-areas {
    padding: 80px 0;
    background: #f8fafc;
}

.automation-areas .section-header {
    text-align: center;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.area-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.area-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.area-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.area-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.area-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.area-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    margin-top: auto;
    padding-top: 1rem;
}

.area-link:hover {
    color: #764ba2;
}

.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.process-section .section-header {
    text-align: center;
}

.process-flow {
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-left: 2rem;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1rem;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    border: 4px solid white;
}

.step-number {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
}

.step-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex: 1;
    position: relative;
    border-left: 4px solid #667eea;
}

.step-content h3 {
    color: #2d3748;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-content p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Вертикальна лінія процесу */
.process-flow::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    border-radius: 2px;
    z-index: 1;
}

/* З'єднуючі лінії від круга до контенту */
.flow-step::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 40px;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    z-index: 2;
}

/* Крапки на лінії процесу */
.flow-step::after {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 36px;
    width: 12px;
    height: 12px;
    background: white;
    border: 3px solid #667eea;
    border-radius: 50%;
    z-index: 2;
}

/* Анімація появи кроків */
.flow-step {
    opacity: 0;
    transform: translateX(-30px);
    animation: flowIn 0.8s ease-out forwards;
}

.flow-step:nth-child(1) { animation-delay: 0.1s; }
.flow-step:nth-child(2) { animation-delay: 0.2s; }
.flow-step:nth-child(3) { animation-delay: 0.3s; }
.flow-step:nth-child(4) { animation-delay: 0.4s; }
.flow-step:nth-child(5) { animation-delay: 0.5s; }

@keyframes flowIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hover ефекти */
.step-circle:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border-left-color: #764ba2;
}

/* Анімація лінії процесу */
.process-flow::before {
    height: 0;
    animation: drawLine 2s ease-out 0.5s forwards;
}

@keyframes drawLine {
    to {
        height: 100%;
    }
}

/* SVG стрілочки між кроками */
.step-arrow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: arrowBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-50%) translateY(-3px);
        opacity: 1;
    }
}

/* Альтернативні CSS стрілочки (якщо SVG не підтримується) */
.flow-step:not(:last-child) .step-circle::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #667eea;
    z-index: 2;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-50%) scale(1.1);
        opacity: 1;
    }
}

/* Responsive дизайн */
@media (max-width: 768px) {
    .process-flow {
        padding-left: 1rem;
    }
    
    .flow-step {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 1.5rem;
        padding-left: 0;
    }
    
    .process-flow::before {
        left: 1rem;
    }
    
    .flow-step::before {
        left: 1rem;
        top: 40px;
        width: 1.5rem;
    }
    
    .flow-step::after {
        left: 0.5rem;
        top: 36px;
    }
    
    .step-circle {
        width: 60px;
        height: 60px;
    }
    
    .step-number {
        font-size: 1.4rem;
    }
    
    .step-content {
        padding: 1.5rem;
        margin-left: 0;
    }
    
    /* SVG стрілочки на мобільних */
    .step-arrow {
        bottom: -25px;
        transform: translateX(-50%) rotate(90deg);
    }
    
    /* CSS стрілочки на мобільних */
    .flow-step:not(:last-child) .step-circle::after {
        bottom: -20px;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 10px solid #667eea;
        transform: translateX(-50%) rotate(90deg);
    }
}


/* Unique Offer Section */
.unique-offer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.unique-offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="90" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.offer-content {
    position: relative;
    z-index: 2;
}

.offer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #ffd700;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.offer-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.3;
}

.offer-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.offer-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    color: #2d3748;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.offer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.offer-item h3 {
    color: #2d3748;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.offer-item p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.offer-urgency {
    text-align: center;
    margin: 3rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.urgency-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.offer-cta {
    text-align: center;
}

.btn-large {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.offer-note {
    font-size: 0.95rem;
    margin-top: 1.5rem;
    opacity: 0.9;
    font-style: italic;
}

/* Responsive Unique Offer Section */
@media (max-width: 768px) {
    .unique-offer-section {
        padding: 60px 0;
    }
    
    .offer-content h2 {
        font-size: 1.8rem;
    }
    
    .offer-subtitle {
        font-size: 1.1rem;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .offer-item {
        padding: 1.5rem;
    }
    
    .urgency-text {
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

.tools-section {
    padding: 80px 0;
    background: #f8fafc;
}

.tools-section .section-header {
    text-align: center;
}

/* Vendor Sections */
.vendor-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.vendor-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f1f5f9;
}

.vendor-logo {
    margin-bottom: 1rem;
}

.vendor-header .vendor-badge {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.vendor-header .vendor-badge.aws {
    background: linear-gradient(135deg, #ff9900, #ff6600);
}

.vendor-header .vendor-badge.microsoft {
    background: linear-gradient(135deg, #0078d4, #106ebe);
}

.vendor-header .vendor-badge.google {
    background: linear-gradient(135deg, #4285f4, #34a853);
}

.vendor-header p {
    color: #64748b;
    font-size: 1.1rem;
    margin: 0;
    font-style: italic;
}

.vendor-solutions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.solution-category {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    border-left: 5px solid #667eea;
    transition: all 0.3s ease;
}

.solution-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left-color: #764ba2;
}

.solution-category h4 {
    color: #2d3748;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

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

.solution-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.solution-list li:last-child {
    border-bottom: none;
}

.solution-list li:hover {
    color: #2d3748;
}

.solution-list li strong {
    color: #667eea;
    font-weight: 700;
}

.tools-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    color: white;
}

.tools-cta h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tools-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
    margin-bottom: 0;
    font-style: italic;
}

.tools-cta .btn {
    background: white;
    color: #667eea;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tools-cta .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive дизайн для tools */
@media (max-width: 768px) {
    .vendor-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .vendor-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .vendor-header .vendor-badge {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .vendor-header p {
        font-size: 1rem;
    }
    
    .vendor-solutions {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-category {
        padding: 1.5rem;
    }
    
    .solution-category h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .solution-list li {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }
    
    .tools-cta {
        padding: 1.5rem;
    }
    
    .tools-cta h3 {
        font-size: 1.3rem;
    }
    
    .tools-cta p {
        font-size: 1rem;
    }
}

/* Automation Form Section */
.automation-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    color: #2d3748;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.form-header p {
    color: #64748b;
    font-size: 1.2rem;
    margin: 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.automation-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

.form-group label {
    color: #2d3748;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    padding: 0.8rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label:hover {
    background: #f1f5f9;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Error styling for consent checkbox */
.checkbox-label.error {
    background: #fef2f2;
    border: 2px solid #fca5a5;
    border-radius: 8px;
    padding: 0.8rem;
}

.checkbox-label.error .checkmark {
    border-color: #fca5a5;
}

.error-message {
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    padding-left: 2rem;
    font-weight: 500;
}

.form-actions {
    text-align: center;
    margin-top: 1rem;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Responsive Form */
@media (max-width: 768px) {
    .automation-form-section {
        padding: 60px 0;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .form-header p {
        font-size: 1rem;
    }
    
    .form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .checkbox-label {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.cta-feature svg {
    color: #ffd700;
}

/* Responsive Design for Automation Page */
@media (max-width: 768px) {
    .automation-hero {
        padding: 60px 0;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .automation-grid,
    .benefits-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .tool-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
