:root {
  --orange: #FB7438;
  --orange-dark: #E45A20;
  --navy: #0E1A2B;
  --navy-2: #142235;
  --text: #0E1A2B;
  --muted: #5b6776;
  --line: #e6e8ec;
  --bg: #ffffff;
  --bg-soft: #f3f4f6;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
#kontakt { scroll-margin-top: 24px; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ------------ Header ------------ */
header {
  padding: 22px 0;
  border-bottom: 1px solid transparent;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: inline-flex;
  align-items: center;
}
.logo img { display: block; height: 13px; width: auto; }

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 36px;
}
nav > ul > li { position: relative; }
nav > ul > li > a {
  position: relative;
  padding: 6px 0;
  transition: color 0.15s ease;
}
nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: right 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
nav > ul > li > a:hover,
nav > ul > li:hover > a,
nav > ul > li:focus-within > a {
  color: var(--orange);
}
nav > ul > li > a:hover::after,
nav > ul > li:hover > a::after,
nav > ul > li:focus-within > a::after {
  right: 0;
}
nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
nav a .caret {
  width: 8px; height: 8px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

/* Dropdown */
.has-submenu .submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 240px;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 20px 50px -12px rgba(14,26,43,0.18), 0 0 0 1px rgba(14,26,43,0.04);
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 100;
}
.has-submenu .submenu::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.has-submenu .submenu::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 2px;
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
.has-submenu:hover > a .caret,
.has-submenu:focus-within > a .caret {
  transform: rotate(225deg) translateY(2px);
}
.submenu li { display: block; position: relative; }
.submenu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--navy);
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}
.submenu a:hover {
  background: #FEEADD;
  color: var(--orange);
}
.has-child > a::after {
  content: "";
  width: 6px; height: 6px;
  border-right: 1.6px solid currentColor;
  border-top: 1.6px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.6;
  flex-shrink: 0;
}
.submenu-child {
  position: absolute;
  top: -10px;
  left: calc(100% + 6px);
  min-width: 220px;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 20px 50px -12px rgba(14,26,43,0.18), 0 0 0 1px rgba(14,26,43,0.04);
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 110;
}
.submenu-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 14px;
  bottom: 0;
}
.has-child:hover > .submenu-child,
.has-child:focus-within > .submenu-child {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  transition-delay: 0s;
}
.has-child:hover > a,
.has-child:focus-within > a {
  background: #FEEADD;
  color: var(--orange);
}
.submenu-child a { font-size: 13px; padding: 8px 14px; }

/* ---------- Mega menu ---------- */
.has-submenu .submenu.mega {
  position: fixed;
  top: 64px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: min(1180px, calc(100vw - 64px));
  min-width: 0;
  background: #0E1A2B;
  color: #fff;
  padding: 22px 28px 22px;
  border-radius: 18px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 28px;
  z-index: 200;
}
.has-submenu .submenu.mega::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
}
.has-submenu .submenu.mega::after { display: none; }
.has-submenu:hover .submenu.mega,
.has-submenu:focus-within .submenu.mega {
  transform: translateX(-50%) translateY(0);
}
.mm-col {
  display: flex;
  flex-direction: column;
}
.mm-col h5 {
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  display: inline-block;
  position: relative;
  z-index: 1;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.2px;
  align-self: flex-start;
  padding: 0 3px 1px;
}
.mm-col h5::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 7px;
  background: var(--orange);
  border-radius: 2px;
  z-index: -1;
}
.mm-col .mm-group {
  margin-top: 10px;
  display: block;
}
.mm-col .mm-group a {
  display: block;
  padding: 0;
  font-size: 12px;
  color: #cfd6df;
  background: transparent;
  border-radius: 0;
  line-height: 1.45;
}
.mm-col .mm-group a:hover {
  background: transparent;
  color: var(--orange);
}
.mm-col.empty { display: none; }
@media (max-width: 960px) {
  .has-submenu .submenu.mega { display: none; }
}

