/* ============================================
   PAN PAK FMP — Dark Blue Forge Design System
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Backgrounds — Dark (default) */
  --bg-primary: #0A0E14;
  --bg-secondary: #111827;
  --bg-card: #1A2332;
  --bg-elevated: #243044;

  /* Brand Blues */
  --brand-primary: #23A0DB;
  --brand-dark: #35507B;
  --brand-navy: #002F56;
  --brand-glow: rgba(35, 160, 219, 0.12);
  --brand-glow-strong: rgba(35, 160, 219, 0.25);

  /* Text */
  --text-primary: #F0F4F8;
  --text-secondary: #8899AA;
  --text-muted: #5A6A7A;

  /* Accents */
  --accent-cta: #D4570A;
  --accent-cta-hover: #E8691F;
  --accent-warm: #C4956A;
  --eco-green: #2A5D3C;

  /* Borders & surfaces */
  --border-subtle: rgba(35, 160, 219, 0.08);
  --border-medium: rgba(35, 160, 219, 0.15);
  --border-strong: rgba(35, 160, 219, 0.25);
  --surface-hover: rgba(35, 160, 219, 0.08);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.3);
  --header-bg: rgba(10, 14, 20, 0.92);
  --box-face-bg: rgba(35, 160, 219, 0.04);
  --box-border: rgba(35, 160, 219, 0.35);
  --noise-opacity: 0.4;

  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 8rem);
  --container-max: 1200px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   LIGHT THEME
   ============================================ */
[data-theme="light"] {
  --bg-primary: #F5F7FA;
  --bg-secondary: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-elevated: #EDF1F7;

  --brand-navy: #1B3A5C;

  --brand-glow: rgba(35, 160, 219, 0.08);
  --brand-glow-strong: rgba(35, 160, 219, 0.15);

  --text-primary: #0F1923;
  --text-secondary: #4A5567;
  --text-muted: #7A8599;

  --border-subtle: rgba(15, 25, 35, 0.08);
  --border-medium: rgba(15, 25, 35, 0.12);
  --border-strong: rgba(35, 160, 219, 0.3);
  --surface-hover: rgba(35, 160, 219, 0.06);
  --shadow-card: 0 4px 24px rgba(15, 25, 35, 0.08);
  --header-bg: rgba(245, 247, 250, 0.92);
  --box-face-bg: rgba(35, 160, 219, 0.06);
  --box-border: rgba(35, 160, 219, 0.3);
  --noise-opacity: 0.15;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: #4BB8E8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

address { font-style: normal; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

/* --- Section shared --- */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  width: 2rem;
  height: 2px;
  background: var(--brand-primary);
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-header-center {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-header-center .section-label {
  justify-content: center;
}

.section-header-center .section-title {
  margin-bottom: 2rem;
}

.section-desc {
  color: var(--text-secondary);
  max-width: 600px;
  font-size: 1.1rem;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease);
}

.site-header.scrolled {
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 100%;
}

.footer-logo .logo-img {
  height: 54px;
}

/* Nav */
.nav-list {
  display: flex;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.25s var(--ease);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: var(--surface-hover);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 1px;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 12px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-card);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: all 0.2s var(--ease);
}

.dropdown a:hover {
  color: var(--text-primary);
  background: rgba(35, 160, 219, 0.1);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Theme toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--surface-hover);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease);
}

.theme-toggle:hover {
  color: var(--brand-primary);
  border-color: var(--border-medium);
  background: var(--bg-elevated);
}

.theme-icon-moon { display: none; }
.theme-icon-sun { display: block; }

[data-theme="light"] .theme-icon-moon { display: block; }
[data-theme="light"] .theme-icon-sun { display: none; }

/* Light theme header CTA override */
[data-theme="light"] .header-cta {
  color: #fff;
}

/* Light theme specific overrides */
[data-theme="light"] .hero-badge {
  background: rgba(35, 160, 219, 0.08);
  border-color: rgba(35, 160, 219, 0.2);
}

[data-theme="light"] .product-card {
  box-shadow: 0 2px 12px rgba(15, 25, 35, 0.06);
}

[data-theme="light"] .product-card:hover {
  box-shadow: 0 8px 32px rgba(15, 25, 35, 0.1), 0 0 40px var(--brand-glow);
}

[data-theme="light"] .float-card {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 20px rgba(15, 25, 35, 0.1);
}

[data-theme="light"] .process-step {
  box-shadow: 0 2px 12px rgba(15, 25, 35, 0.06);
}

[data-theme="light"] .mobile-toggle span {
  background: var(--text-primary);
}

[data-theme="light"] .footer-bottom p {
  color: var(--text-muted);
}

/* Header CTA */
.header-cta {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--brand-primary);
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.header-cta:hover {
  background: #1B8EC5;
  color: #fff;
  box-shadow: 0 0 30px var(--brand-glow-strong);
  transform: translateY(-1px);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease);
  border-radius: 1px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(35, 160, 219, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0, 47, 86, 0.15) 0%, transparent 60%);
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: var(--noise-opacity);
  z-index: 2;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-grid-lines::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 60%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(35, 160, 219, 0.06);
  border-radius: 50%;
}

.hero-grid-lines::after {
  content: '';
  position: absolute;
  top: -20%;
  left: 55%;
  width: 900px;
  height: 900px;
  border: 1px solid rgba(35, 160, 219, 0.03);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 10;
}

/* Hero split layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(35, 160, 219, 0.1);
  border: 1px solid rgba(35, 160, 219, 0.2);
  border-radius: 100px;
  padding: 0.4rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--brand-primary);
  margin-bottom: 2rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--brand-primary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(35, 160, 219, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(35, 160, 219, 0); }
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 .text-gradient {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #4BB8E8 50%, var(--brand-primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 540px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================
   HERO VISUAL — SVG Box Illustration
   ============================================ */
.hero-visual {
  display: none;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 480px;
}

.hero-scene {
  position: relative;
  width: 460px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glow behind box */
.hero-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(35, 160, 219, 0.15) 0%, rgba(35, 160, 219, 0.03) 50%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 5s ease-in-out infinite;
  filter: blur(40px);
}

@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.65; }
}

/* SVG Box illustration */
.hero-image {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  animation: box-float 7s ease-in-out infinite;
  transition: transform 0.3s ease-out;
  will-change: transform;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.25));
}

@keyframes box-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ============================================
   Floating Info Cards (redesigned)
   ============================================ */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-medium);
  border-radius: 14px;
  padding: 0.7rem 1rem;
  font-family: var(--font-display);
  white-space: nowrap;
  box-shadow: var(--shadow-card);
  z-index: 5;
}

.float-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-icon-check {
  background: rgba(35, 160, 219, 0.12);
  color: var(--brand-primary);
}

.float-icon-eco {
  background: rgba(42, 93, 60, 0.15);
  color: #4CAF50;
}

.float-icon-speed {
  background: rgba(212, 87, 10, 0.12);
  color: var(--accent-cta);
}

.float-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.float-label {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.float-value {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}

.float-card-1 {
  top: 6%;
  right: 0;
  animation: float-1 6s ease-in-out infinite;
}

.float-card-2 {
  bottom: 12%;
  left: -15px;
  animation: float-2 7s ease-in-out infinite;
}

.float-card-3 {
  bottom: 38%;
  right: -10px;
  animation: float-3 5.5s ease-in-out infinite;
}

.float-card-4 {
  top: 12%;
  left: -10px;
  animation: float-2 6.5s ease-in-out infinite reverse;
}

@media (max-width: 900px) {
  .float-card-1, .float-card-2, .float-card-3, .float-card-4 {
    display: none;
  }
}

@keyframes float-1 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-14px) translateX(6px); }
}

@keyframes float-2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(12px) translateX(-10px); }
}

@keyframes float-3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* Light theme float cards */
[data-theme="light"] .float-card {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 24px rgba(15, 25, 35, 0.1);
}

/* ============================================
   Hero Particles
   ============================================ */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  animation: particle-float linear infinite;
}

.p1 {
  width: 4px; height: 4px;
  background: var(--brand-primary);
  top: 15%; left: 10%;
  animation-duration: 12s;
}

.p2 {
  width: 3px; height: 3px;
  background: #C4956A;
  top: 75%; right: 15%;
  animation-duration: 15s;
  animation-delay: -3s;
}

.p3 {
  width: 5px; height: 5px;
  background: var(--brand-primary);
  bottom: 20%; left: 20%;
  animation-duration: 10s;
  animation-delay: -5s;
  opacity: 0.3;
}

.p4 {
  width: 3px; height: 3px;
  background: #D4A873;
  top: 30%; right: 8%;
  animation-duration: 14s;
  animation-delay: -2s;
}

.p5 {
  width: 2px; height: 2px;
  background: var(--brand-primary);
  top: 60%; left: 5%;
  animation-duration: 11s;
  animation-delay: -7s;
  opacity: 0.4;
}

.p6 {
  width: 4px; height: 4px;
  background: #C4956A;
  top: 8%; left: 45%;
  animation-duration: 13s;
  animation-delay: -4s;
  opacity: 0.35;
}

@keyframes particle-float {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10% { opacity: 0.5; }
  50% { transform: translateY(-40px) translateX(20px) scale(1.2); }
  90% { opacity: 0.5; }
  100% { transform: translateY(-80px) translateX(-10px) scale(0.8); opacity: 0; }
}

