:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --text: #111827;
  --muted: #667085;
  --line: #e4e7ec;
  --accent: #00a3ff;
  --accent-dark: #0076c9;
  --dark: #010D20;
  --dark-soft: #111c31;
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.button:hover {
  background: var(--accent-dark);
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.button.secondary:hover {
  background: #eef2f6;
}

.hero .button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.hero .button.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  min-height: min(780px, calc(100vh - 72px));
  display: grid;
  align-items: center;
  padding: 72px 0;
  background: var(--dark);
  border-bottom: 1px solid var(--line);
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  align-items: center;
  gap: 44px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #77d6ff;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 600px;
  margin-bottom: 32px;
  color: #d2dae8;
  font-size: 19px;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.hero-points li {
  color: #d2dae8;
  font-weight: 600;
}

.hero-points li::before {
  content: "•";
  margin-right: 10px;
  color: #77d6ff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .button:first-child {
  min-width: 280px;
  padding-inline: 24px;
}

.hero-note {
  margin: 16px 0 0;
  color: #aebcd0;
  font-size: 14px;
}

.hero-media {
  min-height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 163, 255, 0.18), rgba(255, 255, 255, 0.04)),
    var(--dark-soft);
  padding: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  position: relative;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
  opacity: 1;
}

.hero .hero-media {
  min-height: 500px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.hero .hero-media img {
  min-height: 480px;
  border-radius: 0;
}

.offer-panel {
  width: 100%;
  display: grid;
  gap: 14px;
}

.offer-panel h2 {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.12;
}

.offer-panel p {
  margin: 0;
  color: #cbd5e1;
}

.offer-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.offer-line span {
  color: #cbd5e1;
}

.offer-line strong {
  color: #fff;
  text-align: right;
}

.section {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}

.section.white {
  background: var(--surface);
}

.server-services .eyebrow {
  color: var(--accent-dark);
}

.image-strip.server-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 760px);
  margin: 24px auto 0;
  gap: 8px;
}

.server-gallery img {
  aspect-ratio: 16 / 10;
}

.section-header {
  max-width: 680px;
  margin-bottom: 36px;
}

.section-header h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: 0;
}

.section-header p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.white .card {
  background: var(--bg);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.card.big {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-number {
  color: var(--accent);
  font-weight: 900;
  font-size: 42px;
  line-height: 1;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 56px;
}

.media-placeholder {
  min-height: 380px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #eef2f6;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.image-strip button {
  display: block;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  cursor: zoom-in;
}

.image-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: var(--dark-soft);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(5, 10, 20, 0.9);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 84vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.lightbox button {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  font: inherit;
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  width: 48px;
  height: 56px;
  transform: translateY(-50%);
  font-size: 32px;
  line-height: 1;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
}

.list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.content {
  max-width: 860px;
}

.content p {
  color: var(--muted);
  font-size: 17px;
}

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

.text-link {
  color: var(--accent);
  font-weight: 700;
}

.mini-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.mini-cta.dark {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.mini-cta h3 {
  margin-bottom: 4px;
  font-size: 22px;
}

.mini-cta p {
  margin: 0;
  color: var(--muted);
}

.mini-cta.dark p {
  color: #cbd5e1;
}

.value-stack {
  display: grid;
  gap: 12px;
}

.value-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.value-item h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.value-item p {
  margin: 0;
  color: var(--muted);
}

.value-tag {
  white-space: nowrap;
  color: var(--accent);
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
}

.dark-section {
  background: var(--dark);
  color: #fff;
}

.dark-section .section-header p,
.dark-section .content p {
  color: #cbd5e1;
}

.dark-section .card {
  background: var(--dark-soft);
  border-color: rgba(255, 255, 255, 0.12);
}

.dark-section .card p {
  color: #cbd5e1;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 48px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #d2dae8;
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  font: inherit;
}

.contact-form textarea {
  min-height: 116px;
  resize: vertical;
}

.contact-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.contact-note {
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
}

.contact-proof {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.contact-proof h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: #d2dae8;
}

.contact-list li {
  margin: 0;
}

.cta .contact-note {
  margin-top: 16px;
  color: #cbd5e1;
}

.benefit-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.trust-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.trust-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
}

.reference-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.reference-placeholder {
  min-height: 240px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(0, 163, 255, 0.08), rgba(17, 24, 39, 0.03)),
    #eef2f6;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reference-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: #eef2f6;
}

.reference-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reference-images button {
  display: block;
  padding: 0;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  cursor: zoom-in;
}

.reference-images button:last-child {
  border-right: 0;
}

.reference-images img {
  height: 100%;
}

.reference-card .image-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  border-bottom: 1px solid var(--line);
}