.search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  min-width: 180px;
  color: #9aa3ad;
  font-size: 14px;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.search:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(251,116,56,0.10);
}
.search svg { width: 16px; height: 16px; flex-shrink: 0; }
.search input {
  border: 0;
  outline: 0;
  background: transparent;
  padding: 11px 0;
  font-family: inherit;
  font-size: 14px;
  color: var(--navy);
  width: 100%;
  min-width: 0;
}
.search input::placeholder { color: #9aa3ad; }
.search button {
  background: transparent;
  border: 0;
  padding: 8px;
  margin-right: -8px;
  cursor: pointer;
  color: #9aa3ad;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: color 0.15s ease, background 0.15s ease;
}
.search button:hover { color: var(--orange); background: #FEEADD; }

/* ------------ Hero ------------ */
.hero {
  position: relative;
  margin-top: 12px;
}
.hero-bg {
  position: relative;
  overflow: hidden;
  padding: 64px 0 130px;
  min-height: 620px;
  background-color: #4a5662;
  background-image:
    linear-gradient(135deg, #cfe2f2 0%, #e6eedd 38%, #a8c97f 70%, #6a9748 100%),
    url('hero.webp');
  background-image: url('hero.webp'), linear-gradient(135deg, #cfe2f2 0%, #e6eedd 38%, #a8c97f 70%, #6a9748 100%);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.70) 35%, rgba(255,255,255,0.15) 60%, rgba(255,255,255,0) 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-content {
  max-width: 560px;
}

.breadcrumb {
  font-size: 14px;
  color: #5b6776;
  margin-bottom: 28px;
}
.breadcrumb a {
  color: #5b6776;
  transition: color 0.15s ease;
  position: relative;
}
.breadcrumb a:hover {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}
.breadcrumb .current { color: var(--orange); }
.breadcrumb .sep { margin: 0 6px; }

h1.hero-title {
  font-size: 60px;
  line-height: 1.05;
  font-weight: 800;
  margin: 0 0 28px;
  letter-spacing: -0.5px;
  color: var(--navy);
}
h1.hero-title .accent { color: var(--orange); display: block; }

.hero-text {
  color: #3d4756;
  font-size: 16px;
  font-weight: 600;
  max-width: 480px;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: background 0.15s ease;
  margin-top: 14px;
}
.btn:hover { background: var(--orange-dark); }
.btn .arrow {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: grid; place-items: center;
}
.btn .arrow svg { width: 12px; height: 12px; stroke: #fff; }

.badge {
  position: absolute;
  right: 0;
  bottom: 32px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px 14px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 18px 40px -12px rgba(14,26,43,0.30);
  max-width: 280px;
  z-index: 3;
}
.badge-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #FEEADD;
  color: var(--orange);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.badge-icon svg { width: 18px; height: 18px; }
.badge-text {
  font-size: 13px;
  color: var(--navy);
  line-height: 1.35;
  font-weight: 500;
}

/* ------------ Home hero ------------ */
.home-hero {
  position: relative;
  padding: 64px 0 72px;
  background:
    radial-gradient(70% 70% at 0% 0%, rgba(251,116,56,0.12), transparent 60%),
    radial-gradient(60% 60% at 100% 100%, rgba(14,26,43,0.06), transparent 60%),
    #f7f8fa;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.home-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.home-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 22px;
}
.home-hero .eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(251,116,56,0.18);
}
.home-hero h1 {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 0 0 28px;
  color: var(--navy);
}
.home-hero h1 .it {
  color: var(--orange);
}
.home-hero .lead {
  font-size: 18px;
  line-height: 1.6;
  color: #4a5462;
  margin: 0 0 32px;
  max-width: 520px;
}
.home-hero .cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
  margin-top: 14px;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.home-hero .trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.home-hero .trust-item {
  display: flex;
  flex-direction: column;
}
.home-hero .trust-item .num {
  font-size: 32px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}
.home-hero .trust-item .label {
  font-size: 13px;
  color: #6b7480;
  margin-top: 4px;
}
.home-hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: #1a2030 url('hero.webp') center/cover;
  box-shadow: 0 30px 60px -20px rgba(14,26,43,0.25);
}
.home-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14,26,43,0.65));
}
.home-hero-visual .visual-tag {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: #fff;
  z-index: 2;
}
.home-hero-visual .visual-tag .meta {
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 4px;
}
.home-hero-visual .visual-tag .name {
  font-size: 22px;
  font-weight: 700;
}
.home-hero-visual .visual-badge {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ---------- Section heads ---------- */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 36px;
  gap: 32px;
  flex-wrap: wrap;
}
.section-head .eyebrow {
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--navy);
  line-height: 1.05;
  max-width: 720px;
}
.section-head h2 .it {
  color: var(--orange);
}
.section-head p {
  color: var(--muted);
  font-size: 15px;
  max-width: 360px;
  margin: 0;
  line-height: 1.6;
}

