@charset "UTF-8";
/**
 * Global styles
 */
/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300;400;600;700&display=swap");
html {
  font-size: 16px;
}

body {
  font-family: "Titillium Web", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  background-color: #171717;
  margin: 0;
  padding: 0;
}

/* Naslovi */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Linkovi */
a {
  color: #F26224;
  text-decoration: none;
}
a:hover, a:focus {
  color: #F26224;
  text-decoration: underline;
}

/* Form elements */
input,
textarea,
select,
button {
  font-family: inherit;
}

/* Drupal toolbar */
.toolbar {
  font-family: inherit;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
}

/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

h1,
.h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 20px;
}

h2,
.h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  line-height: 1.2;
  font-weight: 600;
}

h3,
.h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

/* =========================
   SITE HEADER NAVBAR
   Desktop + Mobile Layout
   ========================= */
.site-header {
  background: #171717;
  border-bottom: 1px solid #ff6a00;
}

/* NAVBAR BASE */
.navbar {
  min-height: 90px;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
}

/* LOGO */
.navbar-brand {
  flex: 0 0 auto;
  margin-right: 0;
  display: flex;
  align-items: center;
}

.site-logo img {
  max-width: 200px;
  height: auto;
}

/* COLLAPSE WRAPPER */
.navbar-collapse {
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* CENTER MENU */
.navbar-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-center .navbar-nav {
  display: flex;
  gap: 35px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar-center .navbar-nav .nav-link {
  color: #fff;
  transition: color 0.2s ease;
}

.navbar-center .navbar-nav .nav-link:hover,
.navbar-center .navbar-nav .nav-link.is-active,
.navbar-center .navbar-nav .nav-link.active {
  color: #ff6a00;
}

/* CTA RIGHT (DESKTOP) */
.navbar-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.nav-link-cta {
  background: #ff6a00;
  color: #fff;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s ease;
}

.nav-link-cta:hover {
  background: #e85f00;
  color: #fff;
}

/* FORCE BOOTSTRAP WHITE LINKS */
.navbar-dark .navbar-nav .nav-link {
  color: #fff !important;
  opacity: 1;
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 991px) {
  .navbar {
    min-height: auto;
    padding: 10px 0;
    flex-wrap: wrap;
  }
  .navbar-collapse {
    flex-basis: 100%;
    display: block;
  }
  /* MENU LEFT */
  .navbar-center {
    justify-content: flex-start;
  }
  .navbar-center .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
  }
  /* CTA LEFT (IMPORTANT REQUEST) */
  .navbar-cta {
    margin-left: 0;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding-bottom: 15px;
  }
  .nav-link-cta {
    width: auto;
    justify-content: flex-start;
  }
}
/* REGION HELP */
.region-help {
  margin-top: 24px;
  margin-bottom: 32px;
}

.breadcrumb {
  padding: 0;
  margin: 0;
  background: transparent;
  font-size: 1rem;
}
.breadcrumb .breadcrumb-item a {
  color: #fd7e14;
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}
.breadcrumb .breadcrumb-item.active {
  color: #212529;
  font-weight: 600;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #adb5bd;
}

/* ==========================================
   MAIN NAVIGATION (BOOTSTRAP OVERRIDE)
   SaaS / Apple Style - Clean Version
========================================== */
.navbar {
  position: relative;
  /* =========================
     TOP LEVEL LINKS
  ========================= */
}
.navbar .nav-link {
  color: #fff;
  font-weight: 500;
  transition: 0.2s ease;
  position: relative;
}
.navbar .nav-link:hover {
  color: #ff6a00;
}
.navbar {
  /* =========================
     DROPDOWN WRAPPER
     (hover stability fix)
  ========================= */
}
.navbar .dropdown {
  position: relative;
}
.navbar .dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}
.navbar {
  /* =========================
     DROPDOWN MENU PANEL
  ========================= */
}
.navbar .dropdown-menu {
  display: block;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  padding: 12px;
  background: rgba(23, 23, 23, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 999;
}
.navbar {
  /* SHOW ON HOVER */
}
.navbar .dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navbar {
  /* =========================
     DROPDOWN ITEMS
  ========================= */
}
.navbar .dropdown-item {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s ease;
}
.navbar .dropdown-item:hover, .navbar .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.06);
  color: #ff6a00;
}
.navbar {
  /* =========================
     ACTIVE STATE
  ========================= */
}
.navbar .active > .nav-link {
  color: #ff6a00;
}
.navbar {
  /* =========================
     DIVIDER
  ========================= */
}
.navbar .dropdown-divider {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 8px 0;
}
.navbar {
  /* =========================
     REMOVE BOOTSTRAP ARROW
  ========================= */
}
.navbar .dropdown-toggle::after {
  display: none;
}
.navbar {
  /* =========================
     CHEVRON ICON (FIXED)
  ========================= */
  /* target Bootstrap structure safely */
}
.navbar .dropdown .nav-link {
  position: relative;
  padding-right: 22px !important;
  display: inline-flex;
  align-items: center;
}
.navbar .dropdown .nav-link::after {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  line-height: 1;
  color: #fff !important;
  opacity: 0.75;
  display: inline-block;
  pointer-events: none;
  z-index: 2;
  transition: 0.2s ease;
}
.navbar .dropdown:hover .nav-link::after {
  transform: translateY(-50%) rotate(180deg);
  color: #ff6a00 !important;
  opacity: 1;
}

