/* ==========================================================================
   Alpha Medical LLC — style.css
   Një stylesheet i përbashkët për / (shqip) dhe /en/ (anglisht).
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --navy: #0b1f33;
  --navy-2: #122b45;
  --blue: #0f5f99;
  --blue-2: #0c4f80;
  --cyan: #16a7c9;
  --mint: #18b69b;

  --ink: #102033;
  --text: #334155;
  --muted: #64748b;
  --line: #dbe6ef;
  --line-2: #e9f0f6;
  --soft: #f4f8fb;
  --soft-2: #eef6fb;
  --white: #fff;

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;

  --shadow-sm: 0 6px 18px rgba(9, 31, 55, .06);
  --shadow-md: 0 14px 35px rgba(9, 31, 55, .08);
  --shadow-lg: 0 24px 70px rgba(9, 31, 55, .12);
  --shadow-blue: 0 14px 30px rgba(15, 95, 153, .25);

  --nav-h: 80px;
  --container: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.no-scroll { overflow: hidden; }

h1, h2, h3, h4 { margin: 0; font-weight: 700; color: var(--navy); line-height: 1.15; }
p { margin: 0 0 1em; }
strong, b { font-weight: 600; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid rgba(22, 167, 201, .55);
  outline-offset: 3px;
  border-radius: 6px;
}

.container { width: min(var(--container), 92%); margin-inline: auto; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  padding: 10px 16px; border-radius: 10px;
  background: var(--navy); color: #fff; font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 22px;
  border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: 15px; line-height: 1.2; white-space: nowrap;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s, border-color .2s, color .2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  box-shadow: 0 12px 28px rgba(15, 95, 153, .22);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(15, 95, 153, .3); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: #fff; border-color: #c9d8e5; color: var(--navy); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--soft-2); }
.btn-block { width: 100%; }
.btn-sm { min-height: 42px; padding: 10px 18px; font-size: 14px; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header / navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .86);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.nav.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 30px rgba(9, 31, 55, .06); }

.nav .container {
  position: relative;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 20px;
}

.brand { display: flex; align-items: center; gap: 12px; min-width: 0; color: var(--navy); }
.brand-mark {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff; font-weight: 700; font-size: 16px; letter-spacing: .5px;
  box-shadow: var(--shadow-blue);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.brand-text strong { font-weight: 700; font-size: 17px; letter-spacing: -.01em; white-space: nowrap; }
.brand-text small {
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.menu { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.menu a {
  padding: 8px 13px; border-radius: 999px;
  font-size: 15px; font-weight: 500; color: var(--text);
  transition: color .2s, background-color .2s;
}
.menu a:hover, .menu a.is-active { color: var(--blue); background: var(--soft-2); }

.nav-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }

.lang-switch {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 42px; padding: 0 14px;
  border: 1px solid #c9d8e5; border-radius: 999px; background: #fff;
  font-size: 14px; font-weight: 600; color: var(--navy); white-space: nowrap;
  transition: border-color .2s, color .2s, background-color .2s;
}
.lang-switch:hover { color: var(--blue); border-color: var(--blue); background: var(--soft-2); }
.lang-switch img { width: 20px; height: 20px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 1px rgba(15, 31, 51, .12); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px; padding: 0;
  border: 1px solid #c9d8e5; border-radius: 12px; background: #fff; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--navy);
  transition: transform .25s var(--ease), opacity .2s;
}
.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 72px 0 80px;
  background:
    radial-gradient(circle at 78% 8%, rgba(22, 167, 201, .16), transparent 34%),
    radial-gradient(circle at 10% 90%, rgba(24, 182, 155, .10), transparent 30%),
    linear-gradient(180deg, #f6fbff 0%, #fff 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }

.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--blue); font-weight: 600; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: #e9f7fb; border: 1px solid #c9edf5; color: #08708a;
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); }

.h1 {
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.02; letter-spacing: -.03em;
  margin: 22px 0 20px;
}
.lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--text); max-width: 640px; margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat {
  padding: 18px; border-radius: var(--r-md);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.stat b { display: block; font-size: 28px; line-height: 1; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.stat span { font-size: 13px; color: var(--muted); }

.visual { position: relative; }
.card-main {
  padding: 22px; border-radius: var(--r-lg);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-lg);
}
.device {
  position: relative; overflow: hidden;
  min-height: 300px; padding: 28px;
  border-radius: 22px; color: #fff;
  background:
    radial-gradient(circle at 90% 100%, rgba(22, 167, 201, .55), transparent 45%),
    linear-gradient(135deg, #0b1f33 0%, #0f5f99 60%, #16a7c9 100%);
}
.device::before, .device::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.device::before { width: 260px; height: 260px; border: 34px solid rgba(255, 255, 255, .14); right: -80px; top: -70px; }
.device::after { width: 170px; height: 170px; border: 22px solid rgba(255, 255, 255, .10); right: 40px; bottom: -80px; }
.device h2 {
  position: relative; z-index: 1;
  max-width: 78%;
  font-size: clamp(24px, 2.4vw, 32px); line-height: 1.1; letter-spacing: -.02em; color: #fff;
}
.device-tags { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.device-tags span {
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .22);
  font-size: 12px; font-weight: 600; letter-spacing: .02em;
}
.floating {
  position: absolute; right: -16px; bottom: -26px; width: 260px;
  padding: 16px 18px; border-radius: 18px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  font-size: 14px; line-height: 1.5;
}
.floating b { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; color: var(--navy); }
.floating b::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(24, 182, 155, .18); }
.floating span { color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-soft { background: var(--soft); }
.section-head { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-title, .section-head h2 {
  font-size: clamp(30px, 3.6vw, 48px); line-height: 1.08; letter-spacing: -.025em;
  margin: 0 0 14px;
}
.section-head p { margin: 0; font-size: 18px; color: var(--muted); }

/* Cards */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #c9dcea; }