/* ---------- Home categories ---------- */
.home-cats {
  padding: 96px 0;
}

/* ---------- Process steps ---------- */
.process-section {
  padding: 80px 0;
  background: var(--bg-soft);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  margin-top: 48px;
}
.process-grid::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 22px;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.process-step {
  position: relative;
  padding-top: 68px;
}
.process-step .num {
  position: absolute;
  top: 0;
  left: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.5px;
  z-index: 1;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.process-step:hover .num {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.process-step h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.process-step p {
  font-size: 13px;
  color: #5b6776;
  line-height: 1.5;
  margin: 0;
  padding-right: 14px;
}

/* ---------- CTA banner ---------- */
.cta-banner-wrap {
  padding: 0 0 96px;
}
.cta-banner {
  position: relative;
  padding: 64px 56px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--orange) 0%, #E04E20 100%);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  color: #fff;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 85% 15%, rgba(255,255,255,0.22), transparent 60%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.0;
  margin: 0 0 16px;
  color: #fff;
}
.cta-banner h2 .it {
  color: #FFE2D2;
}
.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.92);
  margin: 0;
  max-width: 460px;
  line-height: 1.5;
}
.cta-banner .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--orange);
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: transform 0.2s ease;
}
.btn-white:hover { transform: translateY(-2px); }
.btn-white .arrow {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(251,116,56,0.18);
  display: grid; place-items: center;
}
.btn-white .arrow svg { width: 12px; height: 12px; stroke: var(--orange); }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: background 0.2s ease;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }

@media (max-width: 960px) {
  .home-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .home-hero-visual { aspect-ratio: 16/10; }
  .home-cats { padding: 64px 0; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .process-grid::before { display: none; }
  .cta-banner { grid-template-columns: 1fr; padding: 40px 32px; }
  .cta-banner .actions { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .home-hero { padding: 40px 0 48px; }
  .home-hero .trust { gap: 20px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { padding-top: 0; padding-left: 60px; min-height: 44px; }
  .process-step .num { top: 0; }
}

/* ------------ Category page ------------ */
.cat-hero {
  position: relative;
  padding: 56px 0 48px;
  background:
    radial-gradient(60% 60% at 0% 0%, rgba(251,116,56,0.10), transparent 60%),
    radial-gradient(50% 50% at 100% 100%, rgba(14,26,43,0.05), transparent 60%),
    #f7f8fa;
  border-bottom: 1px solid var(--line);
}
.cat-hero .breadcrumb { margin-bottom: 20px; }
.cat-hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: var(--navy);
  line-height: 1.0;
}
.cat-hero h1 .count {
  color: var(--orange);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.55em;
  vertical-align: super;
  margin-left: 6px;
  letter-spacing: 0;
}
.cat-hero p.intro {
  font-size: 17px;
  line-height: 1.6;
  color: #4a5462;
  max-width: 640px;
  margin: 0;
}

.cat-grid-wrap {
  padding: 64px 0 96px;
}
.cat-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 36px;
  gap: 24px;
  flex-wrap: wrap;
}
.cat-toolbar .eyebrow {
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 8px;
}
.cat-toolbar h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--navy);
  line-height: 1.1;
}
.cat-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cat-filter button {
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-family: inherit;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.cat-filter button:hover { border-color: var(--orange); color: var(--orange); }
.cat-filter button.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 20px 40px -20px rgba(14,26,43,0.18);
}
.cat-card-thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #FEEADD 0%, #fff 60%);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.cat-card-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(251,116,56,0.18), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(14,26,43,0.05), transparent 40%);
}
.cat-card-thumb svg {
  width: 56px;
  height: 56px;
  color: var(--orange);
  position: relative;
  z-index: 1;
}
.cat-letter {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(90px, 9vw, 130px);
  font-weight: 400;
  color: var(--orange);
  line-height: 0.9;
  letter-spacing: -0.05em;
  position: relative;
  z-index: 1;
  opacity: 0.92;
  transition: transform 0.3s ease;
}
.cat-card:hover .cat-letter { transform: scale(1.06); }
.cat-card-num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 1.5px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
}
.cat-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cat-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0 0 8px;
}
.cat-card-body p {
  font-size: 14px;
  line-height: 1.55;
  color: #4a5462;
  margin: 0;
  flex: 1;
}
.cat-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: color 0.2s ease, gap 0.2s ease;
}
.cat-card-link svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.cat-card:hover .cat-card-link { color: var(--orange); gap: 14px; }
.cat-card:hover .cat-card-link svg { transform: translateX(2px); }

