/*
Theme Name: enkel export WP
Theme URI: https://example.com
Author: WebCreator
Description: Custom theme created with WebCreator
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: enkel-export-wp
*/


        :root {
            /* Strategy Palette */
            --brand-green: #12d332;
            --brand-white: #ffffff;
            --brand-gray-light: #F5F5F5;
            --brand-border: #e6e6e6;
            
            /* Swiss Style Implied Text Colors */
            --text-main: #000000;
            --text-secondary: #555555;
            
            /* Spacing & Layout */
            --spacing-xs: 1rem;
            --spacing-sm: 2rem;
            --spacing-md: 4rem;
            --spacing-lg: 8rem;
            --spacing-xl: 12rem;
            --container-width: 1320px;
        }

        /* Reset & Base */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
            background-color: var(--brand-white);
            color: var(--text-main);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            font-size: 16px;
        }

        img { max-width: 100%; height: auto; display: block; }
        
        a { text-decoration: none; color: inherit; cursor: pointer; }

        /* Typography - Variation 1: Elegant & Swiss */
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            letter-spacing: -0.04em;
            line-height: 1.1;
        }

        h1 {
            font-size: clamp(3rem, 6vw, 5.5rem);
            margin-bottom: var(--spacing-sm);
        }

        h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            margin-bottom: var(--spacing-sm);
        }

        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        p {
            font-size: 1.125rem;
            color: var(--text-secondary);
            font-weight: 400;
            max-width: 38em;
        }

        .subtitle {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1.5rem;
            color: var(--text-main);
            border-left: 3px solid var(--brand-green);
            padding-left: 1rem;
        }

        /* Layout Utilities */
        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-padding {
            padding: var(--spacing-lg) 0;
        }

        .grid {
            display: grid;
            gap: var(--spacing-md);
        }

        .grid-2 { grid-template-columns: 1fr 1fr; }
        .grid-3 { grid-template-columns: repeat(3, 1fr); }
        .align-center { align-items: center; }

        /* Buttons & Links */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            font-weight: 600;
            font-size: 1rem;
            transition: opacity 0.2s ease;
            border: 1px solid transparent;
        }

        .btn-primary {
            background-color: var(--brand-green);
            color: #000000; /* Black text for accessibility on bright green */
        }

        .btn-primary:hover {
            opacity: 0.9;
        }

        .btn-secondary {
            background-color: transparent;
            border: 1px solid var(--brand-border);
            color: var(--text-main);
        }

        .btn-secondary:hover {
            border-color: var(--text-main);
        }

        .link-text {
            border-bottom: 1px solid var(--brand-green);
            padding-bottom: 2px;
            font-weight: 500;
        }

        /* Header */
        header {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.95);
            border-bottom: 1px solid var(--brand-border);
            z-index: 1000;
            padding: 1.25rem 0;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-weight: 700;
            font-size: 1.25rem;
            letter-spacing: -0.03em;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-mark {
            width: 12px;
            height: 12px;
            background: var(--brand-green);
            display: block;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
        }

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

        .nav-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .mobile-menu { display: none; }

        /* Hero */
        #hero {
            padding-top: var(--spacing-lg);
            padding-bottom: var(--spacing-lg);
            border-bottom: 1px solid var(--brand-border);
        }

        .hero-content {
            margin-bottom: var(--spacing-md);
        }

        .hero-content p {
            font-size: 1.35rem;
            margin-bottom: 2.5rem;
            line-height: 1.4;
            color: var(--text-secondary);
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
        }

        .hero-visual {
            margin-top: var(--spacing-md);
            border: 1px solid var(--brand-border);
            padding: 1rem;
            background: var(--brand-gray-light);
        }
        
        .hero-visual img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Workflow - "Design and Code in Unison" */
        #workflow {
            background-color: var(--brand-gray-light);
        }

        .step-card {
            background: var(--brand-white);
            padding: 3rem;
            height: 100%;
            border: 1px solid var(--brand-border);
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .step-num {
            font-size: 3rem;
            font-weight: 700;
            color: var(--brand-green);
            line-height: 1;
            margin-bottom: 1.5rem;
            font-feature-settings: "tnum";
        }

        /* Features */
        .feature-block {
            padding: var(--spacing-md) 0;
            border-bottom: 1px solid var(--brand-border);
        }
        
        .feature-block:last-child {
            border-bottom: none;
        }

        .feature-text {
            padding-right: 2rem;
        }

        .feature-list {
            list-style: none;
            margin-top: 2rem;
            border-top: 1px solid var(--brand-border);
        }

        .feature-list li {
            padding: 1rem 0;
            border-bottom: 1px solid var(--brand-border);
            display: flex;
            align-items: center;
            gap: 1rem;
            color: var(--text-main);
            font-size: 0.95rem;
        }

        .feature-list li::before {
            content: "";
            width: 8px;
            height: 8px;
            background-color: var(--brand-green);
            display: block;
        }

        .feature-image {
            background: var(--brand-gray-light);
            padding: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* CTA */
        #cta {
            background-color: var(--brand-green);
            padding: var(--spacing-lg) 0;
            text-align: left;
            color: #000000;
        }

        #cta h2 {
            color: #000000;
            max-width: 15ch;
        }

        #cta p {
            color: #000000;
            opacity: 0.8;
            margin-bottom: 2.5rem;
            font-weight: 500;
        }

        #cta .btn {
            background-color: #000000;
            color: var(--brand-white);
        }

        /* Footer */
        footer {
            background-color: var(--brand-white);
            padding: var(--spacing-md) 0;
            border-top: 1px solid var(--brand-border);
            font-size: 0.875rem;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: var(--spacing-md);
        }

        .footer-brand h4 {
            font-size: 1.125rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .footer-brand-mark {
            width: 10px;
            height: 10px;
            background: var(--brand-green);
        }

        .footer-col h5 {
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1.5rem;
            color: var(--text-main);
        }

        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 0.75rem; }
        .footer-col ul li a { color: var(--text-secondary); transition: color 0.2s; }
        .footer-col ul li a:hover { color: var(--brand-green); }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid var(--brand-border);
            display: flex;
            justify-content: space-between;
            color: var(--text-secondary);
        }

        /* Responsive */
        @media (max-width: 992px) {
            :root {
                --spacing-lg: 5rem;
                --spacing-md: 3rem;
            }
            
            .grid-2, .grid-3 { grid-template-columns: 1fr; }
            .feature-text { padding-right: 0; margin-bottom: 2rem; }
            .feature-block:nth-child(even) .feature-image { order: -1; margin-bottom: 2rem; }
            
            .nav-links, .nav-actions .btn-secondary { display: none; }
            .mobile-menu { display: block; font-size: 1.5rem; cursor: pointer; }
            
            .footer-top { grid-template-columns: 1fr 1fr; }
            .footer-brand { grid-column: span 2; }
            
            #hero { text-align: left; }
            h1 { font-size: 3rem; }
        }

        @media (max-width: 480px) {
            .footer-top { grid-template-columns: 1fr; }
            .footer-brand { grid-column: span 1; }
            .footer-bottom { flex-direction: column; gap: 1rem; }
            
            .hero-actions { flex-direction: column; }
            .btn { width: 100%; }
        }
    
