/*
Theme Name: Verselo AI
Theme URI: https://verselo.ai
Author: Verselo AI
Author URI: https://verselo.ai
Description: Premium dark theme for Verselo AI — KI-Beratung & Coaching for the German Mittelstand. Custom CSS design system with scroll animations, gradient meshes, and isometric aesthetic.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: verselo-theme
Tags: one-column, custom-colors, dark-mode
*/

/* ==========================================================================
   1. CSS Custom Properties
   ========================================================================== */

:root {
    /* Brand */
    --brand-primary: #0A0A1A;
    --brand-accent: #8B5CF6;
    --brand-accent-hover: #7C3AED;
    --brand-accent-glow: rgba(139, 92, 246, 0.25);
    --brand-secondary: #F97316;

    /* Illustration palette */
    --color-coral: #F97316;
    --color-teal: #14B8A6;
    --color-yellow: #F59E0B;
    --color-pink: #EC4899;
    --color-blue: #38BDF8;
    --color-green: #10B981;

    /* Backgrounds */
    --bg-dark: #0A0A1A;
    --bg-dark-alt: #0F0B2E;
    --bg-card: #141428;
    --bg-card-hover: #1A1A35;
    --bg-surface: #111125;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --bg-violet-tint: rgba(139, 92, 246, 0.06);

    /* Text */
    --text-primary: #F1F5F9;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --text-dark: #1E1B4B;
    --text-on-accent: #FFFFFF;

    /* Borders & Shadows */
    --border: rgba(139, 92, 246, 0.12);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px var(--brand-accent-glow);
    --shadow-glow-lg: 0 0 60px rgba(139, 92, 246, 0.3);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-hero: 52px;
    --font-size-h2: 36px;
    --font-size-h3: 22px;
    --font-size-body: 17px;
    --font-size-small: 14px;
    --font-size-caption: 12px;

    /* Layout */
    --container-width: 1200px;
    --container-padding: 24px;
    --section-padding: 100px;
    --section-padding-mobile: 60px;
    --card-gap: 24px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 9999px;

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Z-index */
    --z-nav: 1000;
    --z-mobile-menu: 999;
    --z-overlay: 998;
}

/* ==========================================================================
   2. Reset & Base
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-body);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--brand-accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--brand-accent-hover);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-primary);
}

h1 { font-size: var(--font-size-hero); font-weight: 800; line-height: 1.15; }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); font-weight: 600; line-height: 1.3; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

ul, ol { list-style: none; }

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   3. Layout
   ========================================================================== */

.verselo-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.verselo-section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.verselo-section--dark {
    background: var(--bg-dark);
}

.verselo-section--surface {
    background: var(--bg-surface);
}

.verselo-section--gradient {
    background: linear-gradient(135deg, #0A0A1A 0%, #0F0B2E 30%, #1A0F3E 60%, #0F0B2E 100%);
    position: relative;
    overflow: hidden;
}

.verselo-section--gradient::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 60%);
    animation: mesh-drift 12s ease-in-out infinite alternate;
    pointer-events: none;
}

.verselo-section--gradient::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 35%;
    height: 35%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 60%);
    animation: mesh-drift 15s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

.verselo-section--violet-tint {
    background: var(--bg-dark-alt);
}

.verselo-grid {
    display: grid;
    gap: var(--card-gap);
}

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

.verselo-text-center { text-align: center; }
.verselo-text-muted { color: var(--text-secondary); }

.verselo-section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.verselo-section__label {
    display: inline-block;
    font-size: var(--font-size-caption);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-accent);
    margin-bottom: 16px;
}

.verselo-section__title {
    margin-bottom: 16px;
}

.verselo-section__subtitle {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
}

/* ==========================================================================
   4. Decorative Elements
   ========================================================================== */

/* Floating Blobs */
.verselo-blob {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(60px);
    animation: blob-float 8s ease-in-out infinite alternate;
}

.verselo-blob--violet {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
}

.verselo-blob--orange {
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
}

.verselo-blob--teal {
    background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
}

@keyframes blob-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -20px) scale(1.1); }
}

@keyframes mesh-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, -30px); }
}

/* Wave Dividers */
.verselo-wave {
    width: 100%;
    line-height: 0;
    margin: -1px 0;
    position: relative;
    z-index: 2;
}

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

.verselo-wave--flip {
    transform: rotate(180deg);
}