@media (max-width: 991px) {
  .navbar .dropdown {
    position: relative;
    /* BRIDGE FIX - ključ */
  }
  .navbar .dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 20px;
  }
  .navbar .dropdown-menu {
    top: calc(100% + 6px);
    left: 0;
    margin-top: 0;
    transform: translateY(6px);
  }
  .navbar .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.navbar .dropdown-menu .dropdown-item {
  background: transparent !important;
}

.navbar .dropdown-menu .dropdown-item.active {
  background: transparent !important;
  color: #ff6a00 !important;
}

.site-footer {
  background: #171717;
  color: #fff;
  font-size: 14px;
}
.site-footer a {
  color: #ccc;
  text-decoration: none;
}
.site-footer a:hover {
  color: #ff6b2c;
}

/* Top */
.footer-top {
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 30px 0;
}

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

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid #666;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  max-width: 300px;
  height: auto;
}

.footer-tagline {
  text-align: right;
  color: #ddd;
  line-height: 1.6;
}

/* Contact */
.footer-contact {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.contact-item {
  text-align: center;
}
.contact-item i {
  font-size: 52px;
  margin-bottom: 25px;
}
.contact-item h4 {
  margin-bottom: 15px;
  font-size: 30px;
  font-weight: 600;
}
.contact-item p {
  color: #ddd;
  line-height: 1.8;
}

/* Links */
.footer-links {
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 15px 0;
}

.footer-links .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.links-left,
.links-right {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Bottom */
.footer-bottom {
  padding: 15px 0;
}

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

.footer-bottom p {
  margin: 0;
  color: #999;
}

@media (max-width: 991px) {
  .footer-branding {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    text-align: center;
  }
  .footer-social {
    margin: 0 auto;
  }
  .footer-logo {
    font-size: 42px;
  }
  .footer-tagline {
    text-align: center;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-links .container,
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
  .links-left,
  .links-right {
    justify-content: center;
  }
}
ul.pagination {
  justify-content: center;
  margin-bottom: 1.5rem;
}
ul.pagination li.page-item {
  padding: 0;
}
ul.pagination li.page-item a.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #F26224;
  background: transparent;
  border: none;
}

/* CONTENT SECTION */
.content__section {
  padding: 60px 0;
  position: relative;
  overflow: visible;
}
.content__section--dark {
  background: #171717;
  color: #fff;
}
.content__section--light {
  background: #fff;
  color: #111;
}
.content__section--gradient {
  background: linear-gradient(135deg, #171717 0%, #1c1c1c 100%);
  color: #fff;
}

/* SPLIT LAYOUT */
.content-col {
  padding: 20px;
}

.content-col--full {
  text-align: center;
}

.content-col--full .field__title,
.content-col--full .field__subtitle {
  text-align: center;
}

.image-col img {
  width: 100%;
  height: auto;
  display: block;
}

/* HERO SECTION */
.hero__section {
  position: relative;
  padding: 0;
  color: #fff;
}
.hero__section .hero__image {
  position: relative;
}
.hero__section .hero__image img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  display: block;
}
.hero__section .hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.hero__section .hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

/* ==========================================
   BLOG SECTION
========================================== */
.blog-section {
  padding: 60px 0 100px;
  position: relative;
}

.blog-section__header {
  max-width: 900px;
  margin: 0 auto 70px;
}

/* ==========================================
   BLOG CARD
========================================== */
.blog-card {
  height: 100%;
  border: 1px solid rgba(255, 106, 0, 0.7);
  border-radius: 16px;
  padding: 16px;
}

/* ==========================================
   IMAGE
========================================== */
.blog-card__image {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 24px;
}

/* ==========================================
   META
========================================== */
.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
  color: #d8d8d8;
  font-size: 14px;
}

.blog-card__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-card__meta-item i {
  color: #ff6a00;
  font-size: 13px;
}

/* ==========================================
   TITLE
========================================== */
.blog-card__title {
  line-height: 1rem;
  margin-bottom: 16px;
}
.blog-card__title a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
  transition: color 0.3s ease;
}
.blog-card__title a:hover {
  color: #ff6a00;
}

