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

:root {
    --navy: #0b1d36;
    --primary: #0d47a1;
    --primary-mid: #1565c0;
    --accent: #0288d1;
    --wa: #25D366;
    --text: #1a2332;
    --text-muted: #5a6a7a;
    --bg: #ffffff;
    --bg-soft: #f4f7fb;
    --border: #e2e8f0;
    --radius: 12px;
    --radius-pill: 50px;
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
}

.container { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 20px; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent); }

/* Header */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}
.header.scrolled { box-shadow: 0 2px 16px rgba(11,29,54,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.logo { display: flex; align-items: center; gap: 10px; color: var(--text); font-weight: 700; font-size: 0.95rem; }
.logo:hover { color: var(--text); }
.logo-img {
    width: 40px; height: 40px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border);
}
.logo strong { color: var(--primary); }

.nav { display: flex; gap: 22px; }
.nav-link {
    color: var(--text-muted); font-weight: 600; font-size: 0.88rem;
    position: relative; transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link.active::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 2px; background: var(--primary); border-radius: 1px;
}

.header-right { display: flex; align-items: center; gap: 12px; }
.lang-switch {
    display: flex; border: 1px solid var(--border); border-radius: var(--radius-pill); overflow: hidden;
}
.lang-btn {
    background: none; border: none; padding: 5px 12px; font-size: 0.75rem;
    font-weight: 700; cursor: pointer; color: var(--text-muted); font-family: inherit;
}
.lang-btn.active { background: var(--primary); color: white; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ===== Corporate Hero - 2 column ===== */
.hero {
    padding: 100px 0 56px;
    background: linear-gradient(160deg, #0b1d36 0%, #0d47a1 55%, #1565c0 100%);
    color: white;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}
.hero-badge {
    display: inline-block;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 5px 12px; border-radius: var(--radius-pill);
    margin-bottom: 16px; color: rgba(255,255,255,0.9);
}
.hero h1 {
    font-size: 2rem; font-weight: 800; line-height: 1.2;
    margin-bottom: 12px; letter-spacing: -0.03em;
}
.hero-tagline {
    font-size: 0.85rem; font-weight: 700; letter-spacing: 0.04em;
    text-transform: uppercase; color: #90caf9;
    margin-bottom: 14px; line-height: 1.5;
}
.hero-subtitle {
    font-size: 0.92rem; opacity: 0.88; margin-bottom: 24px;
    max-width: 420px; line-height: 1.6;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }

.hero-visual { display: flex; justify-content: center; }
.hero-card {
    background: white;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    max-width: 320px;
    width: 100%;
}
.hero-logo-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 26px; border-radius: var(--radius-pill);
    font-weight: 700; font-size: 0.88rem;
    border: none; cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.btn-primary {
    background: white; color: var(--primary);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.btn-primary:hover { background: #f0f7ff; color: var(--primary); transform: translateY(-1px); }
.btn-whatsapp {
    background: var(--wa); color: white;
    box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { background: #1da851; color: white; transform: translateY(-1px); }
.btn-full { width: 100%; }
.btn-buy {
    display: inline-flex; align-items: center; justify-content: center; width: 100%;
    padding: 10px 16px; background: var(--wa); color: white;
    border-radius: var(--radius-pill); font-weight: 700; font-size: 0.82rem;
    text-decoration: none; transition: all 0.2s;
}
.btn-buy:hover { background: #1da851; color: white; }

/* Social */
.social-links { display: flex; gap: 10px; }
.social-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    color: white !important; transition: transform 0.2s;
    font-size: 0.7rem; font-weight: 700;
}
.social-btn:hover { transform: scale(1.1); color: white !important; }
.social-btn.facebook { background: #1877f2; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #bc1888); }
.social-btn.tiktok { background: #111; }
.social-btn.whatsapp { background: #25D366; }
.social-links-sm .social-btn { width: 32px; height: 32px; }
.social-links-footer .social-btn {
    width: auto; height: auto; padding: 7px 14px; border-radius: var(--radius-pill); font-size: 0.75rem;
}

/* Sections */
section { padding: 56px 0; }
.section-header { text-align: center; margin-bottom: 32px; }
.section-header h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.02em; }
.underline {
    width: 40px; height: 3px; background: var(--primary);
    margin: 0 auto 12px; border-radius: 2px;
}
.section-desc { max-width: 480px; margin: 0 auto; color: var(--text-muted); font-size: 0.9rem; }

/* About */
.about { background: var(--bg-soft); }
.about-content { display: grid; gap: 28px; }
.about-text p { margin-bottom: 12px; color: var(--text-muted); font-size: 0.92rem; max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.about-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
    background: white; padding: 24px 18px; border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(11,29,54,0.06);
    text-align: center; border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(11,29,54,0.1); }
.card-icon { font-size: 1.6rem; margin-bottom: 10px; }
.card h3 { font-size: 0.95rem; margin-bottom: 6px; font-weight: 700; }
.card p { color: var(--text-muted); font-size: 0.82rem; }

/* Products */
.products { background: white; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card {
    background: white; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border); box-shadow: 0 2px 10px rgba(11,29,54,0.05);
    display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(11,29,54,0.1); }
.product-card:nth-child(1) .product-image { background: #0d47a1; }
.product-card:nth-child(2) .product-image { background: #1565c0; }
.product-card:nth-child(3) .product-image { background: #0277bd; }
.product-card:nth-child(4) .product-image { background: #00838f; }
.product-card:nth-child(5) .product-image { background: #00695c; }
.product-card:nth-child(6) .product-image { background: #37474f; }

.product-image {
    color: white; font-size: 2rem; height: 88px;
    display: flex; align-items: center; justify-content: center;
}
.product-info { padding: 16px; display: flex; flex-direction: column; flex-grow: 1; }
.product-info h3 { font-size: 0.92rem; margin-bottom: 4px; font-weight: 700; }
.product-desc { color: var(--text-muted); font-size: 0.78rem; margin-bottom: 8px; flex-grow: 1; }
.product-price { font-weight: 700; color: var(--primary); font-size: 0.88rem; margin-bottom: 12px; }
.products-note { text-align: center; margin-top: 20px; font-size: 0.78rem; color: var(--text-muted); }

/* Location */
.location { background: var(--bg-soft); }
.map-wrap {
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border); box-shadow: 0 2px 12px rgba(11,29,54,0.06);
}
.map-wrap iframe { display: block; }
.map-link { text-align: center; margin-top: 14px; }
.map-link a { font-weight: 600; font-size: 0.88rem; }

/* Contact */
.contact { background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.info-item { display: flex; gap: 12px; align-items: flex-start; }
.info-icon {
    width: 38px; height: 38px; background: var(--bg-soft);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1.05rem; border: 1px solid var(--border);
}
.info-item h4 {
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.04em;
    color: var(--text-muted); margin-bottom: 2px; font-weight: 600;
}
.info-item p { font-size: 0.9rem; font-weight: 600; }

.contact-form-wrapper {
    background: var(--bg-soft); padding: 24px; border-radius: var(--radius);
    border: 1px solid var(--border);
}
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-weight: 600; font-size: 0.82rem; margin-bottom: 5px; }
.form-group input, .form-group textarea {
    width: 100%; padding: 11px 14px; border: 1px solid var(--border);
    border-radius: 10px; font-family: inherit; font-size: 0.9rem; background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13,71,161,0.12);
}

/* Footer */
.footer {
    background: var(--navy); color: rgba(255,255,255,0.85); padding: 36px 0;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1rem; color: white; }
.footer-logo {
    width: 32px; height: 32px; object-fit: cover; border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.2);
}
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.footer-links a { color: rgba(255,255,255,0.75); font-size: 0.85rem; }
.footer-links a:hover { color: #90caf9; }
.footer-kvk { font-size: 0.78rem; opacity: 0.7; }
.copyright { font-size: 0.72rem; opacity: 0.55; }

/* Floating WA */
.whatsapp-float {
    position: fixed; bottom: 22px; right: 18px; z-index: 999;
    background: var(--wa); color: white;
    width: 54px; height: 54px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    text-decoration: none; transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); color: white; }
.wa-float-icon { font-size: 1.4rem; }

/* Responsive */
@media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .social-links { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-card { max-width: 260px; }
}

@media (max-width: 768px) {
    html { font-size: 14px; }
    .nav {
        position: fixed; top: 60px; left: 0; right: 0;
        background: white; flex-direction: column; padding: 16px; gap: 12px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-120%); opacity: 0; transition: 0.25s; pointer-events: none;
    }
    .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .menu-toggle { display: flex; }
    .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hero { padding: 88px 0 40px; }
    .hero h1 { font-size: 1.55rem; }
    section { padding: 40px 0; }
    .about-cards { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .product-image { height: 72px; font-size: 1.7rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 28px; }
    .logo-text { font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; }
}
