body {
margin: 0;
font-family: 'Outfit', Tahoma, Geneva, Verdana, sans-serif;
background-color: #e6e1f5;
color: #3c315b;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 40px;
background-color: #e6e1f5;
}
.logo {
display: flex;
align-items: center;
font-weight: 700;
font-size: 20px;
}
.logo img {
width: 24px;
height: 24px;
margin-right: 8px;
}
.sign-in {
  text-decoration: none;
  background-color: #a78bfa; /* jaka zelena */
  color: #3c315b;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  font-family: 'Outfit', sans-serif;
  transition: all 0.2s ease;
  box-shadow: 
    0 3px #625099, /* zelena senka ispod */
    0 3px 8px rgba(0, 0, 0, 0.3); /* tamna prava senka */
}
.sign-in:hover {
  top: 2px; /* pomeri ga malo dole */
  box-shadow: 
    0 2px #625099, /* zelena bliža */
    0 2px 4px rgba(0, 0, 0, 0.4); /* manja tamna senka */
}
.hero {
text-align: center;
padding: 120px 20px;
max-width: 800px;
margin: 0 auto;
position: relative;
}
.tagline-wrapper {
display: inline-block;
position: relative;
margin-bottom: 20px;
padding: 8px 24px;
}
.tagline-text {
font-size: 20px;
font-weight: 600;
color: #a78bfa;
letter-spacing: 2px;
font-family: 'Outfit', sans-serif;
}
.corner {
width: 9px;
height: 9px;
border-color: rgba(50, 52, 59, 0.15);
position: absolute;
will-change: transform;
backface-visibility: hidden;
transform: translateZ(0);
}
.tl {
top: 0;
left: 0;
border-top: 1px solid #565659;
border-left: 1px solid #565659;
border-top-left-radius: 8px;
}
.tr {
top: 0;
right: 0;
border-top: 1px solid #565659;
border-right: 1px solid #565659;
border-top-right-radius: 8px;
}
.bl {
bottom: 0;
left: 0;
border-bottom: 1px solid #565659;
border-left: 1px solid #565659;
border-bottom-left-radius: 8px;
}
.br {
bottom: 0;
right: 0;
border-bottom: 1px solid #565659;
border-right: 1px solid #565659;
border-bottom-right-radius: 8px;
}
.hero h1 {
font-size: 40px;
font-weight: 700;
margin: 0 0 20px;
}
.hero p {
font-size: 16px;
line-height: 1.6;
color: #332952;
margin-bottom: 40px;
}
.buttons button {
padding: 12px 24px;
font-size: 16px;
font-weight: 400;
border-radius: 8px;
border: none;
cursor: pointer;
margin: 0 8px;
font-family: 'Outfit', Tahoma, Geneva, Verdana, sans-serif;
}
.btn-primary {
background-color: #a78bfa;
color: #000;
padding: 12px 24px;
font-size: 16px;
font-weight: 400;
border-radius: 8px;
border: none;
cursor: pointer;
margin: 0 8px;
font-family: 'Outfit', Tahoma, Geneva, Verdana, sans-serif;
text-decoration: none;
}
.btn-secondary {
background-color: #fff;
color: #000;
padding: 12px 24px;
font-size: 16px;
font-weight: 400;
border-radius: 8px;
border: none;
cursor: pointer;
margin: 0 8px;
font-family: 'Outfit', Tahoma, Geneva, Verdana, sans-serif;
text-decoration: none;
}
/* sekcija za guide */
.guide-section {
  width: auto;
  margin: 50px 0;
  padding-left: 50px;
  position: relative;
  background-image: url('https://i.imgur.com/zLtGLM5.png');
  background-repeat: no-repeat;
  background-position: right center; /* LEPI na desno */
  background-size: auto 100%; /* visina 100%, širina auto */
}

