/* ============================================================
   NAPOCA AUTOMOBILE — Dark Premium Theme
   ============================================================ */
:root {
    --bg: #0a0c10;
    --bg-2: #0f1218;
    --surface: #141821;
    --surface-2: #1b2030;
    --line: #232a3b;
    --text: #e8ecf2;
    --text-dim: #a0a8b6;
    --muted: #6f7888;
    --accent: #2ea8e0;     /* Logo blue */
    --accent-2: #1c7eb6;   /* Deeper logo blue */
    --accent-soft: rgba(46,168,224,.15);
    --silver: #8a93a3;     /* Logo silver */
    --danger: #e0463a;
    --success: #2ec27e;
    --gold: #d9b270;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 12px 40px rgba(0,0,0,.45);
    --shadow-lg: 0 24px 60px rgba(0,0,0,.55);
    --maxw: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0; padding: 0;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: #5dc2ee; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-family: 'Space Grotesk','Manrope',sans-serif; line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 700; }
h2 { font-size: clamp(26px, 3.2vw, 42px); font-weight: 700; }
h3 { font-size: 20px; font-weight: 700; }
p { margin: 0 0 1em; color: var(--text-dim); }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: min(100% - 32px, var(--maxw)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 8px; top: 8px; background: var(--accent); color: #000; padding: 8px 12px; border-radius: 6px; z-index: 999; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 20px; border-radius: 10px; border: 1px solid transparent;
    font-weight: 600; font-size: 15px; cursor: pointer;
    transition: transform .15s ease, background .2s, border-color .2s, color .2s;
    text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-block { width: 100%; }
.btn-accent { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; border-color: transparent; box-shadow: 0 8px 24px rgba(46,168,224,.25); }
.btn-accent:hover { color: #fff; box-shadow: 0 12px 30px rgba(46,168,224,.35); }
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent-soft); }
.btn-ghost { background: transparent; color: var(--text-dim); border-color: var(--line); }
.btn-ghost:hover { color: var(--text); border-color: var(--text-dim); }
.btn-danger { background: rgba(224,70,58,.15); color: #ff8278; border-color: rgba(224,70,58,.3); }
.btn-danger:hover { background: rgba(224,70,58,.25); }

/* Header / nav */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(10,12,16,.85); backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--line); }
.topbar { background: var(--bg-2); font-size: 13px; color: var(--text-dim); padding: 8px 0; border-bottom: 1px solid var(--line); }
.topbar-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar-actions { display: flex; gap: 18px; }
.topbar-actions a { color: var(--text-dim); }
.topbar-actions a:hover { color: var(--accent); }

.navbar { padding: 14px 0; }
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); font-weight: 700; }
.brand img { height: 46px; width: auto; }
.brand-text { line-height: 1.05; font-family: 'Space Grotesk', sans-serif; font-size: 14px; letter-spacing: .04em; }
.brand-text strong { display: block; color: var(--text); }
.brand-text em { display: block; color: var(--accent); font-style: normal; font-size: 11px; letter-spacing: .15em; }

.nav-list { display: flex; align-items: center; gap: 6px; }
.nav-list a { color: var(--text-dim); padding: 10px 14px; border-radius: 8px; font-weight: 500; font-size: 15px; transition: background .15s, color .15s; }
.nav-list a:hover { color: var(--text); background: var(--surface); }
.nav-list a.active { color: var(--accent); background: var(--accent-soft); }

.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: transform .2s, opacity .2s; }

@media (max-width: 960px) {
    .nav-toggle { display: block; }
    .nav-list { position: fixed; inset: 64px 0 auto 0; top: 90px; flex-direction: column; align-items: stretch; padding: 16px; background: var(--bg-2); border-top: 1px solid var(--line); transform: translateY(-150%); transition: transform .25s ease; max-height: calc(100vh - 90px); overflow-y: auto; }
    .nav-list.open { transform: translateY(0); }
    .nav-list a { padding: 14px 18px; }
    .topbar-row { font-size: 12px; }
    .topbar-actions { gap: 12px; }
}