/* Dot Grid Pattern */
.verselo-dot-grid {
    position: relative;
}

.verselo-dot-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(139, 92, 246, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

/* Glow Line */
.verselo-glow-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-accent), var(--color-pink));
    border-radius: var(--radius-pill);
    margin: 0 auto 24px;
}

/* ==========================================================================
   5. Header / Navigation
   ========================================================================== */

.verselo-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-nav);
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: transform var(--transition);
    padding: 0;
}

.verselo-nav.is-hidden {
    transform: translateY(-100%);
}

.verselo-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.verselo-nav__logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.verselo-nav__logo:hover {
    color: var(--text-primary);
}

.verselo-nav__logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-hover));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 16px;
}

.verselo-nav__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.verselo-nav__menu ul {
    display: flex;
    gap: 32px;
    list-style: none;
}

.verselo-nav__menu a {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    transition: color var(--transition);
}

.verselo-nav__menu a:hover,
.verselo-nav__menu .current-menu-item a {
    color: var(--text-primary);
}

.verselo-nav__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.verselo-nav__cta {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-hover));
    border-radius: var(--radius-md);
    transition: all var(--transition);
    box-shadow: 0 2px 10px var(--brand-accent-glow);
}

.verselo-nav__cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
    color: white;
}

/* Hamburger */
.verselo-hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 28px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

/* Mobile Menu */
.verselo-mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(20px);
    z-index: var(--z-mobile-menu);
    padding: 32px var(--container-padding);
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}

.verselo-mobile-menu.is-open {
    display: flex;
}

.verselo-mobile-menu ul {
    list-style: none;
}

.verselo-mobile-menu li {
    border-bottom: 1px solid var(--border-subtle);
}

.verselo-mobile-menu a {
    display: block;
    padding: 16px 0;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 500;
}

.verselo-mobile-menu__cta {
    margin-top: 24px;
    text-align: center;
}

/* ==========================================================================
   6. Buttons
   ========================================================================== */

.verselo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-family);
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all var(--transition);
}

.verselo-btn--primary {
    padding: 16px 36px;
    font-size: 17px;
    color: white;
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-hover));
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px var(--brand-accent-glow);
}

.verselo-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-lg);
    filter: brightness(1.1);
    color: white;
}

.verselo-btn--secondary {
    padding: 16px 36px;
    font-size: 17px;
    color: var(--brand-accent);
    background: transparent;
    border: 2px solid var(--brand-accent);
    border-radius: var(--radius-md);
}

.verselo-btn--secondary:hover {
    background: var(--bg-violet-tint);
    transform: translateY(-2px);
    color: var(--brand-accent);
}

.verselo-btn--ghost {
    padding: 12px 24px;
    font-size: 15px;
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.verselo-btn--ghost:hover {
    color: var(--text-primary);
    border-color: var(--brand-accent);
    background: var(--bg-violet-tint);
}

.verselo-btn--large {
    padding: 20px 48px;
    font-size: 18px;
}

.verselo-btn__arrow {
    transition: transform var(--transition);
}

.verselo-btn:hover .verselo-btn__arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   7. Hero Section
   ========================================================================== */

.verselo-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    background: linear-gradient(160deg, #0A0A1A 0%, #0F0B2E 30%, #1A0F3E 55%, #0F0B2E 80%, #0A0A1A 100%);
    position: relative;
    overflow: hidden;
}

.verselo-hero::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
    animation: mesh-drift 12s ease-in-out infinite alternate;
    pointer-events: none;
}

.verselo-hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 60%);
    animation: mesh-drift 15s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

.verselo-hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    padding: 60px var(--container-padding);
}

.verselo-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: var(--radius-pill);
    font-size: var(--font-size-small);
    font-weight: 600;
    color: var(--brand-accent);
    margin-bottom: 32px;
}

.verselo-hero__title {
    font-size: var(--font-size-hero);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-primary) 0%, rgba(241, 245, 249, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.verselo-hero__title span {
    background: linear-gradient(135deg, var(--brand-accent), var(--color-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.verselo-hero__subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.verselo-hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.verselo-hero__trust {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    color: var(--text-muted);
    font-size: var(--font-size-small);
}

.verselo-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.verselo-hero__trust-icon {
    width: 20px;
    height: 20px;
    color: var(--color-green);
}

.verselo-hero__illustration {
    display: flex;
    align-items: center;
    justify-content: center;
}

.verselo-hero__illustration svg {
    width: 100%;
    height: auto;
    max-width: 480px;
    filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.15));
}

.verselo-nav__logo-svg {
    flex-shrink: 0;
}

/* ==========================================================================
   8. Cards
   ========================================================================== */

.verselo-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    z-index: 1;
}

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

.verselo-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--brand-accent);
}

