/* ----------------------------------------------------- */
/* GOOGLE FONTS */
/* ----------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');


/* ----------------------------------------------------- */
/* RESET */
/* ----------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #0d111c;
  font-family: 'Inter', sans-serif;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  display: block;
}


/* ----------------------------------------------------- */
/* CONTAINERS */
/* ----------------------------------------------------- */
.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.page-section {
  padding: 70px 0;
}

.page-title {
  font-size: 42px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.page-subtitle {
  color: #b9c8ff;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 18px;
}


/* ----------------------------------------------------- */
/* HEADER */
/* ----------------------------------------------------- */
.header {
  width: 100%;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,17,28,0.82);
  backdrop-filter: blur(14px);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 32px;
}

.logo span {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 15px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  color: #d5dcff;
  font-size: 15px;
  text-decoration: none;
  transition: 0.25s;
}

.nav a:hover,
.nav a.active {
  color: #4f8cff;
}


/* ----------------------------------------------------- */
/* HAMBURGER */
/* ----------------------------------------------------- */
.hamburger {
  width: 30px;
  height: 22px;
  flex-shrink: 0;
  display: none; /* ← BITNO: ne prikazuje se na desktopu */
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: #d5dcff;
  border-radius: 2px;
  transition: 0.3s;
}


/* ----------------------------------------------------- */
/* MOBILE NAV */
/* ----------------------------------------------------- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: #0e1422;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-left: 30px;
  transition: 0.3s;
  z-index: 999;
}

.mobile-nav a {
  color: #d5dcff;
  font-size: 18px;
  text-decoration: none;
}

.mobile-nav.active {
  right: 0;
}


/* ----------------------------------------------------- */
/* HERO */
/* ----------------------------------------------------- */
.hero {
  padding-top: 20px;
}

.hero-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px;
  border-radius: 28px;
  background: rgba(17,23,38,0.55);
  box-shadow:
    0 0 32px rgba(79, 140, 255, 0.28),
    0 0 14px rgba(79, 140, 255, 0.25) inset;
  border: 1px solid rgba(79,140,255,0.35);
  text-align: center;
}

.hero-title {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 22px;
}

.hero-subtitle {
  margin: 25px 0;
  color: #b9c8ff;
  font-size: 18px;
}

/* FULL-WIDTH VIDEO */
.hero-video-box {
  width: 100%;
  margin: 0 auto;
}

.video-frame {
  width: 50%;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(79,140,255,0.45);
  box-shadow: 0 0 18px rgba(79,140,255,0.35);
}

.video-frame video {
  width: 100%;
  height: auto;
  display: block;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}


/* ----------------------------------------------------- */
/* BUTTONS */
/* ----------------------------------------------------- */
.btn-primary {
  background: #4f8cff;
  padding: 12px 28px;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 18px rgba(79,140,255,0.55);
  transition: 0.25s;
}

.btn-primary:hover {
  background: #5f9dff;
}

.btn-secondary {
  padding: 12px 28px;
  border-radius: 12px;
  border: 1px solid #4f8cff;
  color: #4f8cff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s;
}

.btn-secondary:hover {
  background: rgba(79,140,255,0.18);
}


/* ----------------------------------------------------- */
/* STARS / TRUST */
/* ----------------------------------------------------- */
.trust-content {
  text-align: center;
  margin-top: 40px;
}

.stars {
  font-size: 32px;
  color: #ffd76f;
}

.trust-text {
  font-size: 18px;
  color: #b9c8ff;
  margin-top: 8px;
}


/* ----------------------------------------------------- */
/* HERO WRAPPERS GLOBAL */
/* ----------------------------------------------------- */
.hero-wrapper {
  margin-bottom: 40px;
}

.pill {
  background: rgba(79,140,255,0.15);
  padding: 10px 16px;
  border-radius: 18px;
  color: #d0dcff;
  border: 1px solid rgba(79,140,255,0.25);
}


/* ----------------------------------------------------- */
/* FAQ – ACCORDION */
/* ----------------------------------------------------- */
.faq-item {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  color: #4f8cff;
  font-size: 22px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: #b9c8ff;
}

.faq-answer-inner {
  padding: 10px 0;
}


/* ----------------------------------------------------- */
/* FORM (KONTAKT) */
/* ----------------------------------------------------- */
form input, form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(79,140,255,0.35);
  background: rgba(18,25,39,0.65);
  color: #fff;
  font-size: 15px;
}

form textarea {
  min-height: 120px;
}

.form-button {
  margin-top: 20px;
  width: 100%;
  padding: 14px 18px;
  background: #4f8cff;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
}


/* MAP */
.map-box {
  width: 100%;
  height: 360px;
  border-radius: 18px;
  border: 1px solid rgba(79,140,255,0.40);
  overflow: hidden;
}


/* ----------------------------------------------------- */
/* FOOTER */
/* ----------------------------------------------------- */
.footer {
  margin-top: 60px;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 8px;
}

.footer-col a {
  color: #b9c8ff;
  text-decoration: none;
}

.footer-cta {
  padding: 10px 20px;
  background: #4f8cff;
  color: #fff !important;
  border-radius: 10px;
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  color: #6f7baa;
  margin-top: 25px;
}


/* ----------------------------------------------------- */
/* RESPONSIVE */
/* ----------------------------------------------------- */
@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .hamburger {
    display: flex; /* ← vidljiv samo ispod 900px */
  }
}

@media (max-width: 600px) {

  .hero-title {
    font-size: 28px;
  }

  .page-title {
    font-size: 32px;
  }

  .hero-wrapper {
    padding: 28px 20px;
  }

  .footer-wrapper {
    flex-direction: column;
  }
}
