/* ===================================================
   Vibromera EE — Design System
   Estonia flag palette on light/white backgrounds:
   primary blue #005CA9, near-black #1A1A1A, warm CTA #ff7a00
=================================================== */
:root {
    /* Brand / flag palette */
    --primary: #005CA9;        /* Estonia blue — text/links/headings, AA on white */
    --primary-dark: #00467f;   /* darker blue for hover/active */
    --primary-fill: #0072CE;   /* lighter blue, large fills only */
    --ink: #1A1A1A;            /* near-black — second accent */
    --cta: #ff7a00;            /* warm orange CTA */
    --cta-dark: #e56e00;
    --muted: #5a6573;          /* muted gray text */
    --line: #e4e8ee;           /* borders */
    --bg: #f7f9fc;             /* light background */
    --white: #ffffff;
    --tint: #eaf3fb;           /* soft blue tint (chips, icon bg) */
    --success: #1f9d57;

    /* Spacing scale */
    --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s6: 24px;
    --s8: 32px; --s12: 48px; --s16: 64px;

    /* Radius & shadow */
    --r-sm: 8px; --r-md: 16px; --r-pill: 999px;
    --sh1: 0 2px 8px rgba(16,40,72,.06);
    --sh2: 0 14px 40px rgba(16,40,72,.12);

    /* Type scale */
    --h1: clamp(2.1rem, 4.5vw, 3.1rem);
    --h2: clamp(1.6rem, 3vw, 2.25rem);
    --h3: 1.3rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.65;
    margin: 0;
    background-color: var(--bg);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 0;
}

a { color: var(--primary); }

:focus-visible {
    outline: 3px solid var(--primary-fill);
    outline-offset: 2px;
    border-radius: 4px;
}

img { max-width: 100%; }
picture{display:contents;}

/* ---------------------------------------------------
   Header & Navigation (sticky)
--------------------------------------------------- */
header {
    background-color: var(--white);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: var(--sh1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    gap: 16px;
}

.logo a {
    color: var(--primary);
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -.5px;
    text-decoration: none;
}

.desktop-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.desktop-nav li { margin: 0; background: none; padding: 0; }

.desktop-nav a {
    color: #3a4658;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--r-sm);
    transition: color .2s, background .2s;
}

.desktop-nav a:hover { color: var(--primary); background: var(--tint); }

.nav-cta {
    background: var(--cta) !important;
    color: #fff !important;
    font-weight: 700 !important;
    padding: 10px 18px !important;
    border-radius: var(--r-pill) !important;
    box-shadow: 0 4px 12px rgba(255,122,0,.25);
}
.nav-cta:hover { background: var(--cta-dark) !important; }

/* ---------------------------------------------------
   Header / nav (new component markup)
--------------------------------------------------- */
.site-header.scrolled { box-shadow: 0 4px 18px rgba(16,38,73,.10); }
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    gap: 16px;
}
.brand { text-decoration: none; display: inline-flex; align-items: center; }
.brand-logo {
    color: var(--primary);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -.5px;
}
.primary-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.primary-nav a {
    color: #3a4658;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 9px 13px;
    border-radius: var(--r-sm);
    transition: color .2s, background .2s;
}
.primary-nav a:hover { color: var(--primary); background: var(--tint); }
.primary-nav a.nav-cta { color: #fff; }

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 40px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
}
.burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: transform .25s, opacity .25s;
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
    .burger { display: flex; }
    .primary-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--white);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--sh2);
        padding: 10px 20px 18px;
        gap: 2px;
        display: none;
    }
    .primary-nav.open { display: flex; }
    .header-inner { position: relative; flex-wrap: wrap; }
    .primary-nav a { padding: 12px 10px; border-radius: var(--r-sm); }
    .primary-nav a.nav-cta { margin-top: 8px; text-align: center; }
}

/* ---------------------------------------------------
   Page hero (interior pages)
--------------------------------------------------- */
.page-hero {
    background: linear-gradient(180deg, var(--tint) 0%, var(--white) 100%);
    border-bottom: 1px solid var(--line);
    padding: 48px 0 40px;
}
.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin: 0 0 12px;
    color: var(--ink);
}
.page-hero p { color: var(--muted); font-size: 1.12rem; max-width: 70ch; margin: 0; }

