/* ============================================================
   HUNTER — Globālais stils v2 (Editorial dark | krēms + violeta)
   ============================================================ */

:root {
  --bg: #0a0a0b;
  --bg-elev-1: #111114;
  --bg-elev-2: #16161a;
  --bg-elev-3: #1d1d22;
  --border: #26262c;
  --border-soft: #1c1c21;

  --text: #f1e9d6;
  --text-strong: #faf3e2;
  --text-muted: #a09a8c;
  --text-dim: #6b6760;

  --violet: #7c3aed;
  --violet-2: #c4b5fd;
  --violet-soft: rgba(124, 58, 237, 0.16);
  --violet-glow:
    0 0 0 1px rgba(139, 92, 246, 0.4),
    0 16px 40px -10px rgba(139, 92, 246, 0.55);

  --success: #25d366;
  --danger: #f87171;

  --font-sans:
    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Source Serif 4", "Inter", Georgia, serif;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;

  --container: 1400px;
  --gutter: 28px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  color: var(--text-strong);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.02em;
  font-weight: 600;
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}
h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-wide {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--violet-2);
}
.eyebrow.violet {
  color: var(--violet-2);
}

.muted {
  color: var(--text-muted);
}
.serif {
  font-family: var(--font-display);
  font-weight: 400;
}
.italic {
  font-style: italic;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1;
  border: 1px solid transparent;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--violet);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--violet-glow);
}
.btn-primary:hover {
  background: #6d28d9;
  transform: translateY(-1px);
}
.btn-primary:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.btn-wa {
  background: #128c4f;
  color: #fff;
  font-weight: 700;
  box-shadow:
    0 0 0 1px rgba(18, 140, 79, 0.45),
    0 14px 36px -10px rgba(18, 140, 79, 0.55);
}
.btn-wa:hover {
  background: #0e7240;
  transform: translateY(-1px);
}
.btn-wa:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.btn-wa svg {
  width: 18px;
  height: 18px;
  display: block;
  color: #fff;
  flex-shrink: 0;
}

/* Defensive: prevent any inline SVG from rendering at default 300x150 before CSS
   loads or in edge cases. Applies to nav, buttons, footer icons, modal close. */
.btn svg,
.hamburger svg,
.promo-modal__close svg,
footer svg {
  flex-shrink: 0;
  max-width: 100%;
  max-height: 100%;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--text);
}
.btn-outline-violet {
  background: transparent;
  color: var(--violet-2);
  border: 1px solid rgba(139, 92, 246, 0.5);
}
.btn-outline-violet:hover {
  background: var(--violet-soft);
}
.btn .arr {
  display: inline-block;
  transition: transform 0.2s;
}
.btn:hover .arr {
  transform: translateX(4px);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 10, 11, 0.7);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
}

/* ---------- Promo pop-up ---------- */
.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.promo-modal[hidden] {
  display: none !important;
}
.promo-modal.is-open {
  opacity: 1;
}
.promo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  z-index: 1;
}
.promo-modal__card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  background: linear-gradient(180deg, #161618 0%, #0f0f10 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px 28px;
  box-shadow:
    0 30px 80px -20px rgba(124, 58, 237, 0.45),
    0 0 0 1px rgba(124, 58, 237, 0.25);
  color: var(--text);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.promo-modal.is-open .promo-modal__card {
  transform: translateY(0) scale(1);
}
.promo-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.promo-modal__close svg {
  width: 18px;
  height: 18px;
}
.promo-modal__close:hover {
  background: rgba(124, 58, 237, 0.15);
  color: #fff;
  border-color: var(--violet);
}
.promo-modal__badge {
  display: inline-block;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  color: #fff;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.promo-modal__title {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--text-strong);
  margin: 0 0 12px;
}
.promo-modal__text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 22px;
}
.promo-modal__text strong {
  color: var(--text-strong);
}
.promo-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 520px) {
  .promo-modal {
    padding: 16px;
  }
  .promo-modal__card {
    padding: 28px 20px 22px;
    border-radius: 16px;
  }
  .promo-modal__title {
    font-size: 1.35rem;
  }
  .promo-modal__text {
    font-size: 0.95rem;
  }
  .promo-modal__actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}
.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 64px;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img {
  height: 32px;
  width: auto;
}
.brand-name {
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-strong);
  font-size: 0.92rem;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-strong);
}
.nav-links a.active {
  color: var(--violet-2);
}

