/*
Theme Name: KINETIXA
Theme URI: https://kinetixa.de
Author: KINETIXA Team
Author URI: https://kinetixa.de
Description: Custom theme for KINETIXA dental devices platform
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kinetixa
*/

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 20px 0;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #2c5aa0;
        }

        .tagline {
            font-size: 12px;
            color: #666;
            margin-top: 2px;
        }

        nav a {
            margin-left: 40px;
            text-decoration: none;
            color: #333;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #2c5aa0;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
            padding: 80px 40px;
            text-align: center;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 48px;
            color: #1a1a1a;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-text .highlight {
            color: #2c5aa0;
            font-weight: 700;
        }

        .hero-text p {
            font-size: 18px;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .hero-image {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }

        .cta-button {
            display: inline-block;
            background: #2c5aa0;
            color: white;
            padding: 14px 40px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        .cta-button:hover {
            background: #1f3f70;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
        }

        /* Workflow Section */
        .workflow {
            padding: 80px 40px;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            color: #1a1a1a;
            margin-bottom: 60px;
        }

        .workflow-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .workflow-step {
            text-align: center;
            padding: 30px;
            background: #f8f9fa;
            border-radius: 10px;
            transition: all 0.3s;
        }

        .workflow-step:hover {
            background: #e8f0fa;
            transform: translateY(-5px);
        }

        .step-number {
            font-size: 48px;
            color: #2c5aa0;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .step-title {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 10px;
        }

        .step-description {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* Devices Section */
        .devices {
            padding: 80px 40px;
            background: #f8f9fa;
        }

        .devices-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .device-card {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }

        .device-card:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }

        .device-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }

        .device-name {
            font-size: 22px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 10px;
        }

        .device-role {
            font-size: 13px;
            color: #999;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .device-description {
            font-size: 14px;
            color: #666;
            line-height: 1.8;
        }

        /* Advantages Section */
        .advantages {
            padding: 80px 40px;
            background: white;
        }

        .advantages-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .advantage {
            padding: 30px;
            border-left: 4px solid #2c5aa0;
        }

        .advantage-title {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 10px;
        }

        .advantage-description {
            font-size: 14px;
            color: #666;
            line-height: 1.8;
        }

        /* Locations Section */
        .locations {
            padding: 80px 40px;
            background: #f8f9fa;
        }

        .locations-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .location {
            padding: 40px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .location-flag {
            font-size: 32px;
            margin-bottom: 15px;
        }

        .location-name {
            font-size: 24px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .location-detail {
            font-size: 13px;
            color: #999;
            margin-bottom: 15px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .location-description {
            font-size: 14px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .location-advantage {
            font-size: 13px;
            color: #2c5aa0;
            font-weight: 600;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        /* Values Section */
        .values {
            padding: 80px 40px;
            background: linear-gradient(135deg, #2c5aa0 0%, #1f3f70 100%);
            color: white;
        }

        .values-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .values h2 {
            font-size: 36px;
            margin-bottom: 50px;
            text-align: center;
        }

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

        .value-item {
            text-align: center;
        }

        .value-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .value-description {
            font-size: 14px;
            opacity: 0.9;
            line-height: 1.8;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 40px;
            background: white;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 36px;
            color: #1a1a1a;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 16px;
            color: #666;
            margin-bottom: 30px;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            padding: 40px;
            text-align: center;
            font-size: 14px;
        }

        footer p {
            margin-bottom: 10px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
            }

            .hero-text h1 {
                font-size: 32px;
            }

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

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

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

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

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

            nav {
                display: none;
            }
        }