/* ---------------------------------------------------
   Contact page
--------------------------------------------------- */
.contact-address { margin: 40px 0; }
.contact-address h2 { color: var(--ink); }
.button-cta {
    background: var(--cta) !important;
    border-color: var(--cta) !important;
    color: #fff !important;
    font-size: 1.05rem;
    padding: 14px 26px !important;
}
.button-cta:hover { background: var(--cta-dark) !important; border-color: var(--cta-dark) !important; }

/* ---------------------------------------------------
   Hero
--------------------------------------------------- */
.hero {
    background:
        radial-gradient(1100px 460px at 12% -10%, rgba(0,114,206,.14), transparent 60%),
        radial-gradient(900px 420px at 100% 0%, rgba(255,122,0,.08), transparent 55%),
        var(--white);
    border-bottom: 1px solid var(--line);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: var(--s12);
    align-items: center;
    padding: var(--s12) 0 var(--s16);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--tint);
    color: var(--primary);
    font-weight: 700;
    font-size: .85rem;
    padding: 6px 14px;
    border-radius: var(--r-pill);
    letter-spacing: .3px;
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); }

.hero h1 {
    font-size: var(--h1);
    line-height: 1.1;
    font-weight: 800;
    color: var(--ink);
    margin: 18px 0 14px;
    letter-spacing: -1px;
}

.hero-sub {
    font-size: 1.18rem;
    color: var(--muted);
    margin: 0 0 22px;
    max-width: 54ch;
}

.hero-bullets { list-style: none; padding: 0; margin: 0 0 26px; }
.hero-bullets li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: none;
    padding: 6px 0;
    font-size: 1.03rem;
}
.hero-bullets li svg { flex: none; margin-top: 3px; color: var(--primary); }
.hero-bullets b { color: var(--ink); }

.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--cta);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 15px 24px;
    border-radius: var(--r-pill);
    box-shadow: 0 8px 20px rgba(255,122,0,.28);
    transition: transform .2s, background .2s;
    border: none;
}
.btn-cta:hover { background: var(--cta-dark); transform: translateY(-2px); }
.btn-cta .price-chip {
    background: rgba(255,255,255,.22);
    padding: 3px 10px;
    border-radius: var(--r-pill);
    font-size: .92em;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.btn-text:hover { color: var(--primary-dark); text-decoration: underline; }

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 26px;
    color: var(--muted);
    font-size: .95rem;
}
.trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.trust-row svg { color: var(--success); flex: none; }

/* Hero image card */
.hero-media { position: relative; }
.hero-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 16px;
    box-shadow: var(--sh2);
    position: relative;
}
.hero-card img { width: 100%; border-radius: 12px; display: block; }
.stock-badge {
    position: absolute;
    top: 26px;
    left: 26px;
    background: var(--success);
    color: #fff;
    font-weight: 700;
    font-size: .82rem;
    padding: 6px 14px;
    border-radius: var(--r-pill);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.stock-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; }
.value-card {
    position: absolute;
    right: -14px;
    bottom: -22px;
    background: var(--ink);
    color: #fff;
    border-radius: var(--r-md);
    padding: 16px 18px;
    max-width: 250px;
    box-shadow: var(--sh2);
    font-size: .92rem;
    line-height: 1.45;
}
.value-card b { color: var(--cta); }

/* ---------------------------------------------------
   Sections
--------------------------------------------------- */
main { padding-bottom: var(--s12); }

section { padding: var(--s16) 0; border-bottom: 1px solid var(--line); }
section:last-of-type { border-bottom: none; }

section h2 {
    text-align: center;
    font-size: var(--h2);
    font-weight: 800;
    letter-spacing: -.5px;
    margin: 0 auto 14px;
    color: var(--ink);
    max-width: 24ch;
}

section h3 { font-size: var(--h3); color: var(--primary); margin-bottom: 12px; }

.highlight-section { background-color: var(--white); }

