/* ---------- tokens ---------- */
:root{
  --ink:        #0E0F11;
  --paper:      #F5F4F1;
  --paper-dim:  #E9E7E1;
  --steel:      #6B7076;
  --steel-line: #DCDAD4;
  --steel-line-dark: rgba(255,255,255,0.14);
  --accent:     #178656;
  --accent-dim: #0F6242;
  --accent-soft: rgba(23,134,86,0.16);
  --white:      #FFFFFF;

  /* semantic surface/text tokens — the parts of the page that flip between
     light and dark mode. The always-dark bands (nav, footer, hero, cta, etc.)
     keep using --ink/--white directly above and stay constant in both themes. */
  --surface:      var(--paper);
  --surface-alt:  var(--paper-dim);
  --surface-card: var(--white);
  --text:         var(--ink);
  --text-muted:   var(--steel);
  --border:       var(--steel-line);

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --nav-h: 108px;
  --topbar-h: 44px;
  --ease: cubic-bezier(.16,1,.3,1);
}
@media (max-width: 720px){
  :root{ --nav-h: 82px; --topbar-h: 0px; }
}

/* ---------- dark mode ----------
   Default follows the OS/browser preference. An explicit toggle choice is
   saved to localStorage and applied via data-theme, which always wins. */
:root{ color-scheme: light; }
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]){
    --surface:      #131415;
    --surface-alt:  #1C1D1F;
    --surface-card: #1A1B1D;
    --text:         #F2F1EE;
    --text-muted:   #9A9FA5;
    --border:       rgba(255,255,255,0.12);
    color-scheme: dark;
  }
}
:root[data-theme="dark"]{
  --surface:      #131415;
  --surface-alt:  #1C1D1F;
  --surface-card: #1A1B1D;
  --text:         #F2F1EE;
  --text-muted:   #9A9FA5;
  --border:       rgba(255,255,255,0.12);
  color-scheme: dark;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body{
  margin:0;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  transition: background-color .25s var(--ease), color .25s var(--ease);
}

h1,h2,h3{
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0;
}

a{ color: inherit; text-decoration: none; }
ol,ul{ margin:0; padding:0; list-style:none; }
img{ display:block; width:100%; height:100%; object-fit: cover; }
button{ font: inherit; cursor: pointer; }

.eyebrow{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}

/* ---------- signature: top scan line ---------- */
.scan-line{
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  z-index: 999;
  transform: translateX(-100%);
  animation: scan 1.8s var(--ease) 0.15s forwards;
  pointer-events: none;
}
@keyframes scan{ to{ transform: translateX(100%); } }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 2px;
  transition: transform .3s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
  border: none;
  background: none;
  appearance: none;
  -webkit-appearance: none;
}
.btn-primary{
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover{ background: var(--accent-dim); transform: translateY(-1px); }
/* outline/secondary — for a second boxed action next to .btn-primary, on the
   always-dark bands (nav, banners, modals) */
.btn-secondary{
  border: 1px solid var(--steel-line-dark);
  color: var(--white);
}
.btn-secondary:hover{ border-color: var(--accent); color: var(--accent); }
.btn-ghost{
  border-bottom: 1px solid currentColor;
  padding: 14px 6px 14px 2px;
  border-radius: 0;
}
.btn-ghost:hover{ color: var(--accent); }
.btn-ghost span[aria-hidden="true"]{
  display: inline-block;
  transition: transform .4s var(--ease);
}
.btn-ghost:hover span[aria-hidden="true"]{
  transform: translateX(6px);
}
.btn-lg{ padding: 18px 34px; font-size: 14px; }
.btn-nav{
  border: none;
  color: var(--white);
  padding: 13px 24px;
  font-size: 13px;
  background: var(--accent);
}
.btn-nav:hover{ background: var(--accent-dim); transform: translateY(-1px); }

/* ---------- topbar ---------- */
.topbar{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 501;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  background: var(--ink);
}
.topbar-inner{
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
}
.topbar-contact{
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar-contact a{
  color: rgba(255,255,255,0.92);
  transition: color .2s;
}
.topbar-contact a:hover{ color: var(--accent); }
.topbar-hours{
  color: rgba(255,255,255,0.6);
  padding-left: 24px;
  border-left: 1px solid var(--steel-line-dark);
}
.topbar-utility{
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar-utility .lang-switch-trigger{
  height: 28px;
  padding: 0 12px;
  font-size: 11px;
  gap: 6px;
}
.topbar-utility .theme-toggle{
  width: 28px;
  height: 28px;
}
.topbar-utility .theme-toggle svg{ width: 15px; height: 15px; }
@media (max-width: 720px){
  .topbar{ display: none; }
}

/* ---------- nav ---------- */
.nav{
  position: fixed;
  top: var(--topbar-h);
  left:0; right:0;
  z-index: 500;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .35s var(--ease), backdrop-filter .35s, border-color .35s, top .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.solid{
  background: rgba(14,15,17,0.86);
  backdrop-filter: blur(10px);
  border-color: var(--steel-line-dark);
}
.nav-inner{
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}
.nav-logo{
  display: flex;
  align-items: center;
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.01em;
  color: var(--white);
}
.nav-logo img{
  height: 76px;
  width: auto;
  display: block;
}
@media (max-width: 720px){
  .nav-logo img{ height: 54px; }
}
/* header logo crossfade: two stacked images, faded by .nav.solid instead of
   a JS src-swap, so the color change is a smooth transition, not a jump cut */
#navLogoImg, .nav-logo-green{
  transition: opacity .5s var(--ease);
}
.nav-logo-green{
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
}
.nav.solid #navLogoImg{ opacity: 0; }
.nav.solid .nav-logo-green{ opacity: 1; }
.nav-links{
  display: flex;
  gap: 34px;
  margin-right: auto;
}
.nav-links a{
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  transition: color .2s;
}
.nav-links a:hover{ color: var(--white); }
.nav-links > a,
.nav-dropdown-trigger{
  position: relative;
  padding-bottom: 4px;
}
.nav-links > a::after,
.nav-dropdown-trigger::after{
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links > a:hover::after,
.nav-item:hover .nav-dropdown-trigger::after{ transform: scaleX(1); }

/* Storitve dropdown */
.nav-item{ position: relative; }
.nav-dropdown-trigger{
  display: flex;
  align-items: center;
  gap: 7px;
}
.caret{
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s var(--ease);
}
.nav-item:hover .caret,
.nav-item:focus-within .caret{
  transform: rotate(225deg) translateY(1px);
}
.nav-dropdown{
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(.98);
  transform-origin: top left;
  transition: opacity .25s var(--ease), transform .3s var(--ease), visibility .3s;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.nav-dropdown-inner{
  position: relative;
  min-width: 260px;
  background: rgba(14,15,17,0.97);
  backdrop-filter: blur(14px);
  border: 1px solid var(--steel-line-dark);
  padding: 10px 0;
  box-shadow: 0 28px 56px -18px rgba(0,0,0,0.55);
}
.nav-dropdown-inner::before{
  content: "";
  position: absolute;
  top: -7px;
  left: 22px;
  width: 12px; height: 12px;
  background: var(--ink);
  border-top: 1px solid var(--steel-line-dark);
  border-left: 1px solid var(--steel-line-dark);
  transform: rotate(45deg);
}
.nav-dropdown-inner a{
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 20px 12px 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  white-space: nowrap;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-6px);
  transition: color .2s, background .2s, padding-left .25s var(--ease), opacity .3s var(--ease), transform .3s var(--ease);
}
.nav-item:hover .nav-dropdown-inner a,
.nav-item:focus-within .nav-dropdown-inner a{
  opacity: 1;
  transform: translateX(0);
}
.nav-dropdown-inner a:nth-child(1){ transition-delay: 0s, 0s, 0s, .03s, .03s; }
.nav-dropdown-inner a:nth-child(2){ transition-delay: 0s, 0s, 0s, .06s, .06s; }
.nav-dropdown-inner a:nth-child(3){ transition-delay: 0s, 0s, 0s, .09s, .09s; }
.nav-dropdown-inner a:nth-child(4){ transition-delay: 0s, 0s, 0s, .12s, .12s; }
.nav-dropdown-inner a:nth-child(5){ transition-delay: 0s, 0s, 0s, .15s, .15s; }
.nav-dropdown-inner a:nth-child(6){ transition-delay: 0s, 0s, 0s, .18s, .18s; }
.nav-dropdown-inner a:nth-child(7){ transition-delay: 0s, 0s, 0s, .21s, .21s; }
.nav-dropdown-inner a::before{
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform .25s var(--ease);
}
.nav-dropdown-inner a:hover{
  color: var(--accent);
  background: rgba(255,255,255,0.05);
  padding-left: 30px;
}
.nav-dropdown-inner a:hover::before{ transform: scaleY(1); }
.nav-dropdown-all{
  font-weight: 700;
  color: var(--white) !important;
  border-bottom: 1px solid var(--steel-line-dark);
  margin-bottom: 6px;
  padding-bottom: 13px !important;
}
.nav-burger{
  display: none;
  position: relative;
  z-index: 502;
  width: 32px; height: 32px;
  background: none; border: none;
  cursor: pointer;
}
.nav-burger span{
  position: absolute;
  left: 50%; top: 50%;
  width: 22px; height: 1.5px;
  background: var(--white);
  transform: translate(-50%,-50%) translateY(-4px);
  transition: transform .35s var(--ease), background .2s;
}
.nav-burger span:last-child{
  transform: translate(-50%,-50%) translateY(4px);
}
.nav-burger:hover span{ background: var(--accent); }
.nav-burger[aria-expanded="true"] span:first-child{
  transform: translate(-50%,-50%) rotate(45deg);
}
.nav-burger[aria-expanded="true"] span:last-child{
  transform: translate(-50%,-50%) rotate(-45deg);
}
.nav-burger[aria-expanded="true"]:hover span{ background: var(--white); }

.mobile-menu{
  position: fixed;
  inset: 0;
  z-index: 490;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 130px 28px 40px;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform .45s var(--ease);
}
.mobile-menu.open{ transform: translateY(0); }
.mobile-menu-links{
  display: flex;
  flex-direction: column;
}
.mobile-menu-links a{
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--steel-line-dark);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), color .2s;
}
.mobile-menu.open .mobile-menu-links a{
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu-links a:nth-child(1){ transition-delay: .05s; }
.mobile-menu-links a:nth-child(2){ transition-delay: .1s; }
.mobile-menu-links a:nth-child(3){ transition-delay: .15s; }
.mobile-menu-links a:nth-child(4){ transition-delay: .2s; }
.mobile-menu-links a:nth-child(5){ transition-delay: .25s; }
.mobile-menu-links a:nth-child(6){ transition-delay: .3s; }
.mobile-menu-links a:active{ color: var(--accent); }
.mobile-menu-num{
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
}
.mobile-menu-cta.btn{
  align-self: flex-start;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .4s var(--ease) .35s, transform .4s var(--ease) .35s;
}
.mobile-menu.open .mobile-menu-cta.btn{ opacity: 1; transform: translateY(0); }
.mobile-menu-contact{
  margin-top: auto;
  padding-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: opacity .4s var(--ease) .4s;
}
.mobile-menu.open .mobile-menu-contact{ opacity: 1; }
.mobile-menu-contact a,
.mobile-menu-contact span{
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.mobile-menu-contact a{ color: rgba(255,255,255,0.85); transition: color .2s; }
.mobile-menu-contact a:hover{ color: var(--accent); }

/* ---------- hero ---------- */
.hero{
  position: relative;
  /* min-height, not height: on a short viewport (a small laptop window, or
     mobile once the trust badges + microtrust line are added) the fixed
     topbar/nav sitting on top of the hero could otherwise overlap centered
     content that no longer fits in a hard 100vh box. Letting the section
     grow instead costs nothing when content DOES fit in one screen. */
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--topbar-h) + var(--nav-h) + 24px) 0 40px;
  overflow: hidden;
  background: var(--ink);
}
.hero-media{ position:absolute; inset:0; }
.hero-media img{ transform: scale(1.02); }
.hero-scrim{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,15,17,0.55) 0%, rgba(14,15,17,0.15) 35%, rgba(14,15,17,0.55) 78%, rgba(14,15,17,0.92) 100%),
    linear-gradient(200deg, rgba(23,134,86,0.4) 0%, rgba(14,15,17,0.45) 40%, rgba(14,15,17,0.6) 100%);
}
.hero-content{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  color: var(--white);
}
.hero-content .eyebrow{ color: var(--white); }
.hero h1{
  font-size: clamp(36px, 4.8vw, 63px);
  text-transform: uppercase;
  color: var(--white);
  max-width: 1280px;
}
.hero-break{ display: none; }
@media (min-width: 860px){
  .hero-break{ display: inline; }
}
.hero-sub{
  margin: 26px 0 34px;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
}
.hero-actions{
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.hero .btn-ghost{ color: var(--white); }
.hero .btn-ghost:hover{ color: var(--accent); }
.hero-trust{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}
.hero-trust-item{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--white);
}
.hero-trust-stars{ color: #F4B400; letter-spacing: 1px; font-size: 11px; }
.hero-microtrust{
  margin: 18px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* real "best practices" ticker in place of a fabricated status bar */
.hero-ticker{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  border-top: 1px solid var(--steel-line-dark);
  background: rgba(14,15,17,0.55);
  backdrop-filter: blur(6px);
  overflow: hidden;
}
.hero-ticker-track{
  display: flex;
  width: max-content;
}
.ticker-item[aria-hidden="true"]{ display: none; }
@keyframes hero-ticker-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
.ticker-item{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-right: 1px solid var(--steel-line-dark);
  white-space: nowrap;
}
.ticker-item i{
  width: 7px; height: 7px;
  border-radius: 50%;
  display: inline-block;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* ---------- sections (generic) ---------- */
.section{
  padding: 136px 32px;
  max-width: 1320px;
  margin: 0 auto;
  scroll-margin-top: calc(var(--topbar-h) + var(--nav-h));
}
.section-head{ margin-bottom: 60px; max-width: 640px; }
.section-head h2{ font-size: clamp(32px, 4.4vw, 56px); }
.section-head p.section-sub{
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

.testimonials-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  max-width: none;
  flex-wrap: wrap;
}
.testimonials-head > div:first-child{ max-width: 560px; }
.google-badge{
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--surface-card);
  border: 1px solid var(--border);
  padding: 14px 22px;
  flex-shrink: 0;
}
.google-badge-icon{ width: 30px; height: 30px; flex-shrink: 0; }
.google-badge-info{ display: flex; flex-direction: column; gap: 3px; }
.google-badge-top{ display: flex; align-items: baseline; gap: 9px; }
.google-badge-rating{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.google-badge-stars{
  color: #F4B400;
  font-size: 14px;
  letter-spacing: 2px;
}
.google-badge-count{
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in{ opacity: 1; transform: none; }

/* ---------- services ---------- */
.card-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.card{
  background: var(--surface-card);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-media{ aspect-ratio: 4/3; overflow: hidden; }
.card-media img{ transition: transform .6s var(--ease); }
.card:hover .card-media img{ transform: scale(1.06); }
.card-body{ padding: 22px 22px 26px; }
.card-body h3{
  font-size: 19px;
  text-transform: none;
  margin-bottom: 10px;
  font-weight: 800;
}
.card-body p:not(.eyebrow){
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 16px;
}
.card-link{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
  padding-right: 4px;
  transition: color .2s, border-color .2s;
}
.card-link:hover{ color: var(--accent); border-color: var(--accent); }
.card-link span[aria-hidden="true"]{
  display: inline-block;
  transition: transform .4s var(--ease);
}
.card-link:hover span[aria-hidden="true"]{
  transform: translateX(5px);
}

/* ---------- why / stats ---------- */
.why{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  max-width: 1320px;
}
.why-media{
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ink);
}
.why-media img{
  transition: transform .9s var(--ease);
}
.why-media:hover img{
  transform: scale(1.05);
}
.why-content p.lede{
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 0 44px;
}
.why-content h2{
  font-size: clamp(34px, 4.6vw, 52px);
  margin-bottom: 22px;
  max-width: 480px;
}
.stat-grid{
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 40px;
}
.stat{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
}
.stat::before{
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--border);
}
.stat::after{
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease);
}
.stat.in::after{ transform: scaleX(1); }
.stat-full{ grid-column: 1 / -1; }
.stat-num{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.2vw, 58px);
  letter-spacing: -0.01em;
  color: var(--accent);
}
.stat-label{
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- insurance strip ---------- */
.insurance{
  background: var(--ink);
  color: var(--white);
  padding: 64px 0;
}
.insurance-photo{
  position: relative;
  overflow: hidden;
}
.insurance-media{ position: absolute; inset: 0; }
.insurance-media img{ opacity: .55; }
.insurance-scrim{
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(14,15,17,0.94) 0%, rgba(14,15,17,0.8) 45%, rgba(14,15,17,0.5) 100%);
}
.insurance-photo .insurance-inner{ position: relative; z-index: 2; }
.insurance-inner{
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.insurance h2{
  font-size: clamp(24px, 3vw, 32px);
  color: var(--white);
  margin-bottom: 14px;
}
.insurance p:not(.eyebrow){
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 440px;
}
/* the partner-badge row needs more room than the standard 1fr side column
   gives it (badges kept wrapping to a second line) — let this specific
   instance of .insurance-inner stack full-width instead. */
.insurance-inner:has(.partner-list){
  grid-template-columns: 1fr;
  gap: 24px;
}
.partner-list{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
}
.partner-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border: 1px solid var(--steel-line-dark);
  padding: 12px 20px;
  transition: color .2s, border-color .2s;
}
a.partner-badge:hover{
  color: var(--accent);
  border-color: var(--accent);
}
@media (max-width: 720px){ .partner-list{ justify-content: flex-start; } }

/* area chips on a dark .insurance-style band */
.insurance .area-chips{ justify-content: flex-end; }
.insurance .area-chip{
  color: rgba(255,255,255,0.85);
  border-color: var(--steel-line-dark);
}
.insurance .area-chip.is-primary{
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
@media (max-width: 720px){ .insurance .area-chips{ justify-content: flex-start; } }

/* ---------- testimonials ---------- */
.testimonial-carousel{
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
}
.testimonial-track{
  display: flex;
  gap: 20px;
  width: max-content;
  animation: testimonial-scroll 46s linear infinite;
}
.testimonial-carousel:hover .testimonial-track{
  animation-play-state: paused;
}
@keyframes testimonial-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
.testimonial-card{
  background: var(--surface-card);
  border: 1px solid var(--border);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 340px;
  flex-shrink: 0;
}
.testimonial-stars{
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 3px;
}
.testimonial-quote{
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}
.testimonial-quote::before{ content: '“'; color: var(--accent); }
.testimonial-quote::after{ content: '”'; color: var(--accent); }
.testimonial-meta{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testimonial-avatar{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.testimonial-name{ font-size: 13px; font-weight: 600; }
.testimonial-time{
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ---------- FAQ ---------- */
.faq-list{
  max-width: 860px;
}
.faq-item{
  border-top: 1px solid var(--border);
}
.faq-item:last-child{ border-bottom: 1px solid var(--border); }
.faq-q{
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
}
.faq-q .faq-icon{
  flex-shrink: 0;
  width: 20px; height: 20px;
  position: relative;
}
.faq-q .faq-icon::before,
.faq-q .faq-icon::after{
  content: '';
  position: absolute;
  background: var(--accent);
  transition: transform .3s var(--ease);
}
.faq-q .faq-icon::before{ left: 0; top: 9px; width: 20px; height: 2px; }
.faq-q .faq-icon::after{ left: 9px; top: 0; width: 2px; height: 20px; }
.faq-item.open .faq-icon::after{ transform: rotate(90deg); }
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-a p:not(.eyebrow){
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 720px;
}

/* ---------- inline highlight ---------- */
.highlight{
  background: linear-gradient(180deg, transparent 58%, var(--accent-soft) 58%);
  padding: 0 2px;
  font-weight: 600;
  color: var(--text);
}

/* ---------- inline text link (mid-sentence "Preberite več →" links) ---------- */
.inline-link{
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--steel-line);
  transition: color .25s var(--ease), text-decoration-color .25s var(--ease);
}
.inline-link:hover{ color: var(--accent); text-decoration-color: var(--accent); }
.inline-link .link-arrow{
  display: inline-block;
  transition: transform .3s var(--ease);
}
.inline-link:hover .link-arrow{ transform: translateX(4px); }

/* ---------- callout box ---------- */
.callout{
  border-left: 3px solid var(--accent);
  background: var(--surface-alt);
  padding: 24px 28px;
  max-width: 680px;
}
.callout p:not(.eyebrow){
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}
.callout .callout-label{
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-dim);
  margin-bottom: 10px;
}

/* ---------- full-width banner strip ---------- */
.banner-strip{
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  position: relative;
  z-index: 3;
}
.banner-strip-inner{
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.banner-strip-text{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
}
.banner-strip-label{
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--accent);
  color: var(--white);
  padding: 5px 10px;
  flex-shrink: 0;
  white-space: nowrap;
}
.banner-strip .card-link{ flex-shrink: 0; }
@media (max-width: 720px){
  .banner-strip{ padding: 20px 0; }
  .banner-strip-inner{ flex-direction: column; align-items: flex-start; padding: 0 22px; }
}

/* ---------- sticky mobile call bar ---------- */
.mobile-cta-bar{ display: none; }
@media (max-width: 720px){
  .mobile-cta-bar{
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 400;
    box-shadow: 0 -2px 14px rgba(0,0,0,0.18);
  }
  .mobile-cta-bar a{
    flex: 1;
    text-align: center;
    padding: 16px 0;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }
  .mobile-cta-bar .mobile-cta-call{ background: var(--accent); color: var(--white); }
  .mobile-cta-bar .mobile-cta-book{ background: var(--ink); color: var(--white); }
  body{ padding-bottom: 58px; }
}

/* ---------- interior page header ---------- */
.page-header{
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  padding: 196px 0 56px;
  background: var(--ink);
  overflow: hidden;
}
/* cinematic variant for pages with real photography (services, storitve hub) */
.page-header.is-hero{
  min-height: 78vh;
  padding: 196px 0 72px;
}
.page-header-media{ position: absolute; inset: 0; }
.page-header-media img{ opacity: .55; transform: scale(1.02); }
.page-header.is-hero .page-header-media img{ opacity: .75; }
.page-header-scrim{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,15,17,0.75) 0%, rgba(14,15,17,0.4) 45%, rgba(14,15,17,0.95) 100%);
}
.page-header.is-hero .page-header-scrim{
  background: linear-gradient(180deg, rgba(14,15,17,0.55) 0%, rgba(14,15,17,0.15) 40%, rgba(14,15,17,0.5) 75%, rgba(14,15,17,0.94) 100%);
}
.page-header-content{
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  color: var(--white);
  box-sizing: border-box;
}
.breadcrumb{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 20px;
}
.breadcrumb a{ color: rgba(255,255,255,0.85); }
.breadcrumb a:hover{ color: var(--accent); }
.page-header h1{
  font-size: clamp(32px, 5vw, 60px);
  text-transform: uppercase;
  color: var(--white);
  max-width: 760px;
  overflow-wrap: break-word;
}
.page-header.is-hero h1{
  font-size: clamp(40px, 7vw, 84px);
  max-width: 1000px;
}
.page-header-sub{
  margin: 18px 0 0;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}
.page-header.is-hero .page-header-sub{ font-size: 17px; max-width: 520px; }
.page-header-actions{
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.page-header-actions .btn-ghost{ color: var(--white); }
.page-header-actions .btn-ghost:hover{ color: var(--accent); }

/* ---------- full-bleed image break ---------- */
.image-break{
  position: relative;
  height: 62vh;
  min-height: 380px;
  overflow: hidden;
  background: var(--ink);
}
.image-break img{ opacity: .92; }
.image-break-caption{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 28px 32px;
  background: linear-gradient(0deg, rgba(14,15,17,0.85) 0%, transparent 100%);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.image-break-caption span{ max-width: 1320px; margin: 0 auto; display: block; }
@media (max-width: 720px){
  .page-header.is-hero{ min-height: 62vh; }
  .page-header.is-hero h1{ font-size: clamp(26px, 7.5vw, 46px); }
  .image-break{ height: 42vh; min-height: 260px; }
}

/* ---------- steps ---------- */
.steps{ max-width: 760px; }
.step{
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--border);
}
.steps li:last-child{ border-bottom: 1px solid var(--border); }
.step-num{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
}
.step h3{
  font-size: 17px;
  font-weight: 800;
  text-transform: none;
  margin-bottom: 8px;
}
.step p:not(.eyebrow){
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ---------- benefit checklist ---------- */
.benefit-list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 36px;
  max-width: 820px;
}
.benefit-item{
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.benefit-item i{
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--accent-soft);
  position: relative;
}
.benefit-item i::after{
  content: '';
  position: absolute;
  left: 6px; top: 4px;
  width: 5px; height: 9px;
  border: solid var(--accent);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.benefit-item strong{ display: block; font-size: 15px; margin-bottom: 3px; }
.benefit-item span{ display: block; font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ---------- related services ---------- */
.related-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* ---------- page intro text block ---------- */
.prose{ max-width: 720px; }
.prose p:not(.eyebrow){ font-size: 16px; line-height: 1.7; color: var(--text-muted); margin: 0 0 20px; }
.prose p:last-child{ margin-bottom: 0; }

/* ---------- quote band (visual break) ---------- */
.quote-band{
  background: var(--ink);
  color: var(--white);
  padding: 100px 32px;
  text-align: center;
}
.quote-band blockquote{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 38px);
  line-height: 1.28;
  letter-spacing: -0.01em;
  max-width: 820px;
  margin: 0 auto 26px;
}
.quote-band blockquote::before{ content: '\201C'; color: var(--accent); }
.quote-band blockquote::after{ content: '\201D'; color: var(--accent); }
.quote-band cite{
  font-family: var(--font-mono);
  font-size: 12px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
}

/* ---------- area served / local coverage ---------- */
.coverage-text{ max-width: 620px; }
.coverage-text p:not(.eyebrow){ font-size: 16px; line-height: 1.7; color: var(--text-muted); margin: 14px 0 0; }
.area-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.area-chip{
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.03em;
  padding: 10px 18px;
  border: 1px solid var(--border);
  color: var(--text);
}
.area-chip.is-primary{
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* ---------- cta ---------- */
.cta{
  background: var(--ink);
  color: var(--white);
  padding: 140px 0;
  text-align: center;
}
.cta-inner{
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}
.cta h2{
  font-size: clamp(32px, 5vw, 56px);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 40px;
}
.cta-actions{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta .btn-ghost{ color: var(--white); }
.cta .btn-ghost:hover{ color: var(--accent); }
.cta-note{
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ---------- location ---------- */
.location{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: stretch;
}
.location-address{
  font-size: 20px;
  line-height: 1.5;
  margin: 20px 0 22px;
}
.location-phone{
  font-family: var(--font-mono);
  font-size: 15px;
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
  display: inline-block;
  margin-bottom: 42px;
}
.hours{
  font-family: var(--font-mono);
  font-size: 13px;
  border-collapse: collapse;
  width: 100%;
  max-width: 320px;
}
.hours td{
  padding: 10px 0;
  border-top: 1px solid var(--border);
}
.hours td:last-child{ text-align: right; color: var(--text-muted); }

.location-map-embed{
  position: relative;
  min-height: 320px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.location-map-embed iframe{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}
.location-map-embed-wide{ min-height: 420px; }

/* ---------- contact form ---------- */
.contact-layout{
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.contact-layout .location-info{
  background: var(--surface-alt);
  border: 1px solid var(--border);
  padding: 32px 36px;
}
@media (max-width: 900px){
  .contact-layout{ grid-template-columns: 1fr; }
}
.contact-form{
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-row{
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 22px;
}
.form-field{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label{
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}
.form-optional{ text-transform: none; letter-spacing: 0; color: var(--text-muted); }
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea{
  width: 100%;
  border: 1px solid var(--border);
  background: var(--surface-card);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: border-color .2s;
}
.form-field input:focus,
.form-field textarea:focus{
  outline: none;
  border-color: var(--accent);
}
.form-field textarea{ resize: vertical; min-height: 130px; }
.form-upload{
  position: relative;
  border: 1px dashed var(--border);
  background: var(--surface-card);
  padding: 28px 20px;
  text-align: center;
  transition: border-color .2s, background .2s;
}
.form-upload.is-dragover{
  border-color: var(--accent);
  background: var(--accent-soft);
}
.form-upload input[type="file"]{
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: pointer;
}
.form-upload-hint{
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  pointer-events: none;
}
.form-upload-cta{
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}
.form-file-list{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.form-file-chip{
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  padding: 6px 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text);
}
.form-file-chip button{
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1;
  padding: 0;
}
.form-file-chip button:hover{ color: var(--accent); }
.contact-form .btn{ align-self: flex-start; }
.form-note{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}
.form-honeypot{
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status{
  font-family: var(--font-mono);
  font-size: 13px;
  display: none;
}
.form-status.is-success{ display: block; color: var(--accent-dim); }
.form-status.is-error{ display: block; color: #b3261e; }
.contact-form .btn[disabled]{ opacity: .6; cursor: not-allowed; }
@media (max-width: 640px){
  .form-row{ grid-template-columns: 1fr; }
}

/* ---------- footer ---------- */
.footer{
  background: var(--ink);
  color: rgba(255,255,255,0.7);
}
.footer-inner{
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 32px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(4, minmax(0, 1fr));
  gap: 40px;
}
.footer .nav-logo{ display: block; margin-bottom: 16px; }
.footer-col p:not(.eyebrow){ font-size: 14px; line-height: 1.6; margin: 0; }
.footer-col h3{
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  margin: 0 0 16px;
}
.footer-col a,
.footer-col button.cookie-settings-link{
  display: block;
  width: 100%;
  text-align: left;
  font-size: 14px;
  padding: 6px 0;
  color: rgba(255,255,255,0.75);
  transition: color .2s;
  background: none;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  cursor: pointer;
}
.footer-col a:hover,
.footer-col button.cookie-settings-link:hover{ color: var(--accent); }
.footer-bottom{
  border-top: 1px solid var(--steel-line-dark);
  max-width: 1320px;
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom-legal{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-bottom-legal a{
  color: rgba(255,255,255,0.4);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
}
.footer-bottom-legal a:hover{ color: var(--accent); }
.footer-lang{
  display: flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
}
.footer-lang a{
  color: rgba(255,255,255,0.4);
  transition: color .2s;
}
.footer-lang a:hover{ color: var(--accent); }
.footer-lang a.is-current{ color: rgba(255,255,255,0.85); font-weight: 700; pointer-events: none; }

/* ---------- call vs. contact CTA swap ---------- */
/* On mobile a phone call is one tap away, so call + contact both show.
   On desktop a tel: link isn't actionable, so only the contact link shows. */
.page-header-actions .cta-contact{ display: none; }
@media (min-width: 721px){
  .cta-call{ display: none; }
  .page-header-actions .cta-contact{ display: inline-flex; }
  /* the contact link is now the sole CTA in these spots — give it primary weight */
  .hero-actions .cta-contact,
  .cta-actions .cta-contact{
    border: none;
    border-radius: 2px;
    background: var(--accent);
    color: var(--white);
  }
  .hero-actions .cta-contact{ padding: 14px 26px; }
  .cta-actions .cta-contact{ padding: 18px 34px; font-size: 14px; }
  .hero-actions .cta-contact:hover,
  .cta-actions .cta-contact:hover{
    background: var(--accent-dim);
    color: var(--white);
  }
}

/* ---------- responsive ---------- */
@media (max-width: 980px){
  .why, .location{ grid-template-columns: 1fr; }
  .why-media{ order: -1; aspect-ratio: 16/9; }
  .card-grid, .related-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner{ grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .insurance-inner{ grid-template-columns: 1fr; }
  .partner-list{ justify-content: flex-start; }
  .benefit-list{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .nav-links{ display: none; }
  .btn-nav{ display: none; }
  .nav-burger{ display: flex; }
  /* .nav-inner is justify-content:space-between, so with only the logo,
     toggle and burger left visible it spread all three evenly across the
     bar instead of grouping the toggle against the burger. Push everything
     from the toggle onward to the right edge as a tight pair instead. */
  .nav-inner > .theme-toggle{ margin-left: auto; }
  .nav-inner{ gap: 14px; }
  .card-grid, .related-grid{ grid-template-columns: 1fr; }
  .testimonial-card{ width: 280px; }
  .testimonial-carousel{
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  }
  .section{ padding: 80px 22px; }
  /* Extra bottom clearance on mobile so centered content never sits under
     the hero-ticker bar (top clearance is already handled by the base
     .hero padding above, using --topbar-h/--nav-h which are redefined for
     this breakpoint). */
  .hero{ padding-bottom: 96px; }
  .hero-content{ padding: 0 22px; }
  .footer-inner{ grid-template-columns: 1fr; padding: 60px 22px 40px; }
  .hero-ticker-track{
    animation: hero-ticker-scroll 18s linear infinite;
  }
  .hero-ticker:active .hero-ticker-track{ animation-play-state: paused; }
  .ticker-item[aria-hidden="true"]{ display: flex; }
  .ticker-item{ padding: 12px 18px; }
  .faq-q{ font-size: 15px; }
  .page-header{ padding: 140px 0 44px; min-height: 36vh; }
  .page-header-content{ padding: 0 22px; }
  .insurance-inner{ padding: 0 22px; }
  .cta-inner{ padding: 0 22px; }
  .banner-strip-inner{ padding: 0 22px; }
  .step{ grid-template-columns: 40px minmax(0, 1fr); }
}

/* smooth color-token swap on theme toggle for surfaces the toggle repaints */
.card,
.google-badge,
.testimonial-card,
.callout,
.banner-strip,
.contact-layout .location-info,
.form-field input,
.form-field textarea,
.form-upload,
.form-file-chip,
.location-map-embed{
  transition: background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}

/* ---------- theme toggle ---------- */
/* ---------- language switcher ---------- */
.lang-switch{
  position: relative;
}
.lang-switch-trigger{
  display: flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  background: none;
  border: 1px solid var(--steel-line-dark);
  border-radius: 20px;
  padding: 0 15px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
  transition: border-color .2s, color .2s;
}
.lang-switch-trigger:hover,
.lang-switch.open .lang-switch-trigger{ color: var(--accent); border-color: var(--accent); }
.lang-switch-trigger .caret{
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform .25s var(--ease);
}
.lang-switch.open .lang-switch-trigger .caret{ transform: rotate(225deg) translateY(1px); }
.lang-switch-menu{
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 168px;
  background: rgba(14,15,17,0.97);
  backdrop-filter: blur(14px);
  border: 1px solid var(--steel-line-dark);
  padding: 8px 0;
  box-shadow: 0 28px 56px -18px rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(.98);
  transform-origin: top right;
  transition: opacity .25s var(--ease), transform .3s var(--ease), visibility .3s;
}
.lang-switch.open .lang-switch-menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.lang-switch-menu a{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  transition: color .2s, background .2s;
}
.lang-switch-menu a:hover{ color: var(--accent); background: rgba(255,255,255,0.05); }
.lang-switch-menu a.is-current{ color: var(--white); font-weight: 700; pointer-events: none; }
.lang-switch-menu a .lang-code{
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  width: 20px;
  flex-shrink: 0;
}

/* language row inside the fullscreen mobile menu */
.mobile-menu-lang{
  display: flex;
  gap: 10px;
  margin-top: 28px;
  opacity: 0;
  transition: opacity .4s var(--ease) .3s;
}
.mobile-menu.open .mobile-menu-lang{ opacity: 1; }
.mobile-menu-lang a{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border: 1px solid var(--steel-line-dark);
  padding: 8px 14px;
  transition: color .2s, border-color .2s;
}
.mobile-menu-lang a:hover{ color: var(--accent); border-color: var(--accent); }
.mobile-menu-lang a.is-current{ color: var(--white); border-color: var(--white); font-weight: 700; }

.theme-toggle{
  position: relative;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--steel-line-dark);
  border-radius: 50%;
  color: var(--white);
  flex-shrink: 0;
  transition: border-color .2s, color .2s;
}
.theme-toggle:hover{ color: var(--accent); border-color: var(--accent); }
/* the nav-inner toggle is a mobile fallback — desktop uses the one in the topbar */
@media (min-width: 721px){
  .nav-inner > .theme-toggle{ display: none; }
}
.theme-toggle svg{
  position: absolute;
  width: 18px; height: 18px;
  transition: opacity .25s var(--ease), transform .35s var(--ease);
}
.theme-toggle .icon-sun{ opacity: 1; transform: rotate(0deg) scale(1); }
.theme-toggle .icon-moon{ opacity: 0; transform: rotate(-60deg) scale(.6); }
:root[data-theme="dark"] .theme-toggle .icon-sun{ opacity: 0; transform: rotate(60deg) scale(.6); }
:root[data-theme="dark"] .theme-toggle .icon-moon{ opacity: 1; transform: rotate(0deg) scale(1); }
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]) .theme-toggle .icon-sun{ opacity: 0; transform: rotate(60deg) scale(.6); }
  :root:not([data-theme="light"]) .theme-toggle .icon-moon{ opacity: 1; transform: rotate(0deg) scale(1); }
}
/* ---------- custom cursor (fine-pointer devices only) ---------- */
body.has-custom-cursor,
body.has-custom-cursor *{
  cursor: none !important;
}
body.has-custom-cursor input,
body.has-custom-cursor textarea,
body.has-custom-cursor [contenteditable]{
  cursor: text !important;
}
body.has-custom-cursor select{
  cursor: pointer !important;
}
.cursor-dot,
.cursor-ring{
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-100px, -100px);
  will-change: transform;
}
.cursor-dot{
  width: 8px; height: 8px;
  margin: -4px 0 0 -4px;
  background: var(--accent);
  opacity: 0;
  transition: opacity .2s, width .2s var(--ease), height .2s var(--ease), margin .2s var(--ease);
}
.cursor-dot.is-visible{ opacity: 1; }
.cursor-dot.is-hidden{ opacity: 0; }
.cursor-ring{
  width: 34px; height: 34px;
  margin: -17px 0 0 -17px;
  border: 1.5px solid var(--accent);
  opacity: 0;
  transition: opacity .2s, width .25s var(--ease), height .25s var(--ease), margin .25s var(--ease), background-color .25s var(--ease);
}
.cursor-ring.is-visible{ opacity: .5; }
.cursor-ring.is-active{
  width: 56px; height: 56px;
  margin: -28px 0 0 -28px;
  background: var(--accent-soft);
  opacity: 1;
}
@media (pointer: coarse), (prefers-reduced-motion: reduce){
  .cursor-dot, .cursor-ring{ display: none; }
}

/* ---------- cookie consent banner ---------- */
.cookie-banner{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 800;
  background: var(--ink);
  border-top: 1px solid var(--steel-line-dark);
  padding: 22px 32px;
  padding-bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  transform: translateY(100%);
  transition: transform .4s var(--ease);
}
.cookie-banner.is-visible{ transform: translateY(0); }
.cookie-banner-inner{
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cookie-banner-inner p{
  margin: 0;
  max-width: 640px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}
.cookie-banner-inner a{
  color: rgba(255,255,255,0.95);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-inner a:hover{ color: var(--accent); }
.cookie-banner-actions{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
/* match the nav's Kontakt button size, not the larger default .btn padding */
.cookie-banner-actions .btn,
.cookie-modal-actions .btn{
  padding: 13px 24px;
}
@media (max-width: 720px){
  .cookie-banner{ padding: 20px 22px; padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px)); }
  .cookie-banner-inner{ flex-direction: column; align-items: flex-start; }
  .cookie-banner-actions{ width: 100%; }
  .cookie-banner-actions .btn{ flex: 1; justify-content: center; }
}

/* ---------- cookie settings modal (category-level consent) ---------- */
.cookie-modal{
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.cookie-modal.is-visible{ opacity: 1; visibility: visible; }
.cookie-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(6,7,8,0.6);
  backdrop-filter: blur(2px);
}
.cookie-modal-panel{
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--ink);
  border: 1px solid var(--steel-line-dark);
  padding: 40px;
  transform: translateY(12px) scale(.98);
  transition: transform .3s var(--ease);
}
.cookie-modal.is-visible .cookie-modal-panel{ transform: translateY(0) scale(1); }
.cookie-modal-close{
  position: absolute;
  top: 20px; right: 20px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: none;
  border: 1px solid var(--steel-line-dark);
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.cookie-modal-close:hover{ color: var(--accent); border-color: var(--accent); }
.cookie-modal-panel h2{
  font-size: 22px;
  color: var(--white);
  margin: 0 0 14px;
  padding-right: 40px;
}
.cookie-modal-panel > p{
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0 0 32px;
}
.cookie-modal-panel > p a{ color: rgba(255,255,255,0.95); text-decoration: underline; text-underline-offset: 2px; }
.cookie-modal-panel > p a:hover{ color: var(--accent); }
.cookie-category{
  padding: 20px 0;
  border-top: 1px solid var(--steel-line-dark);
}
.cookie-category:last-of-type{ border-bottom: 1px solid var(--steel-line-dark); }
.cookie-category-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
}
.cookie-category-head span{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
}
.cookie-category-desc{
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.cookie-switch{
  position: relative;
  display: inline-block;
  width: 40px; height: 22px;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-switch input{
  position: absolute;
  opacity: 0;
  width: 100%; height: 100%;
  margin: 0;
  cursor: pointer;
}
.cookie-switch-track{
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  transition: background .2s;
}
.cookie-switch-track::before{
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--white);
  transition: transform .2s var(--ease);
}
.cookie-switch input:checked + .cookie-switch-track{ background: var(--accent); }
.cookie-switch input:checked + .cookie-switch-track::before{ transform: translateX(18px); }
.cookie-switch input:focus-visible + .cookie-switch-track{ outline: 2px solid var(--accent); outline-offset: 2px; }
.cookie-switch.is-disabled{ cursor: default; }
.cookie-switch.is-disabled input{ cursor: default; }
.cookie-switch.is-disabled .cookie-switch-track{ background: var(--accent); opacity: .5; }
.cookie-modal-actions{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
@media (max-width: 640px){
  .cookie-modal{ padding: 0; align-items: flex-end; }
  .cookie-modal-panel{ max-width: none; max-height: 88vh; padding: 32px 22px; }
  .cookie-modal-actions{ flex-direction: column-reverse; align-items: stretch; }
}

/* ---------- claim modal (prijava škode: choose insurer, then confirm) ---------- */
.claim-modal{
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.claim-modal.is-visible{ opacity: 1; visibility: visible; }
.claim-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(6,7,8,0.6);
  backdrop-filter: blur(2px);
}
.claim-modal-panel{
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--ink);
  border: 1px solid var(--steel-line-dark);
  padding: 40px;
  transform: translateY(12px) scale(.98);
  transition: transform .3s var(--ease);
}
.claim-modal.is-visible .claim-modal-panel{ transform: translateY(0) scale(1); }
.claim-modal-close{
  position: absolute;
  top: 20px; right: 20px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: none;
  border: 1px solid var(--steel-line-dark);
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.claim-modal-close:hover{ color: var(--accent); border-color: var(--accent); }
.claim-modal-steps{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  margin: 0 0 20px;
  padding-right: 40px;
}
.claim-step-dot{
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.claim-step-dot.is-active{ background: var(--accent); transform: scale(1.3); }
.claim-modal-panel h2{
  font-size: 22px;
  color: var(--white);
  margin: 0 0 10px;
  padding-right: 40px;
}
.claim-modal-panel > .claim-step > p{
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0 0 24px;
}
.claim-step{ display: none; }
.claim-step.is-active{ display: block; animation: claim-step-in .35s var(--ease); }
@keyframes claim-step-in{
  from{ opacity: 0; transform: translateX(10px); }
  to{ opacity: 1; transform: translateX(0); }
}
.claim-insurer-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 8px;
}
.claim-insurer-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  border: 1px solid var(--steel-line-dark);
  background: rgba(255,255,255,0.03);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.claim-insurer-btn:hover{
  border-color: var(--accent);
  background: rgba(23,134,86,0.14);
  transform: translateY(-2px);
}
.claim-insurer-btn.is-other{
  grid-column: 1 / -1;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  padding: 16px;
}
.claim-back{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  margin-bottom: 20px;
  transition: color .2s;
}
.claim-back:hover{ color: var(--accent); }
.claim-summary{
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--steel-line-dark);
  padding: 18px 20px;
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
}
.claim-summary strong{ color: var(--white); }
.claim-summary ul{ margin: 10px 0 0; padding-left: 18px; list-style: disc; }
.claim-summary li{ margin-bottom: 4px; }
.claim-modal-actions{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 640px){
  .claim-modal{ padding: 0; align-items: flex-end; }
  .claim-modal-panel{ max-width: none; max-height: 88vh; padding: 32px 22px; }
  .claim-insurer-grid{ grid-template-columns: 1fr; }
  .claim-modal-actions{ flex-direction: column-reverse; align-items: stretch; }
}

/* ---------- consent-gated map embed ---------- */
.map-consent-placeholder{ position: relative; }
.map-consent-notice{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 32px;
  background: var(--surface-alt);
}
.map-consent-notice p{
  margin: 0;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}
.map-consent-load{
  border-color: var(--border);
  color: var(--text);
}
.map-consent-load:hover{ color: var(--accent); }

/* ---------- legal / policy pages ---------- */
.legal-content{ max-width: 760px; }
.legal-updated{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 48px;
}
.legal-content h2{
  font-size: 24px;
  text-transform: none;
  margin: 52px 0 16px;
}
.legal-content h2:first-child{ margin-top: 0; }
.legal-content h3{
  font-size: 16px;
  font-weight: 800;
  text-transform: none;
  margin: 30px 0 10px;
}
.legal-content p{
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 16px;
}
.legal-content ul{
  margin: 0 0 16px;
  padding-left: 22px;
  list-style: disc;
}
.legal-content li{
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.legal-content strong{ color: var(--text); font-weight: 700; }
.legal-content a{ color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover{ color: var(--accent-dim); }
.legal-table-wrap{ overflow-x: auto; margin: 8px 0 28px; }
.legal-content table{
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 13px;
}
.legal-content th, .legal-content td{
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
}
.legal-content th{
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  white-space: nowrap;
}
.legal-content td{ color: var(--text-muted); }

/* ---------- form consent checkbox ---------- */
.form-consent{ flex-direction: row; }
.form-checkbox{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.form-checkbox input[type="checkbox"]{
  margin-top: 3px;
  width: 16px; height: 16px;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}
.form-checkbox span{
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}
.form-checkbox a{ color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- prose bullet lists (service pages) ---------- */
.prose ul{ margin: 0 0 20px; padding-left: 22px; list-style: disc; }
.prose ul:last-child{ margin-bottom: 0; }
.prose li{ font-size: 16px; line-height: 1.7; color: var(--text-muted); margin-bottom: 8px; }
.prose li:last-child{ margin-bottom: 0; }
.prose li strong{ color: var(--text); }
.prose h2{
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin: 56px 0 28px;
}
.prose h2:first-child{ margin-top: 0; }
.prose h3{
  font-size: 17px;
  font-weight: 800;
  text-transform: none;
  margin: 28px 0 10px;
}
.prose h3:first-child{ margin-top: 0; }

/* ---------- info table (pricing factors, comparisons) ---------- */
.info-table-wrap{ overflow-x: auto; margin: 8px 0 28px; }
.info-table{ width: 100%; min-width: 480px; border-collapse: collapse; font-size: 14px; }
.info-table th, .info-table td{
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.55;
}
.info-table th{
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  white-space: nowrap;
}
.info-table td{ color: var(--text-muted); }
.info-table td strong{ color: var(--text); }