/* ==========================================
   EXCERPT
========================================== */
.blog-card__excerpt {
  margin-bottom: 16px;
}

/* ==========================================
   LINK
========================================== */
.blog-card__link {
  color: #00c8ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}
.blog-card__link:hover {
  color: #fff;
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1199px) {
  .blog-card__title a {
    font-size: 28px;
  }
  .blog-card__image {
    height: 220px;
  }
}
@media (max-width: 991px) {
  .blog-section {
    padding: 80px 0;
  }
  .blog-section__title {
    font-size: 48px;
  }
  .blog-card {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .blog-section {
    padding: 60px 0;
  }
  .blog-section__title {
    font-size: 36px;
  }
  .blog-section__subtitle {
    font-size: 16px;
  }
  .blog-card {
    padding: 20px;
  }
  .blog-card__image {
    height: 220px;
  }
  .blog-card__title a {
    font-size: 16px;
  }
  .blog-card__excerpt {
    font-size: 15px;
  }
}
.faq-section {
  padding: 60px 0;
}
.faq-section__title {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}
.faq-section .faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.faq-section .faq-list li {
  padding: 8px 0;
}
.faq-section .faq-list li:before {
  content: "";
}
.faq-section .faq-list a {
  text-decoration: none;
  color: #ff6a00;
  font-size: 18px;
}
.faq-section .faq-list a:hover {
  color: #fff;
}

/* ==========================================
   TESTIMONIALS SECTION
========================================== */
.testimonial-slider {
  width: 100%;
}

.testimonial-slider.full-width {
  width: 100%;
}

.testimonial-slider {
  position: relative;
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: visible;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.testimonial-slider .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.testimonial-slider .container {
  position: relative;
  z-index: 2;
}
.testimonial-slider .section-subtitle {
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
  font-size: 18px;
  opacity: 0.8;
}
.testimonial-slider h2 {
  color: #fff;
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 60px;
}
.testimonial-slider .carousel-item {
  min-height: 350px;
}
.testimonial-slider .testimonial {
  max-width: 850px;
  margin: auto;
  text-align: center;
  color: #fff;
}
.testimonial-slider .testimonial blockquote {
  font-size: 24px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.testimonial-slider .testimonial .stars {
  margin-bottom: 30px;
}
.testimonial-slider .testimonial .stars i {
  color: #ff9d00;
  margin: 0 4px;
  font-size: 22px;
}
.testimonial-slider .testimonial .avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid rgba(255, 255, 255, 0.2);
}
.testimonial-slider .testimonial h4 {
  font-size: 30px;
  margin-bottom: 5px;
}
.testimonial-slider .testimonial span {
  color: #ff7b00;
  font-size: 18px;
}
.testimonial-slider .carousel-control-prev,
.testimonial-slider .carousel-control-next {
  width: 60px;
}
.testimonial-slider .carousel-control-prev-icon,
.testimonial-slider .carousel-control-next-icon {
  width: 45px;
  height: 45px;
}

/* TYPOGRAPHY */
.field__kicker {
  color: #ff6a2a;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.field__title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
}

.field__subtitle {
  color: #ff6a2a;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 40px;
}

.field__cta {
  margin-top: 30px;
}

.field__cta a {
  display: inline-block;
  background: #ff6a2a;
  color: #fff;
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.field__cta a:hover {
  background: #e65f22;
}

/* LIST (FontAwesome) */
.text-columns ul,
.field__description ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.text-columns li,
.field__description li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.text-columns li:before,
.field__description li:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #00A7D6;
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 1.1rem;
}

/* COLUMNS */
.columns-1 {
  column-count: 1;
}

.columns-2 {
  column-count: 2;
  column-gap: 40px;
}

.columns-3 {
  column-count: 3;
  column-gap: 40px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .blog__section,
  .hero__section,
  .content__section {
    padding: 50px 0;
  }
  .field__title {
    font-size: 38px;
  }
  .columns-2,
  .columns-3 {
    column-count: 1;
  }
}
.image-col,
.hero__image,
.field--name-field-image {
  width: 100%;
}

.image-col img,
.hero__image img,
.field--name-field-image img {
  width: 100% !important;
  max-width: 100%;
  height: auto;
  display: block;
}

.content__section--hero .hero__image img {
  width: 100vw;
  max-width: 100vw;
  height: 60vh;
  object-fit: cover;
}

.hero__image {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* ==========================================
   HERO
========================================== */
.hero {
  color: #fff;
  padding: 40px 0 80px 0;
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__brand {
  color: #ff6a00;
  font-weight: 600;
  margin-bottom: 10px;
}
.hero__title {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero__title span {
  color: #ff6a00;
}
.hero__subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 500px;
}
.hero__media {
  display: flex;
  justify-content: center;
}
.hero__media img {
  max-width: 100%;
  height: auto;
  display: block;
}
.hero {
  /* ==========================================
     MOBILE
  ========================================== */
}
@media (max-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero__title {
    font-size: 32px;
  }
  .hero__description {
    max-width: 100%;
    margin: 0 auto 30px;
  }
  .hero__media {
    order: -1;
  }
}

/* ==========================================
   BUTTONS
========================================== */
.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.btn--primary {
  background: #ff6a00;
  color: #fff;
  transition: background 0.3s ease;
}
/* ==========================================
   FEATURES
========================================== */
.features {
  background: #0e0e0e;
  padding: 60px 0;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   FEATURE CARD
========================================== */
.feature-card {
  background: #161616;
  border: 1px solid #2a2a2a;
  padding: 25px;
  border-radius: 12px;
  color: #fff;
}
.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
}

/* ==========================================
   OVERVIEW
========================================== */
.overview__toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  outline: none;
  box-shadow: none;
}
.overview__toggle:focus, .overview__toggle:active, .overview__toggle:focus-visible {
  outline: none;
  box-shadow: none;
}
.overview__icon {
  width: 42px;
  height: 42px;
  border: 2px solid #ff6a00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6a00;
  font-size: 18px;
}
.overview__icon .fa-minus {
  display: none;
}
.overview__toggle.collapsed .fa-plus {
  display: block;
}
.overview__toggle.collapsed .fa-minus {
  display: none;
}
.overview__toggle:not(.collapsed) .fa-plus {
  display: none;
}
.overview__toggle:not(.collapsed) .fa-minus {
  display: block;
}

/* ==========================================
   REQUIREMENTS
========================================== */
.requirements__toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  outline: none;
  box-shadow: none;
}
.requirements__toggle:focus, .requirements__toggle:active, .requirements__toggle:focus-visible {
  outline: none;
  box-shadow: none;
}
.requirements__icon {
  width: 42px;
  height: 42px;
  border: 2px solid #ff6a00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6a00;
  font-size: 18px;
}
.requirements__icon .fa-minus {
  display: none;
}
.requirements__toggle.collapsed .fa-plus {
  display: block;
}
.requirements__toggle.collapsed .fa-minus {
  display: none;
}
.requirements__toggle:not(.collapsed) .fa-plus {
  display: none;
}
.requirements__toggle:not(.collapsed) .fa-minus {
  display: block;
}

/* ==========================================
   WHY SECTION
========================================== */
.why {
  padding: 60px 0 40px 0;
  background: #171717;
  color: #fff;
}
.why .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.why {
  /* ==========================================
     HEADER
  ========================================== */
}
.why__heading {
  text-align: center;
  margin-bottom: 80px;
}
.why__title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 20px;
}
.why__title span {
  color: #ff6a00;
}
.why__subtitle {
  font-size: 18px;
  opacity: 0.75;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}
.why {
  /* ==========================================
     GRID (FIXED)
  ========================================== */
}
.why__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.why {
  /* wrapper column (3 per row) */
}
.why__col {
  flex: 0 0 calc(33.333% - 30px);
  max-width: calc(33.333% - 30px);
}
.why {
  /* ==========================================
     CARD
  ========================================== */
}
.why__card {
  height: 100%;
  background: #1e1e1e;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  padding: 28px 28px 28px 60px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease;
}
.why {
  /* ==========================================
     ICON
  ========================================== */
}
.why__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ff6a00;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.why__icon i {
  font-size: 24px;
  color: #fff;
}
.why {
  /* ==========================================
     TEXT
  ========================================== */
}
.why__card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.why__card-text {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 992px) {
  .why__title {
    font-size: 48px;
  }
  .why__col {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
  }
}
@media (max-width: 576px) {
  .why__title {
    font-size: 36px;
  }
  .why__subtitle {
    font-size: 16px;
  }
  .why__col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* LIST (FontAwesome) */
.hero__description ul,
article ul,
section.overview ul,
section.requirements ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.hero__description ul li,
article ul li,
section.overview ul li,
section.requirements ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
}

.hero__description ul li:before,
article ul li:before,
section.overview ul li:before,
section.requirements ul li:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #00A7D6;
  position: absolute;
  left: 0;
}

iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: 0;
  display: block;
}