/* Buttons */
.btn {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.btn-primary {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 0 0 0 var(--brand-glow);
}

.btn-primary:hover {
  background: #1B8EC5;
  color: #fff;
  box-shadow: 0 4px 30px var(--brand-glow-strong);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(35, 160, 219, 0.3);
}

.btn-outline:hover {
  border-color: var(--brand-primary);
  background: var(--surface-hover);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-cta {
  background: var(--accent-cta);
  color: #fff;
}

.btn-cta:hover {
  background: var(--accent-cta-hover);
  color: #fff;
  box-shadow: 0 4px 30px rgba(212, 87, 10, 0.3);
  transform: translateY(-2px);
}

.btn-arrow {
  transition: transform 0.3s var(--ease);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Hero stats bar */
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(35, 160, 219, 0.1);
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
  background: var(--bg-secondary);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.product-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 40px var(--brand-glow);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(35, 160, 219, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--brand-primary);
  transition: all 0.3s var(--ease);
}

.product-card:hover .product-card-icon {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 0 20px var(--brand-glow-strong);
}

.product-card h3 {
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.product-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.product-card-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s var(--ease);
}

.product-card:hover .product-card-link {
  gap: 0.75rem;
}

/* ============================================
   STATS / NUMBERS SECTION
   ============================================ */
.stats-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(35, 160, 219, 0.05) 0%, transparent 70%);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
}

.stat-divider {
  display: none;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(35, 160, 219, 0.2), transparent);
  align-self: stretch;
}

/* ============================================
   WHY US / DIFFERENTIATORS
   ============================================ */
.why-section {
  background: var(--bg-secondary);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 12px;
  transition: background 0.3s var(--ease);
}

.why-card:hover {
  background: var(--box-face-bg);
}

.why-card-number {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-primary);
  background: rgba(35, 160, 219, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: #002F56;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 30% 20%, rgba(35, 160, 219, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 80%, rgba(35, 160, 219, 0.1) 0%, transparent 60%);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  margin-bottom: 1rem;
  color: #F0F4F8;
}

.cta-section p {
  color: #A8BDD0;
  font-size: 1.15rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.cta-section .btn-outline {
  color: #F0F4F8;
  border-color: rgba(35, 160, 219, 0.3);
}

.cta-section .btn-outline:hover {
  color: #F0F4F8;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-phone {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #F0F4F8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.cta-phone a {
  color: var(--brand-primary);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
  background: var(--bg-primary);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  counter-reset: step;
}

.process-step {
  counter-increment: step;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s var(--ease);
}

.process-step:hover {
  border-color: var(--border-medium);
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(35, 160, 219, 0.12);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.process-step h3 {
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.footer-top {
  padding: var(--section-pad) 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.25s var(--ease);
}

.footer-links a:hover {
  color: var(--brand-primary);
}

.footer-contact p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: var(--brand-primary);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  color: var(--text-muted);
  transition: color 0.25s var(--ease);
}

.footer-social a:hover {
  color: var(--brand-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 1.5rem 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================
   ANIMATIONS — Scroll Reveal
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 10rem 0 4rem;
  background: var(--bg-primary);
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.page-hero h1 {
  margin-bottom: 1.25rem;
}

.page-hero-desc {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Breadcrumb */
.breadcrumb ol {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.breadcrumb li {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumb li a {
  color: var(--text-secondary);
}

.breadcrumb li a:hover {
  color: var(--brand-primary);
}

.breadcrumb li + li::before {
  content: '/';
  margin-right: 0.5rem;
  color: var(--text-muted);
  opacity: 0.5;
}

/* ============================================
   ABOUT PAGE — Story grid
   ============================================ */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.about-story-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-story-text p:last-child {
  margin-bottom: 0;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  transition: all 0.3s var(--ease);
}

.timeline-item:hover {
  border-color: var(--border-medium);
  transform: translateY(-2px);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-primary);
  white-space: nowrap;
  min-width: 55px;
  padding-top: 0.1rem;
}

.timeline-content h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   EQUIPMENT GRID
   ============================================ */
.equipment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.equipment-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  transition: all 0.3s var(--ease);
}

.equipment-card:hover {
  border-color: var(--border-medium);
}

.equipment-card-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.equipment-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.equipment-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   VALUES GRID
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all 0.3s var(--ease);
}

.value-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-3px);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: rgba(35, 160, 219, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  margin: 0 auto 1.25rem;
}

.value-card:hover .value-icon {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 0 20px var(--brand-glow-strong);
}

.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   COMPANY DETAILS TABLE
   ============================================ */
.company-details {
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
}

.company-detail-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid var(--border-subtle);
}

.company-detail-row:last-child {
  border-bottom: none;
}

.company-detail-label {
  padding: 0.9rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-card);
  border-right: 1px solid var(--border-subtle);
}

.company-detail-value {
  padding: 0.9rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.company-detail-value a {
  color: var(--brand-primary);
}

/* Responsive — about page */
@media (min-width: 768px) {
  .about-story-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .equipment-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .timeline {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .company-detail-row {
    grid-template-columns: 1fr;
  }
  .company-detail-label {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 0.4rem;
  }
  .company-detail-value {
    padding-top: 0.4rem;
  }
}

/* ============================================
   PRODUCT HERO (split layout)
   ============================================ */
.product-hero {
  padding: 9rem 0 4rem;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.product-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.product-hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.product-hero-content h1 {
  margin-bottom: 1.25rem;
}

.product-hero-desc {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.product-hero-highlights {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.product-highlight {
  display: flex;
  flex-direction: column;
}

.product-highlight-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
}

.product-highlight-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Product visual (right side) */
.product-hero-visual {
  display: none;
  justify-content: center;
  align-items: center;
}

.product-visual-box {
  position: relative;
  width: 480px;
  height: 480px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-visual-box .hero-image {
  max-width: 100%;
}

.product-illustration {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
  animation: product-float 6s ease-in-out infinite;
}

.tk-float-tl {
  top: 4%;
  left: -10%;
  animation: kp-float-a 6s ease-in-out infinite;
}
.tk-float-tr {
  top: 8%;
  right: -10%;
  animation: kp-float-b 7s ease-in-out infinite;
}
.tk-float-br {
  bottom: 18%;
  right: -12%;
  animation: kp-float-a 6.5s ease-in-out infinite reverse;
}
.tk-float-bl {
  bottom: 24%;
  left: -12%;
  animation: kp-float-b 7.5s ease-in-out infinite reverse;
}

@media (max-width: 900px) {
  .tk-float-tl, .tk-float-tr, .tk-float-br, .tk-float-bl {
    display: none;
  }
}

@keyframes product-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.product-visual-ring {
  position: absolute;
  width: 430px;
  height: 430px;
  max-width: 90%;
  max-height: 90%;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  animation: ring-spin 30s linear infinite;
}

.product-visual-ring::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--brand-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(35, 160, 219, 0.5);
}

@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================
   PRODUCT INTRO (two-column)
   ============================================ */
.product-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.product-intro-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================================
   APPLICATIONS GRID
   ============================================ */
.applications-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.application-card {
  padding: 1.5rem;
  border-left: 3px solid var(--brand-primary);
  background: var(--bg-card);
  border-radius: 0 12px 12px 0;
  transition: all 0.3s var(--ease);
}

.application-card:hover {
  background: var(--bg-elevated);
  transform: translateX(4px);
}

.application-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.application-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   SPECS TABLE
   ============================================ */
.specs-table {
  width: 100%;
  margin-top: 2rem;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
}

.specs-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid var(--border-subtle);
}

.specs-row:last-child {
  border-bottom: none;
}

.specs-label {
  padding: 1rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-card);
  border-right: 1px solid var(--border-subtle);
}

.specs-value {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================
   ORDER STEPS (vertical timeline)
   ============================================ */
.order-steps {
  width: 100%;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.order-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all 0.3s var(--ease);
  position: relative;
}

.order-step:hover {
  border-color: var(--border-medium);
  transform: translateY(-3px);
}

.order-step-num {
  width: 48px;
  height: 48px;
  background: var(--bg-primary);
  border: 2px solid var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-bottom: 1rem;
  transition: all 0.3s var(--ease);
}

.order-step:hover .order-step-num {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 0 20px var(--brand-glow-strong);
}

.order-step h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.order-step p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Responsive */
@media (min-width: 768px) {
  .product-hero-split {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .product-hero-visual {
    display: flex;
  }

  .product-intro-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }

  .applications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .applications-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .product-hero-highlights {
    flex-direction: column;
    gap: 1rem;
  }

  .specs-row {
    grid-template-columns: 1fr;
  }

  .specs-label {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 0.5rem;
  }

  .specs-value {
    padding-top: 0.5rem;
  }
}

/* ============================================
   PRODUCT LIST (proizvodi overview)
   ============================================ */
.products-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.35s var(--ease);
}

.product-row:hover {
  border-color: var(--border-strong);
  transform: translateX(6px);
  box-shadow: var(--shadow-card), 0 0 40px var(--brand-glow);
}

.product-row-icon {
  flex-shrink: 0;
}

.product-row-thumb {
  flex-shrink: 0;
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(35, 160, 219, 0.04), rgba(35, 160, 219, 0));
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.product-row-thumb picture,
.product-row-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

.product-row:hover .product-row-thumb {
  transform: scale(1.04);
  border-color: var(--border-strong);
}

.product-row-thumb .product-row-num {
  position: absolute;
  top: 0.45rem;
  left: 0.6rem;
  font-size: 0.85rem;
  opacity: 0.55;
}

.product-row-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-primary);
  opacity: 0.4;
}

.product-row:hover .product-row-num {
  opacity: 1;
}

.product-row-content {
  flex: 1;
  min-width: 0;
}

.product-row-content h2 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}

