/* ServisFlow Pro - Marketing Website Styles */
/* Design inspired by DATAHOLD brand */

:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #e0f2fe;
    --secondary: #1e3a5f;
    --secondary-light: #2d4a6f;
    --accent: #f97316;
    --text: #1f2937;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --border: #e5e7eb;
    --success: #10b981;
    --radius: 12px;
    --radius-lg: 16px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-white:hover {
    background: var(--primary-light);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
}

.lang-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-dropdown-btn:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.lang-dropdown-btn .flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.lang-dropdown-btn .chevron {
    color: var(--text-light);
    transition: transform 0.2s;
}

.lang-dropdown:hover .chevron {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    min-width: 150px;
    overflow: hidden;
}

.lang-dropdown:hover .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text);
    transition: background 0.15s;
    text-align: left;
}

.lang-option:hover {
    background: var(--bg-light);
}

.lang-option.active {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
}

.lang-option svg {
    width: 22px;
    height: 16px;
    border-radius: 2px;
    flex-shrink: 0;
}

/* Support Button */
.btn-support {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--primary-light);
    border-radius: 10px;
    color: var(--primary);
    transition: all 0.2s ease;
}

.btn-support:hover {
    background: var(--primary);
    color: white;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 500px;
}

.mobile-menu-content {
    padding: 16px 24px 24px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-link:last-of-type {
    border-bottom: none;
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-divider {
    height: 1px;
    background: var(--border);
    margin: 16px 0;
}

.mobile-lang-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.mobile-lang-btn {
    padding: 10px 8px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-lang-btn:hover {
    background: var(--primary-light);
}

.mobile-lang-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Responsive Navigation */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-actions {
        gap: 6px;
    }

    .nav-actions .btn-ghost {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar-content {
        height: 60px;
    }

    .logo-img {
        height: 28px;
    }

    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
        top: 60px;
    }
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero h1 .highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

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

.trust-item svg {
    color: var(--success);
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Preview Tabs - Hero System Preview */
.preview-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    padding: 4px;
    background: var(--bg-light);
    border-radius: var(--radius);
    width: fit-content;
}

.preview-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s ease;
}

.preview-tab:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.5);
}

