/* style.css */

:root {
  --blue: #0b6cff;
  --blue-dark: #064fc4;
  --text: #071426;
  --muted: #617085;
  --bg: #f6f9fc;
  --card: #ffffff;
  --border: #dce6f2;
  --dark: #050b12;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav-wrap {
  position: sticky;
  top: 14px;
  z-index: 50;
  width: min(1180px, calc(100% - 40px));
  margin: 14px auto 0;
  transition:
    background .25s ease,
    box-shadow .25s ease,
    border-color .25s ease,
    backdrop-filter .25s ease;
}

/* kad si na vrhu hero-a */
.nav-wrap:not(.scrolled) {
  background: rgba(5, 11, 18, 0.14);
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
  box-shadow: none;
  border-radius: 14px;
}

/* kad krene scroll */
.nav-wrap.scrolled {
  background: rgba(5, 11, 18, 0.94);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: none;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  border-radius: 14px;
}

.nav {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 22px;
  border-radius: 22px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.88);
}

.nav-links a {
  transition: color .2s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
}

.nav-pill {
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.06);
  color: white;
  transition: border-color .2s ease, background .2s ease;
}

.nav-pill:hover {
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.1);
}

.hero {
  min-height: 760px;
  color: white;
  background:
    linear-gradient(90deg, rgba(3, 9, 17, .96) 0%, rgba(3, 9, 17, .84) 42%, rgba(3, 9, 17, .30) 100%),
    url("assets/hero-wall.png") center right / cover no-repeat;
  position: relative;
  margin-top: -100px;
padding-top: 100px;
  
}

.hero-content {
  padding-top: 92px;
  max-width: 650px;
}

h1 {
  font-size: clamp(46px, 7vw, 78px);
  line-height: .98;
  margin: 0 0 26px;
  letter-spacing: -0.055em;
}

.hero p {
  font-size: 20px;
  line-height: 1.65;
  color: rgba(255,255,255,.82);
  margin: 0 0 34px;
  max-width: 610px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 14px;
  padding: 14px 24px;
  font-weight: 800;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 14px 32px rgba(11,108,255,.34);
}

.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 18px 40px rgba(11,108,255,.42);
}

.btn-secondary {
  color: white;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.1);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 58px;
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 14px;
  max-width: 780px;
}

.trust-chip {
  min-height: 96px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.055);
  border-radius: 18px;
  padding: 16px;
  color: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.trust-chip img {
  width: 30px;
  height: 30px;
  display: block;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 10px rgba(11,108,255,.42));
}

.trust-chip strong {
  display: block;
  font-size: 14px;
  line-height: 1.25;
  margin-bottom: 5px;
}

.trust-chip span {
  display: block;
  font-size: 12.5px;
  line-height: 1.35;
  color: rgba(255,255,255,.64);
}

section {
  padding: 84px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  font-size: 40px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.section-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 17px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(9, 25, 44, .06);
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eef6ff;
  font-size: 22px;
  margin-bottom: 18px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

.why {
  background: white;
}

.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  min-height: 230px;
}

.final-cta {
  padding: 76px 0;
  background:
    linear-gradient(90deg, rgba(3, 9, 17, .94), rgba(3, 9, 17, .78)),
    url("assets/hero-wall.png") center / cover no-repeat;
  color: white;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.cta-box h2 {
  margin: 0 0 14px;
  font-size: 42px;
  letter-spacing: -0.04em;
}

.cta-box p {
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: 18px;
  line-height: 1.6;
  max-width: 680px;
}

footer {
  background: #020812;
  color: rgba(255,255,255,.75);
  padding: 34px 0;
  font-size: 14px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 80px;
    background-position: center;
  }

  .hero-content {
    padding-top: 82px;
  }

  .trust,
  .grid-4,
  .pricing-row {
    grid-template-columns: 1fr;
  }

  .section-head,
  .cta-box {
    display: block;
  }

  .section-head h2 {
    margin-bottom: 16px;
  }

  .cta-box .btn {
    margin-top: 24px;
  }
}

@media (max-width: 560px) {
  .container,
  .nav-wrap {
    width: min(100% - 24px, 1180px);
  }

  .nav {
    height: 74px;
    padding: 0 14px;
  }

  .logo img {
    height: 38px;
  }

  .nav-actions {
    gap: 10px;
    font-size: 13px;
  }

  .nav-pill {
    padding: 9px 12px;
  }

  h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  section {
    padding: 58px 0;
  }

  .section-head h2 {
    font-size: 32px;
  }
}
/* =========================================
   FOR WHO SECTION
========================================= */

.for-who {
  background: #f8fbff;
}

.for-who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.for-who-tile {
  background: #ffffff;
  border: 1px solid #dce6f2;
  border-radius: 24px;
  padding: 38px;
  box-shadow: 0 18px 40px rgba(9, 25, 44, 0.06);
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.for-who-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(9, 25, 44, 0.08);
  border-color: #cdddf1;
}

.for-who-badge {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #eef6ff;
  margin-bottom: 24px;
}

.for-who-badge img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.for-who-tile h3 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #071426;
}

.for-who-tile p {
  margin: 0;
  max-width: 420px;
  font-size: 16px;
  line-height: 1.7;
  color: #617085;
}

/* responsive */
@media (max-width: 960px) {
  .for-who-grid {
    grid-template-columns: 1fr;
  }

  .for-who-tile {
    padding: 30px;
  }
}