.reference-card .image-strip img {
  aspect-ratio: 6 / 5;
  border: 0;
  border-radius: 0;
}

.reference-body {
  padding: 20px;
}

.reference-meta {
  margin-bottom: 14px;
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reference-body h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.12;
}

.reference-body p {
  margin-bottom: 0;
  color: var(--muted);
}

.benefit-row {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 24px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.benefit-row:last-child {
  border-bottom: 0;
}

.benefit-row strong {
  color: var(--text);
}

.benefit-row p {
  margin: 0;
  color: var(--muted);
}

.stat-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.stat-list li {
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-weight: 800;
  font-size: 14px;
  line-height: 1.35;
}

.step-number {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 900;
  font-size: 34px;
  line-height: 1;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.faq-item summary {
  padding: 18px 0;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-item p {
  margin: 0 0 18px;
  color: var(--muted);
}

.cta {
  padding: 88px 0;
  background: #17202a;
  color: #fff;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.cta p {
  max-width: 620px;
  margin-bottom: 0;
  color: #c9d3df;
  font-size: 17px;
}

.site-footer {
  padding: 28px 0;
  background: #101820;
  color: #c9d3df;
  font-size: 14px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .split,
  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 56px 0;
  }

  .hero-actions .button:first-child {
    width: 100%;
    min-width: 0;
  }

  .hero-media,
  .media-placeholder {
    min-height: 280px;
  }

  .hero-media {
    padding: 8px;
  }

  .hero-media img {
    min-height: 280px;
  }

  .hero .hero-media {
    min-height: 320px;
  }

  .hero .hero-media img {
    min-height: 320px;
  }

  .section,
  .cta {
    padding: 64px 0;
  }

  .cta-box,
  .mini-cta,
  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .benefit-row,
  .stat-list,
  .value-item,
  .contact-layout,
  .trust-strip,
  .reference-grid {
    grid-template-columns: 1fr;
  }

  .reference-images {
    grid-template-columns: 1fr;
  }

  .reference-images button {
    border-right: 0;
  }

  .value-tag {
    white-space: normal;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 22px;
    transform: none;
  }
}

/* Avtomatizacija poslovanja */
:root {
  --bg: #f4f1ff;
  --surface: #ffffff;
  --text: #17132d;
  --muted: #69627f;
  --line: #ddd7ef;
  --accent: #7157e8;
  --accent-dark: #5338ca;
  --dark: #17112d;
  --dark-soft: #241b42;
}

body {
  font-family: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
}

h1,
h2,
h3,
.brand,
.button {
  font-family: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
  letter-spacing: -0.025em;
}

h1 { font-weight: 600; }
h2, h3, .brand { font-weight: 600; }
.button { letter-spacing: -0.01em; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(74, 222, 128, 0.17), transparent 28%),
    radial-gradient(circle at 15% 85%, rgba(113, 87, 232, 0.3), transparent 34%),
    var(--dark);
}

.hero::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -170px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.025), 0 0 0 120px rgba(255, 255, 255, 0.018);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }
.eyebrow { color: #9ef5bc; }

.process-preview {
  min-height: 500px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(113, 87, 232, 0.2), rgba(74, 222, 128, 0.06));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.process-preview > p {
  margin: 0 0 8px;
  color: #aebcd0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.flow-step + .flow-step::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 37px;
  width: 1px;
  height: 15px;
  background: rgba(119, 214, 255, 0.6);
}

.flow-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.14);
  color: #9ef5bc;
  font-weight: 900;
}

.flow-step strong,
.flow-step small {
  display: block;
}

.flow-step small {
  margin-top: 3px;
  color: #aebcd0;
}

.flow-status {
  color: #9ef5bc;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card {
  min-height: 100%;
  border-color: rgba(0, 163, 255, 0.5);
}