.section-subtitle {
    text-align: center;
    font-size: 1.12rem;
    color: var(--muted);
    margin: 0 auto var(--s8);
    max-width: 62ch;
}

/* ---------------------------------------------------
   Buttons (legacy classes preserved)
--------------------------------------------------- */
.button, .button-secondary, .button-ebay {
    display: inline-block;
    padding: 12px 22px;
    border-radius: var(--r-pill);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all .2s;
    margin-top: 10px;
    border: 2px solid transparent;
    cursor: pointer;
}
.button { background-color: var(--cta); color: #fff; border-color: var(--cta); }
.button:hover { background-color: var(--cta-dark); border-color: var(--cta-dark); transform: translateY(-2px); }

.button-secondary { background: transparent; color: var(--primary); border-color: var(--primary); }
.button-secondary:hover { background: var(--primary); color: #fff; }

.button-ebay { background: var(--white); color: #3a4658; border-color: var(--line); }
.button-ebay:hover { background: var(--bg); border-color: #cdd6e2; }

.button-group { display: flex; gap: 10px; flex-wrap: wrap; }
.button-group .button, .button-group .button-secondary, .button-group .button-ebay { flex-grow: 1; }

/* ---------------------------------------------------
   Cards
--------------------------------------------------- */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: var(--s6);
}
.four-columns { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.two-columns { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }
.three-columns { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }

.card {
    background-color: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 26px;
    box-shadow: var(--sh1);
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh2); }
.card h3 { margin-top: 0; }
.card .price { margin-top: auto; font-weight: 800; color: var(--ink); font-size: 1.15rem; }

.product-card-image {
    width: 100%;
    max-height: 210px;
    object-fit: contain;
    margin-bottom: 18px;
    border-radius: 10px;
    background: var(--bg);
}

/* ---------------------------------------------------
   Feature cards (icon chips)
--------------------------------------------------- */
.feature-block {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--s8);
    margin-top: var(--s8);
}
.feature-card { text-align: center; padding: 18px; }
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--tint);
    border-radius: 18px;
    width: 68px; height: 68px;
    margin-bottom: 18px;
    color: var(--primary);
}
.feature-icon svg { width: 34px; height: 34px; display: block; }
.feature-card h3 { font-size: 1.18rem; margin-bottom: 8px; color: var(--ink); }
.feature-card p { color: var(--muted); margin: 0; }

/* ---------------------------------------------------
   Lists with check icon
--------------------------------------------------- */
ul { list-style-type: none; padding-left: 0; }
.card ul li, .service-details ul li, article ul li, .product-info ul li {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="%23005CA9" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') no-repeat left 4px;
    padding-left: 32px;
    margin-bottom: 11px;
    font-size: 1.02rem;
    line-height: 1.5;
}

