/* Solutions Page Styles - Compact Version */

/* CSS Variables - mapped to tool.css variables */
:root {
    --primary-blue: var(--primary-color, #3b82f6);
    --primary-dark: var(--primary-dark, #2563eb);
    --secondary-purple: var(--secondary-color, #8b5cf6);
    --text-dark: var(--text-primary, #1e293b);
    --text-medium: var(--text-secondary, #475569);
    --text-light: #64748b;
    --border-light: var(--border-color, #cbd5e1);
    --shadow-sm: var(--shadow-sm, 0 1px 2px 0 rgba(0, 0, 0, 0.05));
    --shadow-md: var(--shadow-md, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
}

/* Hero Section */
.solutions-hero {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    border-radius: 16px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.solutions-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.black-text {
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-medium);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-icon {
    font-size: 1.2rem;
}

/* Section Styles */
.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 25px;
    margin-top: 0;
}

/* Solutions Section */
.solutions-section {
    margin-bottom: 50px;
}

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

.solutions-grid.compact {
    grid-template-columns: repeat(3, 1fr);
}

.solution-card {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
    border: 1px solid var(--border-light);
    text-align: center;
}

.solution-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.solution-card.featured {
    border: 2px solid var(--primary-blue);
}

.solution-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.solution-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.solution-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.5;
    margin: 0;
}

/* Why Us Section */
.why-us-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 40px 30px;
    border-radius: 16px;
    margin-bottom: 50px;
}

.why-us-section.compact {
    padding: 35px 25px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.why-us-grid.compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.why-us-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-white);
    padding: 16px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.why-us-check {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-purple) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Process Section */
.process-section {
    margin-bottom: 50px;
}

.process-section.compact {
    margin-bottom: 40px;
}

.process-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.process-step-simple {
    background: var(--bg-white);
    padding: 14px 24px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

.process-arrow-simple {
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-purple) 100%);
    padding: 45px 30px;
    border-radius: 16px;
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-blue);
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Active Nav Link */
.nav-link.active {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 900px) {
    .solutions-grid,
    .solutions-grid.compact {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid,
    .why-us-grid.compact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .solutions-grid,
    .solutions-grid.compact {
        grid-template-columns: 1fr;
    }
    
    .process-simple {
        flex-direction: column;
    }
    
    .process-arrow-simple {
        transform: rotate(90deg);
    }
    
    .cta-title {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    border-radius: 16px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.contact-form-container {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    max-width: 600px;
    margin: 0 auto;
}

.feedback-notice {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid #6366f1;
}

.feedback-notice p {
    margin: 0;
    color: var(--text-dark);
}

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--bg-white);
    transition: border-color 0.2s;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

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

.contact-form .btn-primary {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

@media (max-width: 600px) {
    .contact-form-container {
        padding: 25px 20px;
    }
    
    .contact-hero {
        padding: 40px 20px 30px;
    }
}

/* Dark Mode Styles */
[data-theme="dark"] .solutions-hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

[data-theme="dark"] .solutions-hero::before {
    background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, transparent 70%);
}

[data-theme="dark"] .hero-title,
[data-theme="dark"] .black-text {
    color: #f1f5f9;
}

[data-theme="dark"] .hero-subtitle {
    color: #94a3b8;
}

[data-theme="dark"] .solution-card {
    background: #1e293b;
    border-color: #334155;
}

[data-theme="dark"] .solution-card:hover {
    background: #334155;
}

[data-theme="dark"] .solution-card h3 {
    color: #f1f5f9;
}

[data-theme="dark"] .solution-card p {
    color: #cbd5e1;
}

[data-theme="dark"] .why-us-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

[data-theme="dark"] .why-us-item {
    background: #1e293b;
    color: #f1f5f9;
    border: 1px solid #334155;
}

[data-theme="dark"] .process-step-simple {
    background: #1e293b;
    border-color: #334155;
    color: #f1f5f9;
}

[data-theme="dark"] .contact-hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

[data-theme="dark"] .contact-hero::before {
    background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
}

[data-theme="dark"] .contact-form-container {
    background: #1e293b;
    border-color: #334155;
}

[data-theme="dark"] .feedback-notice {
    background: rgba(99, 102, 241, 0.2);
    border-left-color: #818cf8;
}

[data-theme="dark"] .feedback-notice p {
    color: #f1f5f9;
}

[data-theme="dark"] .contact-form label {
    color: #f1f5f9;
}

[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form textarea {
    background: #0f172a;
    border-color: #334155;
    color: #f1f5f9;
}

[data-theme="dark"] .section-title {
    color: #f1f5f9;
}

[data-theme="dark"] .trust-item {
    color: #94a3b8;
}