.product-row-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.product-row-materials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.material-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface-hover);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  white-space: nowrap;
}

.product-row-arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
}

.product-row:hover .product-row-arrow {
  color: var(--brand-primary);
  transform: translateX(4px);
}

/* ============================================
   FEATURES GRID (product detail)
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s var(--ease);
}

.feature-card:hover {
  border-color: var(--border-medium);
}

.feature-card-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-primary);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ============================================
   MATERIALS LIST
   ============================================ */
.materials-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
  width: 100%;
}

.material-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.material-item svg {
  color: var(--brand-primary);
  flex-shrink: 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  width: 100%;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}

.faq-item[open] {
  border-color: var(--border-medium);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--brand-primary);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   SERVICES DUO (products page)
   ============================================ */
.services-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--ease);
}

.service-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 40px var(--brand-glow);
}

.service-card-badge {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-primary);
  background: rgba(35, 160, 219, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  align-self: flex-start;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

/* Responsive additions */
@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-duo {
    grid-template-columns: repeat(2, 1fr);
  }
  .order-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .materials-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-list {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .order-steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .product-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }
  .product-row-thumb {
    width: 88px;
    height: 88px;
    border-radius: 10px;
  }
  .product-row-arrow {
    align-self: flex-end;
  }
}

/* ============================================
   UPIT MODAL (ERP iframe)
   ============================================ */
.upit-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.upit-modal.active {
  display: flex;
}

.upit-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 20, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: upit-fade-in 0.3s var(--ease);
}

.upit-modal-container {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 18px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  animation: upit-slide-in 0.4s var(--ease-out);
}

@keyframes upit-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes upit-slide-in {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.upit-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}

.upit-modal-title {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.upit-modal-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(35, 160, 219, 0.12);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.upit-modal-title h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 0.15rem;
}

.upit-modal-title span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.upit-modal-close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s var(--ease);
}

.upit-modal-close:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  background: var(--surface-hover);
}

.upit-modal-body {
  flex: 1;
  position: relative;
  background: #fff;
  min-height: 500px;
  overflow: hidden;
}

.upit-modal-body iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  display: block;
}

.upit-modal-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--bg-card);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.9rem;
  z-index: 1;
  transition: opacity 0.3s var(--ease);
}

.upit-modal-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.upit-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-subtle);
  border-top-color: var(--brand-primary);
  border-radius: 50%;
  animation: upit-spin 0.8s linear infinite;
}

@keyframes upit-spin {
  to { transform: rotate(360deg); }
}

body.upit-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .upit-modal {
    padding: 0;
  }
  .upit-modal-container {
    max-height: 100vh;
    border-radius: 0;
    border: none;
  }
  .upit-modal-body {
    min-height: 0;
    height: calc(100vh - 78px);
  }
}

/* ============================================
   KONTAKT — Custom page
   ============================================ */

.kt-section-alt {
  background: var(--bg-secondary);
}

/* Hero */
.kt-hero {
  position: relative;
  padding: 9rem 0 4rem;
  background: var(--bg-primary);
  overflow: hidden;
}

.kt-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(35, 160, 219, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(0, 47, 86, 0.12) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.kt-hero .container {
  position: relative;
  z-index: 1;
}

.kt-hero-content {
  max-width: 760px;
}

.kt-hero-content h1 {
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.kt-hero-lead {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.7;
}

/* Quick contact bar */
.kt-quickbar {
  padding: 0 0 4rem;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
}

.kt-quick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.kt-quick-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.kt-quick-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card), 0 0 40px var(--brand-glow);
}

.kt-quick-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: rgba(35, 160, 219, 0.12);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.kt-quick-card:hover .kt-quick-icon {
  background: var(--brand-primary);
  color: #fff;
}

.kt-quick-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.kt-quick-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.kt-quick-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.kt-quick-meta {
  font-size: 0.78rem;
  color: var(--brand-primary);
  margin-top: 0.2rem;
}

/* Form layout */
.kt-form-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.kt-form-side h2 {
  font-size: clamp(1.85rem, 3vw, 2.2rem);
  line-height: 1.15;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.kt-form-intro {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Form */
.kt-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.kt-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.kt-form-field {
  display: flex;
  flex-direction: column;
}

.kt-form-field label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.kt-form-field label span {
  color: var(--accent-cta);
}

.kt-form-field input,
.kt-form-field select,
.kt-form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.25s var(--ease);
}

.kt-form-field input::placeholder,
.kt-form-field textarea::placeholder {
  color: var(--text-muted);
}

.kt-form-field input:focus,
.kt-form-field select:focus,
.kt-form-field textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px var(--brand-glow);
}

.kt-form-field textarea {
  resize: vertical;
  font-family: var(--font-body);
  line-height: 1.6;
}

.kt-form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%238899AA' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.kt-form-field.has-error input,
.kt-form-field.has-error select,
.kt-form-field.has-error textarea {
  border-color: #C93A2B;
}

.kt-form-error {
  font-size: 0.78rem;
  color: #FF6B5B;
  margin-top: 0.4rem;
  font-weight: 500;
}

/* Custom checkbox */
.kt-form-checkbox {
  margin-top: 0.5rem;
}

.kt-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.kt-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.kt-checkbox-mark {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1.5px solid var(--border-medium);
  background: var(--bg-card);
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
  transition: all 0.2s var(--ease);
}

.kt-checkbox input[type="checkbox"]:checked + .kt-checkbox-mark {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}

.kt-checkbox input[type="checkbox"]:checked + .kt-checkbox-mark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.kt-checkbox a {
  color: var(--brand-primary);
}

.kt-form-submit {
  margin-top: 0.5rem;
  align-self: flex-start;
}

/* Success state */
.kt-success {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-card);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 18px;
}

.kt-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.12);
  color: #4CAF50;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.kt-success h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.kt-success p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Info side */
.kt-info-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.kt-info-card,
.kt-tip-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
}

.kt-info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.kt-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.kt-info-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.kt-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(35, 160, 219, 0.1);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kt-info-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.kt-info-list a,
.kt-info-list span:not(.kt-info-label) {
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
}

.kt-info-list a {
  color: var(--brand-primary);
}

/* Tip card */
.kt-tip-card {
  background: linear-gradient(180deg, var(--bg-card), var(--bg-elevated));
}

.kt-tip-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(212, 87, 10, 0.12);
  color: var(--accent-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.kt-tip-card h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.kt-tip-card ul {
  list-style: none;
  padding: 0;
}

.kt-tip-card ul li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.kt-tip-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand-primary);
  font-weight: 700;
}

/* Map */
.kt-map-wrap {
  position: relative;
  margin-top: 2.5rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-medium);
  height: 400px;
}

.kt-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: hue-rotate(180deg) invert(0.9);
}

[data-theme="light"] .kt-map-wrap iframe {
  filter: none;
}

.kt-map-overlay {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  pointer-events: none;
}

.kt-map-card {
  display: flex;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  pointer-events: auto;
  max-width: 280px;
}

.kt-map-pin {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kt-map-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.kt-map-card span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.kt-map-card a {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-primary);
}

/* Directions */
.kt-directions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.kt-direction {
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.kt-direction:hover {
  border-color: var(--border-medium);
  transform: translateY(-2px);
}

.kt-direction-city {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.kt-direction-distance {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 0.2rem;
}

.kt-direction-time {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Response flow */
.kt-response-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.kt-response-step {
  position: relative;
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all 0.3s var(--ease);
}

.kt-response-step:hover {
  border-color: var(--border-medium);
  transform: translateY(-3px);
}

.kt-response-time {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brand-primary);
  background: rgba(35, 160, 219, 0.1);
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
}

.kt-response-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.kt-response-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.kt-response-step p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Social cards */
.kt-social-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.kt-social-card {
  display: block;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.kt-social-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 40px var(--brand-glow);
}

.kt-social-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #fff;
}

.kt-social-fb {
  background: linear-gradient(135deg, #1877F2, #0F5FCB);
}

.kt-social-ig {
  background: linear-gradient(135deg, #E1306C, #C13584, #833AB4);
}

.kt-social-phone {
  background: linear-gradient(135deg, #23A0DB, #1B6A9C);
}

.kt-social-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
  color: var(--text-primary);
}

.kt-social-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.kt-social-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-primary);
}

/* KT responsive */
@media (min-width: 640px) {
  .kt-quick-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .kt-form-row {
    grid-template-columns: 1fr 1fr;
  }
  .kt-directions {
    grid-template-columns: repeat(4, 1fr);
  }
  .kt-response-flow {
    grid-template-columns: repeat(2, 1fr);
  }
  .kt-social-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .kt-form-layout {
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
  }
  .kt-response-flow {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   IZRADA ALATA — Custom page
   ============================================ */

.iz-section-alt {
  background: var(--bg-secondary);
}

/* Hero */
.iz-hero {
  position: relative;
  padding: 9rem 0 5rem;
  background: var(--bg-primary);
  overflow: hidden;
}

.iz-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 80% 30%, rgba(255, 107, 0, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 75%, rgba(35, 160, 219, 0.1) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.iz-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 107, 0, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 0, 0.025) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse at 75% 50%, black 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 75% 50%, black 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}

.iz-hero .container {
  position: relative;
  z-index: 1;
}

.iz-hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.iz-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: #FF8A3D;
  margin-bottom: 1.75rem;
}

.iz-hero-text h1 {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.iz-hero-lead {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 2rem;
}

.iz-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.iz-hero-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  max-width: 520px;
}

.iz-metric {
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  transition: all 0.3s var(--ease);
}

.iz-metric:hover {
  border-color: var(--border-medium);
}

.iz-metric-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.iz-metric-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.iz-hero-visual {
  display: none;
  justify-content: center;
  align-items: center;
}

.iz-hero-svg {
  width: 100%;
  max-width: 560px;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.28));
  animation: sk-float 7s ease-in-out infinite;
}