/* ---------------------------------------------------
   Comparison table
--------------------------------------------------- */
.comparison-table {
    width: 100%;
    margin-top: 24px;
    border-collapse: collapse;
    text-align: center;
    font-size: 1.05rem;
    background: var(--white);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--sh1);
}
.comparison-table th, .comparison-table td { padding: 14px; border: 1px solid var(--line); }
.comparison-table th { background-color: var(--primary); color: #fff; font-weight: 700; }
.comparison-table tbody tr:nth-child(odd) { background-color: var(--bg); }
.comparison-table td:first-child { text-align: left; font-weight: 500; }
.check-mark { color: var(--success); font-size: 1.4rem; font-weight: bold; }
.cross-mark { color: #c0392b; font-size: 1.4rem; font-weight: bold; }

/* ---------------------------------------------------
   Footer (multi-column)
--------------------------------------------------- */
footer {
    background-color: var(--ink);
    color: #c7ced8;
    padding: var(--s12) 0 var(--s8);
}
footer a { color: #9ec7ee; text-decoration: none; }
footer a:hover { text-decoration: underline; }
footer p { margin: 7px 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: var(--s8);
    text-align: left;
}
.footer-col h3, .footer-col h4 { color: #fff; margin: 0 0 14px; font-size: 1.1rem; }
.footer-col ul { padding: 0; }
.footer-col ul li { margin-bottom: 8px; background: none; padding: 0; }
.footer-blurb { color: #98a3b3; font-size: .95rem; max-width: 36ch; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: var(--s8);
    padding-top: var(--s6);
    text-align: center;
    font-size: .9rem;
    color: #8b97a8;
}
.footer-bottom a { color: #9ec7ee; }
.footer-legal { font-size: .85rem; }

.external-icon { font-size: .8em; display: inline-block; margin-left: 4px; }

/* ---------------------------------------------------
   Social proof
--------------------------------------------------- */
#social-proof { text-align: center; }
.social-links { display: flex; justify-content: center; gap: 40px; margin: 30px 0; }
.social-link-icon {
    display: flex; flex-direction: column; align-items: center;
    text-decoration: none; color: var(--ink); font-size: 1.1rem; font-weight: 600;
    transition: transform .25s, color .25s;
}
.social-link-icon:hover { transform: translateY(-5px); color: var(--primary); }
.social-link-icon svg { margin-bottom: 10px; }

/* ---------------------------------------------------
   CTA section / band
--------------------------------------------------- */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
}
.cta-section h2, .cta-section .section-subtitle { color: #fff; }
.cta-section .section-subtitle { opacity: .92; }

.cta-band {
    background: var(--ink);
    color: #fff;
    border-radius: var(--r-md);
    text-align: center;
    padding: var(--s12);
}
.cta-band h2 { color: #fff; }
.cta-band .section-subtitle { color: #cfd6e0; }

.testimonial-card { border-left: 4px solid var(--cta); }
.testimonial-text { font-style: italic; color: #2a3340; flex-grow: 1; margin-bottom: 18px; font-size: 1.05rem; }
.testimonial-author { font-weight: 700; color: var(--primary); text-align: right; }
.testimonial-author a { color: var(--primary); text-decoration: none; }
#testimonials { background-color: var(--tint); }

/* ---------------------------------------------------
   Product page
--------------------------------------------------- */
#product-details .product-main {
    display: flex; gap: var(--s12); align-items: center;
    padding-bottom: var(--s8); border-bottom: 1px solid var(--line); margin-bottom: var(--s8);
}
#product-details .product-image { flex: 1; max-width: 420px; }
#product-details .product-image img { width: 100%; border-radius: var(--r-md); box-shadow: var(--sh1); }
.product-info-col { flex: 1.4; display: flex; flex-direction: column; gap: 20px; }
#product-details h1 { font-size: var(--h1); margin-bottom: 10px; letter-spacing: -.5px; }
#product-details .subtitle { font-size: 1.15rem; color: var(--muted); }
.product-price-box {
    background-color: var(--tint);
    border: 1px solid #cfe2f4;
    border-radius: var(--r-md);
    padding: 24px;
    text-align: center;
}
.product-price-box .price { font-size: 2.4rem; font-weight: 800; color: var(--primary); margin: 0 0 6px; }

.product-tabs { margin-top: var(--s8); }
.tab-nav { display: flex; flex-wrap: wrap; border-bottom: 2px solid var(--line); }
.tab-btn {
    padding: 14px 22px; cursor: pointer; border: none; background: transparent;
    font-size: 1.05rem; font-weight: 600; color: var(--muted);
    position: relative; bottom: -2px; border-bottom: 3px solid transparent;
}
.tab-btn.active { color: var(--primary); border-bottom-color: var(--cta); }
.tab-pane { display: none; padding: 28px 6px; animation: fadeIn .4s; }
.tab-pane.active { display: block; }
.feature-section { margin-bottom: 20px; }

.spec-table { width: 100%; border-collapse: collapse; margin-top: 18px; background: var(--white); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh1); }
.spec-table td { padding: 12px 14px; border: 1px solid var(--line); }
.spec-table tr:nth-child(odd) { background-color: var(--bg); }

/* ---------------------------------------------------
   Service & application pages
--------------------------------------------------- */
.service-item {
    display: flex; gap: var(--s8); align-items: center;
    padding: var(--s8); margin-bottom: 0;
    border: 1px solid var(--line); border-radius: var(--r-md) var(--r-md) 0 0;
    background-color: var(--white); border-bottom: none;
}
.service-content { flex: 2; }
.service-content h2 { text-align: left; margin: 0 0 14px; max-width: none; }
.service-image { flex: 1; max-width: 360px; }
.service-image img { width: 100%; border-radius: var(--r-sm); box-shadow: var(--sh1); }
.service-details {
    padding: 8px 30px 28px; margin-bottom: var(--s8);
    border: 1px solid var(--line); border-top: none;
    border-radius: 0 0 var(--r-md) var(--r-md); background-color: var(--white);
}
.service-details .price { text-align: right; font-weight: 700; margin-top: 16px; font-size: 1.1rem; }
.service-item.partner-network { display: block; text-align: center; background: transparent; border: none; }
.service-item.partner-network h2 { text-align: center; }

/* ---------------------------------------------------
   Blog / article
--------------------------------------------------- */
.article-container {
    max-width: 820px; background-color: var(--white);
    padding: var(--s12); margin: var(--s6) auto;
    border-radius: var(--r-md); box-shadow: var(--sh1);
}
.article-container h1 { font-size: clamp(1.9rem,3.5vw,2.5rem); color: var(--ink); letter-spacing: -.5px; }
.article-meta { font-size: .9rem; color: var(--muted); margin-bottom: 28px; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
article h2 { font-size: 1.7rem; margin-top: 38px; margin-bottom: 18px; color: var(--primary); text-align: left; max-width: none; }
article h3 { color: var(--ink); }
article p, article li { font-size: 1.08rem; line-height: 1.75; }
article ul { padding-left: 0; }
article ul li { margin-bottom: 12px; }
article a { color: var(--primary); font-weight: 600; }
.article-card .article-excerpt { flex-grow: 1; color: var(--muted); margin-top: 10px; }
.article-card .article-category { font-size: .88rem; color: var(--primary); margin-top: 18px; font-weight: 600; }

.mini-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 15px; margin: 28px 0; }
.mini-gallery img { width: 100%; height: auto; border-radius: var(--r-sm); box-shadow: var(--sh1); }

blockquote { border-left: 4px solid var(--cta); margin: 28px 0; padding: 10px 20px; background-color: var(--bg); font-style: italic; border-radius: 0 var(--r-sm) var(--r-sm) 0; }
.case-study-box { background-color: var(--bg); border-left: 4px solid var(--primary); padding: 20px; margin: 28px 0; border-radius: 0 var(--r-sm) var(--r-sm) 0; }
.case-study-box h3 { margin-top: 0; }
.cta-box { background-color: var(--tint); border: 1px solid #cfe2f4; border-radius: var(--r-md); padding: 26px; text-align: center; margin: var(--s8) 0; }
.cta-box h3 { margin-top: 0; color: var(--primary); }

.video-casestudy { margin-top: var(--s8); padding: 28px; border: 1px solid var(--line); border-radius: var(--r-md); background-color: var(--white); }
.video-casestudy h4 { text-align: center; font-size: 1.4rem; color: var(--primary); margin: 0 0 18px; }
.video-container-responsive { position: relative; overflow: hidden; width: 100%; padding-top: 56.25%; }
.video-container-responsive iframe { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: var(--r-sm); border: 0; }

/* ---------------------------------------------------
   Contact page
--------------------------------------------------- */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: var(--s6); margin-top: var(--s8); }
.contact-card { text-align: center; }
.contact-card .feature-icon { margin: 0 auto 16px; }
.contact-card a { font-weight: 700; font-size: 1.1rem; word-break: break-word; }
.map-embed { margin-top: var(--s8); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh1); line-height: 0; }
.map-embed iframe { width: 100%; height: 380px; border: 0; }
.address-block { text-align: center; margin-top: var(--s8); color: var(--muted); font-size: 1.05rem; }

/* ---------------------------------------------------
   Support cards
--------------------------------------------------- */
.support-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: var(--s6); margin: var(--s8) 0; }
.support-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px; box-shadow: var(--sh1); transition: transform .25s, box-shadow .25s; color: var(--ink); }
.support-card:hover { transform: translateY(-5px); box-shadow: var(--sh2); }
.support-card-icon { width: 60px; height: 60px; background: var(--tint); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 1.8rem; }
.support-card h3 { color: var(--primary); font-size: 1.25rem; margin-bottom: 14px; }
.support-card ul { padding: 0; }
.support-card li {
    font-size: .96rem; line-height: 1.55; margin-bottom: 10px; padding-left: 28px;
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="%23005CA9" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') no-repeat 0 3px;
    color: var(--ink);
}
.support-card ol { list-style: none; counter-reset: step; padding: 0; }
.support-card ol li { position: relative; padding-left: 36px; margin-bottom: 14px; font-size: .96rem; background: none; color: var(--ink); }
.support-card ol li::before {
    content: counter(step); counter-increment: step; position: absolute; left: 0; top: 0;
    width: 24px; height: 24px; background: var(--cta); color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: bold;
}
.support-info-box { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); color: #fff; border-radius: var(--r-md); padding: 22px; margin: var(--s6) 0; text-align: center; }
.support-info-box p { margin: 6px 0; font-size: .96rem; color: #fff; }
.support-info-box a { color: #fff; text-decoration: underline; }

/* ---------------------------------------------------
   Video section
--------------------------------------------------- */
.videos-section { margin: 32px 0; }
.videos-section h3 { color: var(--primary); font-size: 1.4rem; margin-bottom: 22px; text-align: center; }
.shorts-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 32px; margin-bottom: 40px; }
.short-video { text-align: center; }
.short-video iframe { width: 100%; max-width: 350px; height: 500px; border-radius: var(--r-sm); box-shadow: var(--sh1); margin: 0 auto 1rem; display: block; border: 0; }
.short-video p { font-size: .9rem; color: var(--muted); margin: 0; padding: 0 1rem; }
.main-video { text-align: center; max-width: 800px; margin: 0 auto; }
.main-video iframe { width: 100%; height: 450px; border-radius: var(--r-sm); box-shadow: var(--sh1); margin-bottom: 1rem; border: 0; }
.main-video p { font-size: 1rem; color: var(--muted); margin: 0; padding: 0 2rem; }

/* Stats row */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: var(--s6); margin-top: var(--s8); }
.stat-card { text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px 18px; box-shadow: var(--sh1); }
.stat-num { font-size: 2.6rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-label { color: var(--muted); margin-top: 8px; }

/* Numbered steps */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: var(--s6); margin-top: var(--s8); counter-reset: stp; }
.step-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px 24px 24px; box-shadow: var(--sh1); position: relative; }
.step-card::before {
    counter-increment: stp; content: counter(stp);
    position: absolute; top: -18px; left: 24px;
    width: 40px; height: 40px; border-radius: 12px; background: var(--cta); color: #fff;
    display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem;
    box-shadow: 0 6px 14px rgba(255,122,0,.3);
}
.step-card h3 { margin-top: 8px; color: var(--ink); }
.step-card p { color: var(--muted); margin: 0; }

/* ---------------------------------------------------
   Burger / mobile nav
--------------------------------------------------- */
.burger-menu {
    display: none; flex-direction: column; justify-content: space-around;
    width: 2.2rem; height: 2rem; background: transparent; border: none; cursor: pointer; padding: 0; z-index: 1001;
}
.burger-bar { width: 2.2rem; height: .22rem; background: var(--primary); border-radius: 10px; transition: all .3s; }

.mobile-nav {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    position: fixed; top: 0; right: -100%; height: 100vh; width: 100%;
    background: var(--ink); transition: right .3s ease-in-out; z-index: 1000;
}
.mobile-nav.active { right: 0; }
.mobile-nav ul { list-style: none; padding: 0; text-align: center; }
.mobile-nav li { background: none; padding: 0; margin: 18px 0; }
.mobile-nav a { color: #fff; font-size: 1.6rem; text-decoration: none; }
.mobile-nav a:hover { color: var(--cta); }
.close-btn { position: absolute; top: 20px; right: 24px; background: none; border: none; color: #fff; font-size: 3rem; cursor: pointer; line-height: 1; }

/* ---------------------------------------------------
   WhatsApp float
--------------------------------------------------- */
.whatsapp-float {
    position: fixed; width: 58px; height: 58px; bottom: 28px; right: 28px;
    background-color: #25d366; color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,.25); z-index: 800; text-decoration: none;
    transition: transform .25s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------------------------------------------------
   Responsive
--------------------------------------------------- */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-grid { grid-template-columns: 1fr; gap: var(--s8); padding-bottom: var(--s12); }
    .hero-media { margin-top: 10px; }
    .value-card { position: static; max-width: none; margin-top: 16px; }
}

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .burger-menu { display: flex; }
    #product-details .product-main, .service-item { flex-direction: column; }
    .service-content h2 { text-align: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .shorts-container { grid-template-columns: 1fr; }
    .short-video iframe { height: 420px; }
    .main-video iframe { height: 300px; }
}

/* fix: keep aspect ratio for content images */
.hero-card img,#product-details .product-image img,.service-image img{height:auto}
/* VBM header/menu parity patch 20260531a
   Normalizes header geometry and mobile drawer behavior across static locales. */
:root {
    --vbm-header-min-height: 64px;
    --vbm-header-gap: clamp(10px, 1.2vw, 18px);
}

html,
body {
    overflow-x: hidden;
}

.site-nav,
.site-bar,
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.navbar,
.header-inner {
    min-height: var(--vbm-header-min-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--vbm-header-gap);
    padding-top: 10px;
    padding-bottom: 10px;
}

.logo,
.brand {
    flex: 0 0 auto;
}

.logo a,
.brand,
.brand-logo {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    white-space: nowrap;
}

.desktop-nav {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.desktop-nav ul,
.primary-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: clamp(2px, 0.45vw, 8px);
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav li,
.mobile-nav li {
    list-style: none;
    margin: 0;
    padding: 0;
    background: none !important;
}

.desktop-nav a,
.primary-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px clamp(6px, 0.58vw, 10px);
    border-radius: 9px;
    line-height: 1.12;
    white-space: nowrap;
    text-decoration: none;
    font-size: clamp(0.86rem, 0.82vw, 0.96rem);
}

.nav-cta {
    margin-left: 4px;
    flex: 0 0 auto;
}

body.vbm-menu-open {
    overflow: hidden;
}

@media (min-width: 769px) {
    .burger-menu,
    .burger {
        display: none !important;
    }

    .desktop-nav {
        display: flex !important;
    }

    .primary-nav {
        position: static !important;
        width: auto !important;
        height: auto !important;
        max-width: none !important;
        max-height: none !important;
        overflow: visible !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
}

@media (max-width: 768px) {
    .navbar,
    .header-inner {
        min-height: 60px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .desktop-nav {
        display: none !important;
    }

    .burger-menu,
    .burger {
        display: flex !important;
        flex: 0 0 auto;
    }

    .mobile-nav,
    #mobile-nav,
    .primary-nav {
        box-sizing: border-box;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        width: min(100vw, 390px) !important;
        max-width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        max-height: 100vh !important;
        max-height: 100dvh !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        transform: translateX(105%) !important;
        transition: transform 0.25s ease !important;
        z-index: 1200 !important;
        padding: 72px 20px 32px !important;
        pointer-events: none;
    }

    .mobile-nav.active,
    #mobile-nav.active,
    .primary-nav.open,
    .primary-nav.active {
        transform: translateX(0) !important;
        pointer-events: auto;
    }

    .mobile-nav ul,
    #mobile-nav ul {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        padding: 0;
        list-style: none;
    }

    .mobile-nav a,
    #mobile-nav a,
    .primary-nav a {
        width: 100%;
        min-height: 44px;
        justify-content: center;
        white-space: normal !important;
        overflow-wrap: anywhere;
        text-align: center;
    }
}
/* VBM header/menu padding correction 20260531b */
.site-nav,
.site-bar,
.site-header {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.site-nav .navbar,
.site-bar .navbar,
.site-header .header-inner {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .site-nav .navbar,
    .site-bar .navbar,
    .site-header .header-inner {
        min-height: 60px !important;
    }
}
/* VBM header/menu container padding correction 20260531d */
.site-nav,
.site-bar,
.site-header {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.site-nav .navbar,
.site-bar .navbar,
.site-header .header-inner {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.site-nav > .container,
.site-bar > .container,
.site-header > .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

@media (max-width: 768px) {
    .site-nav .navbar,
    .site-bar .navbar,
    .site-header .header-inner {
        min-height: 60px !important;
    }
}
/* VBM YouTube lite embed 20260531e
   Prevents YouTube cookies, console issues and heavy third-party JS before user interaction. */
.vbm-youtube-lite {
    position: relative;
    display: flex;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 220px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 16px;
    background:
        radial-gradient(circle at 30% 20%, rgba(0, 114, 206, 0.18), transparent 36%),
        linear-gradient(135deg, #0f172a, #1e3a5f);
    color: #fff;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16);
}

.vbm-youtube-lite:focus-visible {
    outline: 3px solid #0072ce;
    outline-offset: 3px;
}

.vbm-youtube-lite__play {
    width: 68px;
    height: 48px;
    border-radius: 14px;
    background: #ff0033;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.vbm-youtube-lite__play::before {
    content: "";
    display: block;
    margin: 13px auto 0;
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 18px solid #fff;
}

.vbm-youtube-lite__text {
    font-weight: 700;
    line-height: 1.35;
}

.vbm-youtube-lite iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 520px) {
    .vbm-youtube-lite {
        min-height: 190px;
        border-radius: 12px;
    }
}


/* VBM pricing/header alignment patch 20260531k */
body.pricing-page-wrapper {
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    min-height: 100vh;
}
body.pricing-page-wrapper .site-header,
body.pricing-page-wrapper .site-nav,
body.pricing-page-wrapper .site-bar,
body.pricing-page-wrapper > header {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: none !important;
}
body.pricing-page-wrapper .pricing-container {
    padding-left: 20px;
    padding-right: 20px;
}


/* VBM EE primary mobile menu layout patch 20260531l */
@media (max-width: 768px) {
    #primary-nav.primary-nav {
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 10px !important;
        padding: 72px 20px 32px !important;
        text-align: center;
    }
    #primary-nav.primary-nav.open,
    #primary-nav.primary-nav.active {
        left: 0 !important;
        right: auto !important;
        transform: translateX(0) !important;
    }
    #primary-nav.primary-nav a {
        width: 100% !important;
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 10px 14px !important;
        font-size: 1rem !important;
        line-height: 1.2 !important;
    }
    #primary-nav.primary-nav .nav-cta {
        margin: 8px 0 0 !important;
        width: 100% !important;
        flex: 0 0 auto !important;
    }
}


/* VBM EE mobile comparison table overflow fix 20260601ee2 */
@media (max-width: 768px) {
    .comparison-table {
        width: 100% !important;
        max-width: 100% !important;
        table-layout: fixed !important;
        font-size: 0.88rem;
    }
    .comparison-table th,
    .comparison-table td {
        padding: 8px 6px !important;
        white-space: normal !important;
        overflow-wrap: anywhere;
        word-break: normal;
    }
    .comparison-table th:first-child,
    .comparison-table td:first-child {
        width: 42%;
    }
}


/* VBM EE closed primary nav overflow fix 20260601ee3 */
@media (max-width: 768px) {
    #primary-nav.primary-nav[aria-hidden="true"],
    #primary-nav.primary-nav:not(.open):not(.active) {
        display: none !important;
        transform: none !important;
        pointer-events: none !important;
    }
    #primary-nav.primary-nav.open,
    #primary-nav.primary-nav.active {
        display: flex !important;
        left: 0 !important;
        right: auto !important;
        width: 100vw !important;
        max-width: 100vw !important;
        transform: translateX(0) !important;
    }
}

/* VBM video gap fix 20260604 */
.video-container-responsive .vbm-youtube-lite{position:absolute;inset:0;width:100%;height:100%;min-height:0;aspect-ratio:auto;}
