/*
Theme Name: bomeo
Theme URI: https://bomeo.de
Description: bomeo UG Corporate Theme
Version: 1.0
Author: bomeo
*/

:root {
    --color-bg-dark: #080d1a;
    --color-bg-dark-2: #0d1426;
    --color-bg-light: #ffffff;
    --color-bg-gray: #f8fafc;
    --color-accent: #00b4ff;
    --color-accent-hover: #0099dd;
    --color-primary: #2563eb;
    --color-primary-hover: #1d4ed8;
    --color-amber: #d97706;
    --color-green: #16a34a;
    --color-text-dark: #0f172a;
    --color-text-muted: #64748b;
    --color-text-light: rgba(255,255,255,0.65);
    --color-text-white: #ffffff;
    --font-main: 'Plus Jakarta Sans', system-ui, sans-serif;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --max-width: 1100px;
    --nav-height: 68px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    background: var(--color-bg-light);
    color: var(--color-text-dark);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main { flex: 1; }

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

/* ─── NAVIGATION ─── */
.site-header {
    background: var(--color-bg-dark);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    height: var(--nav-height);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 34px;
    height: 34px;
    background: var(--color-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-logo-icon svg {
    width: 18px;
    height: 18px;
}

.nav-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-white);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
    text-decoration: none;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    color: var(--color-text-white);
}

.nav-cta a {
    background: var(--color-primary) !important;
    color: var(--color-text-white) !important;
    padding: 8px 18px !important;
    border-radius: var(--radius-md) !important;
    font-weight: 600 !important;
    transition: background 0.2s !important;
}

.nav-cta a:hover {
    background: var(--color-primary-hover) !important;
}

/* ─── HERO ─── */
.hero {
    background: var(--color-bg-dark);
    padding: 80px 24px 100px;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,180,255,0.1);
    border: 1px solid rgba(0,180,255,0.25);
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

.hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--color-text-white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--color-accent);
}

.hero-sub {
    font-size: 17px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    color: var(--color-text-white);
    padding: 13px 26px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-1px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    padding: 13px 26px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-ghost:hover {
    border-color: rgba(255,255,255,0.35);
    color: var(--color-text-white);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,180,255,0.08);
}

/* ─── FEATURE CARDS ─── */
.features-overlap {
    background: var(--color-bg-dark);
    padding-bottom: 0;
}

.features-overlap-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    transform: translateY(60px);
}

.feature-card {
    background: var(--color-bg-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.feature-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
}

.feature-card-icon.blue { background: #dbeafe; }
.feature-card-icon.green { background: #dcfce7; }
.feature-card-icon.amber { background: #fef3c7; }

.feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ─── SECTIONS ─── */
.section {
    padding: 100px 24px;
}

.section-gray {
    background: var(--color-bg-gray);
}

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

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--color-text-dark);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-dark h2 {
    color: var(--color-text-white);
}

.section-sub {
    font-size: 17px;
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-dark .section-sub {
    color: var(--color-text-light);
}

/* ─── PRODUKT-GRID ─── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 16px;
}

.products-grid-tools {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.product-card {
    background: var(--color-bg-light);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
    text-decoration: none;
    display: block;
}

.product-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border-color: #bfdbfe;
    transform: translateY(-2px);
}

.product-card.saas {
    background: #f0f7ff;
    border-color: #bfdbfe;
}

.product-card.tool {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.product-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.product-card.tool .product-card-icon {
    background: #dcfce7;
}

.product-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.product-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.product-card.tool .product-card-link {
    color: var(--color-green);
}

/* ─── GRID-LABEL ─── */
.grid-label {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* ─── BLOG CARDS ─── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--color-bg-light);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    display: block;
}

.blog-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.blog-card-image {
    width: 100%;
    height: 180px;
    background: #dbeafe;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body {
    padding: 20px 24px 24px;
}

.blog-card-cat {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.blog-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.4;
    margin-bottom: 8px;
}

.blog-card p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.blog-card-date {
    font-size: 12px;
    color: #94a3b8;
}

/* ─── PAGE HEADER ─── */
.page-header {
    background: var(--color-bg-dark);
    padding: 60px 24px;
}

.page-header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.page-header-back {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
    display: inline-block;
    transition: color 0.2s;
    text-decoration: none;
}

.page-header-back:hover {
    color: var(--color-text-white);
}

.page-header h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--color-text-white);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.page-header-sub {
    font-size: 17px;
    color: var(--color-text-light);
    margin-top: 12px;
    line-height: 1.7;
}

/* ─── CONTENT ─── */
.content-wrap {
    max-width: 780px;
    margin: 0 auto;
    padding: 64px 24px;
}

.prose h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 2.5rem 0 1rem;
    letter-spacing: -0.02em;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.prose h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 2rem 0 0.75rem;
}

.prose p {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.prose ul, .prose ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.prose li {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 0.4rem;
}

.prose strong { font-weight: 700; color: var(--color-text-dark); }
.prose a { color: var(--color-primary); text-decoration: underline; }
.prose hr { border: none; border-top: 1px solid #e2e8f0; margin: 2rem 0; }

/* ─── KONTAKTFORMULAR ─── */
.contact-form-wrap {
    max-width: 600px;
    margin: 0 auto;
    padding: 64px 24px;
}

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

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 15px;
    font-family: var(--font-main);
    color: var(--color-text-dark);
    background: var(--color-bg-light);
    transition: border-color 0.2s, box-shadow 0.2s;
    margin-bottom: 20px;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.wpcf7-form textarea { min-height: 160px; resize: vertical; }

.wpcf7-form input[type="submit"] {
    width: 100%;
    background: var(--color-primary);
    color: var(--color-text-white);
    border: none;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    transition: background 0.2s;
}

.wpcf7-form input[type="submit"]:hover {
    background: var(--color-primary-hover);
}

/* ─── FOOTER ─── */
.site-footer {
    background: var(--color-bg-dark);
    padding: 60px 24px 32px;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

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

.footer-brand-text {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-top: 14px;
    max-width: 240px;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: var(--color-text-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 24px;
    font-size: 13px;
    color: rgba(255,255,255,0.25);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-image { display: none; }
    .features-overlap-inner { grid-template-columns: 1fr; transform: translateY(0); }
    .products-grid { grid-template-columns: 1fr; }
    .products-grid-tools { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .nav-menu { display: none; }
}