/* Hero */
.hero {
    position: relative; min-height: 90vh;
    background-size: cover; background-position: center;
    padding: 80px 0 60px;
    display: flex; align-items: center;
}
.hero-inner { display: grid; grid-template-columns: 1.2fr .9fr; gap: 60px; align-items: center; width: min(100% - 32px, var(--maxw)); margin-inline: auto; }
.eyebrow { display: inline-block; padding: 6px 14px; border-radius: 999px; background: var(--accent-soft); color: var(--accent); font-size: 12px; letter-spacing: .15em; text-transform: uppercase; font-weight: 600; margin-bottom: 16px; }
.hero-copy h1 { color: #fff; margin-bottom: 20px; }
.hero-copy .grad { background: linear-gradient(135deg, var(--accent), #6dd5fa); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 18px; color: rgba(232,236,242,.85); max-width: 560px; }
.hero-stats { display: flex; gap: 32px; margin-top: 32px; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 36px; color: var(--accent); font-family: 'Space Grotesk', sans-serif; }
.hero-stats span { font-size: 13px; color: var(--text-dim); }

.configurator { background: rgba(20,24,33,.85); backdrop-filter: blur(20px); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-lg); }
.configurator h3 { font-size: 22px; color: #fff; margin-bottom: 4px; }
.configurator .muted { font-size: 14px; margin-bottom: 20px; }
.cfg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.cfg-field label { display: block; font-size: 12px; color: var(--text-dim); margin-bottom: 6px; font-weight: 500; }
.cfg-field select, .cfg-field input { width: 100%; padding: 11px 12px; background: var(--bg); color: var(--text); border: 1px solid var(--line); border-radius: 8px; font-size: 14px; font-family: inherit; }
.cfg-field select:focus, .cfg-field input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero { min-height: auto; padding: 40px 0; }
    .cfg-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .cfg-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; }
    .hero-stats strong { font-size: 28px; }
}

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-2); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.link-arrow { color: var(--accent); font-weight: 600; }
.page-hero { padding: 80px 0 40px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.page-hero h1 { color: #fff; }

/* Car grid + cards */
.car-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; }
.car-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .25s, border-color .25s, box-shadow .25s; color: var(--text); display: block; }
.car-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow); color: var(--text); }
.car-thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg); }
.car-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.car-card:hover .car-thumb img { transform: scale(1.05); }
.car-card.is-sold .car-thumb img { filter: grayscale(.7) brightness(.7); }
.badge-price { position: absolute; right: 12px; bottom: 12px; background: var(--accent); color: #fff; padding: 6px 12px; border-radius: 6px; font-weight: 700; font-size: 14px; }
.badge-meta { position: absolute; left: 12px; top: 12px; background: rgba(10,12,16,.75); color: #fff; padding: 4px 10px; border-radius: 6px; font-size: 12px; }
.badge-sold { position: absolute; right: 12px; top: 12px; background: var(--danger); color: #fff; padding: 6px 14px; border-radius: 6px; font-weight: 800; font-size: 13px; letter-spacing: .12em; box-shadow: 0 4px 12px rgba(224,70,58,.4); }
.badge-sold.lg { right: auto; left: 50%; top: 50%; transform: translate(-50%,-50%); font-size: 32px; padding: 14px 36px; letter-spacing: .25em; border: 3px solid #fff; }
.car-body { padding: 18px; }
.car-body h3 { color: var(--text); font-size: 18px; margin-bottom: 12px; }
.car-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; font-size: 13px; color: var(--text-dim); }
.car-meta li { display: flex; align-items: center; gap: 6px; }
.empty { padding: 40px; text-align: center; color: var(--text-dim); }

/* Features strip */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.feature { padding: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .2s, transform .2s; }
.feature:hover { border-color: var(--accent); transform: translateY(-3px); }
.feature-ico { width: 48px; height: 48px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }

/* About strip */
.about-strip { background: var(--bg-2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-photo img { width: 100%; height: 480px; object-fit: cover; }
.lede { font-size: 18px; color: var(--text); }
.check-list { margin: 24px 0; }
.check-list li { padding: 8px 0 8px 30px; position: relative; color: var(--text-dim); }
.check-list li::before { content:'✓'; position: absolute; left: 0; top: 8px; color: var(--accent); font-weight: 700; }

@media (max-width: 800px) {
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-photo img { height: 320px; }
    .section { padding: 56px 0; }
}

/* Cars filter page */
.masini-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }
.filters { padding: 24px; position: sticky; top: 100px; }
.filters h3 { margin-bottom: 16px; }
.filters label { display: block; font-size: 12px; color: var(--text-dim); margin-top: 14px; margin-bottom: 6px; font-weight: 500; text-transform: uppercase; letter-spacing: .05em; }
.filters input, .filters select { width: 100%; padding: 10px 12px; background: var(--bg); color: var(--text); border: 1px solid var(--line); border-radius: 8px; font-size: 14px; }
.filters input:focus, .filters select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.filters .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.filters .check { display: flex; align-items: center; gap: 8px; margin-top: 14px; cursor: pointer; }
.filters .btn { margin-top: 16px; }
.filters .btn-block + .btn-block { margin-top: 8px; }

.results-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding: 14px 0; flex-wrap: wrap; gap: 12px; border-bottom: 1px solid var(--line); }
.sort-form label { color: var(--text-dim); font-size: 14px; margin-right: 8px; }
.sort-form select { background: var(--surface); color: var(--text); border: 1px solid var(--line); padding: 8px 12px; border-radius: 6px; }

.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }

@media (max-width: 900px) {
    .masini-layout { grid-template-columns: 1fr; }
    .filters { position: static; }
}

/* Detail page */
.crumbs { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.crumbs a { color: var(--text-dim); }
.crumbs a:hover { color: var(--accent); }
.sold-banner { background: linear-gradient(135deg, rgba(224,70,58,.15), rgba(224,70,58,.05)); border: 1px solid rgba(224,70,58,.4); border-radius: var(--radius); padding: 18px 24px; margin-bottom: 24px; display: flex; gap: 18px; align-items: center; }
.sold-banner strong { background: var(--danger); color: #fff; padding: 6px 14px; border-radius: 6px; letter-spacing: .15em; font-size: 14px; }
.sold-banner span { color: var(--text); font-size: 15px; }

.detail-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
.gallery-main { position: relative; aspect-ratio: 4/3; background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-empty { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--text-dim); }
.gallery-thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-top: 12px; }
.gallery-thumbs .thumb { padding: 0; border: 2px solid transparent; border-radius: 8px; overflow: hidden; background: transparent; cursor: pointer; aspect-ratio: 4/3; }
.gallery-thumbs .thumb.active { border-color: var(--accent); }
.gallery-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }

.detail-side h1 { font-size: 32px; color: #fff; margin-bottom: 12px; }
.big-price { font-family: 'Space Grotesk',sans-serif; font-size: 42px; color: var(--accent); font-weight: 700; margin-bottom: 24px; }
.big-price.sold-price { color: var(--danger); font-size: 32px; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.spec-grid li { background: var(--surface); padding: 14px 16px; display: flex; justify-content: space-between; align-items: center; }
.spec-grid li span { color: var(--muted); font-size: 13px; }
.spec-grid li strong { color: var(--text); font-size: 15px; }

.contact-box { margin-top: 24px; padding: 20px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); display: flex; flex-direction: column; gap: 10px; }
.contact-box h3 { margin-bottom: 8px; }
.contact-box.sold-box { background: rgba(224,70,58,.06); border-color: rgba(224,70,58,.2); }

.detail-desc { margin-top: 40px; }
.desc-body { color: var(--text-dim); white-space: pre-line; line-height: 1.7; font-size: 15px; }

@media (max-width: 900px) {
    .detail-grid { grid-template-columns: 1fr; }
    .detail-side h1 { font-size: 26px; }
    .big-price { font-size: 32px; }
    .badge-sold.lg { font-size: 22px; padding: 10px 24px; }
}

/* Services / values */
.services-grid, .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card, .value-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .2s, border-color .2s; }
.service-card:hover, .value-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.service-card ul { margin-top: 12px; }
.service-card ul li { padding: 4px 0 4px 22px; position: relative; color: var(--text-dim); font-size: 14px; }
.service-card ul li::before { content:'•'; position: absolute; left: 0; color: var(--accent); }

/* FAQ */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 18px 22px; font-weight: 600; color: var(--text); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 24px; color: var(--accent); transition: transform .2s; }
.faq-item[open] summary::after { content: '−'; }
.faq-body { padding: 0 22px 18px; color: var(--text-dim); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-list { display: flex; flex-direction: column; gap: 12px; }
.contact-list li { display: flex; align-items: center; gap: 10px; color: var(--text-dim); }
.contact-list.big li { font-size: 16px; padding: 8px 0; }
.contact-list a { color: var(--text); }
.contact-list a:hover { color: var(--accent); }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 14px; background: var(--bg); color: var(--text); border: 1px solid var(--line); border-radius: 8px; font-family: inherit; font-size: 15px; margin-bottom: 14px; }
.contact-form label { display: block; margin-bottom: 6px; font-size: 13px; color: var(--text-dim); font-weight: 500; }
.map-wrap { margin-top: 24px; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; background: var(--surface); }
.map-wrap iframe { border: 0; width: 100%; height: 100%; }
.alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 16px; font-size: 14px; }
.alert-success { background: rgba(46,194,126,.12); color: #6ce5a8; border: 1px solid rgba(46,194,126,.3); }
.alert-error { background: rgba(224,70,58,.12); color: #ff8278; border: 1px solid rgba(224,70,58,.3); }

@media (max-width: 800px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 60px 0 24px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h4 { color: var(--text); margin-bottom: 16px; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid ul li { padding: 5px 0; }
.footer-grid ul li a { color: var(--text-dim); }
.footer-grid ul li a:hover { color: var(--accent); }
.brand-footer img { height: 52px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--accent); }

@media (max-width: 800px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* To-top */
.to-top { position: fixed; right: 20px; bottom: 20px; width: 48px; height: 48px; border-radius: 50%; background: var(--accent); color: #fff; border: 0; font-size: 20px; box-shadow: var(--shadow); opacity: 0; transform: translateY(20px); transition: opacity .25s, transform .25s; z-index: 50; }
.to-top.show { opacity: 1; transform: translateY(0); }

/* Inline icons (CSS only) */
.ico { display: inline-block; width: 1em; height: 1em; vertical-align: -.15em; background-color: currentColor; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; -webkit-mask-size: contain; mask-size: contain; }
.ico-phone   { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M6.62 10.79a15 15 0 006.59 6.59l2.2-2.2a1 1 0 011-.25c1.12.37 2.33.57 3.59.57a1 1 0 011 1V20a1 1 0 01-1 1A17 17 0 013 4a1 1 0 011-1h3.5a1 1 0 011 1c0 1.26.2 2.47.57 3.59a1 1 0 01-.25 1z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M6.62 10.79a15 15 0 006.59 6.59l2.2-2.2a1 1 0 011-.25c1.12.37 2.33.57 3.59.57a1 1 0 011 1V20a1 1 0 01-1 1A17 17 0 013 4a1 1 0 011-1h3.5a1 1 0 011 1c0 1.26.2 2.47.57 3.59a1 1 0 01-.25 1z'/></svg>"); }
.ico-mail    { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M20 4H4a2 2 0 00-2 2v12a2 2 0 002 2h16a2 2 0 002-2V6a2 2 0 00-2-2zm0 4l-8 5-8-5V6l8 5 8-5z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M20 4H4a2 2 0 00-2 2v12a2 2 0 002 2h16a2 2 0 002-2V6a2 2 0 00-2-2zm0 4l-8 5-8-5V6l8 5 8-5z'/></svg>"); }
.ico-pin     { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M12 2a8 8 0 00-8 8c0 5.5 8 12 8 12s8-6.5 8-12a8 8 0 00-8-8zm0 11a3 3 0 110-6 3 3 0 010 6z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M12 2a8 8 0 00-8 8c0 5.5 8 12 8 12s8-6.5 8-12a8 8 0 00-8-8zm0 11a3 3 0 110-6 3 3 0 010 6z'/></svg>"); }
.ico-clock   { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M12 2a10 10 0 100 20 10 10 0 000-20zm1 11h-5v-2h3V6h2z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M12 2a10 10 0 100 20 10 10 0 000-20zm1 11h-5v-2h3V6h2z'/></svg>"); }
.ico-search  { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M10 2a8 8 0 105.3 14L21 21.7 22.7 20 17 14.3A8 8 0 0010 2zm0 2a6 6 0 110 12 6 6 0 010-12z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M10 2a8 8 0 105.3 14L21 21.7 22.7 20 17 14.3A8 8 0 0010 2zm0 2a6 6 0 110 12 6 6 0 010-12z'/></svg>"); }
.ico-cal     { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M19 4h-1V2h-2v2H8V2H6v2H5a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2V6a2 2 0 00-2-2zm0 16H5V10h14z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M19 4h-1V2h-2v2H8V2H6v2H5a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2V6a2 2 0 00-2-2zm0 16H5V10h14z'/></svg>"); }
.ico-road    { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M18.4 4H14v3h-4V4H5.6L2 20h6.6l.8-3h5.2l.8 3H22zM10 14l1-5h2l1 5z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M18.4 4H14v3h-4V4H5.6L2 20h6.6l.8-3h5.2l.8 3H22zM10 14l1-5h2l1 5z'/></svg>"); }
.ico-fuel    { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M3 3h10v18H3zm12 5h2v8a3 3 0 003 3h1V8a4 4 0 00-4-4h-2zm-9 1h6v4H6z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M3 3h10v18H3zm12 5h2v8a3 3 0 003 3h1V8a4 4 0 00-4-4h-2zm-9 1h6v4H6z'/></svg>"); }
.ico-gear    { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M12 8a4 4 0 100 8 4 4 0 000-8zm9 4l-2 1.5.5 2.5-2.5.5-1 2.5L13.5 18l-1.5 2-1.5-2-2.5-1L7 14.5 4.5 14 5 11.5 3 10l2-1.5L4.5 6 7 5.5 8 3l2.5 1.5L12 2.5 13.5 4.5 16 3l1 2.5 2.5.5L19 8.5z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M12 8a4 4 0 100 8 4 4 0 000-8zm9 4l-2 1.5.5 2.5-2.5.5-1 2.5L13.5 18l-1.5 2-1.5-2-2.5-1L7 14.5 4.5 14 5 11.5 3 10l2-1.5L4.5 6 7 5.5 8 3l2.5 1.5L12 2.5 13.5 4.5 16 3l1 2.5 2.5.5L19 8.5z'/></svg>"); }
.ico-shield  { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M12 2L4 5v6c0 5.5 3.8 10.7 8 11 4.2-.3 8-5.5 8-11V5z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M12 2L4 5v6c0 5.5 3.8 10.7 8 11 4.2-.3 8-5.5 8-11V5z'/></svg>"); }
.ico-bank    { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M12 2L2 7v2h20V7zM4 10v8H2v2h20v-2h-2v-8h-2v8h-3v-8h-2v8h-2v-8h-2v8H6v-8z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M12 2L2 7v2h20V7zM4 10v8H2v2h20v-2h-2v-8h-2v8h-3v-8h-2v8h-2v-8h-2v8H6v-8z'/></svg>"); }
.ico-tool    { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M22 7l-5 5 2 2-5 5L7 14l5-5 2 2 5-5z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M22 7l-5 5 2 2-5 5L7 14l5-5 2 2 5-5z'/></svg>"); }
.ico-video   { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M17 10.5V7a1 1 0 00-1-1H4a1 1 0 00-1 1v10a1 1 0 001 1h12a1 1 0 001-1v-3.5l4 4v-11z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M17 10.5V7a1 1 0 00-1-1H4a1 1 0 00-1 1v10a1 1 0 001 1h12a1 1 0 001-1v-3.5l4 4v-11z'/></svg>"); }
.ico-wa      { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M20 12a8 8 0 01-12 6.9L4 20l1.1-4A8 8 0 1120 12zm-8-6a6 6 0 00-5 9.3L6 18l2.7-1A6 6 0 1012 6zm3.1 7.6c-.2-.1-1-.5-1.2-.5s-.3-.1-.5.1-.5.5-.6.6-.2.1-.4 0a4.5 4.5 0 01-2.4-2.1c-.2-.4.2-.4.5-1.2 0-.2 0-.3-.1-.4l-.4-1c-.1-.3-.3-.3-.4-.3h-.4a.7.7 0 00-.5.2 2 2 0 00-.7 1.6 3.5 3.5 0 00.7 1.9 8 8 0 003.3 2.9c.5.2.8.4 1.1.5a2.7 2.7 0 001.2.1 2 2 0 001.3-.9c.2-.4.2-.6.1-.7s-.2-.1-.4-.2z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M20 12a8 8 0 01-12 6.9L4 20l1.1-4A8 8 0 1120 12zm-8-6a6 6 0 00-5 9.3L6 18l2.7-1A6 6 0 1012 6zm3.1 7.6c-.2-.1-1-.5-1.2-.5s-.3-.1-.5.1-.5.5-.6.6-.2.1-.4 0a4.5 4.5 0 01-2.4-2.1c-.2-.4.2-.4.5-1.2 0-.2 0-.3-.1-.4l-.4-1c-.1-.3-.3-.3-.4-.3h-.4a.7.7 0 00-.5.2 2 2 0 00-.7 1.6 3.5 3.5 0 00.7 1.9 8 8 0 003.3 2.9c.5.2.8.4 1.1.5a2.7 2.7 0 001.2.1 2 2 0 001.3-.9c.2-.4.2-.6.1-.7s-.2-.1-.4-.2z'/></svg>"); }

/* ===== Detail page — pretty description ===== */
.detail-highlights { margin: 28px 0 14px; }
.detail-highlights h2 { font-size: 22px; margin: 0 0 14px; color: var(--text, #e7ecff); }
.pill-row { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, rgba(90,169,255,0.16), rgba(90,169,255,0.06));
    border: 1px solid rgba(90,169,255,0.35);
    color: #d8e6ff; padding: 9px 14px; border-radius: 999px;
    font-size: 14px; font-weight: 600; letter-spacing: 0.2px;
}
.pill-dot { width: 20px; height: 20px; border-radius: 50%; background:#5aa9ff; color:#0b1020;
    display:inline-flex; align-items:center; justify-content:center; font-weight:800; font-size:12px; }

.detail-desc { margin: 28px 0; }
.detail-desc h2 { font-size: 24px; margin: 0 0 18px; color: var(--text, #e7ecff); }
.desc-intro p { font-size: 16px; line-height: 1.7; color: #c8d2eb; margin: 0 0 14px; }

.desc-cards {
    display: grid; gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 18px;
}
.desc-card {
    background: rgba(17,24,58,0.7);
    border: 1px solid rgba(90,169,255,0.18);
    border-radius: 14px;
    padding: 18px 20px;
    transition: border-color .2s, transform .2s;
}
.desc-card:hover { border-color: rgba(90,169,255,0.45); transform: translateY(-2px); }
.desc-card h3 {
    margin: 0 0 12px; font-size: 16px; color: #5aa9ff;
    text-transform: uppercase; letter-spacing: 0.6px; font-weight: 700;
    padding-bottom: 8px; border-bottom: 1px solid rgba(90,169,255,0.2);
}
.desc-card .check-list { list-style: none; padding: 0; margin: 0; }
.desc-card .check-list li {
    position: relative; padding: 6px 0 6px 26px;
    color: #d8e0f5; font-size: 14.5px; line-height: 1.5;
    border-bottom: 1px dashed rgba(255,255,255,0.04);
}
.desc-card .check-list li:last-child { border-bottom: 0; }
.desc-card .check-list li::before {
    content: "✓"; position: absolute; left: 0; top: 6px;
    width: 18px; height: 18px; background: #5aa9ff; color: #0b1020;
    border-radius: 50%; font-size: 11px; font-weight: 800;
    display: inline-flex; align-items: center; justify-content: center;
}

.desc-cta {
    display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px;
    padding: 18px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(90,169,255,0.10), rgba(11,16,32,0.5));
    border: 1px dashed rgba(90,169,255,0.3);
}
@media (max-width: 600px) {
    .pill { font-size: 13px; padding: 8px 12px; }
    .desc-card { padding: 14px 16px; }
}

/* Feature chips */
.desc-card-features { grid-column: 1/-1; }
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
}
.feature-chip {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(90,169,255,0.08);
    border: 1px solid rgba(90,169,255,0.22);
    color: #d8e0f5;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 500;
}