.nav-side {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-phone {
  color: var(--text);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.nav-phone:hover {
  color: var(--violet-2);
}

.hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-strong);
  padding: 12px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.hamburger:hover,
.hamburger:focus-visible {
  border-color: var(--violet);
  color: var(--violet-2);
}
.hamburger svg {
  width: 24px;
  height: 24px;
  display: block;
}

@media (max-width: 980px) {
  .nav {
    gap: 12px;
  }
  .nav-side {
    gap: 8px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 14px var(--gutter);
    background: var(--bg-elev-1);
    border-bottom: 1px solid var(--border);
    gap: 2px;
    justify-content: flex-start;
    z-index: 70;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 14px 16px;
    min-height: 48px;
    display: flex;
    align-items: center;
    text-align: left;
    font-size: 0.95rem;
  }
  .nav-phone {
    display: none;
  }
  .hamburger {
    display: inline-flex;
  }
}

@media (max-width: 520px) {
  .nav .btn-primary {
    padding: 10px 14px;
    font-size: 0.8rem;
  }
}

/* WCAG 2.5.5 — ensure interactive targets on touch devices reach ~48x48 CSS px */
@media (max-width: 980px) {
  .btn {
    min-height: 44px;
  }
  .nav .btn-wa {
    min-height: 44px;
    padding: 10px 14px;
  }
  .brand {
    min-height: 44px;
    padding: 6px 4px;
  }
}

/* ============================================================
   HERO — full bleed, immersive
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bg-elev-1);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
  filter: contrast(1.05) saturate(0.9);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(10, 10, 11, 0.94) 0%,
      rgba(10, 10, 11, 0.55) 55%,
      rgba(10, 10, 11, 0.25) 100%
    ),
    linear-gradient(
      180deg,
      rgba(10, 10, 11, 0.4) 0%,
      transparent 30%,
      rgba(10, 10, 11, 0.9) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: end;
  padding: 80px 0 56px;
  gap: 48px;
}
.hero-main {
  max-width: 880px;
}
.hero-main h1 {
  color: var(--text-strong);
}
.hero-main h1 .accent {
  color: var(--violet-2);
  font-style: italic;
  font-weight: 400;
}
.hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text);
  opacity: 0.85;
  margin-top: 28px;
  max-width: 600px;
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(17, 17, 20, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
}
.hero-aside .who {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-aside .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--text-strong);
}
.hero-aside .sig {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.hero-aside .stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.hero-aside .stats .n {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-strong);
}
.hero-aside .stats .l {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  margin-top: 2px;
}

.hero-ticker {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border-soft);
  background: rgba(10, 10, 11, 0.6);
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 48px;
  padding: 14px 0;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.ticker-track span::after {
  content: "✦";
  color: var(--violet-2);
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .hero-content {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 60px 0 40px;
  }
  .hero-aside {
    max-width: 520px;
  }
}
@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }
  .hero-content {
    padding: 40px 0 32px;
    gap: 28px;
  }
  .hero-bg img {
    opacity: 0.4;
  }
}

/* ============================================================
   SECTIONS
   ============================================================ */
section {
  padding: 96px 0;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.section-head .title h2 {
  margin-top: 14px;
}
.section-head .desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 480px;
}
@media (max-width: 780px) {
  section {
    padding: 64px 0;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 32px;
  }
}

/* Value strip */
.values-strip {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.values-strip .v {
  grid-column: span 4;
  padding: 36px 28px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.25s;
}
.values-strip .v:hover {
  background: var(--bg-elev-1);
}
.values-strip .v .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--violet-2);
}
.values-strip .v h3 {
  font-size: 1.4rem;
  font-family: var(--font-display);
  font-weight: 500;
}
.values-strip .v p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
@media (max-width: 880px) {
  .values-strip .v {
    grid-column: span 12;
  }
}

/* Feature split */
.feature-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 0;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-img {
  position: relative;
  min-height: 520px;
  background: #000;
}
.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  position: absolute;
  inset: 0;
}
.feature-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
}
.feature-body {
  padding: 48px;
  background: var(--bg-elev-1);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}