.preview-tab.active {
    background: white;
    color: var(--primary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.preview-tab svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Preview Slides */
.preview-slide {
    display: none;
}

.preview-slide.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.preview-svg {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .preview-tabs {
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
    }

    .preview-tab {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .preview-tab span {
        display: none;
    }
}

/* Logos Section */
.logos-section {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid var(--border);
}

.logos-title {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logo-item {
    padding: 12px 24px;
    background: var(--bg-light);
    border-radius: var(--radius);
    font-weight: 500;
    color: var(--text-light);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    position: relative;
    padding: 32px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-card.featured {
    background: var(--primary-light);
    border: 2px solid var(--primary);
}

.feature-card.featured:hover {
    background: white;
}

.feature-card.coming-soon {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px dashed #f59e0b;
}

.feature-card.coming-soon:hover {
    background: linear-gradient(135deg, #fef9c3 0%, #fef3c7 100%);
}

.feature-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    padding: 4px 12px;
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius);
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card.coming-soon .feature-icon {
    background: rgba(245, 158, 11, 0.2);
    color: #d97706;
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Feature Tabs */
.feature-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-tab {
    padding: 10px 20px;
    border: 2px solid var(--border);
    background: white;
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.feature-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Feature Card Animations */
.feature-card {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card.hidden {
    display: none !important;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.fade-in {
    animation: fadeInUp 0.4s ease forwards;
}

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

/* Feature Counter */
.feature-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #dbeafe 100%);
    border-radius: var(--radius-lg);
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.counter-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary);
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.benefit-card {
    padding: 40px 32px;
    background: white;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

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

.benefit-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 50%;
    color: var(--primary);
    margin: 0 auto 24px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Case Study Section - Carousel */
.case-study-section {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    overflow: hidden;
}

.case-study-section .section-header h2 {
    color: white;
}

.case-study-section .section-header p {
    color: #94a3b8;
}

.case-study-carousel {
    margin-top: 48px;
    overflow: hidden;
    position: relative;
}

.case-study-carousel::before,
.case-study-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.case-study-carousel::before {
    left: 0;
    background: linear-gradient(to right, #1e3a5f 0%, transparent 100%);
}

.case-study-carousel::after {
    right: 0;
    background: linear-gradient(to left, #0f172a 0%, transparent 100%);
}

.case-study-track {
    display: flex;
    gap: 24px;
    animation: scrollCarousel 40s linear infinite;
    width: max-content;
}

.case-study-track:hover {
    animation-play-state: paused;
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-340px * 7 - 24px * 7));
    }
}

.case-study-slide {
    flex-shrink: 0;
    width: 340px;
}

.case-study-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.case-study-image {
    height: 180px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-placeholder {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(14, 165, 233, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    opacity: 0.4;
    color: #7dd3fc;
}

.placeholder-icon svg {
    stroke: currentColor;
}

.case-study-content {
    padding: 24px;
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-study-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(14, 165, 233, 0.2);
    color: #7dd3fc;
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    width: fit-content;
}

.case-study-badge.badge-coming {
    background: rgba(245, 158, 11, 0.2);
    color: #fcd34d;
}

.case-study-content h3 {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
}

.case-study-content p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.case-study-coming {
    opacity: 0.7;
}

.case-study-coming:hover {
    opacity: 0.85;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8125rem;
    margin-top: auto;
    width: fit-content;
}

.case-study-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.case-study-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #e2e8f0;
    font-size: 0.9375rem;
}

.case-study-highlights li svg {
    color: #10b981;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .case-study-slide {
        width: 280px;
    }
    .case-study-image {
        height: 150px;
    }
    @keyframes scrollCarousel {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 7 - 24px * 7));
        }
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

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

.testimonial-card {
    padding: 32px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    line-height: 0;
    color: var(--primary);
    font-family: serif;
    vertical-align: bottom;
    margin-right: 4px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    font-weight: 700;
    border-radius: 50%;
    font-size: 1rem;
}

.author-info strong {
    display: block;
    color: var(--secondary);
    font-size: 1rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-info {
    color: white;
}

.contact-form-info h2 {
    color: white;
    margin-bottom: 16px;
}

.contact-form-info > p {
    opacity: 0.9;
    font-size: 1.125rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-benefits {
    list-style: none;
}

.contact-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1rem;
    opacity: 0.95;
}

.contact-benefits svg {
    color: white;
    flex-shrink: 0;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: white;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-lighter);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    flex-shrink: 0;
}

.form-checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.875rem;
}

.form-checkbox label a {
    color: var(--primary);
    text-decoration: underline;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--text-light);
    font-size: 0.875rem;
}

.form-note svg {
    color: var(--success);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 12px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius);
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
    color: var(--text-light);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-company {
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
}

.company-logo {
    height: 36px;
    margin-bottom: 24px;
}

.onboarding-box {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
    text-align: left;
}

.onboarding-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 50%;
    color: var(--primary);
    margin-bottom: 16px;
}

.onboarding-box h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.onboarding-box > p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.onboarding-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.onboarding-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text);
}

.onboarding-features svg {
    color: var(--success);
    flex-shrink: 0;
}

.contact-company p {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-dark);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-lighter);
    max-width: 300px;
}

.footer-links h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-lighter);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-lighter);
    font-size: 0.875rem;
    margin-bottom: 8px;
}