/* Intro */
.iz-intro-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.iz-intro-header h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  line-height: 1.15;
  margin-top: 1rem;
}

.iz-intro-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.iz-intro-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.iz-intro-content p:last-child {
  margin-bottom: 0;
}

.iz-intro-content strong {
  color: var(--text-primary);
}

/* 48h advantage card */
.iz-48h-card {
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.iz-48h-card::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
  filter: blur(40px);
}

.iz-48h-card::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(35, 160, 219, 0.1) 0%, transparent 70%);
  filter: blur(40px);
}

.iz-48h-headline {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 3rem;
}

.iz-48h-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-primary);
  margin-bottom: 0.75rem;
}

.iz-48h-number {
  font-family: var(--font-display);
  line-height: 0.9;
  margin-bottom: 1rem;
}

.iz-48h-number span {
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand-primary), #4BB8E8, #FF8A3D);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
}

.iz-48h-number em {
  font-size: 1.5rem;
  color: var(--text-secondary);
  font-style: normal;
  font-weight: 500;
  margin-left: 0.5rem;
}

.iz-48h-subtext {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.iz-48h-compare {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.iz-48h-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  align-items: center;
}

.iz-48h-bar-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.iz-48h-bar {
  position: relative;
  height: 32px;
  background: var(--bg-primary);
  border-radius: 8px;
  overflow: hidden;
}

.iz-48h-bar-fill {
  height: 100%;
  border-radius: 8px;
  transition: width 1s var(--ease-out);
}

.iz-48h-bar-us .iz-48h-bar-fill {
  background: linear-gradient(90deg, var(--brand-primary), #4BB8E8);
  box-shadow: 0 0 20px var(--brand-glow-strong);
}

.iz-48h-bar-them .iz-48h-bar-fill {
  background: var(--bg-elevated);
}

.iz-48h-bar-value {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
}

.iz-48h-bar-us .iz-48h-bar-value {
  color: #fff;
}

.iz-48h-note {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 680px;
  margin: 2.5rem auto 0;
}

/* Equipment */
.iz-equipment {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.iz-eq-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  transition: all 0.3s var(--ease);
}

.iz-eq-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-3px);
}

.iz-eq-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(35, 160, 219, 0.1);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.iz-eq-specs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.iz-eq-specs span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-primary);
  background: rgba(35, 160, 219, 0.1);
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
}

.iz-eq-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.iz-eq-card > p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.iz-eq-facts {
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.iz-eq-facts strong {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 600;
}

.iz-eq-facts div {
  display: flex;
  justify-content: space-between;
}

/* Process */
.iz-process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.iz-process-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all 0.3s var(--ease);
  position: relative;
}

.iz-process-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-2px);
}

.iz-process-phase {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.iz-process-hours {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: #FF8A3D;
  background: rgba(255, 107, 0, 0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
}

.iz-process-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
  padding-right: 60px;
}

.iz-process-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Services */
.iz-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.iz-service {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all 0.3s var(--ease);
}

.iz-service:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card), 0 0 40px var(--brand-glow);
}

.iz-service-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(35, 160, 219, 0.1);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s var(--ease);
}

.iz-service:hover .iz-service-icon {
  background: var(--brand-primary);
  color: #fff;
}

.iz-service h3 {
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}

.iz-service p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Who for split */
.iz-who-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.iz-who-text h2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.iz-who-lead {
  color: var(--text-primary);
  font-size: 1.08rem;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.iz-who-text p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.8;
}

.iz-who-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.iz-who-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  transition: all 0.3s var(--ease);
}

.iz-who-item:hover {
  border-color: var(--border-medium);
  transform: translateX(4px);
}

.iz-who-bullet {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(35, 160, 219, 0.1);
  border: 1px solid rgba(35, 160, 219, 0.25);
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.iz-who-item h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.iz-who-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* IZ responsive */
@media (min-width: 640px) {
  .iz-hero-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  .iz-48h-row {
    grid-template-columns: 200px 1fr;
    gap: 1rem;
  }
  .iz-equipment {
    grid-template-columns: repeat(2, 1fr);
  }
  .iz-equipment > :last-child {
    grid-column: span 2;
  }
  .iz-process {
    grid-template-columns: repeat(2, 1fr);
  }
  .iz-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .iz-hero-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
  .iz-hero-visual {
    display: flex;
  }
  .iz-intro-layout {
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
  }
  .iz-equipment {
    grid-template-columns: repeat(3, 1fr);
  }
  .iz-equipment > :last-child {
    grid-column: auto;
  }
  .iz-process {
    grid-template-columns: repeat(3, 1fr);
  }
  .iz-services {
    grid-template-columns: repeat(3, 1fr);
  }
  .iz-who-split {
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
  }
  .iz-who-text {
    position: sticky;
    top: 100px;
  }
}

/* ============================================
   DIGITALNA ŠTAMPA — Custom page
   ============================================ */

.ds-section-alt {
  background: var(--bg-secondary);
}

/* Hero */
.ds-hero {
  position: relative;
  padding: 9rem 0 5rem;
  background: var(--bg-primary);
  overflow: hidden;
}

.ds-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 75% 30%, rgba(35, 160, 219, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 25% 75%, rgba(255, 0, 170, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 85% 80%, rgba(0, 212, 255, 0.06) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.ds-hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(35, 160, 219, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 160, 219, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 70% 40%, black 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 40%, black 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.ds-hero .container {
  position: relative;
  z-index: 1;
}

.ds-hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.ds-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: rgba(35, 160, 219, 0.08);
  border: 1px solid rgba(35, 160, 219, 0.25);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 1.75rem;
}

.ds-hero-text h1 {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.ds-hero-lead {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 2rem;
}

.ds-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.ds-hero-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  max-width: 520px;
}

.ds-spec {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.87rem;
  color: var(--text-secondary);
}

.ds-spec svg {
  color: var(--brand-primary);
  flex-shrink: 0;
}

.ds-hero-visual {
  display: none;
  justify-content: center;
  align-items: center;
}

.ds-hero-svg {
  width: 100%;
  max-width: 560px;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.25));
  animation: sk-float 7s ease-in-out infinite;
}

/* Intro */
.ds-intro-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.ds-intro-header h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  line-height: 1.15;
  margin-top: 1rem;
}

.ds-intro-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.ds-intro-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.ds-intro-content p:last-child {
  margin-bottom: 0;
}

/* VS comparison */
.ds-vs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.ds-vs-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  transition: all 0.35s var(--ease);
}

.ds-vs-card:hover {
  transform: translateY(-4px);
}

.ds-vs-digital {
  border-color: rgba(35, 160, 219, 0.3);
  background: linear-gradient(180deg, var(--bg-card), var(--bg-elevated));
}

.ds-vs-digital:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-card), 0 0 40px var(--brand-glow);
}

.ds-vs-flexo:hover {
  border-color: var(--border-medium);
}

.ds-vs-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.ds-vs-digital .ds-vs-badge {
  background: var(--brand-primary);
  color: #fff;
}

.ds-vs-flexo .ds-vs-badge {
  background: var(--surface-hover);
  color: var(--text-secondary);
}

.ds-vs-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.ds-vs-summary {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.ds-vs-traits {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.25rem;
}

.ds-vs-trait {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.ds-vs-trait svg {
  flex-shrink: 0;
  padding: 3px;
  border-radius: 50%;
}

.ds-vs-good {
  color: var(--text-primary);
}

.ds-vs-good svg {
  background: rgba(76, 175, 80, 0.15);
  color: #4CAF50;
}

.ds-vs-bad {
  color: var(--text-muted);
}

.ds-vs-bad svg {
  background: rgba(201, 58, 43, 0.1);
  color: #C93A2B;
}

.ds-vs-best {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.ds-vs-best strong {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 600;
}

/* Capabilities */
.ds-capabilities {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.ds-cap-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all 0.3s var(--ease);
}

.ds-cap-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-3px);
}

.ds-cap-preview {
  height: 100px;
  background: var(--bg-primary);
  border-radius: 12px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
}

.ds-cap-preview-1 {
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
}

.ds-cap-chip {
  flex: 1;
  max-width: 50px;
  height: 100%;
  border-radius: 8px;
}

.ds-cap-preview-2 {
  padding: 0;
}

.ds-cap-photo {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(180deg, #23A0DB 0%, #FFE500 80%, #D4570A 100%);
}

.ds-cap-photo-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #23A0DB 0%, #FFE500 60%, transparent 100%);
}

.ds-cap-photo-mountain {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, #2A3444, #0A0E14);
  clip-path: polygon(0 100%, 15% 60%, 30% 75%, 50% 30%, 65% 55%, 85% 40%, 100% 65%, 100% 100%);
}

.ds-cap-photo-sun {
  position: absolute;
  top: 15%;
  right: 25%;
  width: 24px;
  height: 24px;
  background: #FFE500;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 229, 0, 0.6);
}

.ds-cap-preview-3 svg,
.ds-cap-preview-4 svg {
  width: 100%;
  height: 100%;
}

.ds-cap-qr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  width: 60px;
  height: 60px;
}

.ds-cap-qr div {
  background: var(--text-primary);
}

.ds-cap-qr div:nth-child(2),
.ds-cap-qr div:nth-child(5),
.ds-cap-qr div:nth-child(9),
.ds-cap-qr div:nth-child(14) {
  background: transparent;
}

