@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

:root {
    --brand:        #E91E63;
    --brand-dark:   #C2185B;
    --brand-light:  #FCE4EC;
    --brand-rgb:    233, 30, 99;
    --text:         #111827;
    --text-muted:   #6b7280;
    --text-light:   #9ca3af;
    --bg:           #f9fafb;
    --bg-alt:       #f3f4f6;
    --card:         #ffffff;
    --border:       #e5e7eb;
    --radius:       12px;
    --radius-lg:    16px;
    --radius-xl:    20px;
    --shadow-sm:    0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow:       0 4px 12px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-md:    0 8px 24px rgba(0,0,0,0.09), 0 4px 10px rgba(0,0,0,0.05);
    --shadow-lg:    0 16px 40px rgba(0,0,0,0.11), 0 6px 16px rgba(0,0,0,0.06);
    --font:         'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono:    'Space Mono', monospace;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a { color: var(--brand-dark); text-decoration: none; transition: color .15s; }
a:hover { color: var(--brand); text-decoration: underline; }

.container { width: min(1120px, 92vw); margin-inline: auto; }

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(249, 250, 251, 0.92);
    backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .85rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -.01em;
}
.logo:hover { text-decoration: none; color: var(--text); }

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--brand);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 7px);
    gap: 2px;
}
.logo-grid i {
    width: 7px; height: 7px;
    border-radius: 2px;
    background: rgba(255,255,255,.3);
    display: block;
    transition: background .2s;
}
.logo-grid i.on { background: #fff; }

.nav-desktop { display: flex; align-items: center; gap: 1.5rem; }
.nav-desktop a {
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color .15s;
}
.nav-desktop a:hover { color: var(--text); text-decoration: none; }

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: .25rem;
    padding: .75rem 0 1rem;
    border-top: 1px solid var(--border);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: .4rem 0;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--text);
    padding: .2rem .4rem;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .6rem 1.25rem;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all .15s;
    border: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 2px 8px rgba(var(--brand-rgb), .3);
}
.btn-primary:hover {
    background: var(--brand-dark);
    color: #fff;
    box-shadow: 0 4px 16px rgba(var(--brand-rgb), .4);
    text-decoration: none;
    transform: translateY(-1px);
}
.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1.5px solid var(--border);
}
.btn-ghost:hover {
    background: var(--card);
    color: var(--text);
    border-color: var(--brand);
    text-decoration: none;
}

/* ── Sections ── */
section { padding: 5rem 0; }
.alt-bg { background: var(--bg-alt); }

.section-label {
    font-family: var(--font-mono);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--brand);
    margin-bottom: .75rem;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* ── Hero ── */
.hero { padding: 4rem 0 5rem; background: var(--bg); overflow: hidden; }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--brand);
    background: var(--brand-light);
    padding: .3rem .75rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.hero-copy h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.03em;
    color: var(--text);
    margin-bottom: 1.25rem;
}
.hero-copy h1 em {
    font-style: normal;
    color: var(--brand);
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2rem; }

.hero-trust {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}
.hero-trust li {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* hero visual */
.hero-visual { position: relative; }

.booking-grid {
    position: absolute;
    inset: -3rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .5rem;
    opacity: .35;
    pointer-events: none;
    z-index: 0;
}
.booking-grid i {
    aspect-ratio: 1;
    border-radius: 8px;
    background: var(--border);
    display: block;
    animation: gridPulse 3s ease-in-out infinite;
    animation-delay: calc(var(--d) * 0.18s);
}
.booking-grid i.on { background: var(--brand-light); border: 1.5px solid rgba(var(--brand-rgb),.25); }

@keyframes gridPulse {
    0%, 100% { opacity: .6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.04); }
}

.hero-screenshot { position: relative; z-index: 1; }
.product-screenshot { margin: 0 auto; }