@media (max-width: 960px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-hero { padding: 40px 0 32px; }
}

/* ------------ Long content ------------ */
.content-section {
  padding: 0 0 96px;
}
.content-section .lead {
  font-size: 18px;
  line-height: 1.65;
  color: #3d4756;
  margin: 0 0 28px;
}
.content-section h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--navy);
  margin: 0 0 22px;
}
.content-section h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 14px;
}
.content-section p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5462;
  margin: 0 0 16px;
}
.content-section strong { color: var(--navy); font-weight: 600; }
.content-section ul,
.content-section ol {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.content-section li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.55;
  color: #4a5462;
}
.content-section ul li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}
.content-section ol { counter-reset: step; padding-left: 4px; }
.content-section ol li { counter-increment: step; padding-left: 40px; margin-bottom: 14px; }
.content-section ol li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.content-section ol li strong { display: block; color: var(--navy); margin-bottom: 4px; }
.content-section .callout {
  background: var(--bg-soft);
  border-left: 3px solid var(--orange);
  padding: 22px 26px;
  border-radius: 12px;
  margin: 28px 0;
}
.content-section .callout p:last-child { margin-bottom: 0; }

/* ------------ Features strip ------------ */
.features-wrap {
  position: relative;
  z-index: 4;
  margin-top: -70px;
  margin-bottom: 64px;
}
.features {
  background: var(--navy);
  color: #fff;
  border-radius: 22px;
  padding: 44px 32px;
  box-shadow: 0 30px 60px -20px rgba(14,26,43,0.35);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feature {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.feature + .feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14%;
  bottom: 14%;
  width: 1px;
  background: rgba(255,255,255,0.10);
}
.feature-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  color: var(--orange);
  background: rgba(251,116,56,0.10);
  border-radius: 16px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.feature:hover .feature-icon {
  transform: translateY(-2px);
  background: rgba(251,116,56,0.16);
}
.feature-icon svg { width: 30px; height: 30px; }
.feature h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
}
.feature p {
  color: #b3bcc7;
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

/* ------------ Contact section ------------ */
.contact {
  background: var(--bg-soft);
  border-radius: 22px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 56px;
  margin-bottom: 100px;
}
.contact-label {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 1.6px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.contact h2 {
  font-size: 32px;
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 18px;
  color: var(--navy);
}
.contact-divider {
  width: 64px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 32px;
}
.contact-info {
  display: grid;
  gap: 22px;
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.info-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--orange);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(14,26,43,0.06);
}
.info-icon svg { width: 16px; height: 16px; }
.info-row .label {
  font-size: 13px;
  color: #6b7480;
  margin-bottom: 2px;
}
.info-row .value {
  font-size: 15px;
  color: var(--navy);
  font-weight: 600;
}

/* Form */
form.contact-form {
  display: grid;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.input, .textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s ease;
}
.input::placeholder, .textarea::placeholder { color: #9aa3ad; }
.input:focus, .textarea:focus { border-color: var(--orange); }
.textarea { min-height: 120px; resize: vertical; }

.form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #4a5462;
}
.checkbox input {
  width: 16px; height: 16px;
  accent-color: var(--orange);
}
.checkbox a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; transition: opacity 0.15s ease; }
.checkbox a:hover { opacity: 0.75; }

