* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #0f172a;
    background: #f8fafc;
    font-size: 17px;
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: #0f172a;
    color: #fff;
}
.logo img { height: 40px; }
.lang-switch select { padding: 6px 10px; border-radius: 8px; border: 1px solid #cbd5e1; }
.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 88px 24px;
    align-items: center;
    background: #0f172a;
    color: #e2e8f0;
}
.hero-text h1 { margin: 12px 0; font-size: 40px; line-height: 1.2; }
.hero-text .lead { color: #cbd5e1; max-width: 620px; font-size: 18px; }
.hero-media { position: relative; display: flex; justify-content: center; align-items: center; min-height: 260px; }
.hero .mockup {
    width: 240px; height: 240px;
    border-radius: 28px;
    background: rgba(255,255,255,0.95);
    display: grid; place-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    position: relative;
    z-index: 2;
    padding: 16px;
}
.hero .mockup img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.hero .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: blur(2px);
    z-index: 1;
}
.eyebrow { text-transform: uppercase; letter-spacing: 1px; font-size: 12px; color: #38bdf8; }
.btn {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 12px;
    background: #0ea5e9;
    color: #0f172a;
    font-weight: 700;
    transition: transform 0.1s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(14,165,233,0.35); }
.btn.full { width: 100%; text-align: center; }
.btn.secondary {
    margin-top: 10px;
    background: #e2e8f0;
    color: #0f172a;
}
.btn.secondary:hover {
    box-shadow: 0 10px 20px rgba(15,23,42,0.15);
}
.section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.section.muted {
    background: #e2e8f0;
    border-radius: 20px;
}
.section-header { text-align: center; margin-bottom: 40px; }
.media-block {
    max-width: 1000px;
    margin: 0 auto 32px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(15,23,42,0.12);
}
.media-block video {
    width: 100%;
    display: block;
    background: #000;
}
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}
.card {
    padding: 20px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(15,23,42,0.05);
}
.card-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
}
.form-wrap {
    max-width: 520px;
    margin: 0 auto;
    background: #fff;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(15,23,42,0.07);
}
form label { display: block; margin-bottom: 14px; font-weight: 600; }
form input {
    width: 100%;
    padding: 14px;
    margin-top: 6px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    font-size: 16px;
}
.small { color: #475569; font-size: 14px; }
.msg { margin-top: 12px; min-height: 20px; font-weight: 600; }
.msg.error { color: #b91c1c; }
.msg.ok { color: #0f766e; }
.faq div { margin-bottom: 20px; }
.footer {
    padding: 24px;
    text-align: center;
    background: #0f172a;
    color: #cbd5e1;
}
.footer-contact {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.footer-logo {
    max-width: 220px;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.footer-email {
    font-size: 15px;
    color: #e2e8f0;
}
.page-basic { display: flex; align-items: center; justify-content: center; min-height: 80vh; }
.page-basic .container { text-align: center; padding: 24px; background: #fff; border-radius: 12px; box-shadow: 0 10px 30px rgba(15,23,42,0.08); }
@media (max-width: 640px) {
    .hero { padding: 64px 18px; }
    .hero-text h1 { font-size: 32px; }
}