.process-list .p-step {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid var(--border-soft);
}
.process-list .p-step:last-child {
  border-bottom: 1px solid var(--border-soft);
}
.process-list .p-step .n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--violet-2);
  line-height: 1;
}
.process-list .p-step h3 {
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-weight: 500;
}
.process-list .p-step p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 4px;
}
.process-list .p-step .tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  white-space: nowrap;
  padding-top: 6px;
}
@media (max-width: 880px) {
  .feature-split {
    grid-template-columns: 1fr;
  }
  .feature-img {
    min-height: 280px;
  }
  .feature-body {
    padding: 32px 24px;
  }
}

/* Actions row */
.actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.action-card {
  background: var(--bg);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.25s;
}
.action-card:hover {
  background: var(--bg-elev-1);
}
.action-card .lbl {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet-2);
}
.action-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
}
.action-card h3 em {
  color: var(--violet-2);
  font-style: italic;
}
.action-card p {
  color: var(--text-muted);
  max-width: 440px;
}
.action-card .link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-strong);
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 1px solid var(--violet-2);
  padding-bottom: 6px;
  width: fit-content;
}
.action-card .link:hover {
  color: var(--violet-2);
}
@media (max-width: 780px) {
  .actions-row {
    grid-template-columns: 1fr;
  }
}

/* Products strip */
.products-strip {
  padding: 64px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-elev-1);
}
.products-strip .head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.prod-card {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition:
    border-color 0.2s,
    transform 0.15s;
}
.prod-card:hover {
  border-color: var(--violet-2);
  transform: translateY(-2px);
}
.prod-card .cat {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-dim);
}
.prod-card .name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-strong);
}
.prod-card .price {
  color: var(--violet-2);
  font-weight: 600;
  margin-top: auto;
  padding-top: 8px;
  font-size: 0.92rem;
}
@media (max-width: 980px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Testimonial */
.testimonial-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.testimonial-block .big-q {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.25;
  color: var(--text-strong);
  letter-spacing: -0.015em;
}
.testimonial-block .big-q::before {
  content: "„";
  color: var(--violet-2);
  font-size: 1.4em;
  line-height: 0;
  margin-right: 6px;
}
.testimonial-block .side {
  color: var(--text-muted);
}
.testimonial-block .side .who {
  color: var(--text-strong);
  font-weight: 600;
  margin-bottom: 6px;
}
@media (max-width: 880px) {
  .testimonial-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* CTA banner */
.cta-banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      800px 320px at 90% 0%,
      rgba(139, 92, 246, 0.22),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg-elev-2), var(--bg-elev-1));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 32px;
  align-items: center;
}
.cta-banner h2 {
  max-width: 640px;
}
.cta-banner .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 780px) {
  .cta-banner {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-soft);
  background: var(--bg);
  padding: 64px 0 28px;
  margin-top: 64px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-soft);
}
.foot-grid h4,
.foot-grid .footer-h {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  margin-bottom: 18px;
  font-weight: 500;
}
.foot-grid a {
  display: block;
  color: var(--text);
  opacity: 0.75;
  padding: 5px 0;
  font-size: 0.92rem;
  transition:
    opacity 0.15s,
    color 0.15s;
}
.foot-grid a:hover {
  opacity: 1;
  color: var(--violet-2);
}
.foot-brand .brand img {
  height: 36px;
}
.foot-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 14px;
  max-width: 340px;
}
.socials {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}
.socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  opacity: 1;
}
.socials a:hover {
  border-color: var(--violet-2);
  color: var(--violet-2);
}
.socials svg {
  width: 16px;
  height: 16px;
}

.foot-bottom {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 0.82rem;
}
@media (max-width: 880px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 520px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
}

/* FAB WhatsApp */
.fab-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 12px 28px -6px rgba(37, 211, 102, 0.55),
    0 0 0 4px rgba(37, 211, 102, 0.18);
  transition: transform 0.2s;
}
.fab-wa:hover {
  transform: translateY(-2px) scale(1.04);
}
.fab-wa svg {
  width: 28px;
  height: 28px;
}
.fab-wa::after {
  content: "Raksti mums";
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-elev-2);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
}
.fab-wa:hover::after {
  opacity: 1;
}
@media (max-width: 520px) {
  .fab-wa::after {
    display: none;
  }
}

/* Page header */
.page-header {
  padding: 80px 0 32px;
  border-bottom: 1px solid var(--border-soft);
}
.page-header h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}
.page-header p {
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 680px;
}