.hero__description ul li {
  margin-bottom: 0.75rem;
}

.hero .btn {
  margin-top: 0.75rem;
}

/* ==========================================
   HERO
========================================== */
.hero {
  padding: 0px 0px 60px 0;
  /* MAIN LAYOUT */
}
.hero__container {
  max-width: 1200px;
  margin: 0 auto;
}
.hero__content-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}
.hero {
  /* CONTENT - ŠIRI */
}
.hero__content {
  flex: 1.6;
  min-width: 0;
}
.hero {
  /* MEDIA - SUŽEN */
}
.hero__media {
  flex: 0.9;
  max-width: 420px;
}
.hero__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .hero__content-wrapper {
    flex-direction: column;
    gap: 35px;
  }
  .hero__media {
    max-width: 100%;
    flex: none;
  }
}
.hero {
  /* ==========================================
     CONTENT
  ========================================== */
}
.hero__content {
  flex: 1;
  min-width: 0;
}
.hero__brand {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
  margin-bottom: 10px;
}
.hero__title {
  font-weight: 700;
  margin-bottom: 20px;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: #cfcfcf;
  margin-bottom: 20px;
}
.hero {
  /* ==========================================
     DESCRIPTION + PRICES ROW
  ========================================== */
}
.hero__row {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .hero__row {
    flex-direction: column;
    gap: 30px;
  }
}
.hero {
  /* DESCRIPTION */
}
.hero__description {
  flex: 1;
  min-width: 0;
}
.hero__description ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero__description li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.hero {
  /* ==========================================
     PRICES
  ========================================== */
}
.hero__prices {
  width: 280px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .hero__prices {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.hero__price {
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .hero__price {
    margin-bottom: 0;
  }
}
.hero__price-type {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #b7b7b7;
  margin-bottom: 15px;
  font-weight: 600;
}
.hero__price-old {
  font-size: clamp(1.2rem, 2vw, 2rem);
  color: #9b9b9b;
  text-decoration: line-through;
  margin-bottom: 4px;
}
.hero__price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.hero__price-new {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero__price-discount {
  background: #2d67d2;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}
.hero__price-description {
  color: #d4d4d4;
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.hero__price-button .btn {
  width: 100%;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
@media (min-width: 992px) {
  .hero__price-button .btn {
    width: 170px;
  }
}
.hero {
  /* ==========================================
     IMAGE
  ========================================== */
}
.hero__media {
  flex: 1;
}
.hero__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* ==========================================
     LOGO
  ========================================== */
.logos {
  padding: 40px 0 20px 0;
}
.logos__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.logos__item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 120px;
}
.logos__item img {
  max-width: 140px;
  width: 100%;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.logos__item img:hover {
  opacity: 1;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .logos__inner {
    justify-content: center;
    gap: 20px;
  }
  .logos__item {
    flex: 0 0 33.33%;
  }
}

.product-card__image {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: contain;
  border-radius: 16px;
  margin-bottom: 24px;
}

.blog-hero__image {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-radius: 24px;
  overflow: hidden;
}
.blog-hero__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-content p {
  margin-bottom: 1.5rem;
}
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
  margin: 3rem 0 1rem;
  font-weight: 700;
  line-height: 1.2;
}
.blog-content h2 {
  font-size: 2rem;
}
.blog-content h3 {
  font-size: 1.6rem;
}
.blog-content h4 {
  font-size: 1.3rem;
}
.blog-content {
  /* LIST (FontAwesome) */
}
.blog-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.blog-content ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
}
.blog-content ul li:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #00A7D6;
  position: absolute;
  left: 0;
}
.blog-content a {
  color: var(--bs-primary);
  text-decoration: none;
}
.blog-content a:hover {
  text-decoration: underline;
}
.blog-content img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 2rem auto;
}
.blog-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem;
  border-left: 4px solid var(--bs-primary);
  background: #f8f9fa;
  font-style: italic;
}
.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}
.blog-content th,
.blog-content td {
  padding: 0.75rem 1rem;
  border: 1px solid #e5e5e5;
}
.blog-content code {
  background: #f5f5f5;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
}
.blog-content pre {
  padding: 1.5rem;
  border-radius: 12px;
  overflow-x: auto;
  background: #1f1f1f;
}
.blog-content pre code {
  background: transparent;
  padding: 0;
  color: #fff;
}
/*# sourceMappingURL=style.css.map */