.ds-cap-layers {
  width: 100%;
  height: 60px;
  background:
    linear-gradient(90deg, #23A0DB 0%, #23A0DB 30%, transparent 30%),
    linear-gradient(90deg, transparent 20%, #D4570A 20%, #D4570A 70%, transparent 70%),
    linear-gradient(90deg, transparent 50%, #2A5D3C 50%);
  background-size: 100% 16px;
  background-position: 0 0, 0 22px, 0 44px;
  background-repeat: no-repeat;
  border-radius: 4px;
}

.ds-cap-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.ds-cap-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Process */
.ds-process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.ds-process-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  transition: all 0.3s var(--ease);
}

.ds-process-step:hover {
  border-color: var(--border-medium);
  transform: translateX(4px);
}

.ds-process-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-primary);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.ds-process-content {
  flex: 1;
}

.ds-process-time {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-primary);
  background: rgba(35, 160, 219, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.ds-process-content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.ds-process-content p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Use cases */
.ds-usecases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.ds-uc {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all 0.3s var(--ease);
}

.ds-uc:hover {
  border-color: var(--border-medium);
  transform: translateY(-3px);
}

.ds-uc-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(35, 160, 219, 0.1);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s var(--ease);
}

.ds-uc:hover .ds-uc-icon {
  background: var(--brand-primary);
  color: #fff;
}

.ds-uc h3 {
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}

.ds-uc p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* DS responsive */
@media (min-width: 640px) {
  .ds-hero-specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .ds-vs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ds-capabilities {
    grid-template-columns: repeat(2, 1fr);
  }
  .ds-process {
    grid-template-columns: repeat(2, 1fr);
  }
  .ds-usecases {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ds-hero-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
  .ds-hero-visual {
    display: flex;
  }
  .ds-intro-layout {
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
  }
  .ds-capabilities {
    grid-template-columns: repeat(3, 1fr);
  }
  .ds-process {
    grid-template-columns: repeat(3, 1fr);
  }
  .ds-usecases {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   KARTONSKE ROLNE — Custom page
   ============================================ */

.rl-section-alt {
  background: var(--bg-secondary);
}

/* Hero */
.rl-hero {
  position: relative;
  padding: 9rem 0 5rem;
  background: var(--bg-primary);
  overflow: hidden;
}

.rl-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 30%, rgba(35, 160, 219, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(139, 105, 20, 0.08) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.rl-hero .container {
  position: relative;
  z-index: 1;
}

.rl-hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.rl-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: rgba(35, 160, 219, 0.08);
  border: 1px solid rgba(35, 160, 219, 0.2);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 1.75rem;
}

.rl-hero-text h1 {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.rl-hero-lead {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 2rem;
}

.rl-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.rl-hero-kpis {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  max-width: 540px;
}

.rl-kpi {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}

.rl-kpi-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(35, 160, 219, 0.12);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rl-kpi b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.rl-kpi span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.rl-hero-visual {
  display: none;
  justify-content: center;
  align-items: center;
  position: relative;
}

.rl-hero-svg {
  width: 100%;
  max-width: 560px;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.25));
  animation: sk-float 7s ease-in-out infinite;
}

.rl-float-tl {
  top: 6%;
  left: -7%;
  animation: kp-float-a 6s ease-in-out infinite;
}
.rl-float-tr {
  top: 12%;
  right: -7%;
  animation: kp-float-b 7s ease-in-out infinite;
}
.rl-float-br {
  bottom: 22%;
  right: -8%;
  animation: kp-float-a 6.5s ease-in-out infinite reverse;
}
.rl-float-bl {
  bottom: 28%;
  left: -8%;
  animation: kp-float-b 7.5s ease-in-out infinite reverse;
}

@media (max-width: 900px) {
  .rl-float-tl, .rl-float-tr, .rl-float-br, .rl-float-bl {
    display: none;
  }
}

/* Intro */
.rl-intro-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.rl-intro-header h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  line-height: 1.15;
  margin-top: 1rem;
}

.rl-intro-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.rl-intro-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.rl-intro-content p:last-child {
  margin-bottom: 0;
}

/* Specifications grid */
.rl-specs-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.rl-specs-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.rl-specs-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.rl-specs-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 40px var(--brand-glow);
}

.rl-specs-card:hover::before {
  opacity: 1;
}

.rl-specs-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: rgba(35, 160, 219, 0.12);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s var(--ease);
}

.rl-specs-card:hover .rl-specs-card-icon {
  background: var(--brand-primary);
  color: #fff;
}

.rl-specs-card h3 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.rl-specs-value {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.rl-specs-value span {
  color: var(--text-muted);
  font-weight: 400;
  margin: 0 0.15rem;
  font-size: 1.4rem;
}

.rl-specs-value em {
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 0.35rem;
}

.rl-specs-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* Use cases — alternating rows */
.rl-cases {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.rl-case {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  transition: all 0.35s var(--ease);
  align-items: center;
}

.rl-case:hover {
  border-color: var(--border-medium);
  transform: translateY(-3px);
}

.rl-case-media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/10;
  background: var(--bg-primary);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}

.rl-case-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(35, 160, 219, 0.12) 0%, transparent 60%);
}

.rl-case-media::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(35, 160, 219, 0.15);
  border-radius: 10px;
}

.rl-case-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
  color: var(--brand-primary);
  opacity: 0.5;
  line-height: 1;
  z-index: 1;
}

.rl-case-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.rl-case-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.rl-case-content p:last-of-type {
  margin-bottom: 1.5rem;
}

.rl-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.rl-case-tags span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface-hover);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
}

/* How to use */
.rl-howto-split {
  display: grid;
  grid-template-columns: 1fr;
}

.rl-howto-text h2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.rl-howto-lead {
  color: var(--text-primary);
  font-size: 1.08rem;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 2rem;
  max-width: 720px;
}

.rl-tips {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.rl-tip {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  transition: all 0.3s var(--ease);
}

.rl-tip:hover {
  border-color: var(--border-medium);
  transform: translateY(-2px);
}

.rl-tip-num {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(35, 160, 219, 0.1);
  border: 1px solid rgba(35, 160, 219, 0.25);
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rl-tip h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.rl-tip p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Delivery card */
.rl-delivery-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  align-items: start;
}

.rl-delivery-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 87, 10, 0.1) 0%, transparent 70%);
  filter: blur(40px);
}

.rl-delivery-icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  background: rgba(212, 87, 10, 0.12);
  color: var(--accent-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.rl-delivery-content {
  position: relative;
  z-index: 1;
}

.rl-delivery-content h2 {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  line-height: 1.2;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.rl-delivery-content p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.rl-delivery-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.rl-delivery-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.rl-delivery-item svg {
  color: var(--brand-primary);
  flex-shrink: 0;
}

/* RL responsive */
@media (min-width: 640px) {
  .rl-specs-layout {
    grid-template-columns: repeat(2, 1fr);
  }
  .rl-cases {
    gap: 1.5rem;
  }
  .rl-case {
    grid-template-columns: 200px 1fr;
    gap: 2rem;
  }
  .rl-hero-kpis {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  .rl-kpi {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .rl-delivery-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
  .rl-delivery-card {
    grid-template-columns: auto 1fr;
  }
}

@media (min-width: 1024px) {
  .rl-hero-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
  .rl-hero-visual {
    display: flex;
  }
  .rl-intro-layout {
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
  }
  .rl-specs-layout {
    grid-template-columns: repeat(3, 1fr);
  }
  .rl-case {
    grid-template-columns: 260px 1fr;
  }
  .rl-case-reverse {
    grid-template-columns: 1fr 260px;
  }
  .rl-case-reverse .rl-case-media {
    order: 2;
  }
  .rl-tips {
    grid-template-columns: repeat(2, 1fr);
  }
  .rl-delivery-highlights {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   GAJBICE ZA VOĆE — Custom page
   ============================================ */

.gv-section-alt {
  background: var(--bg-secondary);
}

/* Hero */
.gv-hero {
  position: relative;
  padding: 9rem 0 5rem;
  background: var(--bg-primary);
  overflow: hidden;
}

.gv-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 85% 20%, rgba(42, 93, 60, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(35, 160, 219, 0.08) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.gv-hero .container {
  position: relative;
  z-index: 1;
}

.gv-hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.gv-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: rgba(42, 93, 60, 0.12);
  border: 1px solid rgba(42, 93, 60, 0.3);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: #4CAF50;
  margin-bottom: 1.75rem;
}

.gv-hero-text h1 {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.gv-hero-lead {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 2rem;
}

.gv-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.gv-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  max-width: 540px;
}

.gv-stat {
  display: flex;
  flex-direction: column;
}

.gv-stat b {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.gv-stat span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.gv-hero-visual {
  display: none;
  justify-content: center;
  align-items: center;
  position: relative;
}

.gv-hero-svg {
  width: 100%;
  max-width: 540px;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.22));
  animation: sk-float 7s ease-in-out infinite;
}

.gv-float-tl {
  top: 8%;
  left: -7%;
  animation: kp-float-a 6s ease-in-out infinite;
}
.gv-float-tr {
  top: 12%;
  right: -7%;
  animation: kp-float-b 7s ease-in-out infinite;
}
.gv-float-br {
  bottom: 26%;
  right: -8%;
  animation: kp-float-a 6.5s ease-in-out infinite reverse;
}
.gv-float-bl {
  bottom: 32%;
  left: -8%;
  animation: kp-float-b 7.5s ease-in-out infinite reverse;
}

@media (max-width: 900px) {
  .gv-float-tl, .gv-float-tr, .gv-float-br, .gv-float-bl {
    display: none;
  }
}

/* Intro */
.gv-intro-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.gv-intro-header h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  line-height: 1.15;
  margin-top: 1rem;
}

.gv-intro-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.gv-intro-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.gv-intro-content p:last-child {
  margin-bottom: 0;
}

/* Dimensions */
.gv-dims-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 3rem;
}

.gv-dim-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  transition: all 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.gv-dim-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 40px var(--brand-glow);
}

.gv-dim-featured {
  border-color: rgba(35, 160, 219, 0.3);
  background: linear-gradient(180deg, var(--bg-card), var(--bg-elevated));
}

.gv-dim-ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--brand-primary);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
}