.browser-frame {
    background: var(--card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.browser-chrome {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .75rem 1rem;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}

.browser-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--border);
}
.browser-dot:nth-child(1) { background: #fc5f57; }
.browser-dot:nth-child(2) { background: #fdbc2c; }
.browser-dot:nth-child(3) { background: #33c748; }

.browser-viewport { overflow: hidden; }
.browser-viewport img { width: 100%; }

.hero-screenshot-caption {
    margin-top: .75rem;
    font-size: .78rem;
    color: var(--text-light);
    text-align: center;
}

/* ── Steps ── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    list-style: none;
    counter-reset: steps;
}

.step-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s, transform .2s;
}
.step-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.step-slot {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--brand);
    background: var(--brand-light);
    padding: .25rem .65rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .6rem;
    letter-spacing: -.01em;
}

.step-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* ── Problem/Feature cards ── */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.problem-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s, transform .2s;
}
.problem-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.problem-card .icon { font-size: 1.75rem; margin-bottom: .85rem; }

.problem-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .5rem;
}

.problem-card p { font-size: .88rem; color: var(--text-muted); margin-bottom: .5rem; line-height: 1.6; }

.solution {
    font-size: .8rem !important;
    font-weight: 600;
    color: var(--brand) !important;
    font-family: var(--font-mono);
}

/* ── Product showcase ── */
.product-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.product-callouts { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }

.product-callouts li {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
}

.callout-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand);
    flex-shrink: 0;
    margin-top: .45rem;
    box-shadow: 0 0 0 3px var(--brand-light);
}

.product-callouts strong {
    display: block;
    font-size: .95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .2rem;
}

.product-callouts span { font-size: .87rem; color: var(--text-muted); line-height: 1.55; }

/* ── Screenshot gallery ── */
.screenshot-gallery {
    display: grid;
    gap: 1.25rem;
}

.screenshot-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s, transform .2s;
}
.screenshot-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.screenshot-frame { overflow: hidden; aspect-ratio: 16/9; background: var(--bg-alt); }
.screenshot-frame img { width: 100%; height: 100%; object-fit: cover; }

.screenshot-card figcaption {
    padding: .9rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.screenshot-card figcaption strong { font-size: .88rem; font-weight: 700; color: var(--text); }
.screenshot-card figcaption span { font-size: .8rem; color: var(--text-muted); }

/* ── Feature list ── */
.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }

.feature-list li {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s;
}
.feature-list li:hover { box-shadow: var(--shadow); }

.check {
    width: 24px;
    height: 24px;
    background: var(--brand-light);
    color: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: .1rem;
}

.feature-list strong {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .2rem;
}

.feature-list span { font-size: .83rem; color: var(--text-muted); line-height: 1.55; }

/* ── Theme grid ── */
.theme-grid {
    display: grid;
    gap: 1.1rem;
}
.theme-grid--five { grid-template-columns: repeat(5, 1fr); }