.verselo-card__icon svg {
    width: 28px;
    height: 28px;
}

.verselo-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.verselo-card__text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.verselo-card--featured {
    border-color: var(--brand-accent);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, var(--bg-card) 100%);
}

/* ==========================================================================
   9. Pricing Cards
   ========================================================================== */

.verselo-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

.verselo-pricing__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}

.verselo-pricing__card:hover {
    transform: translateY(-4px);
}

.verselo-pricing__card--featured {
    border: 2px solid var(--brand-accent);
    transform: scale(1.03);
    box-shadow: var(--shadow-glow);
}

.verselo-pricing__card--featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.verselo-pricing__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-hover));
    color: white;
    padding: 6px 20px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.verselo-pricing__name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.verselo-pricing__price {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 4px;
}

.verselo-pricing__price span {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-muted);
}

.verselo-pricing__desc {
    color: var(--text-muted);
    font-size: var(--font-size-small);
    margin-bottom: 32px;
}

.verselo-pricing__features {
    text-align: left;
    margin-bottom: 32px;
}

.verselo-pricing__feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-secondary);
}

.verselo-pricing__check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-green);
    margin-top: 2px;
}

/* ==========================================================================
   10. FAQ Accordion
   ========================================================================== */

.verselo-faq__item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--transition);
    background: var(--bg-card);
}

.verselo-faq__item.is-active {
    border-color: var(--brand-accent);
    border-left: 3px solid var(--brand-accent);
}

.verselo-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: color var(--transition);
}

.verselo-faq__question:hover {
    color: var(--brand-accent);
}

.verselo-faq__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.verselo-faq__item.is-active .verselo-faq__icon {
    transform: rotate(180deg);
}

.verselo-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.verselo-faq__item.is-active .verselo-faq__answer {
    max-height: 500px;
}

.verselo-faq__answer-inner {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==========================================================================
   11. Testimonials
   ========================================================================== */

.verselo-testimonial {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border-left: 4px solid var(--brand-accent);
    position: relative;
}

.verselo-testimonial__quote-mark {
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 64px;
    color: var(--brand-accent);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.verselo-testimonial__text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.verselo-testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.verselo-testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-accent), var(--color-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
}

.verselo-testimonial__name {
    font-weight: 600;
    font-size: 15px;
}

.verselo-testimonial__role {
    font-size: 13px;
    color: var(--text-muted);
}

/* ==========================================================================
   12. Steps / Timeline
   ========================================================================== */

.verselo-steps {
    counter-reset: step-counter;
}

.verselo-step {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border-subtle);
    counter-increment: step-counter;
}

.verselo-step:last-child {
    border-bottom: none;
}

.verselo-step__number {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-hover));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: white;
}

.verselo-step__number::before {
    content: counter(step-counter);
}

.verselo-step__content {
    flex: 1;
}

.verselo-step__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.verselo-step__text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==========================================================================
   13. Stats / Metrics
   ========================================================================== */

.verselo-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    padding: 40px 0;
}

.verselo-stat {
    text-align: center;
}