.gv-dim-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.gv-dim-badge {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-primary);
  background: rgba(35, 160, 219, 0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
}

.gv-dim-size {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.gv-dim-size span {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.9rem;
  margin: 0 0.15rem;
}

.gv-dim-visual {
  height: 140px;
  background: var(--bg-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.gv-dim-rect {
  width: var(--w);
  max-width: 140px;
  background: linear-gradient(135deg, #DEBB8A, #B8895F);
  border: 2px solid rgba(35, 160, 219, 0.3);
  border-radius: 4px;
  aspect-ratio: calc(var(--w) / var(--h));
  position: relative;
}

.gv-dim-rect::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px dashed rgba(139, 105, 20, 0.4);
  border-radius: 2px;
}

.gv-dim-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.gv-dim-body > p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.gv-dim-heights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-display);
  font-size: 0.78rem;
}

.gv-dim-heights span {
  color: var(--text-muted);
  font-weight: 500;
  margin-right: 0.25rem;
}

.gv-dim-heights strong {
  color: var(--text-primary);
  background: var(--surface-hover);
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  font-weight: 600;
}

.gv-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  background: rgba(35, 160, 219, 0.05);
  border: 1px solid rgba(35, 160, 219, 0.2);
  border-radius: 14px;
}

.gv-note svg {
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.gv-note p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
}

.gv-note strong {
  color: var(--text-primary);
}

/* Self-assembly */
.gv-assembly-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.gv-assembly-text h2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.gv-assembly-lead {
  color: var(--text-primary);
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.gv-assembly-text p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.gv-assembly-text p:last-child {
  margin-bottom: 0;
}

.gv-assembly-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.gv-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  transition: all 0.3s var(--ease);
}

.gv-step:hover {
  border-color: var(--border-medium);
  transform: translateX(4px);
}

.gv-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(35, 160, 219, 0.1);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gv-step:hover .gv-step-icon {
  background: var(--brand-primary);
  color: #fff;
}

.gv-step h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.gv-step p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* Impregnation */
.gv-impregnation {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 20px;
  padding: clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.gv-impregnation::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(35, 160, 219, 0.1) 0%, transparent 70%);
  filter: blur(30px);
}

.gv-impregnation-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.gv-impregnation-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-primary);
  background: rgba(35, 160, 219, 0.12);
  border: 1px solid rgba(35, 160, 219, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  margin-bottom: 1.25rem;
}

.gv-impregnation-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.gv-impregnation-lead {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 680px;
}

.gv-impregnation-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.gv-imp-benefit {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-primary);
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
}

.gv-imp-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gv-imp-benefit h3 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.gv-imp-benefit p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.65;
}

/* Product grid (what fits) */
.gv-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.gv-product-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all 0.3s var(--ease);
}

.gv-product-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-3px);
}

.gv-product-emoji {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 1.25rem;
}

.gv-product-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.gv-product-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.gv-product-rec {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand-primary);
  background: rgba(35, 160, 219, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
}

/* Comparison wrap (reuse kp-compare table styles) */
.gv-compare-wrap {
  margin-top: 2.5rem;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  overflow-x: auto;
}

/* GV responsive */
@media (min-width: 640px) {
  .gv-dims-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gv-dims-grid > :last-child {
    grid-column: span 2;
  }
  .gv-impregnation-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  .gv-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gv-hero-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
  .gv-hero-visual {
    display: flex;
  }
  .gv-intro-layout {
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
  }
  .gv-dims-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gv-dims-grid > :last-child {
    grid-column: auto;
  }
  .gv-assembly-split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .gv-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   KUTIJE ZA PICU — Custom page
   ============================================ */

.pz-section-alt {
  background: var(--bg-secondary);
}

/* Hero */
.pz-hero {
  position: relative;
  padding: 9rem 0 5rem;
  background: var(--bg-primary);
  overflow: hidden;
}

.pz-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(35, 160, 219, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(212, 87, 10, 0.06) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.pz-hero-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.pz-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.pz-blob-1 {
  width: 400px;
  height: 400px;
  background: rgba(35, 160, 219, 0.08);
  top: -100px;
  right: -100px;
  animation: pz-blob-move-1 12s ease-in-out infinite;
}

.pz-blob-2 {
  width: 350px;
  height: 350px;
  background: rgba(212, 87, 10, 0.06);
  bottom: -80px;
  left: -80px;
  animation: pz-blob-move-2 14s ease-in-out infinite;
}

@keyframes pz-blob-move-1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 40px); }
}

@keyframes pz-blob-move-2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}

.pz-hero .container {
  position: relative;
  z-index: 1;
}

.pz-hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.pz-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: rgba(35, 160, 219, 0.08);
  border: 1px solid rgba(35, 160, 219, 0.2);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 1.75rem;
}

.pz-hero-text h1 {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.pz-hero-lead {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 2rem;
}

.pz-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.pz-hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  max-width: 520px;
}

.pz-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.pz-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(35, 160, 219, 0.12);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pz-hero-visual {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.pz-hero-svg {
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.2));
  animation: sk-float 7s ease-in-out infinite;
}

.pz-float {
  position: absolute;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-medium);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow-card);
  z-index: 5;
  font-family: var(--font-display);
}

.pz-float-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
}

.pz-float-value em {
  font-size: 0.7rem;
  font-style: normal;
  color: var(--text-muted);
  margin-left: 0.2rem;
}

.pz-float-label {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

.pz-float-1 {
  top: 32%;
  left: -7%;
  animation: pz-fa 6s ease-in-out infinite;
}

.pz-float-2 {
  bottom: 22%;
  right: -7%;
  animation: pz-fb 7s ease-in-out infinite;
}

.pz-float-3 {
  top: 10%;
  right: -6%;
  animation: pz-fc 5.5s ease-in-out infinite;
}

.pz-float-4 {
  bottom: 8%;
  left: -8%;
  animation: pz-fb 6.5s ease-in-out infinite reverse;
}

@keyframes pz-fa {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pz-fb {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(10px) translateX(-6px); }
}
@keyframes pz-fc {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@media (max-width: 900px) {
  .pz-float-1, .pz-float-2, .pz-float-3, .pz-float-4 {
    display: none;
  }
}

/* Intro */
.pz-intro-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.pz-intro-header h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  line-height: 1.15;
  margin-top: 1rem;
}

.pz-intro-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.pz-intro-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.pz-intro-content p:last-child {
  margin-bottom: 0;
}

/* Sizes grid */
.pz-sizes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.pz-size-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all 0.3s var(--ease);
}

.pz-size-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-3px);
}

.pz-size-visual {
  width: 100px;
  height: 100px;
  background: var(--bg-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pz-size-square {
  width: var(--s);
  aspect-ratio: 1;
  background: linear-gradient(135deg, #DEBB8A, #B8895F);
  border: 2px solid rgba(35, 160, 219, 0.3);
  border-radius: 4px;
  position: relative;
}

.pz-size-square::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px dashed rgba(139, 105, 20, 0.4);
  border-radius: 2px;
}

.pz-size-info {
  flex: 1;
  min-width: 0;
}

.pz-size-dim {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pz-size-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.pz-size-info p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

.pz-sizes-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  background: rgba(35, 160, 219, 0.05);
  border: 1px solid rgba(35, 160, 219, 0.2);
  border-radius: 14px;
}

.pz-sizes-note svg {
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pz-sizes-note p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
}

.pz-sizes-note strong {
  color: var(--text-primary);
}

/* Materials */
.pz-materials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pz-material {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.pz-material:hover {
  border-color: var(--border-medium);
  transform: translateY(-3px);
}

.pz-material-swatch {
  height: 100px;
  position: relative;
  overflow: hidden;
}

.pz-material-swatch::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 6px,
    rgba(0, 0, 0, 0.04) 6px,
    rgba(0, 0, 0, 0.04) 7px
  );
}

.pz-material-gray .pz-material-swatch {
  background: linear-gradient(135deg, #8a8580, #6d6962);
}

.pz-material-white .pz-material-swatch {
  background: linear-gradient(135deg, #f5f2eb, #e8e4dc);
}

.pz-material-kraft .pz-material-swatch {
  background: linear-gradient(135deg, #C4956A, #A67B52);
}

.pz-material-body {
  padding: 1.75rem;
}

.pz-material-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.pz-material-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-primary);
  background: rgba(35, 160, 219, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.pz-material-body > p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.pz-material-pros {
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.9;
  list-style: none;
}

.pz-material-pros li {
  padding-left: 1.25rem;
  position: relative;
}

.pz-material-pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-primary);
  font-weight: 700;
}

/* Printing options */
.pz-print-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.pz-print-text h2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.pz-print-lead {
  color: var(--text-primary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 500;
}

.pz-print-options {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pz-print-option {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  transition: all 0.3s var(--ease);
}

.pz-print-option:hover {
  border-color: var(--border-medium);
  transform: translateX(4px);
}

.pz-print-option-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(35, 160, 219, 0.12);
  border: 1px solid rgba(35, 160, 219, 0.3);
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pz-print-option h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.pz-print-option p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* Print mock stack */
.pz-print-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.pz-mock-stack {
  position: relative;
  width: 280px;
  height: 280px;
}

.pz-mock {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease);
}

.pz-mock-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  border-radius: 6px;
}

.pz-mock-1 {
  background: linear-gradient(135deg, #23A0DB, #1B6A9C, #D4570A, #E8691F);
  top: 0;
  left: 0;
  transform: rotate(-8deg);
  z-index: 3;
}

.pz-mock-2 {
  background: linear-gradient(135deg, #DEBB8A, #B8895F);
  top: 20px;
  left: 40px;
  transform: rotate(3deg);
  z-index: 2;
  border: 2px solid #1a1a1a;
}

.pz-mock-3 {
  background: #8a8580;
  top: 40px;
  left: 80px;
  transform: rotate(12deg);
  z-index: 1;
}

.pz-mock-stack:hover .pz-mock-1 { transform: rotate(-12deg) translateY(-10px); }
.pz-mock-stack:hover .pz-mock-2 { transform: rotate(5deg) translateY(-5px); }
.pz-mock-stack:hover .pz-mock-3 { transform: rotate(15deg); }

/* Safety grid */
.pz-safety-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.pz-safety-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all 0.3s var(--ease);
}

.pz-safety-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-3px);
}

.pz-safety-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: rgba(35, 160, 219, 0.1);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s var(--ease);
}