.theme-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: box-shadow .2s, transform .2s;
}
.theme-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.theme-preview {
    height: 64px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: .8rem;
    letter-spacing: .02em;
}
.theme-preview.classic { background: #111; color: #E91E63; }
.theme-preview.minimal { background: #f8f8f8; color: #333; border: 1px solid #ddd; }
.theme-preview.slotra2 { background: linear-gradient(135deg, #E91E63, #9c27b0); color: #fff; }
.theme-preview.eduslot { background: linear-gradient(135deg, #1a1a2e, #16213e); color: #E91E63; }
.theme-preview.iserv   { background: #0057b8; color: #fff; }

.theme-card h4 {
    font-size: .85rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .35rem;
}
.theme-card p { font-size: .78rem; color: var(--text-muted); line-height: 1.5; }

/* ── Trust / Vertrauen ── */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.trust-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s, transform .2s;
}
.trust-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.trust-card .icon { font-size: 2rem; margin-bottom: .85rem; }
.trust-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.trust-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ── FAQ ── */
.faq-container { max-width: 720px; }

.faq-list { display: flex; flex-direction: column; gap: .5rem; }

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item[open] { border-color: rgba(var(--brand-rgb), .25); }

.faq-item summary {
    padding: 1.1rem 1.25rem;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
}
.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--brand);
    transition: transform .2s;
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
    padding: 0 1.25rem 1.1rem;
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ── Kontakt / CTA ── */
#kontakt { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); }
#kontakt .section-label { color: rgba(255,255,255,.7); }
#kontakt .section-title { color: #fff; }
#kontakt .section-intro { color: rgba(255,255,255,.8); }

.contact-card {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    max-width: 560px;
}

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.contact-form input,
.contact-form textarea {
    font-family: var(--font);
    font-size: .9rem;
    padding: .75rem 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.3);
    background: rgba(255,255,255,.15);
    color: #fff;
    width: 100%;
    transition: border-color .15s, background .15s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.55); }
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.2);
}
.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-form .btn-white {
    background: #fff;
    color: var(--brand-dark);
    font-weight: 700;
    padding: .8rem 1.5rem;
    align-self: flex-start;
}
.contact-form .btn-white:hover {
    background: var(--brand-light);
    color: var(--brand-dark);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.contact-alt {
    margin-top: 1.5rem;
    font-size: .85rem;
    color: rgba(255,255,255,.75);
}
.contact-alt a { color: #fff; font-weight: 600; }

/* ── Footer ── */
.site-footer {
    background: var(--text);
    color: rgba(255,255,255,.6);
    padding: 2.5rem 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    text-align: center;
}

.footer-inner strong { color: #fff; }

.footer-inner a {
    color: rgba(255,255,255,.6);
    transition: color .15s;
    font-size: .875rem;
}
.footer-inner a:hover { color: #fff; text-decoration: none; }
.footer-inner p { font-size: .875rem; }

/* ── Legal pages ── */
.legal-hero {
    background: linear-gradient(135deg, var(--brand-light), #fff);
    padding: 3.5rem 0 2.5rem;
    border-bottom: 1px solid var(--border);
}
.legal-hero h1 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.02em;
    margin-bottom: .5rem;
}
.legal-hero p { font-size: 1rem; color: var(--text-muted); }

.legal-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0 5rem;
}

.legal-body h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 2.25rem 0 .65rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    letter-spacing: -.01em;
}
.legal-body h2:first-child { border-top: none; padding-top: 0; }

.legal-body h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 1.5rem 0 .5rem;
}

.legal-body p, .legal-body li {
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: .75rem;
}

.legal-body ul { margin-left: 1.5rem; margin-bottom: .75rem; }

.legal-card {
    background: var(--brand-light);
    border: 1px solid rgba(var(--brand-rgb), .2);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.75rem;
    margin: 1.5rem 0;
}
.legal-card strong { color: var(--brand-dark); font-weight: 700; display: block; margin-bottom: .5rem; }
.legal-card p { color: var(--text); margin: 0; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-visual { display: none; }
    .product-showcase { grid-template-columns: 1fr; gap: 2rem; }
    .feature-split { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .problem-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .theme-grid--five { grid-template-columns: repeat(2, 1fr); }
    .nav-desktop { display: none; }
    .menu-toggle { display: block; }
    .header-inner .btn { display: none; }
}

/* ── Story Section ── */
.story-block {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: start;
    margin-top: 2.25rem;
}

.story-lead {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--text, #0f172a);
    line-height: 1.45;
    margin-bottom: 1.25rem;
    font-style: italic;
    padding-left: 1rem;
    border-left: 3px solid var(--accent, #6366f1);
}

.story-text p {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.975rem;
}

.story-text p:last-child { margin-bottom: 0; }

.story-sidebar { position: sticky; top: 5.5rem; }

.story-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
}

.story-icon {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.story-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.story-card > p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.story-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.story-highlights li {
    font-size: 0.845rem;
    color: #374151;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 8px;
    padding: 0.45rem 0.75rem;
    font-weight: 500;
}

@media (max-width: 860px) {
    .story-block {
        grid-template-columns: 1fr;
    }
    .story-sidebar {
        position: static;
        order: -1;
    }
}

@media (max-width: 600px) {
    section { padding: 3.5rem 0; }
    .theme-grid--five { grid-template-columns: 1fr 1fr; }
    .screenshot-gallery { grid-template-columns: 1fr !important; }
}