.verselo-stat__number {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand-accent), var(--color-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.verselo-stat__label {
    font-size: var(--font-size-small);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   14. CTA Banner
   ========================================================================== */

.verselo-cta-banner {
    background: linear-gradient(135deg, #0F0B2E 0%, #1A0F3E 50%, #0F0B2E 100%);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

.verselo-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.verselo-cta-banner__title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.verselo-cta-banner__text {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.verselo-cta-banner__actions {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   15. Page Headers
   ========================================================================== */

.verselo-page-header {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(160deg, #0A0A1A 0%, #0F0B2E 50%, #0A0A1A 100%);
    position: relative;
    overflow: hidden;
}

.verselo-page-header::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.verselo-page-header__title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.verselo-page-header__subtitle {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   16. Contact / Forms
   ========================================================================== */

.verselo-form {
    max-width: 600px;
}

.verselo-form .wpforms-container {
    background: transparent;
}

.verselo-form input[type="text"],
.verselo-form input[type="email"],
.verselo-form input[type="tel"],
.verselo-form textarea,
.verselo-form select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 16px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.verselo-form input:focus,
.verselo-form textarea:focus,
.verselo-form select:focus {
    outline: none;
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 3px var(--brand-accent-glow);
}

.verselo-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
}

.verselo-form__group {
    margin-bottom: 20px;
}

.verselo-form__group--last {
    margin-bottom: 24px;
}

.verselo-form__feedback {
    display: none;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 15px;
    margin-bottom: 20px;
}

.verselo-form__feedback--success {
    display: block;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid var(--color-success);
    color: var(--color-success);
}

.verselo-form__feedback--error {
    display: block;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid var(--color-error);
    color: var(--color-error);
}

.verselo-btn__loading svg {
    animation: verselo-spin 1s linear infinite;
}

@keyframes verselo-spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   17. Blog
   ========================================================================== */

.verselo-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.verselo-blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.verselo-blog-card__image {
    aspect-ratio: 16/9;
    background: var(--bg-surface);
    overflow: hidden;
}

.verselo-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.verselo-blog-card:hover .verselo-blog-card__image img {
    transform: scale(1.05);
}

.verselo-blog-card__body {
    padding: 28px;
}

.verselo-blog-card__meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.verselo-blog-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.verselo-blog-card__title a {
    color: var(--text-primary);
}

.verselo-blog-card__title a:hover {
    color: var(--brand-accent);
}

.verselo-blog-card__excerpt {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* Single Post */
.verselo-post {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px var(--container-padding);
}

.verselo-post__content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.verselo-post__content h2 {
    margin: 48px 0 16px;
    font-size: 28px;
}

.verselo-post__content h3 {
    margin: 32px 0 12px;
    font-size: 22px;
}

.verselo-post__content p {
    margin-bottom: 20px;
}

.verselo-post__content ul,
.verselo-post__content ol {
    margin: 20px 0;
    padding-left: 24px;
}

.verselo-post__content li {
    margin-bottom: 8px;
    list-style: disc;
}

.verselo-post__content ol li {
    list-style: decimal;
}

.verselo-post__content blockquote {
    border-left: 3px solid var(--brand-accent);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--bg-card);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
}

.verselo-post__content a {
    color: var(--brand-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.verselo-post__content code {
    background: var(--bg-card);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 15px;
}

.verselo-post__content pre {
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin: 24px 0;
}

/* ==========================================================================
   18. Footer
   ========================================================================== */

.verselo-footer {
    background: #060612;
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 40px;
}

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

.verselo-footer__brand {
    max-width: 300px;
}

.verselo-footer__logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.verselo-footer__desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.verselo-footer__social {
    display: flex;
    gap: 12px;
}

.verselo-footer__social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition);
}

.verselo-footer__social a:hover {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: white;
}

.verselo-footer__col-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.verselo-footer__links {
    list-style: none;
}

.verselo-footer__links li {
    margin-bottom: 12px;
}

.verselo-footer__links a {
    color: var(--text-muted);
    font-size: 15px;
    transition: color var(--transition);
}

.verselo-footer__links a:hover {
    color: var(--brand-accent);
}

.verselo-footer__bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 13px;
}

.verselo-footer__legal {
    display: flex;
    gap: 24px;
}

.verselo-footer__legal a {
    color: var(--text-muted);
    font-size: 13px;
}

.verselo-footer__legal a:hover {
    color: var(--brand-accent);
}

/* ==========================================================================
   19. Scroll Animations
   ========================================================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-children > .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.stagger-children > .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > .animate-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.stagger-children > .animate-on-scroll:nth-child(4) { transition-delay: 0.2s; }
.stagger-children > .animate-on-scroll:nth-child(5) { transition-delay: 0.25s; }
.stagger-children > .animate-on-scroll:nth-child(6) { transition-delay: 0.3s; }

/* Fade variants */
.animate-fade-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-fade-left.is-visible,
.animate-fade-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   20. Utility Classes
   ========================================================================== */

.verselo-mb-0 { margin-bottom: 0; }
.verselo-mb-1 { margin-bottom: 8px; }
.verselo-mb-2 { margin-bottom: 16px; }
.verselo-mb-3 { margin-bottom: 24px; }
.verselo-mb-4 { margin-bottom: 32px; }
.verselo-mb-6 { margin-bottom: 48px; }
.verselo-mb-8 { margin-bottom: 64px; }

.verselo-mt-4 { margin-top: 32px; }
.verselo-mt-6 { margin-top: 48px; }

.verselo-pt-0 { padding-top: 0; }

.verselo-relative { position: relative; z-index: 1; }

.verselo-highlight {
    color: var(--brand-accent);
}

.verselo-gradient-text {
    background: linear-gradient(135deg, var(--brand-accent), var(--color-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Check list */
.verselo-checklist {
    list-style: none;
}

.verselo-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-secondary);
}

.verselo-checklist li::before {
    content: '';
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
    margin-top: 2px;
}

/* X list */
.verselo-xlist li::before {
    background: rgba(239, 68, 68, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EF4444' stroke-width='3'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
}

/* Divider */
.verselo-divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin: 48px 0;
}

/* ==========================================================================
   21. Specific Page Styles
   ========================================================================== */

/* About page - story */
.verselo-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.verselo-about-image {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, var(--bg-card) 100%);
    border-radius: var(--radius-xl);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    font-size: 80px;
    position: relative;
    overflow: hidden;
}

.verselo-about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.15), transparent 60%);
}

/* Contact page */
.verselo-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.verselo-contact-info {
    list-style: none;
}

.verselo-contact-info li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.verselo-contact-info__icon {
    width: 44px;
    height: 44px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-accent);
    flex-shrink: 0;
}

.verselo-contact-info__icon svg {
    width: 22px;
    height: 22px;
}

/* Calendly placeholder */
.verselo-calendly-placeholder {
    background: var(--bg-card);
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    padding: 60px 24px;
    text-align: center;
    margin-top: 32px;
}

.verselo-calendly-placeholder__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.verselo-calendly-placeholder__text {
    color: var(--text-muted);
    font-size: 14px;
}

/* ==========================================================================
   22. WPForms Override (Dark Theme)
   ========================================================================== */

.wpforms-container-full .wpforms-form {
    background: transparent;
}

.wpforms-container-full .wpforms-form .wpforms-field-label {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 14px;
}

.wpforms-container-full .wpforms-form input[type="text"],
.wpforms-container-full .wpforms-form input[type="email"],
.wpforms-container-full .wpforms-form input[type="tel"],
.wpforms-container-full .wpforms-form textarea {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    padding: 14px 18px;
    font-family: var(--font-family);
}

.wpforms-container-full .wpforms-form input:focus,
.wpforms-container-full .wpforms-form textarea:focus {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 3px var(--brand-accent-glow);
}

.wpforms-container-full .wpforms-form .wpforms-submit-container button {
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-hover));
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-family);
}