.guide-subtitle {
  color: #a78bfa;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.guide-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}

.guide-timeline {
  position: relative;
  padding-left: 50px;
}

.guide-line {
  position: absolute;
  top: 0;
  left: 24px;
  width: 2px;
  height: 0;
  background: #a78bfa;
  transition: height 1s ease;
}

.guide-step {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  align-items: flex-start;
}

.guide-circle {
  width: 20px;
  height: 20px;
  background: transparent;
  border: 3px solid #a78bfa;
  border-radius: 50%;
  position: absolute;
  left: -6px;
  top: 0;
  transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.guide-circle.active {
  background: #a78bfa;
  border-color: white;
  box-shadow: 0 0 10px #a78bfa, 0 0 20px #a78bfa;
}

.guide-content {
  margin-left: 40px;
}

.guide-content h2 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
}

.guide-content p {
  max-width: 400px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
}
@media (max-width: 1200px) {
  .guide-section {
    background-image: none;
    padding: 15px;
  }
}
/* KRAJ sekcija za guide */
.benefits-section {
  text-align: center;
  padding: 40px 20px 30px 20px;
}

.benefits-title {
  font-size: 32px;
  font-weight: 800;
}

.highlight {
  color: #b84fff;
}

.benefits-description {
  margin-top: 15px;
  font-size: 18px;
  color: #55555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Toggle switch */
.toggle-switch-container {
  margin-bottom: 40px;
  margin-top: 20px;
}

.toggle-switch {
  position: relative;
  width: 140px;
  height: 50px;
}

.toggle-switch input {
  display: none;
}

.switch-label {
  display: block;
  width: 100%;
  height: 60%;
  background: #1f1f2e;
  border: 2px solid #b84fff;
  border-radius: 30px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.switch-inner {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.3s ease;
}

.switch-option {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #cfcde7;
  font-size: 16px;
}

.switch-slider {
  position: absolute;
  width: 20%;
  height: 100%;
  background: #b84fff;
  top: 0;
  left: 0;
  border-radius: 30px;
  transition: all 0.3s ease;
}

/* Kada je checked */
.toggle-switch input:checked + .switch-label .switch-inner {
  transform: translateX(-50%);
}

.toggle-switch input:checked + .switch-label .switch-slider {
  left: 80%;
}

/* Benefits flow */
.benefits-flow {
  display: flex;
  align-items: center;
  gap: 30px;
}

.flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-box {
  width: 90px;
  height: 90px;
  background: #cabeed;
  border-radius: 12px;
  border: 3px solid #b84fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Ako je slika veća */
  box-shadow: inset 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.flow-text {
  margin-top: 8px;
  font-size: 14px;
  color: #cfcde7;
}

.arrow svg {
  display: block;
}

.icon-box img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  display: block;
  margin: auto;
  padding: 10px;
}
.custom-footer {
  background-color: #d1c7ed;
  padding: 60px 20px 40px;
  text-align: center;
  font-family: 'Outfit', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-links {
  margin-bottom: 40px;
}

.footer-links a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 16px;
}

.crypto-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.crypto-logos img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.crypto-logos img:hover {
  transform: scale(1.1);
}

.floating-coin {
  position: absolute;
  width: 60px; /* prilagodi ako želiš veću/manju sliku */
  animation: floatUpDown 3s ease-in-out infinite;
}

.coin1 {
  top: 20px;
  left: 30px;
  animation-delay: 0.5s;
  animation: floatUpDown 4s ease-in-out infinite;
}

.coin2 {
  bottom: 20px;
  right: 30px;
  animation: floatUpDown 4s ease-in-out infinite;
}

.coin3 {
  right: 20px;
  bottom: 30px;
  transform: scale(1.2);
  animation: floatUpDown 4s ease-in-out infinite;
}

/* Animacija gore-dole */
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.why-us-section {
  padding: 60px 20px;
  margin-bottom: 50px;
}

.why-us-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.why-us-card {
  background-color: #d1c7ed;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  width: 280px;
  max-height: 150px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.why-us-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 0px;
}

.why-us-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
  margin-top: 5px;
  color: #333;
}

.why-us-card p {
  font-size: 14px;
  color: #555;
}