/* Brands */
.brands { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.brand-card {
  position: relative; overflow: hidden;
  min-height: 112px; padding: 18px 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  font-weight: 700; font-size: 16px; letter-spacing: -.01em; color: var(--navy);
}
.brand-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.brand-card:hover::before { transform: scaleX(1); }
.brand-card span { font-size: 12px; font-weight: 500; color: var(--muted); margin-top: 4px; }
a.brand-card:hover { border-color: var(--blue); color: var(--blue); }
a.brand-card:hover span { color: var(--blue); }

/* Solutions & categories */
.solutions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.brand-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.solution, .brand-detail { padding: 30px; }
.icon {
  width: 54px; height: 54px; margin-bottom: 20px;
  display: grid; place-items: center; border-radius: 16px;
  background: linear-gradient(135deg, #e8f7fb, #eef6ff); color: var(--blue);
}
.icon svg { width: 26px; height: 26px; }
.solution h3, .brand-detail h3 { font-size: 21px; margin-bottom: 10px; letter-spacing: -.01em; }
.solution p, .brand-detail p { margin: 0; color: var(--muted); }
.brand-detail { display: flex; flex-direction: column; }
.brand-detail h3 { display: flex; align-items: center; gap: 10px; }
.brand-detail h3::before { content: ""; width: 10px; height: 10px; border-radius: 3px; background: linear-gradient(135deg, var(--blue), var(--cyan)); flex: 0 0 auto; }

/* SEO text */
.seo-text { columns: 2; column-gap: 44px; color: var(--text); font-size: 17px; }
.seo-text p { break-inside: avoid; margin-top: 0; }
.seo-text p:last-child { margin-bottom: 0; }

/* About / split */
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; }
.split .eyebrow { margin-bottom: 18px; }
.split .section-title { margin-bottom: 16px; }
.split .lead { margin-bottom: 26px; }
.panel { padding: 30px 34px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.check { display: flex; gap: 14px; padding: 14px 0; color: var(--text); }
.check + .check { border-top: 1px solid var(--line-2); }
.check::before {
  content: ""; flex: 0 0 30px; height: 30px; border-radius: 50%; margin-top: 2px;
  background: #eaf8f4 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b8c75' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L19 7'/%3E%3C/svg%3E") center/16px no-repeat;
}
.check b { display: block; color: var(--navy); margin-bottom: 2px; }
.check span { color: var(--muted); font-size: 15px; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.faq-item { padding: 28px 30px; }
.faq-item h3 { font-size: 19px; margin-bottom: 8px; padding-left: 18px; position: relative; letter-spacing: -.01em; }
.faq-item h3::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 4px; border-radius: 4px; background: linear-gradient(180deg, var(--blue), var(--cyan)); }
.faq-item p { margin: 0; color: var(--muted); padding-left: 18px; }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; grid-template-columns: .95fr 1.05fr; gap: 24px; align-items: start; }
.contact-card {
  position: relative; overflow: hidden;
  padding: 40px; border-radius: var(--r-lg); color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: var(--shadow-lg);
}
.contact-card::after {
  content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  border: 40px solid rgba(255, 255, 255, .06); right: -120px; bottom: -160px; pointer-events: none;
}
.contact-card h2 { font-size: clamp(28px, 3vw, 40px); line-height: 1.08; letter-spacing: -.02em; color: #fff; margin-bottom: 14px; }
.contact-card > p { color: #d9f1fb; margin-bottom: 26px; }
.contact-item { position: relative; display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; color: #d9f1fb; }
.contact-item + .contact-item { border-top: 1px solid rgba(255, 255, 255, .12); }
.contact-item .ci {
  flex: 0 0 42px; width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; background: rgba(255, 255, 255, .12); color: #fff;
}
.contact-item .ci svg { width: 20px; height: 20px; }
.contact-item strong { display: block; color: #fff; font-weight: 600; margin-bottom: 2px; }
.contact-item a { color: #d9f1fb; text-decoration: underline; text-decoration-color: rgba(217, 241, 251, .4); text-underline-offset: 3px; }
.contact-item a:hover { color: #fff; text-decoration-color: #fff; }

.form-card { padding: 32px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.form-card label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-card input, .form-card textarea, .form-card select {
  width: 100%; margin: 0 0 18px; padding: 14px 16px;
  border: 1px solid #cfddea; border-radius: 14px; background: #fbfdff;
  font: inherit; font-size: 15px; color: var(--ink);
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.form-card input::placeholder, .form-card textarea::placeholder { color: #94a3b8; }
.form-card input:focus, .form-card textarea:focus, .form-card select:focus {
  outline: 0; background: #fff; border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(22, 167, 201, .16);
}
.form-card select {
  appearance: none; -webkit-appearance: none; padding-right: 44px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; background-size: 18px;
}
.form-card textarea { min-height: 130px; resize: vertical; }
.form-card .btn { margin-top: 4px; }
.form-note { font-size: 12.5px; color: var(--muted); margin: 14px 0 0; text-align: center; }

/* ---------- Footer ---------- */
.footer { background: #071827; color: #b9c9d7; padding: 56px 0 32px; font-size: 14.5px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer .brand-text small { color: #8aa0b4; }
.footer p { margin: 0; max-width: 380px; }
.footer h4 { color: #fff; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer a { transition: color .2s; }
.footer a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 22px; font-size: 13px; color: #8aa0b4; }

/* ---------- Fixed elements ---------- */
.backtop {
  position: fixed; right: 20px; bottom: 20px; z-index: 40;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--blue); color: #fff; box-shadow: 0 14px 30px rgba(15, 95, 153, .32);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s, transform .25s var(--ease), visibility .25s;
}
.backtop.is-visible { opacity: 1; visibility: visible; transform: none; }
.backtop svg { width: 20px; height: 20px; }
.mobile-cta { display: none; }

/* ---------- Reveal on scroll (vetëm kur JS është aktiv) ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js [data-reveal].in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero-grid { gap: 40px; }
  /* Header-i: hapësirë e mjaftueshme pa e shtypur logon */
  .brand { flex-shrink: 0; }
  .brand-text small { display: none; }
  .menu { gap: 2px; }
  .menu a { padding: 8px 10px; font-size: 14px; }
  .nav-cta { display: none; }
}

@media (max-width: 980px) {
  :root { --nav-h: 70px; }

  .nav-toggle { display: inline-flex; }
  .menu {
    position: absolute; left: 0; right: 0; top: 100%;
    display: none; flex-direction: column; align-items: stretch; gap: 2px; margin: 0;
    padding: 10px 4% 16px;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(9, 31, 55, .12);
  }
  .menu-open .menu { display: flex; }
  .menu a { padding: 13px 14px; font-size: 16px; border-radius: 12px; }
  .nav-actions { margin-left: auto; }
  .nav-cta { display: none; }

  .hero { padding: 48px 0 64px; }
  .hero-grid, .split, .contact-wrap { grid-template-columns: 1fr; }
  .visual { margin-top: 10px; }
  .floating { position: static; width: auto; margin-top: 14px; }

  .solutions, .brand-details, .faq-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 32px; }
  .seo-text { columns: 1; }
  .panel { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  .mobile-cta {
    display: flex; gap: 10px; z-index: 45;
    position: fixed; left: 12px; right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }
  .mobile-cta .btn { flex: 1; min-height: 50px; font-size: 15px; }
  .backtop { bottom: calc(80px + env(safe-area-inset-bottom, 0px)); }
  .footer { padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 640px) {
  .brand-text small { display: none; }
  .brand-mark { width: 42px; height: 42px; border-radius: 12px; }
  .lang-switch { padding: 0 12px; }

  .h1 { letter-spacing: -.025em; }
  .hero-actions .btn { flex: 1 1 auto; }
  .stats { gap: 10px; }
  .stat { padding: 14px 12px; }
  .stat b { font-size: 24px; }
  .stat span { font-size: 12px; }

  .brands { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .brand-card { min-height: 96px; }
  .solution, .brand-detail, .faq-item { padding: 24px; }
  .contact-card { padding: 28px 24px; }
  .form-card { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .lang-switch span { display: none; }
  .lang-switch { padding: 0 10px; }
  .stats { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* ==========================================================================
   Faqja Produktet
   ========================================================================== */
.page-hero {
  padding: 56px 0 36px;
  background:
    radial-gradient(circle at 85% 0%, rgba(22, 167, 201, .14), transparent 36%),
    linear-gradient(180deg, #f6fbff 0%, #fff 100%);
}
.page-hero h1 { font-size: clamp(34px, 4.4vw, 56px); letter-spacing: -.03em; line-height: 1.04; margin: 18px 0 14px; }
.page-hero .lead { margin-bottom: 0; }

.brand-nav {
  position: sticky; top: var(--nav-h); z-index: 30;
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line);
}
.brand-nav .container { display: flex; gap: 8px; padding: 10px 0; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.brand-nav .container::-webkit-scrollbar { display: none; }
.brand-nav a {
  flex: 0 0 auto; padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff;
  font-size: 14px; font-weight: 600; color: var(--text); white-space: nowrap;
  transition: color .2s, border-color .2s, background-color .2s;
}
.brand-nav a:hover, .brand-nav a.is-active { color: var(--blue); border-color: var(--blue); background: var(--soft-2); }

.brand-section { padding: 60px 0; scroll-margin-top: calc(var(--nav-h) + 72px); }
.brand-section + .brand-section { border-top: 1px solid var(--line-2); }
.brand-section.section-soft { border-top: 0; }
.brand-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.brand-head .eyebrow { margin-bottom: 12px; }
.brand-head h2 { font-size: clamp(26px, 3vw, 38px); letter-spacing: -.02em; line-height: 1.08; }
.brand-head p { margin: 8px 0 0; color: var(--muted); max-width: 640px; }
.brand-count { font-size: 13px; font-weight: 600; color: var(--muted); padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; background: #fff; white-space: nowrap; }

.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.product-media {
  position: relative; aspect-ratio: 4 / 3;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--soft), #e6f1f8);
  border-bottom: 1px solid var(--line-2);
}
.product-media img { width: 100%; height: 100%; object-fit: contain; padding: 18px; }
.product-media .ph { font-size: 46px; font-weight: 700; letter-spacing: -.04em; color: rgba(15, 95, 153, .22); }
.product-body { flex: 1; display: flex; flex-direction: column; gap: 10px; padding: 22px 22px 24px; }
.product-cat { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #08708a; }
.product h3 { font-size: 19px; letter-spacing: -.01em; }
.product p { margin: 0; color: var(--muted); font-size: 15px; }
.product ul { margin: 4px 0 0; padding: 0; list-style: none; display: grid; gap: 6px; font-size: 14px; color: var(--text); }
.product ul li { position: relative; padding-left: 18px; }
.product ul li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); }
.product-actions { margin-top: auto; padding-top: 14px; display: flex; gap: 10px; flex-wrap: wrap; }
.product-actions .btn { min-height: 42px; padding: 10px 16px; font-size: 14px; }
.product.is-placeholder { border-style: dashed; box-shadow: none; }
.product.is-placeholder:hover { transform: none; }

.cta-band {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 36px 40px; border-radius: var(--r-lg); color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; font-size: clamp(22px, 2.6vw, 30px); letter-spacing: -.02em; margin-bottom: 6px; }
.cta-band p { margin: 0; color: #d9f1fb; }
.cta-band .btn-ghost { background: #fff; border-color: #fff; }

@media (max-width: 980px) {
  .products { grid-template-columns: repeat(2, 1fr); }
  .brand-section { padding: 44px 0; scroll-margin-top: calc(var(--nav-h) + 64px); }
  .cta-band { padding: 28px 24px; }
}
@media (max-width: 640px) {
  .products { grid-template-columns: 1fr; }
  .brand-nav .container { width: 100%; padding-left: 4%; padding-right: 4%; }
}

/* ==========================================================================
   Katalogu: faqja përmbledhëse e brendeve + faqet e brendeve
   ========================================================================== */
.brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.brand-tile { display: flex; flex-direction: column; gap: 6px; min-height: 230px; padding: 26px 26px 22px; color: inherit; }
.brand-tile .tagline { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #08708a; }
.brand-tile h2 { font-size: 24px; letter-spacing: -.015em; margin: 2px 0 4px; }
.brand-tile .count { font-size: 13px; font-weight: 600; color: var(--muted); }
.brand-tile .names { margin: 6px 0 0; font-size: 14px; line-height: 1.55; color: var(--text); }
.brand-tile .more { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 16px; font-size: 14px; font-weight: 600; color: var(--blue); }
.brand-tile .more::after { content: "\2192"; transition: transform .2s var(--ease); }
.brand-tile:hover .more::after { transform: translateX(3px); }
.brand-tile.is-empty .names { color: var(--muted); }

.brand-hero {
  padding: 52px 0 40px;
  background:
    radial-gradient(circle at 85% 0%, rgba(22, 167, 201, .14), transparent 36%),
    linear-gradient(180deg, #f6fbff 0%, #fff 100%);
  border-bottom: 1px solid var(--line-2);
}
.brand-hero h1 { font-size: clamp(34px, 4.4vw, 56px); letter-spacing: -.03em; line-height: 1.04; margin: 16px 0 14px; }
.brand-hero .lead { max-width: 760px; margin-bottom: 24px; }
.brand-hero .hero-actions { margin: 0; }

.product-list { display: grid; gap: 28px; padding: 44px 0 56px; }
.product-row {
  display: grid; grid-template-columns: minmax(260px, .9fr) 1.1fr; overflow: hidden; padding: 0;
  scroll-margin-top: calc(var(--nav-h) + 80px);
}
.product-row:hover { transform: none; box-shadow: var(--shadow-sm); border-color: var(--line); }
.product-row .product-media { aspect-ratio: auto; min-height: 320px; padding: 28px; background: #fff; border-bottom: 0; border-right: 1px solid var(--line-2); }
.product-row .product-media img { max-height: 400px; padding: 0; }
.product-row .product-body { padding: 30px 34px 30px; gap: 12px; }
.product-row h2 { font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -.02em; }
.product-row .product-actions { padding-top: 18px; }

.spec-table { display: grid; grid-template-columns: minmax(150px, .38fr) 1fr; margin: 6px 0 0; border-top: 1px solid var(--line-2); font-size: 14px; }
.spec-table dt { padding: 9px 12px 9px 0; font-weight: 600; color: var(--muted); border-bottom: 1px solid var(--line-2); }
.spec-table dd { margin: 0; padding: 9px 0; color: var(--text); border-bottom: 1px solid var(--line-2); }

.empty-state { padding: 44px 32px; text-align: center; border-style: dashed; box-shadow: none; margin: 44px 0 56px; }
.empty-state:hover { transform: none; box-shadow: none; }
.empty-state h2 { font-size: 22px; margin-bottom: 8px; }
.empty-state p { max-width: 560px; margin: 0 auto 18px; color: var(--muted); }

.other-brands { padding: 30px 0 56px; border-top: 1px solid var(--line-2); }
.other-brands h3 { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips a { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-size: 14px; font-weight: 600; color: var(--text); transition: color .2s, border-color .2s, background-color .2s; }
.chips a:hover, .chips a.is-active { border-color: var(--blue); color: var(--blue); background: var(--soft-2); }

@media (max-width: 1100px) { .brand-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 980px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .product-row { grid-template-columns: 1fr; }
  .product-row .product-media { min-height: 240px; border-right: 0; border-bottom: 1px solid var(--line-2); }
  .product-row .product-media img { max-height: 300px; }
  .product-row .product-body { padding: 24px; }
  .product-list { padding: 32px 0 44px; gap: 20px; }
  .brand-hero { padding: 40px 0 32px; }
}
@media (max-width: 640px) {
  .brand-grid { grid-template-columns: 1fr; }
  .brand-tile { min-height: 0; }
  .spec-table { grid-template-columns: 1fr; }
  .spec-table dt { border-bottom: 0; padding-bottom: 0; }
  .spec-table dd { padding-top: 2px; }
}

/* ---------- Forma e kontaktit: mesazhe dhe honeypot ---------- */
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-alert { margin: 0 0 16px; padding: 12px 14px; border-radius: 12px; font-size: 14.5px; line-height: 1.5; border: 1px solid transparent; }
.form-alert.is-ok { background: #eaf8f4; border-color: #bfe8dc; color: #0b6b5a; }
.form-alert.is-err { background: #fdf0f0; border-color: #f3c6c6; color: #a13030; }
.form-card button[disabled] { opacity: .7; cursor: progress; transform: none; }


/* ==========================================================================
   Stil premium për navigimin sekondar: pa "pilula", vetëm tekst dhe vijë nën element
   ========================================================================== */
.eyebrow {
  padding: 0; background: transparent; border: 0; border-radius: 0;
  color: var(--blue); font-size: 12px; letter-spacing: .12em;
}
.eyebrow::before { background: var(--cyan); }

.brand-nav { background: rgba(255, 255, 255, .96); border-top: 0; }
.brand-nav .container { gap: 32px; padding: 0; }
.brand-nav a {
  position: relative; padding: 16px 0; border: 0; border-radius: 0; background: transparent;
  font-size: 14px; font-weight: 600; letter-spacing: .01em; color: var(--muted);
}
.brand-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.brand-nav a:hover, .brand-nav a.is-active { color: var(--navy); background: transparent; border: 0; }
.brand-nav a:hover::after, .brand-nav a.is-active::after { transform: scaleX(1); }

.brand-count { padding: 0; border: 0; background: transparent; font-weight: 500; letter-spacing: .02em; }

.other-brands .chips { gap: 10px 32px; }
.other-brands .chips a {
  padding: 6px 0; border: 0; border-radius: 0; background: transparent;
  border-bottom: 1px solid transparent; font-weight: 600; color: var(--text);
  transition: color .2s, border-color .2s;
}
.other-brands .chips a:hover { color: var(--blue); border-bottom-color: var(--blue); background: transparent; }

.brand-tile .tagline, .product-cat { color: var(--blue); letter-spacing: .1em; }

@media (max-width: 640px) {
  .brand-nav .container { gap: 22px; }
  .brand-nav a { padding: 13px 0; font-size: 13px; }
}

/* ---------- Verifikimi anti-spam në formë ---------- */
.form-note-shield { display: flex; align-items: center; justify-content: center; gap: 8px; color: #0b8c75; font-weight: 500; margin-top: 16px; }
.form-note-shield svg { width: 18px; height: 18px; flex: 0 0 auto; }
.form-note-shield + .form-note { margin-top: 6px; }