.wpforms-container-full .wpforms-form .wpforms-submit-container button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   23. Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    :root {
        --font-size-hero: 42px;
        --font-size-h2: 30px;
        --section-padding: 80px;
    }

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

@media (max-width: 768px) {
    :root {
        --font-size-hero: 32px;
        --font-size-h2: 26px;
        --font-size-h3: 20px;
        --section-padding: 60px;
        --container-padding: 20px;
    }

    /* Nav */
    .verselo-nav__menu {
        display: none;
    }

    .verselo-nav__actions {
        display: none;
    }

    .verselo-hamburger {
        display: block;
    }

    /* Hero */
    .verselo-hero {
        min-height: auto;
    }

    .verselo-hero__inner {
        padding: 40px var(--container-padding);
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }

    .verselo-hero__illustration {
        order: -1;
        margin-bottom: 24px;
    }

    .verselo-hero__illustration svg {
        max-width: 320px;
    }

    .verselo-hero__subtitle {
        font-size: 17px;
    }

    .verselo-hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .verselo-hero__trust {
        flex-direction: column;
        gap: 12px;
    }

    /* Grids */
    .verselo-grid--2,
    .verselo-grid--3,
    .verselo-grid--4 {
        grid-template-columns: 1fr;
    }

    .verselo-pricing {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .verselo-pricing__card--featured {
        transform: none;
    }

    .verselo-pricing__card--featured:hover {
        transform: translateY(-4px);
    }

    .verselo-blog-grid {
        grid-template-columns: 1fr;
    }

    .verselo-about-grid,
    .verselo-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Stats */
    .verselo-stats {
        flex-direction: column;
        gap: 32px;
    }

    /* Steps */
    .verselo-step {
        flex-direction: column;
        gap: 16px;
    }

    /* Footer */
    .verselo-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .verselo-footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Page header */
    .verselo-page-header {
        padding: 120px 0 60px;
    }

    .verselo-page-header__title {
        font-size: 32px;
    }

    /* Blobs: hide on mobile */
    .verselo-blob {
        display: none;
    }

    /* CTA Banner */
    .verselo-cta-banner {
        padding: 40px 24px;
    }

    .verselo-cta-banner__title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    :root {
        --font-size-hero: 28px;
        --font-size-h2: 24px;
    }

    .verselo-btn--primary,
    .verselo-btn--secondary {
        padding: 14px 28px;
        font-size: 16px;
        width: 100%;
    }

    .verselo-pricing__price {
        font-size: 36px;
    }
}

/* ==========================================================================
   24. Utility Classes
   ========================================================================== */

.verselo-btn--full-width { width: 100%; }
.verselo-mx-auto { margin-left: auto; margin-right: auto; }
.verselo-max-w-sm { max-width: 420px; }
.verselo-max-w-md { max-width: 480px; }
.verselo-max-w-prose { max-width: 700px; }
.verselo-max-w-article { max-width: 760px; }
.verselo-max-w-content { max-width: 600px; }

/* Hero inner grid (front-page) */
.verselo-hero__inner--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    text-align: left;
}