/* For Who Section (legacy) */
.for-who-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.for-who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.for-who-card {
    padding: 40px 32px;
    background: white;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.for-who-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.for-who-icon {
    color: var(--primary);
    margin-bottom: 24px;
}

.for-who-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.for-who-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form-info {
        text-align: center;
    }

    .contact-benefits {
        display: inline-block;
        text-align: left;
    }

    .for-who-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .mobile-menu-btn span {
        width: 24px;
        height: 2px;
        background: var(--secondary);
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .feature-tabs {
        gap: 6px;
    }

    .feature-tab {
        padding: 8px 14px;
        font-size: 0.8125rem;
    }

    .features-grid,
    .benefits-grid,
    .for-who-grid {
        grid-template-columns: 1fr;
    }

    .feature-counter {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }

    .counter-number {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
    }
}

/* ===================
   FORM VALIDATION STYLES
   =================== */

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.error-message {
    display: block;
    color: #ef4444;
    font-size: 0.8125rem;
    margin-top: 6px;
    font-weight: 500;
}

.form-status-message {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-status-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-status-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.form-status-message.warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

/* Mobile menu active states */
.nav-links.active,
.nav-actions.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    gap: 16px;
}

.nav-actions.active {
    top: auto;
    border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
    .nav-links.active,
    .nav-actions.active {
        display: flex;
    }
}

/* Navbar scrolled state */
.navbar.scrolled {
    box-shadow: var(--shadow);
}

/* Animation classes */
.feature-card,
.benefit-card,
.testimonial-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.feature-card.animate-in,
.benefit-card.animate-in,
.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Spinner animation */
.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Locations Section */
.locations-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.locations-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 48px;
}

.locations-map {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.coverage-map-img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.czech-map,
.central-europe-map {
    width: 100%;
    height: auto;
}

/* Central Europe Map Styles */
.central-europe-map .country-outline {
    transition: all 0.3s ease;
    cursor: pointer;
}

.central-europe-map .country-outline:hover {
    fill: #bae6fd;
    filter: drop-shadow(0 2px 4px rgba(14, 165, 233, 0.3));
}

.central-europe-map .country-active {
    filter: drop-shadow(0 4px 8px rgba(14, 165, 233, 0.4));
}

.central-europe-map .country-active:hover {
    fill: #0284c7;
}

.central-europe-map .country-label {
    font-size: 14px;
    font-weight: 600;
    fill: var(--secondary);
    pointer-events: none;
}

.central-europe-map .country-label-active {
    fill: white;
    font-size: 16px;
}

.central-europe-map .legend-text {
    font-size: 11px;
    fill: var(--text-light);
}

.map-outline {
    transition: fill 0.3s ease;
}

.location-marker {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.location-marker:hover {
    transform: scale(1.1);
}

.location-marker circle:first-child {
    filter: drop-shadow(0 2px 4px rgba(14, 165, 233, 0.4));
}

.map-label {
    font-size: 12px;
    font-weight: 600;
    fill: var(--secondary);
}

.map-label-large {
    font-size: 14px;
    font-weight: 700;
}

.map-sublabel {
    font-size: 10px;
    fill: var(--text-light);
}

.locations-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.location-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.location-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius);
    color: var(--primary);
    flex-shrink: 0;
}

.location-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-badge {
    font-size: 0.6875rem;
    padding: 2px 8px;
    background: var(--primary);
    color: white;
    border-radius: 100px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-info p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
}

.locations-cta {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.locations-cta p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.locations-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 1024px) {
    .locations-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .locations-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .locations-list {
        grid-template-columns: 1fr;
    }

    .locations-map {
        padding: 20px;
    }
}

/* Customization Grid */
.customization-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.customization-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.customization-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.customization-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
}

.customization-card h4 {
    font-size: 1.125rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.customization-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

.locations-offices {
    text-align: center;
}

.locations-offices h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 24px;
}

.offices-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.office-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.office-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, #0284c7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.office-info h4 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 4px;
}

.office-info p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.partners-grid-5 {
    grid-template-columns: repeat(5, 1fr) !important;
}

@media (max-width: 968px) {
    .customization-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .partners-grid-5 {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .customization-grid {
        grid-template-columns: 1fr;
    }
    .offices-grid {
        flex-direction: column;
        align-items: center;
    }
    .partners-grid-5 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Special Offers Section */
.special-offers-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.special-offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.special-offer-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.special-offer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.special-offer-card.offer-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, #0284c7 100%);
    border-color: transparent;
    color: white;
}

.special-offer-card.offer-highlight h3,
.special-offer-card.offer-highlight p {
    color: white;
}

.special-offer-card.offer-highlight .offer-icon {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.special-offer-card.offer-highlight .offer-benefits li {
    color: rgba(255, 255, 255, 0.9);
}

.special-offer-card.offer-highlight .offer-benefits svg {
    color: #7dd3fc;
}

.offer-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
}

.offer-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    width: fit-content;
}