.pz-safety-card:hover .pz-safety-icon {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 0 20px var(--brand-glow-strong);
}

.pz-safety-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}

.pz-safety-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Who is it for */
.pz-who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.pz-who-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all 0.3s var(--ease);
  position: relative;
}

.pz-who-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card), 0 0 40px var(--brand-glow);
}

.pz-who-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.pz-who-title h3 {
  font-size: 1.1rem;
}

.pz-who-title span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-primary);
  white-space: nowrap;
}

.pz-who-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.pz-who-perk {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.6rem 0.9rem;
  background: var(--surface-hover);
  border-radius: 8px;
}

/* PZ responsive */
@media (min-width: 640px) {
  .pz-hero-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .pz-sizes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pz-materials {
    grid-template-columns: repeat(2, 1fr);
  }
  .pz-materials > :last-child {
    grid-column: span 2;
  }
  .pz-safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pz-who-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pz-hero-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
  .pz-hero-visual {
    display: flex;
  }
  .pz-intro-layout {
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
  }
  .pz-sizes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pz-materials {
    grid-template-columns: repeat(3, 1fr);
  }
  .pz-materials > :last-child {
    grid-column: auto;
  }
  .pz-print-split {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
  }
  .pz-safety-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .pz-who-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   KARTONSKE PLOČE — Custom page
   ============================================ */

.kp-section-alt {
  background: var(--bg-secondary);
}

/* Hero */
.kp-hero {
  position: relative;
  padding: 9rem 0 5rem;
  background: var(--bg-primary);
  overflow: hidden;
}

.kp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 15% 30%, rgba(35, 160, 219, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 70%, rgba(0, 47, 86, 0.12) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.kp-hero .container {
  position: relative;
  z-index: 1;
}

.kp-hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.kp-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: rgba(35, 160, 219, 0.08);
  border: 1px solid rgba(35, 160, 219, 0.2);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 1.75rem;
}

.kp-hero-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--brand-primary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.kp-hero-text h1 {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.kp-hero-lead {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 2rem;
}

.kp-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.kp-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.kp-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.kp-meta-item svg {
  color: var(--brand-primary);
  flex-shrink: 0;
}

.kp-hero-visual {
  display: none;
  justify-content: center;
  align-items: center;
  position: relative;
}

.kp-hero-svg {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.2));
  animation: sk-float 7s ease-in-out infinite;
}

.kp-float-tl {
  top: 6%;
  left: -6%;
  animation: kp-float-a 6s ease-in-out infinite;
}
.kp-float-tr {
  top: 10%;
  right: -6%;
  animation: kp-float-b 7s ease-in-out infinite;
}
.kp-float-br {
  bottom: 24%;
  right: -8%;
  animation: kp-float-a 6.5s ease-in-out infinite reverse;
}
.kp-float-bl {
  bottom: 30%;
  left: -8%;
  animation: kp-float-b 7.5s ease-in-out infinite reverse;
}

@keyframes kp-float-a {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-8px) translateX(3px); }
}
@keyframes kp-float-b {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(7px) translateX(-4px); }
}

@media (max-width: 900px) {
  .kp-float-tl, .kp-float-tr, .kp-float-br, .kp-float-bl {
    display: none;
  }
}

/* Intro */
.kp-intro-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.kp-intro-header h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  line-height: 1.15;
  margin-top: 1rem;
}

.kp-intro-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.kp-intro-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.kp-intro-content p:last-child {
  margin-bottom: 0;
}

/* Configurations grid */
.kp-configs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 3rem;
}

.kp-config-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  transition: all 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.kp-config-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 40px var(--brand-glow);
}

.kp-config-card-featured {
  border-color: rgba(35, 160, 219, 0.3);
  background: linear-gradient(180deg, var(--bg-card), var(--bg-elevated));
}

.kp-config-ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--brand-primary);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
}

/* Visual showing layers */
.kp-config-visual {
  aspect-ratio: 1 / 1;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem;
  background: var(--bg-primary);
  border-radius: 10px;
  gap: 2px;
}

.kp-config-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.kp-layer {
  height: 4px;
  background: linear-gradient(90deg, #C4956A, #DEBB8A, #C4956A);
  border-radius: 1px;
}

.kp-layer-wave {
  display: flex;
  justify-content: space-around;
  height: 16px;
  align-items: center;
}

.kp-layer-wave span {
  width: 22%;
  height: 10px;
  background: linear-gradient(180deg, transparent 0%, #A87D55 50%, transparent 100%);
  border-radius: 50%;
}

.kp-layer-wave-fine {
  height: 10px;
}

.kp-layer-wave-fine span {
  width: 18%;
  height: 6px;
}

.kp-config-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-primary);
  background: rgba(35, 160, 219, 0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.kp-config-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.kp-config-thickness {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.kp-config-card > p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.kp-config-uses {
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.kp-config-uses li {
  display: block;
}

.kp-config-uses strong {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 600;
}

/* Wave types */
.kp-waves {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.kp-wave-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  align-items: center;
  transition: all 0.3s var(--ease);
}

.kp-wave-row:hover {
  border-color: var(--border-medium);
}

.kp-wave-label {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.kp-wave-letter {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(35, 160, 219, 0.12);
  border: 1px solid rgba(35, 160, 219, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-primary);
  flex-shrink: 0;
}

.kp-wave-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.kp-wave-graphic {
  background: var(--bg-primary);
  border-radius: 10px;
  padding: 0.75rem;
  height: 60px;
}

.kp-wave-graphic svg {
  width: 100%;
  height: 100%;
}

.kp-wave-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.kp-wave-spec {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
}

.kp-wave-spec span {
  color: var(--text-muted);
}

.kp-wave-spec b {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-primary);
}

.kp-wave-details p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 0.25rem;
}

/* Apps grid — bento style */
.kp-apps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.kp-app-block {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all 0.3s var(--ease);
  position: relative;
}

.kp-app-block:hover {
  border-color: var(--border-medium);
  transform: translateY(-3px);
}

.kp-app-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.kp-app-block h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.kp-app-block p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.kp-app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.kp-app-tags span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface-hover);
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
}

/* Comparison table */
.kp-compare-wrap {
  margin-top: 2.5rem;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  overflow-x: auto;
}

.kp-compare {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}

.kp-compare th,
.kp-compare td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
}

.kp-compare thead {
  background: var(--bg-card);
}

.kp-compare th {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.kp-compare tbody tr {
  background: var(--bg-card);
  transition: background 0.2s var(--ease);
}

.kp-compare tbody tr:hover {
  background: var(--bg-elevated);
}

.kp-compare tbody td:first-child {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-primary);
}

.kp-compare tbody td:not(:first-child) {
  color: var(--text-secondary);
}

.kp-compare tr:last-child td {
  border-bottom: none;
}

/* Dimensions split */
.kp-dimensions-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.kp-dim-info h2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.kp-dim-lead {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.kp-dim-info p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.kp-dim-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.kp-dim-spec-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  transition: all 0.3s var(--ease);
}

.kp-dim-spec-item:hover {
  border-color: var(--border-medium);
  transform: translateX(4px);
}

.kp-dim-spec-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(35, 160, 219, 0.1);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kp-dim-spec-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
  font-family: var(--font-display);
  font-weight: 500;
}