@media (max-width: 768px) {
    .verselo-hero__inner--grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Blob variants */
.verselo-blob--violet { width: 600px; height: 600px; top: -10%; left: -5%; }
.verselo-blob--orange { width: 400px; height: 400px; bottom: 5%; right: 0; animation-delay: 3s; }

/* Hero illustration container */
.verselo-hero__illustration { position: relative; z-index: 1; }

/* Steps container centered */
.verselo-steps--centered { max-width: 700px; margin: 0 auto; }

/* Grid gap modifiers */
.verselo-grid--gap-md { gap: 32px; }
.verselo-grid--gap-lg { gap: 64px; }
.verselo-grid--align-center { align-items: center; }

/* 404 page */
.verselo-404__hero { min-height: 70vh; }
.verselo-404__number { font-size: 120px; margin-bottom: 16px; }
.verselo-404__title { font-size: 32px; }

/* Single post modifiers */
.verselo-page-header--compact { padding-bottom: 40px; }
.verselo-blog-meta--spaced { margin-bottom: 16px; }
.verselo-page-header__title--article { font-size: 36px; }

/* About page */
.verselo-about-image--padded { padding: 24px; }
.verselo-text-body { font-size: 17px; line-height: 1.8; margin-bottom: 20px; }
.verselo-text-body:last-child { margin-bottom: 0; }

/* Kurs pricing standalone card */
.verselo-pricing-standalone {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px 32px;
}
.verselo-pricing__price--spaced { margin: 16px 0 8px; }
.verselo-pricing__features--spaced { margin-bottom: 24px; }
.verselo-pricing__guarantee { margin-top: 12px; font-size: 13px; color: var(--text-muted); }

/* CTA actions flex */
.verselo-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.verselo-text-sm-muted { font-size: 14px; }

/* Blog card image placeholder */
.verselo-blog-card__image--placeholder {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-dark-alt));
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Empty states */
.verselo-empty-state { padding: 80px 0; }
.verselo-empty-state--sm { padding: 60px 0; }

/* Calendly icon inline */
.verselo-calendly-icon { display: inline-block; vertical-align: middle; margin-right: 8px; }

/* ==========================================================================
   25. Accessibility
   ========================================================================== */

.verselo-skip-link {
    position: absolute;
    left: -9999px;
    z-index: 10000;
    padding: var(--space-1) var(--space-2);
    background: var(--brand-accent);
    color: var(--color-white);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
}

.verselo-skip-link:focus {
    left: var(--space-1);
    top: var(--space-1);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .verselo-blob {
        display: none;
    }
}

/* ==========================================================================
   26. Print
   ========================================================================== */

@media print {
    .verselo-nav,
    .verselo-mobile-menu,
    .verselo-footer,
    .verselo-blob,
    .verselo-wave {
        display: none;
    }

    body {
        background: white;
        color: #333;
    }
}