.form-actions {
  display: flex;
  gap: 12px;
  margin-left: auto;
}
.btn-send {
  background: var(--orange);
  color: #fff;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.btn-send:hover { background: var(--orange-dark); }
.btn-send .arrow {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: grid; place-items: center;
}
.btn-send .arrow svg { width: 11px; height: 11px; stroke: #fff; }

.file-upload {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1.5px dashed #c8ced7;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.file-upload:hover,
.file-upload.is-dragover {
  border-color: var(--orange);
  background: #fff8f4;
}
.file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.file-upload-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #FEEADD;
  color: var(--orange);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.file-upload-icon svg { width: 16px; height: 16px; }
.file-upload-text {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  line-height: 1.35;
}
.file-upload-title {
  color: var(--navy);
  font-weight: 600;
}
.file-upload-hint {
  color: #6b7480;
  font-size: 12px;
  margin-top: 2px;
}
.file-upload-list {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.file-upload-list.has-files { display: flex; }
.file-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  color: var(--navy);
}
.file-chip .file-name {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.file-chip .file-size {
  color: #6b7480;
  font-size: 12px;
  flex-shrink: 0;
}
.file-chip button {
  background: transparent;
  border: 0;
  padding: 4px;
  cursor: pointer;
  color: #9aa3ad;
  display: grid; place-items: center;
  border-radius: 50%;
  transition: color 0.15s ease, background 0.15s ease;
}
.file-chip button:hover { color: #d83025; background: #fef0ef; }
.file-chip button svg { width: 14px; height: 14px; }

/* ------------ Footer ------------ */
footer {
  background: var(--navy);
  color: #cfd6df;
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}
.footer-logo img {
  display: block;
  height: 13px;
  width: auto;
  filter: invert(1) hue-rotate(180deg);
}
footer p {
  font-size: 14px;
  color: #9ba6b3;
  line-height: 1.6;
  margin: 0 0 18px;
}
footer a.inline-link {
  color: var(--orange);
  transition: opacity 0.15s ease;
}
footer a.inline-link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.85;
}
.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  color: #fff;
  transition: background 0.15s ease;
}
.socials a:hover { background: rgba(255,255,255,0.14); }
.socials svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 18px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.footer-col a {
  color: #b8c1cc;
  font-size: 14px;
}
.footer-col a:hover { color: #fff; }
.footer-col .addr { color: #b8c1cc; font-size: 14px; line-height: 1.6; }
.footer-col .addr strong { color: #fff; font-weight: 400; display: block; }

.miljo {
  display: inline-block;
  width: 180px;
  margin-top: 4px;
}
.miljo img, .miljo svg { width: 100%; height: auto; display: block; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #8c95a1;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom .links {
  display: flex;
  gap: 32px;
}
.footer-bottom a { color: #8c95a1; }
.footer-bottom a:hover { color: #fff; }

/* ------------ Responsive ------------ */
@media (max-width: 960px) {
  .hero-bg { padding: 48px 36px 64px; min-height: 0; }
  .badge { position: static; margin-top: 32px; }
  h1.hero-title { font-size: 44px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .feature + .feature::before { display: none; }
  .contact { grid-template-columns: 1fr; padding: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav, .search { display: none; }
}
@media (max-width: 560px) {
  .hero-bg { padding: 36px 24px 48px; }
  h1.hero-title { font-size: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact { padding: 28px; }
}