.kp-dim-spec-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* KP responsive */
@media (min-width: 640px) {
  .kp-configs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .kp-configs-grid > :last-child {
    grid-column: span 2;
  }
  .kp-apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .kp-dim-specs {
    grid-template-columns: 1fr 1fr;
  }
  .kp-wave-row {
    grid-template-columns: auto 1fr 1fr;
    gap: 2rem;
  }
  .kp-hero-meta {
    flex-direction: row;
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .kp-hero-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
  .kp-hero-visual {
    display: flex;
  }
  .kp-intro-layout {
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
  }
  .kp-configs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .kp-configs-grid > :last-child {
    grid-column: auto;
  }
  .kp-apps-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: dense;
  }
  .kp-app-block-large {
    grid-column: span 2;
  }
  .kp-dimensions-split {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
  .kp-dim-specs {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ŠTANCANE KUTIJE — Custom page
   ============================================ */

.sk-section-dark {
  background: var(--bg-secondary);
}

/* Hero */
.sk-hero {
  position: relative;
  padding: 9rem 0 5rem;
  background: var(--bg-primary);
  overflow: hidden;
}

.sk-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.sk-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(35, 160, 219, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(0, 47, 86, 0.12) 0%, transparent 60%);
}

.sk-hero-grid {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image:
    linear-gradient(rgba(35, 160, 219, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 160, 219, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.sk-hero .container {
  position: relative;
  z-index: 1;
}

.sk-hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.sk-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(35, 160, 219, 0.08);
  border: 1px solid rgba(35, 160, 219, 0.2);
  border-radius: 100px;
  padding: 0.45rem 1.1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 1.75rem;
}

.sk-hero-text h1 {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.sk-hero-lead {
  color: var(--text-secondary);
  font-size: 1.12rem;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2rem;
}

.sk-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.sk-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  max-width: 540px;
}

.sk-hero-stat {
  display: flex;
  flex-direction: column;
}

.sk-hero-stat b {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.sk-hero-stat span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.sk-hero-visual {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
}

.sk-hero-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.18));
  animation: sk-float 7s ease-in-out infinite;
}

@keyframes sk-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.sk-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-medium);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow-card);
  z-index: 2;
}

.sk-float-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(35, 160, 219, 0.12);
  color: var(--brand-primary);
  flex-shrink: 0;
}

.sk-icon-eco {
  background: rgba(212, 87, 10, 0.12);
  color: var(--accent-cta);
}

.sk-float-badge-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sk-float-badge-value {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
}

.sk-float-top {
  top: 8%;
  right: -5%;
  animation: sk-float-a 6s ease-in-out infinite;
}

.sk-float-bottom {
  bottom: 12%;
  left: -8%;
  animation: sk-float-b 7s ease-in-out infinite;
}

.sk-float-tl {
  position: absolute;
  top: 6%;
  left: -6%;
  animation: sk-float-b 6.5s ease-in-out infinite reverse;
}

.sk-float-br {
  position: absolute;
  bottom: 16%;
  right: -7%;
  animation: sk-float-a 7.5s ease-in-out infinite reverse;
}

@media (max-width: 900px) {
  .sk-float-top, .sk-float-bottom, .sk-float-tl, .sk-float-br {
    display: none;
  }
}

@keyframes sk-float-a {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-10px) translateX(4px); }
}

@keyframes sk-float-b {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(8px) translateX(-6px); }
}

/* Intro */
.sk-section-intro {
  background: var(--bg-secondary);
}

.sk-intro-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.sk-intro-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  margin-top: 1rem;
}

.sk-intro-lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.sk-intro-body p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.sk-intro-body p:last-child {
  margin-bottom: 0;
}

.sk-intro-body a {
  color: var(--brand-primary);
  border-bottom: 1px dashed rgba(35, 160, 219, 0.4);
}

.sk-intro-body a:hover {
  border-bottom-style: solid;
}

/* Anatomy */
.sk-anatomy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.sk-anatomy-card {
  position: relative;
  padding: 1.75rem 1.75rem 1.75rem 4rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  transition: all 0.3s var(--ease);
}

.sk-anatomy-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-2px);
}

.sk-anatomy-num {
  position: absolute;
  top: 1.75rem;
  left: 1.5rem;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(35, 160, 219, 0.1);
  border: 1px solid rgba(35, 160, 219, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-primary);
}

.sk-anatomy-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.sk-anatomy-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Advantages */
.sk-advantages-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.sk-advantages-header h2 {
  font-size: clamp(1.85rem, 3vw, 2.3rem);
  line-height: 1.2;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.sk-advantages-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.sk-advantages-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sk-adv-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.sk-adv-item:last-child {
  border-bottom: none;
}

.sk-adv-number {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-primary);
  opacity: 0.6;
  flex-shrink: 0;
  min-width: 30px;
}

.sk-adv-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.sk-adv-item p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Use cases */
.sk-usecase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.sk-usecase {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.sk-usecase:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 40px var(--brand-glow);
}

.sk-usecase-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(35, 160, 219, 0.1);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s var(--ease);
}

.sk-usecase:hover .sk-usecase-icon {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 0 20px var(--brand-glow-strong);
}

.sk-usecase h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.sk-usecase p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.sk-usecase-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.sk-usecase-examples span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface-hover);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
}

/* Process flow */
.sk-process-header {
  text-align: center;
  margin-bottom: 3rem;
}

.sk-process-header h2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.sk-process-header .section-label {
  justify-content: center;
}

.sk-process-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.sk-process-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.sk-process-step {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.sk-process-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--brand-primary);
  opacity: 0.4;
  transition: opacity 0.3s var(--ease);
}

.sk-process-step:hover {
  border-color: var(--border-medium);
  transform: translateY(-2px);
}

.sk-process-step:hover::before {
  opacity: 1;
}

.sk-process-step-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.sk-process-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-primary);
}

.sk-process-time {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: var(--surface-hover);
  padding: 0.25rem 0.7rem;
  border-radius: 6px;
}

.sk-process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.sk-process-step p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* Materials */
.sk-materials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.sk-material-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all 0.3s var(--ease);
}

.sk-material-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-3px);
}

.sk-material-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.sk-material-header h3 {
  font-size: 1.1rem;
}

.sk-material-thickness {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-primary);
  background: rgba(35, 160, 219, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  white-space: nowrap;
}

.sk-material-card > p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.sk-material-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--bg-primary);
  border-radius: 10px;
  margin-bottom: 1rem;
}

.sk-material-specs div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.sk-material-specs span {
  color: var(--text-muted);
}

.sk-material-specs b {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-primary);
}

.sk-material-best {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
  padding-top: 0.5rem;
}

/* Specs grid */
.sk-specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.sk-spec-item {
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sk-spec-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.sk-spec-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-primary);
}

/* FAQ */
.sk-faq {
  max-width: 860px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sk-faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}

.sk-faq-item[open] {
  border-color: var(--border-medium);
}

.sk-faq-item summary {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sk-faq-item summary::-webkit-details-marker { display: none; }

.sk-faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--brand-primary);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.sk-faq-item[open] summary::after {
  content: '−';
}

.sk-faq-answer {
  padding: 0 1.5rem 1.5rem;
}

.sk-faq-answer p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.75;
}

.sk-faq-answer strong {
  color: var(--text-primary);
}

/* SK responsive */
@media (min-width: 640px) {
  .sk-hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .sk-anatomy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sk-usecase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sk-materials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sk-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sk-process-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sk-hero-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
  .sk-hero-visual {
    display: flex;
  }
  .sk-intro-layout {
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
  }
  .sk-anatomy-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sk-advantages-split {
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
  }
  .sk-advantages-header {
    position: sticky;
    top: 100px;
  }
  .sk-usecase-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sk-process-flow {
    grid-template-columns: repeat(3, 1fr);
  }
  .sk-specs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   404 PAGE
   ============================================ */
.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 5rem;
}

.page-404 h1 {
  font-size: clamp(5rem, 15vw, 10rem);
  color: var(--brand-primary);
  opacity: 0.2;
  line-height: 1;
}

.page-404 p {
  color: var(--text-secondary);
  margin: 1rem 0 2rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }

  .hero-split {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .hero-visual {
    display: flex;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
  }

  .stat-divider {
    display: block;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 1023px) {
  .mobile-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--bg-card);
    padding: 6rem 2rem 2rem;
    transition: right 0.4s var(--ease-out);
    border-left: 1px solid var(--border-subtle);
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    padding: 0.85rem 1rem;
    font-size: 1rem;
    display: block;
    border-radius: 8px;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 1rem;
  }

  .header-cta {
    display: none;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }
}

/* ============================================
   VODIČ — alternating section layout
   ============================================ */
.vodic-section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.vodic-section-image {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
}

.vodic-section-image picture,
.vodic-section-image img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto;
}

.vodic-section-image figcaption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.vodic-section-text h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.vodic-section-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0 0 1rem 0;
}

.vodic-section-text p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .vodic-section-grid {
    grid-template-columns: minmax(260px, 360px) 1fr;
    gap: 3rem;
  }
  .vodic-section-grid--reverse {
    grid-template-columns: 1fr minmax(260px, 360px);
  }
  .vodic-section-grid--reverse .vodic-section-image {
    order: 2;
  }
  .vodic-section-grid--reverse .vodic-section-text {
    order: 1;
  }
}

/* ============================================
   VODIČ — comparative table
   ============================================ */
.vodic-table-wrap {
  margin: 1.75rem 0 0.5rem;
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border-medium);
  background: var(--bg-card);
}

.vodic-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.vodic-table thead th {
  background: rgba(35, 160, 219, 0.1);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 600;
  text-align: left;
  padding: 0.85rem 1rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border-medium);
  white-space: nowrap;
}

.vodic-table tbody td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  vertical-align: top;
}

.vodic-table tbody tr:last-child td {
  border-bottom: none;
}

.vodic-table tbody tr:hover {
  background: rgba(35, 160, 219, 0.04);
}

.vodic-table tbody td:first-child {
  color: var(--text-primary);
  font-weight: 600;
}

@media (max-width: 760px) {
  .vodic-table {
    font-size: 0.85rem;
  }
  .vodic-table thead th,
  .vodic-table tbody td {
    padding: 0.65rem 0.75rem;
  }
}