.price {
  margin: 14px 0;
  color: var(--text);
  font-size: 34px;
  font-weight: 900;
}

.fit-note {
  margin-top: 28px;
  padding: 20px;
  border-left: 4px solid var(--accent);
  background: #eef8ff;
  color: var(--muted);
}

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

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.visual-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.visual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(38, 27, 80, 0.1);
}

.visual-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 16px;
  background: #ece8ff;
  color: var(--accent);
}

.visual-icon.green { background: #e1f9e9; color: #168446; }
.visual-icon.orange { background: #fff0dc; color: #c16a06; }
.visual-icon svg { width: 30px; height: 30px; }
.visual-card h3 { margin-bottom: 8px; font-size: 21px; }
.visual-card p { margin: 0; color: var(--muted); }

.outcome-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.12);
}

.outcome-strip div { padding: 20px; background: var(--dark-soft); }
.outcome-strip strong { display: block; color: #9ef5bc; font-size: 22px; }
.outcome-strip span { color: #cfc8e6; font-size: 13px; }

@media (max-width: 920px) {
  .process-preview { min-height: auto; }
  .visual-grid, .outcome-strip { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .process-preview { padding: 18px; }
  .flow-step { grid-template-columns: 38px 1fr; }
  .flow-status { grid-column: 2; }
}

/* Temen studijski slog */
:root {
  --bg: #0c111b;
  --surface: #111825;
  --text: #eeeae0;
  --muted: #a7adba;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #22c55e;
  --accent-dark: #16a34a;
  --dark: #0b1120;
  --dark-soft: #111827;
  --radius: 12px;
  --container: 1152px;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
}

h1,
h2,
h3 {
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.brand,
.button {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.eyebrow,
.value-tag,
.flow-status,
.hero-note,
.contact-form label {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header {
  color: var(--text);
  background: rgba(12, 17, 27, 0.86);
  border-color: var(--line);
}

.nav { min-height: 64px; }
.brand { font-size: 15px; font-weight: 500; }
.nav-links { color: rgba(238, 234, 224, 0.62); }

.button {
  min-height: 42px;
  border-radius: 7px;
  background: var(--accent);
  color: #07130b;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.12);
}

.button:hover { background: #42d774; }

.hero {
  min-height: auto;
  padding: 104px 0 112px;
  background:
    radial-gradient(circle at 50% -20%, rgba(34, 197, 94, 0.15), transparent 37%),
    radial-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    #0b1120;
  background-size: auto, 24px 24px, auto;
}

.hero::after { display: none; }

.hero-grid {
  display: block;
  max-width: 1000px;
}

.hero h1 {
  max-width: 850px;
  margin: 18px 0 24px;
  font-size: clamp(46px, 6.2vw, 78px);
  line-height: 1.02;
}

.hero-copy {
  max-width: 720px;
  color: rgba(238, 234, 224, 0.72);
  line-height: 1.7;
}

.hero-points { display: none; }
.hero-actions { margin-top: 34px; align-items: center; }
.hero .button.secondary { border-color: var(--line); }
.hero-note { margin-top: 18px; color: rgba(238, 234, 224, 0.5); }

.process-preview {
  max-width: 900px;
  min-height: 0;
  margin-top: 72px;
  padding: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  border-color: var(--line);
  border-radius: 16px;
  background: rgba(17, 24, 39, 0.72);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.process-preview > p { grid-column: 1 / -1; }

.flow-step {
  grid-template-columns: 38px 1fr;
  align-content: start;
  border-color: var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
}

.flow-step + .flow-step::before { display: none; }
.flow-icon { width: 38px; height: 38px; }
.flow-status { grid-column: 1 / -1; margin-top: 12px; }

.section,
.section.white {
  padding: 96px 0;
  color: var(--text);
  background: var(--bg);
  border-color: var(--line);
}

.section:nth-of-type(3),
.section.dark-section {
  background: #0f1623;
}

.section-header { max-width: 720px; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(36px, 4vw, 52px); }
.section-header p,
.card p,
.visual-card p,
.mini-cta p,
.benefit-row p { color: var(--muted); }

.visual-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }

.visual-card,
.card,
.white .card {
  min-height: 210px;
  padding: 28px;
  border-color: var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.visual-card:hover {
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
}

.visual-icon,
.visual-icon.green,
.visual-icon.orange {
  border: 1px solid rgba(34, 197, 94, 0.2);
  background: rgba(34, 197, 94, 0.08);
  color: #4ade80;
}

.mini-cta,
.mini-cta.dark {
  border-color: var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.price { color: var(--text); font-family: Fraunces, Georgia, serif; }
.fit-note { border-color: var(--accent); background: rgba(34, 197, 94, 0.06); }
.fit-note strong { color: var(--text); }

.list li {
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--muted);
}

.benefit-table { border-color: var(--line); border-radius: 16px; background: var(--surface); }
.benefit-row { border-color: var(--line); }
.benefit-row strong { color: var(--text); }

.dark-section .card { background: var(--surface); border-color: var(--line); }
.outcome-strip { border-color: var(--line); background: var(--line); }
.outcome-strip div { background: var(--surface); }

.cta {
  padding: 104px 0;
  background:
    radial-gradient(circle at 50% 0, rgba(34, 197, 94, 0.12), transparent 32%),
    #0b1120;
}

.contact-layout {
  max-width: 900px;
  grid-template-columns: 1fr;
  margin: 0 auto;
}

.contact-layout > div:first-child { max-width: 720px; }
.contact-form { padding: 38px; border-radius: 16px; background: rgba(255, 255, 255, 0.025); }

.contact-form input,
.contact-form select,
.contact-form textarea {
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.14);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(34, 197, 94, 0.45);
  border-color: var(--accent);
}

.contact-proof { border-color: var(--line); background: rgba(255, 255, 255, 0.025); }
.site-footer { border-top: 1px solid var(--line); background: #0c111b; }

@media (max-width: 860px) {
  .hero { padding: 76px 0; }
  .process-preview { grid-template-columns: 1fr 1fr; margin-top: 52px; }
  .visual-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}

@media (max-width: 560px) {
  .process-preview { grid-template-columns: 1fr; }
  .hero h1 { font-size: 44px; }
}

/* Svetel enterprise slog */
:root {
  --bg: #f7f7f4;
  --surface: #ffffff;
  --text: #123f43;
  --muted: #596b6c;
  --line: #dbe2df;
  --accent: #f4aa43;
  --accent-dark: #e79527;
  --dark: #10565b;
  --dark-soft: #174f53;
  --radius: 14px;
}

body {
  color: var(--text);
  background: var(--bg);
}

h1,
h2,
h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.eyebrow,
.value-tag,
.flow-status,
.hero-note,
.contact-form label {
  color: #078b95;
}

.site-header {
  color: var(--text);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 8px solid #114f54;
  backdrop-filter: blur(12px);
}

.nav { min-height: 72px; }
.brand { color: #0f5a60; font-size: 17px; font-weight: 700; }
.nav-links { color: #304b4d; }

.button {
  min-height: 46px;
  padding-inline: 22px;
  border: 1px solid var(--accent);
  border-radius: 9px;
  color: #153c3f;
  background: var(--accent);
  box-shadow: none;
}

.button:hover { color: #153c3f; background: #f7b85f; }

.button.secondary,
.hero .button.secondary {
  color: #0f5a60;
  background: transparent;
  border: 2px solid #0f5a60;
}

.button.secondary:hover,
.hero .button.secondary:hover { background: rgba(15, 90, 96, 0.06); }

.hero {
  padding: 82px 0 96px;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 45%, rgba(7, 139, 149, 0.08), transparent 30%),
    #ffffff;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  max-width: var(--container);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 72px;
}

.hero h1 {
  max-width: 720px;
  color: #105b60;
  font-size: clamp(48px, 5.3vw, 72px);
  line-height: 1.04;
}

.hero-copy {
  max-width: 650px;
  color: #475f61;
  font-size: 19px;
  line-height: 1.65;
}

.hero-note { color: #68797a; }

.process-preview {
  max-width: none;
  min-height: 510px;
  margin: 0;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.process-preview > p {
  grid-column: auto;
  color: #078b95;
  text-align: center;
}

.flow-step {
  position: relative;
  grid-template-columns: 42px 1fr auto;
  padding: 18px 20px;
  color: #173d40;
  border: 1px solid #e2e7e4;
  border-left: 4px solid #07929b;
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(16, 73, 78, 0.1);
}

.flow-step:nth-of-type(even) {
  margin-left: 42px;
  border-left-color: var(--accent);
}

.flow-step + .flow-step::before {
  display: block;
  top: -15px;
  left: 40px;
  height: 15px;
  background: #cfd9d5;
}

.flow-icon {
  width: 42px;
  height: 42px;
  color: #0c7178;
  background: #e0f4f3;
}

.flow-step:nth-of-type(even) .flow-icon {
  color: #9a5c07;
  background: #fff0d9;
}

.flow-step small { color: #6b797a; }
.flow-status { grid-column: auto; margin-top: 0; color: #078b95; }

.section,
.section.white {
  padding: 96px 0;
  color: var(--text);
  background: #ffffff;
  border-color: var(--line);
}

.section:nth-of-type(3) { background: #f4f2ed; }

.section-header h2 { color: #124f54; }
.section-header p,
.card p,
.visual-card p,
.mini-cta p,
.benefit-row p { color: var(--muted); }

.visual-card,
.card,
.white .card {
  color: var(--text);
  border-color: var(--line);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(16, 73, 78, 0.055);
}

.visual-card:hover {
  border-color: rgba(7, 139, 149, 0.4);
  box-shadow: 0 18px 42px rgba(16, 73, 78, 0.1);
}

.visual-icon,
.visual-icon.green {
  color: #087d85;
  background: #e3f5f3;
  border-color: #c9e8e5;
}

.visual-icon.orange {
  color: #a86609;
  background: #fff0d8;
  border-color: #f5d7aa;
}

.mini-cta,
.mini-cta.dark {
  color: var(--text);
  border-color: #d7dfdb;
  background: #f4f6f3;
}

.price { color: #105b60; font-family: Inter, sans-serif; }
.fit-note { color: #526667; border-color: #078b95; background: #eaf6f4; }
.fit-note strong { color: #124f54; }
.list li { color: var(--muted); border-color: var(--line); }

.benefit-table {
  border-color: var(--line);
  background: #f8f9f7;
  box-shadow: 0 10px 30px rgba(16, 73, 78, 0.05);
}

.benefit-row { border-color: var(--line); }
.benefit-row strong { color: #124f54; }

.section.dark-section {
  color: #ffffff;
  background: #105b60;
}

.dark-section .section-header h2 { color: #ffffff; }
.dark-section .section-header p,
.dark-section .card p { color: rgba(255, 255, 255, 0.72); }

.dark-section .card {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: none;
}

.dark-section .step-number { color: #ffc56f; }
.outcome-strip { border-color: rgba(255, 255, 255, 0.16); background: rgba(255, 255, 255, 0.16); }
.outcome-strip div { background: rgba(255, 255, 255, 0.06); }
.outcome-strip strong { color: #ffc56f; }
.outcome-strip span { color: rgba(255, 255, 255, 0.7); }

.dark-section .mini-cta.dark {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.dark-section .mini-cta.dark p { color: rgba(255, 255, 255, 0.72); }

.cta {
  color: #ffffff;
  background: #0e4f54;
}

.cta h2 { color: #ffffff; }
.cta p { color: rgba(255, 255, 255, 0.75); }
.contact-proof { border-color: rgba(255, 255, 255, 0.16); background: rgba(255, 255, 255, 0.055); }

.contact-form {
  border-color: rgba(255, 255, 255, 0.18);
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(0, 32, 35, 0.18);
}

.contact-form label { color: #3d595b; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  color: #173d40;
  background: #f7f8f6;
  border-color: #cfd9d5;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline-color: rgba(7, 139, 149, 0.3);
  border-color: #078b95;
}

.contact-form .contact-note { color: #637475; }
.site-footer { color: #d9e5e3; background: #083e42; border-color: rgba(255, 255, 255, 0.12); }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-preview { max-width: 680px; padding-inline: 0; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 44px; }
  .flow-step,
  .flow-step:nth-of-type(even) { margin-left: 0; grid-template-columns: 38px 1fr; }
  .flow-status { grid-column: 2; }
}

#pregled .eyebrow { color: var(--accent-dark); }
#pregled .list { margin-top: 16px; }
.thank-you { min-height: 70vh; display: grid; align-items: center; }