.offer-badge.badge-startup {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.offer-badge.badge-edu {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.special-offer-card h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.special-offer-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.offer-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex: 1;
}

.offer-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text);
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--border);
}

.offer-benefits li:last-child {
    border-bottom: none;
}

.offer-benefits svg {
    color: #10b981;
    flex-shrink: 0;
}

.special-offer-card.offer-highlight .offer-benefits li {
    border-color: rgba(255, 255, 255, 0.15);
}

.special-offer-card .btn {
    margin-top: auto;
}

.special-offer-card.offer-highlight .btn-primary {
    background: white;
    color: var(--primary);
}

.special-offer-card.offer-highlight .btn-primary:hover {
    background: #f0f9ff;
}

@media (max-width: 968px) {
    .special-offers-grid {
        grid-template-columns: 1fr;
    }
    .special-offer-card.offer-highlight {
        order: -1;
    }
}

/* Partner Section */
.partner-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a365d 100%);
    position: relative;
    overflow: hidden;
}

.partner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.partner-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.partner-logo-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-logo {
    height: 80px;
    width: auto;
    max-width: 100%;
}

.partner-content {
    color: white;
}

.partner-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary);
    color: white;
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: 100px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-content h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.25rem;
}

.partner-content > p {
    opacity: 0.9;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 560px;
}

.partner-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.partner-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
}

.partner-feature svg {
    color: #34d399;
    flex-shrink: 0;
}

.partner-btn {
    margin-top: 8px;
}

.btn-white {
    background: white;
    color: var(--secondary);
    border: none;
}

.btn-white:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 1024px) {
    .partner-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .partner-logo-side {
        max-width: 320px;
        margin: 0 auto;
        padding: 48px 32px;
    }

    .partner-logo {
        height: 64px;
    }

    .partner-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .partner-features {
        align-items: center;
    }

    .partner-btn {
        display: inline-flex;
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--bg-light);
}

/* Demo CTA in Contact Form Info */
.demo-cta {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.demo-text {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 16px;
}

.demo-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.demo-cta .btn-secondary:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

/* Complete IT Solution Section */
.complete-solution-section {
    padding: 100px 0;
    background: linear-gradient(180deg, white 0%, var(--bg-light) 100%);
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: 100px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.solution-highlight {
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 32px;
    border-left: 4px solid var(--primary);
}

.solution-highlight h3 {
    color: var(--secondary);
    margin-bottom: 12px;
    font-size: 1.375rem;
}

.solution-highlight p {
    color: var(--text);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 16px;
}

.solution-portal-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.solution-portal-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.solution-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-feature {
    padding: 24px;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.solution-feature:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.solution-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius);
    color: var(--primary);
    margin-bottom: 16px;
}

.solution-feature h4 {
    font-size: 1.0625rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.solution-feature p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.solution-partners {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.solution-partners h4 {
    text-align: center;
    color: var(--secondary);
    margin-bottom: 24px;
    font-size: 1rem;
}

.partners-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
}

.partner-item:hover {
    background: var(--primary-light);
}

.partner-item img {
    height: 40px;
    width: auto;
    margin-bottom: 12px;
    opacity: 0.9;
}

.partner-fallback {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.partner-fallback span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--secondary);
}

.partner-item p {
    color: var(--text-light);
    font-size: 0.8125rem;
}

.solution-cta {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.solution-cta p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    .solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solution-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-partners {
        max-width: 500px;
        margin: 0 auto;
    }

    .partners-grid {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .partner-item {
        flex: 1;
        min-width: 140px;
        max-width: 160px;
    }
}

@media (max-width: 768px) {
    .solution-features-grid {
        grid-template-columns: 1fr;
    }

    .solution-highlight {
        padding: 24px;
    }

    .solution-portal-link {
        width: 100%;
        justify-content: center;
    }

    .partners-grid {
        flex-direction: column;
    }

    .partner-item {
        max-width: none;
    }
}
