/* Order Audit Page Styles */

/* Hero Section */
.order-hero-ai {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.order-hero-ai::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-ai-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-ai-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.highlight-ai {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-ai-subtitle {
    font-size: 20px;
    opacity: 0.95;
    line-height: 1.6;
}

/* Why AI Section */
.why-ai-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header-ai {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-ai {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.section-subtitle-ai {
    font-size: 18px;
    color: #6c757d;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.comparison-card-old,
.comparison-card-new {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.comparison-card-new {
    position: relative;
    border: 3px solid #667eea;
}

.comparison-badge-new {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.comparison-header-old,
.comparison-header-new {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.comparison-header-old i {
    font-size: 32px;
    color: #dc3545;
}

.comparison-header-new i {
    font-size: 32px;
    color: #28a745;
}

.comparison-header-old h3,
.comparison-header-new h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li i {
    margin-top: 4px;
    flex-shrink: 0;
}

.comparison-card-old .comparison-list li i {
    color: #dc3545;
}

.comparison-card-new .comparison-list li i {
    color: #28a745;
}

/* Comparison VS Wrapper */
.comparison-vs-wrapper {
    margin-bottom: 60px;
}

.comparison-vs-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.comparison-vs-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.3s;
}

.comparison-vs-card.old {
    border: 3px solid #dc3545;
}

.comparison-vs-card.new {
    border: 3px solid #28a745;
    box-shadow: 0 20px 60px rgba(40, 167, 69, 0.15);
}

.comparison-vs-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.comparison-vs-header {
    text-align: center;
    margin-bottom: 32px;
}

.comparison-vs-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.comparison-vs-icon.old {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.comparison-vs-icon.new {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.comparison-vs-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.comparison-vs-label {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.comparison-vs-label.old {
    background: #fff5f5;
    color: #dc3545;
}

.comparison-vs-label.new {
    background: #f6ffed;
    color: #28a745;
}

.comparison-vs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-vs-list li {
    display: flex;
    gap: 16px;
    padding: 20px;
    margin-bottom: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s;
}

.comparison-vs-list li:hover {
    transform: translateX(5px);
}

.comparison-vs-card.old .comparison-vs-list li {
    background: #fff5f5;
}

.comparison-vs-card.new .comparison-vs-list li {
    background: #f6ffed;
}

.comparison-vs-list li i {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-vs-card.old .comparison-vs-list li i {
    color: #dc3545;
}

.comparison-vs-card.new .comparison-vs-list li i {
    color: #28a745;
}

.comparison-vs-list li div {
    flex: 1;
}

.comparison-vs-list li strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.comparison-vs-list li span {
    font-size: 14px;
    color: #6c757d;
}

.comparison-vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
    animation: pulse-vs 2s infinite;
}

@keyframes pulse-vs {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 12px 32px rgba(102, 126, 234, 0.6);
    }
}

/* AI Infographic New */
.ai-infographic-new {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    border-radius: 24px;
    padding: 60px 48px;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.infographic-header {
    text-align: center;
    margin-bottom: 48px;
    color: white;
}

.infographic-header i {
    font-size: 48px;
    color: #ffd700;
    margin-bottom: 16px;
}

.infographic-header h3 {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
}

.infographic-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.infographic-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.infographic-stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-5px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 24px;
}

.stat-icon.speed {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-icon.depth {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.stat-icon.accuracy {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.stat-icon.objectivity {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.stat-content {
    color: white;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.stat-comparison {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.stat-ai,
.stat-manual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    display: block;
}

.stat-ai .stat-value {
    color: #4ade80;
}

.stat-manual .stat-value {
    color: #f87171;
}

.stat-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.stat-badge.ai {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
}

.stat-badge.manual {
    background: rgba(248, 113, 113, 0.2);
    color: #f87171;
}

.stat-vs {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
}

.stat-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(74, 222, 128, 0.1);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #4ade80;
}

.stat-benefit i {
    font-size: 16px;
}

/* Old AI Infographic (keep for compatibility) */
.ai-infographic {
    background: white;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.infographic-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a2e;
}

.infographic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.infographic-item {
    text-align: center;
}

.infographic-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.infographic-label {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 8px;
    font-weight: 600;
}

.infographic-value {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
}

.infographic-value .vs {
    color: #dc3545;
    font-size: 14px;
    margin: 0 4px;
}

/* Pricing Plans Section */
.pricing-plans-section {
    padding: 80px 20px;
    background: white;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.plan-card.plan-featured {
    border-color: #667eea;
    border-width: 3px;
    transform: scale(1.05);
}

.plan-card.plan-featured:hover {
    transform: scale(1.08) translateY(-8px);
}

.plan-card.selected {
    border-color: #28a745;
    background: #f6ffed;
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.plan-badge.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.plan-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
}

.plan-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.plan-price {
    text-align: center;
    margin-bottom: 12px;
}

.price-value {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-currency {
    font-size: 24px;
    font-weight: 700;
    color: #6c757d;
}

.plan-duration {
    text-align: center;
    color: #6c757d;
    margin-bottom: 24px;
    font-size: 15px;
}

.plan-duration i {
    margin-right: 6px;
}

.plan-for,
.plan-features,
.plan-why {
    margin-bottom: 24px;
}

.plan-for strong,
.plan-features strong,
.plan-why strong {
    display: block;
    font-size: 16px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.plan-for ul,
.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-for ul li {
    padding: 6px 0;
    color: #495057;
    font-size: 14px;
}

.plan-features ul li {
    display: flex;
    align-items: start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #495057;
}

.plan-features ul li i {
    color: #28a745;
    margin-top: 3px;
    flex-shrink: 0;
}

.plan-why p {
    font-size: 14px;
    color: #495057;
    line-height: 1.6;
}

.plan-result {
    background: #f6ffed;
    border: 2px solid #b7eb8f;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #52c41a;
}

.plan-result i {
    font-size: 20px;
}

.plan-btn {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Enterprise Section */
.enterprise-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.enterprise-card {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    border-radius: 24px;
    padding: 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.enterprise-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 24px;
}

.enterprise-content {
    text-align: center;
}

.enterprise-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #ffd700;
}

.enterprise-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.enterprise-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.enterprise-features h3 {
    font-size: 20px;
    margin-bottom: 24px;
}

.enterprise-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.enterprise-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 15px;
}

.enterprise-feature i {
    font-size: 24px;
    color: #ffd700;
}

.enterprise-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
    font-size: 16px;
}

.enterprise-btn {
    padding: 18px 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.enterprise-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* AI Advantage Section */
.ai-advantage-section {
    padding: 80px 20px;
    background: white;
}

.ai-sees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.ai-sees-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.ai-sees-card:hover {
    background: #e6f7ff;
    transform: translateY(-5px);
}

.ai-sees-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.ai-sees-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.ai-sees-card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}

/* AI Workflow */
.ai-workflow {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 24px;
    padding: 48px;
}

.workflow-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a2e;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.workflow-step {
    background: white;
    border-radius: 16px;
    padding: 24px;
    display: grid;
    grid-template-columns: 50px 60px 1fr 120px;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.workflow-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: white;
}

.workflow-icon {
    font-size: 32px;
    color: #667eea;
}

.workflow-label {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
}

.workflow-time {
    font-size: 14px;
    color: #6c757d;
    text-align: right;
}

.workflow-arrow {
    text-align: center;
    font-size: 24px;
    color: #667eea;
    margin: 8px 0;
}

/* What's Included Section */
.whats-included-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.included-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.included-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.included-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 15px;
    color: #495057;
}

.included-list li:last-child {
    border-bottom: none;
}

.included-list li i {
    color: #28a745;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Comparison Cards Section */
.comparison-cards-section {
    padding: 80px 20px;
    background: white;
}

.comparison-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.comparison-card-item {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 28px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.comparison-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.comparison-card-item:hover {
    border-color: #667eea;
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
    transform: translateY(-5px);
}

.comparison-card-item:hover::before {
    transform: scaleX(1);
}

.comparison-card-header {
    text-align: center;
    margin-bottom: 24px;
}

.comparison-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.comparison-card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.comparison-card-body {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.comparison-old,
.comparison-new {
    flex: 1;
    text-align: center;
}

.comparison-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: #6c757d;
}

.comparison-value {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
}

.comparison-value.bad {
    color: #dc3545;
}

.comparison-value.good {
    color: #28a745;
}

.comparison-desc {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.4;
}

.comparison-arrow {
    font-size: 24px;
    color: #667eea;
    flex-shrink: 0;
}

.comparison-card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: linear-gradient(135deg, #f6ffed 0%, #e6f7e6 100%);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #28a745;
}

.comparison-card-footer i {
    font-size: 16px;
}

/* Comparison Summary */
.comparison-summary {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
}

.summary-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.summary-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.summary-content p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
}

/* Order Form Section */
.order-form-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.order-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.order-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.order-form-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.order-form-subtitle {
    font-size: 16px;
    color: #6c757d;
}

.success-alert,
.error-alert {
    display: flex;
    align-items: start;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.success-alert {
    background: #d4edda;
    border: 2px solid #c3e6cb;
    color: #155724;
}

.success-alert i {
    font-size: 24px;
    color: #28a745;
    flex-shrink: 0;
}

.error-alert {
    background: #f8d7da;
    border: 2px solid #f5c6cb;
    color: #721c24;
}

.error-alert i {
    font-size: 24px;
    color: #dc3545;
    flex-shrink: 0;
}

.order-form {
    /* Form styles */
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-label .required {
    color: #dc3545;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox-wrapper {
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 24px;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-checkbox-label {
    font-size: 14px;
    color: #495057;
    line-height: 1.6;
    cursor: pointer;
}

.form-checkbox-label a {
    color: #667eea;
    text-decoration: underline;
}

.form-submit-btn {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.form-note {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: #667eea;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.faq-item:hover {
    background: #e6f7ff;
    transform: translateY(-3px);
}

.faq-question {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 16px;
}

.faq-question i {
    font-size: 24px;
    color: #667eea;
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.faq-answer {
    display: flex;
    align-items: start;
    gap: 12px;
}

.faq-answer i {
    font-size: 20px;
    color: #28a745;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-answer p {
    font-size: 15px;
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

/* Limitations Section */
.limitations-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.limitations-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.limitations-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.limitations-header i {
    font-size: 36px;
    color: #ffc107;
}

.limitations-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.limitations-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.limitations-list {
    margin-bottom: 32px;
}

.limitation-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #fff5f5;
    border-radius: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #495057;
}

.limitation-item i {
    font-size: 20px;
    color: #dc3545;
    flex-shrink: 0;
}

.limitations-why {
    background: #e6f7ff;
    border-left: 4px solid #1890ff;
    padding: 20px;
    border-radius: 8px;
}

.limitations-why h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.limitations-why p {
    font-size: 15px;
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

/* Deliverables Section */
.deliverables-section {
    padding: 80px 20px;
    background: white;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.deliverable-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.deliverable-card:hover {
    background: #e6f7ff;
    transform: translateY(-5px);
}

.deliverable-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.deliverable-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.deliverable-card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}

/* Final CTA Order */
.final-cta-order {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.final-cta-content-order {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-title-order {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.final-cta-subtitle-order {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 40px;
}

.final-cta-buttons-order {
    margin-bottom: 32px;
}

.btn-cta-primary-order {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
}

.btn-cta-primary-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.6);
}

.cta-features-order {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    font-size: 14px;
}

.cta-features-order span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-features-order i {
    color: #4ade80;
}

.or-divider {
    font-size: 16px;
    opacity: 0.8;
    margin: 24px 0;
}

.btn-cta-secondary-order {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.btn-cta-secondary-order:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .plan-card.plan-featured {
        transform: scale(1);
    }
    
    .plan-card.plan-featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 968px) {
    .hero-ai-title {
        font-size: 36px;
    }
    
    .section-title-ai {
        font-size: 32px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-vs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .comparison-vs-divider {
        order: 2;
    }
    
    .comparison-vs-card.old {
        order: 1;
    }
    
    .comparison-vs-card.new {
        order: 3;
    }
    
    .vs-badge {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .infographic-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .infographic-header h3 {
        font-size: 24px;
    }
    
    .infographic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ai-sees-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .workflow-step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .workflow-time {
        text-align: center;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .final-cta-title-order {
        font-size: 32px;
    }
    
    .cta-features-order {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .hero-ai-title {
        font-size: 28px;
    }
    
    .section-title-ai {
        font-size: 24px;
    }
    
    .infographic-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-sees-grid {
        grid-template-columns: 1fr;
    }
    
    .enterprise-features-grid {
        grid-template-columns: 1fr;
    }
    
    .deliverables-grid {
        grid-template-columns: 1fr;
    }
    
    .order-form-wrapper {
        padding: 32px 24px;
    }
    
    .order-form-title {
        font-size: 28px;
    }
    
    /* Адаптивные карточки сравнения */
    .comparison-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-card-item {
        padding: 20px;
    }
    
    .comparison-card-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .comparison-value {
        font-size: 24px;
    }
    
    .comparison-summary {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .summary-content h3 {
        font-size: 20px;
    }
    
    .summary-content p {
        font-size: 14px;
    }
}
