.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.btn:hover::before {
  width: 100%;
}
.btn.btn-primary {
  background: #e85a10;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(232, 90, 16, 0.35);
}
.btn.btn-primary:hover {
  background: #cf4905;
  box-shadow: 0 6px 22px rgba(232, 90, 16, 0.5);
  transform: translateY(-2px);
  color: #ffffff;
}
.btn.btn-primary:active {
  background: #b83f04;
  transform: translateY(0);
}
.btn.btn-secondary {
  background: rgba(26, 26, 26, 0.05);
  color: #1a1a1a;
  border: 1px solid #e2e8f0;
  backdrop-filter: blur(5px);
  font-weight: 700;
}
.btn.btn-secondary:hover {
  background: rgba(26, 26, 26, 0.1);
  border-color: #cbd5e1;
  color: #e85a10;
  transform: translateY(-2px);
}
.btn.btn-secondary:active {
  transform: translateY(0);
}
.btn.btn-iveco {
  background: #003d79;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 61, 121, 0.3);
}
.btn.btn-iveco:hover {
  background: #002d59;
  box-shadow: 0 6px 20px rgba(0, 61, 121, 0.45);
  transform: translateY(-2px);
  color: #ffffff;
}
.btn.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.75rem;
  border-radius: 6px;
}

.badge-pill, .ui-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1;
}
.badge-pill.badge-sets, .ui-badge.badge-sets {
  background: #e85a10;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(232, 90, 16, 0.3);
}
.badge-pill.badge-iveco, .ui-badge.badge-iveco {
  background: #003d79;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 61, 121, 0.3);
}
.badge-pill.badge-dark, .ui-badge.badge-dark {
  background: #1a1a1a;
  color: #ffffff;
}
.badge-pill.badge-outline, .ui-badge.badge-outline {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.callout-box {
  background: #f8fafc;
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #e85a10;
  color: #2d3748;
}
.callout-box.callout-iveco {
  border-left-color: #003d79;
  background: #f8fafc;
}
.callout-box.callout-sets {
  border-left-color: #e85a10;
}
.callout-box h4, .callout-box h5, .callout-box .callout-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-top: 0;
  margin-bottom: 0.4rem;
}
.callout-box p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: #2d3748;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2d3748;
  line-height: 1.6;
}
.check-list li .check-icon, .check-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: #e85a10;
}
.check-list.check-list-iveco li .check-icon, .check-list.check-list-iveco li svg {
  color: #003d79;
}

.glass-form {
  background: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 30px 0 rgba(26, 26, 26, 0.04);
  padding: 1.25rem;
  border-radius: 16px;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 576px) {
  .glass-form {
    padding: 2rem;
  }
}

.form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.25rem;
  position: relative;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #4a5568;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group label span.required {
  color: #e53e3e;
}

.form-control {
  width: 100%;
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: #2d3748;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}
.form-control:focus {
  outline: none;
  border-color: #e85a10;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 10px rgba(0, 180, 216, 0.2);
}
.form-control::placeholder {
  color: #4a5568;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  display: block;
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a0aec0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
select.form-control option {
  background: #ffffff;
  color: #2d3748;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin: 1.5rem 0;
  cursor: pointer;
  user-select: none;
}
.form-check input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-top: 2px;
}
.form-check input[type=checkbox]:checked {
  background: #e85a10;
  border-color: #e85a10;
}
.form-check input[type=checkbox]:checked::after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}
.form-check input[type=checkbox]:focus {
  outline: none;
  border-color: #e85a10;
}
.form-check .form-check-label {
  font-size: 0.75rem;
  color: #4a5568;
  line-height: 1.4;
}
.form-check .form-check-label a {
  color: #e85a10;
  text-decoration: none;
}
.form-check .form-check-label a:hover {
  text-decoration: underline;
}

.alert {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-left: 4px solid transparent;
}
.alert.alert-success {
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
  border-left-color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.2);
}
.alert.alert-danger {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border-left-color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.2);
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 576px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .brand-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.brand-card {
  background: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 30px 0 rgba(26, 26, 26, 0.04);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.brand-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #e85a10, transparent);
  transform: scaleX(0);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.brand-card:hover {
  transform: translateY(-8px);
  border-color: #cbd5e1;
  box-shadow: 0 12px 40px rgba(0, 180, 216, 0.15);
}
.brand-card:hover::before {
  transform: scaleX(1);
}
.brand-card:hover .brand-logo-img {
  transform: scale(1.05);
  filter: grayscale(0) drop-shadow(0 0 8px rgba(0, 180, 216, 0.4));
}
.brand-card.brand-card-iveco::before {
  background: linear-gradient(90deg, transparent, #003d79, transparent);
}
.brand-card.brand-card-iveco:hover {
  box-shadow: 0 12px 40px rgba(0, 61, 121, 0.2);
}
.brand-card.brand-card-iveco:hover .brand-logo-img {
  filter: grayscale(0) drop-shadow(0 0 8px rgba(0, 61, 121, 0.45));
}
.brand-card.brand-card-iveco:hover .btn.btn-secondary {
  color: #003d79;
  border-color: #bcd8f5;
}
.brand-card .brand-logo-container {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.brand-card .brand-logo-img {
  max-height: 45px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(0.2) brightness(0.9);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.brand-card .brand-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}
.brand-card .brand-desc {
  font-size: 0.8rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.brands-carousel-section {
  padding: 2.5rem 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  background: rgba(15, 23, 42, 0.02);
  overflow: hidden;
  position: relative;
}

.brands-carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.brands-marquee {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 768px) {
  .brands-marquee {
    justify-content: center;
  }
}
.brands-marquee .marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  opacity: 0.35;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.brands-marquee .marquee-item:hover {
  opacity: 0.85;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}
.brands-marquee .marquee-item img {
  max-height: 28px;
  max-width: 120px;
  object-fit: contain;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(150%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 768px) {
  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    left: auto;
    max-width: 450px;
  }
}
.cookie-banner .cookie-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}
.cookie-banner .cookie-content p {
  font-size: 0.85rem;
  color: #2d3748;
  margin: 0;
  line-height: 1.5;
}
.cookie-banner .cookie-content p a {
  color: #e85a10;
  text-decoration: underline;
  font-weight: 600;
}
.cookie-banner .cookie-actions {
  display: flex;
  justify-content: flex-end;
}
.cookie-banner .cookie-actions .btn {
  white-space: nowrap;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #e2e8f0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}
.site-header .header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .logo-area {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
}
.site-header .logo-area .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-header .logo-area .logo-link .site-logo {
  height: 38px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  display: block;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) {
  .site-header .logo-area .logo-link .site-logo {
    height: 44px;
  }
}
.site-header .logo-area .logo-link .site-logo:hover {
  transform: scale(1.02);
}
.site-header .logo-area .logo-link .logo-title {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #1a1a1a;
}
.site-header .logo-area .logo-link .logo-title span {
  color: #e85a10;
}
.site-header .logo-area .logo-link .logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #4a5568;
  margin-top: -2px;
}
.site-header .main-nav {
  display: none;
  margin-right: 1rem;
}
@media (min-width: 992px) {
  .site-header .main-nav {
    display: block;
  }
}
.site-header .main-nav .nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}
@media (max-width: 1350px) {
  .site-header .main-nav .nav-list {
    gap: 1rem;
  }
}
@media (max-width: 1100px) {
  .site-header .main-nav .nav-list {
    gap: 0.6rem;
  }
}
.site-header .main-nav .nav-item {
  position: relative;
}
.site-header .main-nav .nav-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-header .main-nav .nav-link {
  color: #2d3748;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.5rem 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
@media (max-width: 1250px) {
  .site-header .main-nav .nav-link {
    font-size: 0.8rem;
  }
}
@media (max-width: 1050px) {
  .site-header .main-nav .nav-link {
    font-size: 0.75rem;
    letter-spacing: 0.2px;
  }
}
.site-header .main-nav .nav-link:hover, .site-header .main-nav .nav-link.active {
  color: #e85a10;
}
.site-header .main-nav .nav-link svg {
  width: 10px;
  height: 10px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.site-header .main-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  border-radius: 8px;
  padding: 0.8rem;
  list-style: none;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 30px 0 rgba(26, 26, 26, 0.04);
}
.site-header .main-nav .dropdown-menu li {
  margin-bottom: 0.3rem;
}
.site-header .main-nav .dropdown-menu li:last-child {
  margin-bottom: 0;
}
.site-header .main-nav .dropdown-menu .dropdown-link {
  display: block;
  color: #2d3748;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header .main-nav .dropdown-menu .dropdown-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #e85a10;
  padding-left: 1.2rem;
}
.site-header .header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-header .header-actions .phone-contact {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
}
@media (min-width: 768px) {
  .site-header .header-actions .phone-contact {
    display: flex;
  }
}
.site-header .header-actions .phone-contact .phone-label {
  font-size: 0.65rem;
  color: #4a5568;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.site-header .header-actions .phone-contact .phone-number {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header .header-actions .phone-contact .phone-number:hover {
  color: #e85a10;
}
.site-header .header-actions .cta-btn-group {
  display: none;
  gap: 0.8rem;
}
@media (min-width: 1300px) {
  .site-header .header-actions .cta-btn-group {
    display: flex;
  }
}
.site-header .mobile-nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  z-index: 1100;
}
@media (min-width: 992px) {
  .site-header .mobile-nav-toggle {
    display: none;
  }
}
.site-header .mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #1a1a1a;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header .mobile-nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.site-header .mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.site-header .mobile-nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid #e2e8f0;
  z-index: 999;
  padding: 8rem 2rem 2rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu .mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.mobile-menu .mobile-nav-list .mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.8rem;
}
.mobile-menu .mobile-nav-list .mobile-nav-link {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu .mobile-nav-list .mobile-nav-link:hover {
  color: #e85a10;
}
.mobile-menu .mobile-nav-list .mobile-submenu {
  list-style: none;
  padding: 0.5rem 0 0 1rem;
  margin: 0;
  display: none;
  flex-direction: column;
  gap: 0.6rem;
}
.mobile-menu .mobile-nav-list .mobile-submenu.active {
  display: flex;
}
.mobile-menu .mobile-nav-list .mobile-submenu .mobile-submenu-link {
  color: #4a5568;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.mobile-menu .mobile-nav-list .mobile-submenu .mobile-submenu-link:hover {
  color: #e85a10;
}
.mobile-menu .mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu .mobile-menu-footer .mobile-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
}
.mobile-menu .mobile-menu-footer .mobile-phone svg {
  color: #e85a10;
  width: 18px;
  height: 18px;
}

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

body {
  background-color: #f8fafc;
  color: #2d3748;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  line-height: 1.6;
}

main.main-content {
  padding-top: 75px;
  min-height: calc(100vh - 350px);
}

.glowing-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}
.glowing-orb.orb-primary {
  background: #e85a10;
  width: 400px;
  height: 400px;
}
.glowing-orb.orb-secondary {
  background: #1a1a1a;
  width: 300px;
  height: 300px;
}

.section-padding {
  padding: 5rem 1.5rem;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1a1a1a;
  font-weight: 800;
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1.2rem;
  color: #1a1a1a;
}
@media (min-width: 768px) {
  h1 {
    font-size: 2.9rem;
  }
}

h2 {
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: -0.3px;
  color: #1a1a1a;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.3rem;
  }
}

h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #1a1a1a;
}

p {
  color: #2d3748;
  font-weight: 400;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroZoomIn {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.hero-banner {
  min-height: 75vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 7rem 1.5rem 5rem;
  background: #080c14;
  overflow: hidden;
  border-bottom: 1px solid #e2e8f0;
}
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 55%, transparent 100%);
  z-index: 1;
}
.hero-banner .hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
  animation: heroZoomIn 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero-banner .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-banner .hero-content {
  animation: heroFadeUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  max-width: 580px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-banner .hero-content .hero-slogan-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(8px);
}
.hero-banner .hero-content .hero-slogan {
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}
@media (min-width: 768px) {
  .hero-banner .hero-content .hero-slogan {
    font-size: 3.4rem;
  }
}
.hero-banner .hero-content .hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 540px;
  font-weight: 400;
}
.hero-banner .hero-content .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}
.hero-banner .hero-media {
  display: none;
  justify-content: center;
}
@media (min-width: 992px) {
  .hero-banner .hero-media {
    display: flex;
  }
}
.hero-banner .hero-media .hero-composition {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 380px;
  margin: 0 auto;
}
.hero-banner .hero-media .hero-composition .comp-img {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  border: 4px solid #ffffff;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-banner .hero-media .hero-composition .comp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-banner .hero-media .hero-composition .main-img {
  width: 75%;
  height: 280px;
  top: 0;
  left: 0;
  z-index: 2;
}
.hero-banner .hero-media .hero-composition .main-img:hover {
  transform: scale(1.02);
  z-index: 4;
}
.hero-banner .hero-media .hero-composition .secondary-img {
  width: 60%;
  height: 220px;
  bottom: 0;
  right: 0;
  z-index: 3;
}
.hero-banner .hero-media .hero-composition .secondary-img:hover {
  transform: scale(1.02) translateY(-5px);
  z-index: 4;
}
.hero-banner .hero-media .hero-composition .floating-badge {
  position: absolute;
  background: #ffffff;
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  border: 1px solid #e2e8f0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: #1a1a1a;
  z-index: 5;
  white-space: nowrap;
}
.hero-banner .hero-media .hero-composition .floating-badge svg {
  width: 16px;
  height: 16px;
  color: #e85a10;
}
.hero-banner .hero-media .hero-composition .floating-badge.pulse-badge {
  top: 15%;
  right: -10px;
  animation: float-slow 4s ease-in-out infinite alternate;
}
.hero-banner .hero-media .hero-composition .floating-badge.info-badge-floating {
  bottom: 25%;
  left: -20px;
  animation: float-slow 4s ease-in-out infinite alternate-reverse;
}
.hero-banner .hero-media .hero-composition .floating-badge.info-badge-floating .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #2ecc71;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #2ecc71;
  animation: pulse-dot 1.5s infinite;
}

.section-focus .focus-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 992px) {
  .section-focus .focus-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
.section-focus .focus-content .section-tag {
  color: #e85a10;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  display: block;
}
.section-focus .focus-content h1.focus-seo-title {
  font-size: 1.8rem;
  color: #4a5568;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-focus .focus-content .focus-display-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .section-focus .focus-content .focus-display-title {
    font-size: 2.4rem;
  }
}
.section-focus .focus-content .focus-text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.section-focus .focus-content .focus-piese-box {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}
.section-focus .focus-content .focus-piese-box h2.focus-piese-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
}
.section-focus .focus-content .focus-piese-box p.focus-piese-text {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.section-focus .focus-media {
  display: flex;
  justify-content: center;
}
.section-focus .focus-media .image-wrapper {
  position: relative;
  border-radius: 16px;
  padding: 0.5rem;
  background: linear-gradient(135deg, #e2e8f0, transparent);
  border: 1px solid #e2e8f0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.section-focus .focus-media .image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.1), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.section-focus .focus-media .image-wrapper img {
  display: block;
  max-width: 100%;
  border-radius: 12px;
  filter: brightness(0.95);
}

.section-brands {
  background: radial-gradient(circle at 50% 50%, rgba(18, 26, 48, 0.3) 0%, rgba(7, 11, 25, 0) 80%);
}
.section-brands .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-brands .section-header .section-title {
  font-size: 2.2rem;
  font-weight: 900;
}
.section-brands .section-header .section-title span {
  color: #e85a10;
}
.section-brands .section-header .section-desc {
  max-width: 600px;
  margin: 0.8rem auto 0;
  font-size: 0.95rem;
}

.page-hero {
  padding: 6rem 1.5rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.06) 0%, rgba(7, 11, 25, 0) 70%);
  border-radius: 50%;
}
.page-hero .breadcrumbs {
  display: flex;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #4a5568;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.page-hero .breadcrumbs a {
  color: #4a5568;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-hero .breadcrumbs a:hover {
  color: #e85a10;
}

.internal-page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .internal-page-layout {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.page-main-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2d3748;
}
.page-main-text p {
  margin-bottom: 1.8rem;
  color: #2d3748;
}

.brand-badge-layout {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.brand-badge-layout .brand-logo-badge {
  height: 50px;
  max-width: 140px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #e2e8f0;
  padding: 0.5rem;
  border-radius: 8px;
}

.about-sections {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.about-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 992px) {
  .about-block {
    grid-template-columns: 1fr 1fr;
  }
  .about-block.reverse .about-block-media {
    order: -1;
  }
}
.about-block .about-block-content h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.about-block .about-block-content p {
  font-size: 0.95rem;
  line-height: 1.7;
}
.about-block .about-block-content .about-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.about-block .about-block-content .about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.about-block .about-block-content .about-list li svg {
  color: #e85a10;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}
.about-block .about-block-media .media-card {
  background: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 30px 0 rgba(26, 26, 26, 0.04);
  padding: 0.8rem;
  border-radius: 16px;
}
.about-block .about-block-media .media-card img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 992px) {
  .contact-layout {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

.contact-info-panel {
  background: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 30px 0 rgba(26, 26, 26, 0.04);
  padding: 1.5rem;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}
@media (min-width: 576px) {
  .contact-info-panel {
    padding: 2.5rem;
  }
}
.contact-info-panel .info-group {
  margin-bottom: 2rem;
}
.contact-info-panel .info-group:last-child {
  margin-bottom: 0;
}
.contact-info-panel .info-group .info-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: #e85a10;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
}
.contact-info-panel .info-group .info-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
}
.contact-info-panel .info-group .info-value a {
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-info-panel .info-group .info-value a:hover {
  color: #e85a10;
}
.contact-info-panel .contact-map-placeholder {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  height: 180px;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #4a5568;
  font-size: 0.8rem;
}
.contact-info-panel .contact-map-placeholder svg {
  width: 32px;
  height: 32px;
  color: #e85a10;
  margin-bottom: 0.5rem;
}

.legal-page-container {
  max-width: 800px;
  margin: 0 auto;
}
.legal-page-container h1 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2rem;
}
.legal-page-container .legal-intro {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-style: italic;
}
.legal-page-container .legal-section {
  margin-bottom: 2.5rem;
}
.legal-page-container .legal-section h3 {
  font-size: 1.25rem;
  color: #e85a10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.legal-page-container .legal-section p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #2d3748;
  white-space: pre-line;
}

.stats-bar-wrapper {
  margin-top: -60px;
  position: relative;
  z-index: 10;
  padding: 0 1.5rem;
}

.stats-bar-container {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 2rem;
}
@media (min-width: 768px) {
  .stats-bar-container {
    grid-template-columns: repeat(4, 1fr);
    padding: 2rem 3rem;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid #e2e8f0;
  padding: 0.5rem;
}
.stat-item:last-child {
  border-right: none;
}
@media (max-width: 768px) {
  .stat-item:nth-child(even) {
    border-right: none;
  }
}
.stat-item .stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: #e85a10;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
@media (min-width: 992px) {
  .stat-item .stat-number {
    font-size: 2.2rem;
  }
}
.stat-item .stat-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #2d3748;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-services-grid {
  background: radial-gradient(circle at 10% 20%, rgba(2, 132, 199, 0.02) 0%, rgba(248, 250, 252, 0) 80%);
}

.services-grid-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .services-grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-grid-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}
.service-grid-card:hover {
  transform: translateY(-8px);
  border-color: #e85a10;
  box-shadow: 0 15px 35px rgba(2, 132, 199, 0.08);
}
.service-grid-card:hover .card-icon {
  background: #e85a10;
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}
.service-grid-card:hover .learn-more {
  color: #e85a10;
}
.service-grid-card:hover .learn-more svg {
  transform: translateX(5px);
}
.service-grid-card .card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(2, 132, 199, 0.08);
  color: #e85a10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-grid-card .card-icon svg {
  width: 28px;
  height: 28px;
}
.service-grid-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
}
.service-grid-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #2d3748;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.service-grid-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #2d3748;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-grid-card .learn-more svg {
  width: 14px;
  height: 14px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes float-slow {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-8px);
  }
}
@keyframes pulse-dot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(46, 204, 113, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

.reveal-delay-4 {
  transition-delay: 0.6s;
}

.page-hero.has-brand-banner {
  height: 42vh;
  min-height: 280px;
  max-height: 400px;
  display: flex;
  align-items: flex-end;
  padding: 0 1.5rem 1.25rem;
  color: #fff;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.page-hero.has-brand-banner::before {
  display: none;
}
.page-hero.has-brand-banner .hero-brand-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.page-hero.has-brand-banner .hero-brand-banner-bg img,
.page-hero.has-brand-banner .hero-brand-banner-bg .hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}
.page-hero.has-brand-banner .hero-brand-banner-bg.has-slider .hero-slide-img {
  position: absolute;
  inset: 0;
  transition: opacity 1.2s ease-in-out, transform 8s ease-out;
  will-change: opacity, transform;
}
.page-hero.has-brand-banner .hero-brand-banner-bg .hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 50%, transparent 100%);
  z-index: 1;
}
.page-hero.has-brand-banner .hero-brand-banner-bg .hero-slider-dots {
  position: absolute;
  bottom: 1.25rem;
  right: 1.5rem;
  display: flex;
  gap: 6px;
  z-index: 3;
}
.page-hero.has-brand-banner .hero-brand-banner-bg .hero-slider-dots .slider-dot {
  width: 20px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.page-hero.has-brand-banner .hero-brand-banner-bg .hero-slider-dots .slider-dot:hover {
  background: rgba(255, 255, 255, 0.75);
}
.page-hero.has-brand-banner .hero-brand-banner-bg .hero-slider-dots .slider-dot.active {
  width: 32px;
  background: #ffffff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}
.page-hero.has-brand-banner .container.hero-banner-bottom {
  width: 100%;
  position: relative;
  z-index: 2;
  padding-bottom: 0.25rem;
}
.page-hero.has-brand-banner .breadcrumbs {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}
.page-hero.has-brand-banner .breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-hero.has-brand-banner .breadcrumbs a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}
.page-hero.has-brand-banner .breadcrumbs span {
  color: rgba(255, 255, 255, 0.6);
}

.brand-page-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .brand-page-title {
    font-size: 2.7rem;
  }
}
.brand-page-title .highlight-brand {
  color: #1a1a1a;
}

.page-hero .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.5;
}

.section-why-us {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  padding: 5rem 1.5rem;
  position: relative;
}
.section-why-us .why-us-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem;
}
.section-why-us .why-us-header .section-tag {
  color: #e85a10;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  display: block;
}
.section-why-us .why-us-header .section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
}
.section-why-us .why-us-header .section-title span {
  color: #e85a10;
}
.section-why-us .why-us-header .section-desc {
  font-size: 0.95rem;
  color: #2d3748;
  line-height: 1.6;
  margin: 0 auto;
}
.section-why-us .why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .section-why-us .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .section-why-us .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.section-why-us .why-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem 1.8rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.section-why-us .why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #e85a10;
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-why-us .why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(26, 26, 26, 0.06);
  border-color: #cbd5e1;
}
.section-why-us .why-card:hover::before {
  opacity: 1;
}
.section-why-us .why-card:hover .why-icon {
  background: #e85a10;
  color: #ffffff;
}
@media (min-width: 992px) {
  .section-why-us .why-card.why-card-featured {
    grid-column: span 1;
  }
}
.section-why-us .why-card .why-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(232, 90, 16, 0.1);
  color: #e85a10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.section-why-us .why-card .why-icon svg {
  width: 24px;
  height: 24px;
}
.section-why-us .why-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.section-why-us .why-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #2d3748;
  margin-bottom: 0;
  flex-grow: 1;
}

.site-footer {
  background: #1a1a1a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 1.5rem 2rem;
  color: #cbd5e1;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 90, 16, 0.08) 0%, rgba(26, 26, 26, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}
.site-footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .site-footer .footer-container {
    grid-template-columns: 2fr 1fr 1.5fr;
  }
}
.site-footer .footer-brand .footer-logo {
  display: inline-block;
  margin-bottom: 1.2rem;
  text-decoration: none;
}
.site-footer .footer-brand .footer-logo .footer-logo-img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
.site-footer .footer-brand .footer-tagline {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 320px;
}
.site-footer .footer-brand .fiscal-info {
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.8;
}
.site-footer .footer-brand .fiscal-info strong {
  color: #ffffff;
}
.site-footer .footer-links h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.2rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.site-footer .footer-links h4::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #e85a10;
}
.site-footer .footer-links .footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.site-footer .footer-links .footer-nav-list a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.site-footer .footer-links .footer-nav-list a:hover {
  color: #e85a10;
  padding-left: 5px;
}
.site-footer .footer-contact h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.2rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.site-footer .footer-contact h4::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #e85a10;
}
.site-footer .footer-contact .contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: #94a3b8;
}
.site-footer .footer-contact .contact-details .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.site-footer .footer-contact .contact-details .contact-item svg {
  color: #e85a10;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.site-footer .footer-contact .contact-details a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-footer .footer-contact .contact-details a:hover {
  color: #ffffff;
}
.site-footer .footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .site-footer .footer-bottom {
    flex-direction: row;
  }
}
.site-footer .footer-bottom .copyright {
  font-size: 0.75rem;
  color: #94a3b8;
}
.site-footer .footer-bottom .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.site-footer .footer-bottom .legal-links a {
  font-size: 0.75rem;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-footer .footer-bottom .legal-links a:hover {
  color: #e85a10;
}
.site-footer .footer-bottom .sal-anpc-badges {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .site-footer .footer-bottom .sal-anpc-badges {
    margin-top: 0;
  }
}
.site-footer .footer-bottom .sal-anpc-badges a {
  display: block;
  opacity: 0.75;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-footer .footer-bottom .sal-anpc-badges a:hover {
  opacity: 1;
}
.site-footer .footer-bottom .sal-anpc-badges a img {
  height: 28px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-phone-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 65px;
  height: 65px;
  background: #e85a10;
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(232, 90, 16, 0.45);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.floating-phone-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}
.floating-phone-btn .floating-text {
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .floating-phone-btn {
    bottom: 30px;
    right: 30px;
    width: 85px;
    height: 85px;
    gap: 4px;
  }
  .floating-phone-btn svg {
    width: 26px;
    height: 26px;
  }
  .floating-phone-btn .floating-text {
    font-size: 0.65rem;
  }
}
.floating-phone-btn .pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(232, 90, 16, 0.5);
  border-radius: 50%;
  z-index: -1;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.floating-phone-btn:hover {
  background: #cf4905;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(232, 90, 16, 0.55);
  color: #fff;
}
.floating-phone-btn:hover svg {
  transform: scale(1.1) rotate(5deg);
}
.floating-phone-btn:hover .pulse-ring {
  background: rgba(232, 90, 16, 0.6);
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.admin-body {
  background-color: #f1f5f9;
  color: #2d3748;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.admin-login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: radial-gradient(circle at center, #101626 0%, #060913 100%);
  position: relative;
}
.admin-login-wrapper .login-card {
  background: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 30px 0 rgba(26, 26, 26, 0.04);
  width: 100%;
  max-width: 400px;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}
.admin-login-wrapper .login-card .login-header {
  text-align: center;
  margin-bottom: 2rem;
}
.admin-login-wrapper .login-card .login-header .login-logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #1a1a1a;
  margin-bottom: 0.3rem;
}
.admin-login-wrapper .login-card .login-header .login-logo span {
  color: #e85a10;
}
.admin-login-wrapper .login-card .login-header .login-subtitle {
  font-size: 0.75rem;
  color: #4a5568;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.admin-layout {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
@media (min-width: 768px) {
  .admin-layout {
    flex-direction: row;
  }
}

.admin-sidebar {
  width: 100%;
  background: #0f172a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .admin-sidebar {
    width: 250px;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
  }
}
.admin-sidebar .sidebar-header {
  margin-bottom: 2rem;
}
.admin-sidebar .sidebar-header .sidebar-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1.5px;
}
.admin-sidebar .sidebar-header .sidebar-logo span {
  color: #e85a10;
}
.admin-sidebar .sidebar-header .sidebar-logo .logo-tag {
  display: block;
  font-size: 0.6rem;
  color: #94a3b8;
  text-transform: uppercase;
  margin-top: 2px;
  letter-spacing: 2px;
}
.admin-sidebar .sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .admin-sidebar .sidebar-nav {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.admin-sidebar .sidebar-nav li {
  width: auto;
}
@media (min-width: 768px) {
  .admin-sidebar .sidebar-nav li {
    width: 100%;
  }
}
.admin-sidebar .sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.65rem 1rem;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border-left: 3px solid transparent;
}
.admin-sidebar .sidebar-nav a:hover, .admin-sidebar .sidebar-nav a.active {
  background: rgba(0, 180, 216, 0.08);
  color: #ffffff;
  border-left-color: #e85a10;
  padding-left: 1.2rem;
  box-shadow: inset 5px 0 15px -5px rgba(0, 180, 216, 0.2);
}
.admin-sidebar .sidebar-nav a:hover svg, .admin-sidebar .sidebar-nav a.active svg {
  color: #e85a10;
}
.admin-sidebar .sidebar-nav a svg {
  width: 16px;
  height: 16px;
  color: #94a3b8;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.admin-sidebar .sidebar-footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 768px) {
  .admin-sidebar .sidebar-footer {
    display: none;
  }
}
.admin-sidebar .sidebar-footer .user-info {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 0.8rem;
}
.admin-sidebar .sidebar-footer .user-info strong {
  color: #ffffff;
}
.admin-sidebar .sidebar-footer .btn-logout {
  width: 100%;
  padding: 0.5rem;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.admin-sidebar .sidebar-footer .btn-logout:hover {
  background: rgba(239, 68, 68, 0.8);
  border-color: rgb(239, 68, 68);
  color: #ffffff;
}

.admin-main {
  flex-grow: 1;
  padding: 2rem;
  overflow-y: auto;
}
.admin-main .admin-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1rem;
}
.admin-main .admin-header-bar h2 {
  margin: 0;
  font-size: 1.8rem;
}
.admin-main .admin-header-bar .admin-actions {
  display: flex;
  gap: 0.8rem;
}

.admin-card {
  background: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 30px 0 rgba(26, 26, 26, 0.04);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.admin-card:hover {
  border-color: rgba(232, 90, 16, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.admin-card .card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.admin-stats-grid .stat-card {
  background: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 30px 0 rgba(26, 26, 26, 0.04);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.admin-stats-grid .stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 90, 16, 0.4);
  box-shadow: 0 10px 25px rgba(0, 180, 216, 0.15);
}
.admin-stats-grid .stat-card .stat-label {
  font-size: 0.75rem;
  color: #4a5568;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.admin-stats-grid .stat-card .stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-top: 0.2rem;
}
.admin-stats-grid .stat-card .stat-icon {
  background: rgba(0, 180, 216, 0.1);
  color: #e85a10;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.admin-stats-grid .stat-card .stat-icon svg {
  width: 20px;
  height: 20px;
}
.admin-stats-grid .stat-card:hover .stat-icon {
  background: rgba(0, 180, 216, 0.2);
  transform: scale(1.1);
}

.admin-table-container {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.85rem;
}
.admin-table th, .admin-table td {
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
}
.admin-table th {
  font-weight: 700;
  color: #4a5568;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  background: rgba(15, 23, 42, 0.03);
}
.admin-table tbody tr {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.admin-table tbody tr:hover {
  background: rgba(15, 23, 42, 0.02);
}
.admin-table tbody tr.unread-row {
  background: rgba(0, 180, 216, 0.04);
  position: relative;
}
.admin-table tbody tr.unread-row::after {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 3px;
  background-color: #e85a10;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 0 8px #e85a10;
}
.admin-table tbody tr.unread-row td {
  font-weight: 600;
  color: #1a1a1a;
}
.admin-table .badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.admin-table .badge.badge-new {
  background: rgba(0, 180, 216, 0.15);
  color: #e85a10;
  border: 1px solid rgba(0, 180, 216, 0.2);
}
.admin-table .badge.badge-processed {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.2);
}
.admin-table .badge.badge-piese {
  background: rgba(155, 89, 182, 0.15);
  color: #9b59b6;
}
.admin-table .badge.badge-programare {
  background: rgba(230, 126, 34, 0.15);
  color: #e67e22;
}
.admin-table .table-actions {
  display: flex;
  gap: 0.5rem;
}

.inquiry-details-card .details-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.8rem;
  font-size: 0.9rem;
}
.inquiry-details-card .details-grid .label {
  font-weight: 700;
  color: #4a5568;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-top: 2px;
}
.inquiry-details-card .details-grid .value {
  color: #1a1a1a;
}
.inquiry-details-card .details-message-box {
  margin-top: 1.5rem;
  padding: 1.2rem;
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  color: #2d3748;
  white-space: pre-wrap;
}

.admin-editor-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .admin-editor-layout {
    grid-template-columns: 2.5fr 1.5fr;
  }
}

.btn-logout-mobile {
  padding: 0.6rem 1.2rem;
  display: inline-flex;
}
@media (min-width: 768px) {
  .btn-logout-mobile {
    display: none !important;
  }
}

/* ==========================================
   TEMA IVECO (Albastru Oficial IVECO #003d79)
   Aplicata pe sectiunile IVECO (marca-iveco si piese-iveco)
   ========================================== */
body.theme-iveco .btn.btn-primary,
.theme-iveco .btn.btn-primary {
  background: #003d79;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 61, 121, 0.35);
}
body.theme-iveco .btn.btn-primary:hover,
.theme-iveco .btn.btn-primary:hover {
  background: #002d59;
  box-shadow: 0 6px 22px rgba(0, 61, 121, 0.5);
  transform: translateY(-2px);
  color: #ffffff;
}
body.theme-iveco .btn.btn-primary:active,
.theme-iveco .btn.btn-primary:active {
  background: #001f3f;
  transform: translateY(0);
}

body.theme-iveco .btn.btn-secondary:hover,
.theme-iveco .btn.btn-secondary:hover {
  color: #003d79;
  border-color: #bcd8f5;
}

body.theme-iveco .badge-pill.badge-sets,
body.theme-iveco .ui-badge.badge-sets,
.theme-iveco .badge-pill.badge-sets,
.theme-iveco .ui-badge.badge-sets {
  background: #003d79;
  box-shadow: 0 2px 8px rgba(0, 61, 121, 0.3);
}

body.theme-iveco .callout-box,
.theme-iveco .callout-box {
  border-left-color: #003d79;
}

body.theme-iveco .check-list li .check-icon,
body.theme-iveco .check-list li svg,
.theme-iveco .check-list li .check-icon,
.theme-iveco .check-list li svg {
  color: #003d79;
}

body.theme-iveco .form-control:focus,
.theme-iveco .form-control:focus {
  border-color: #003d79;
  box-shadow: 0 0 10px rgba(0, 61, 121, 0.25);
  background: rgba(255, 255, 255, 0.07);
}

body.theme-iveco .form-check input[type="checkbox"]:checked,
.theme-iveco .form-check input[type="checkbox"]:checked {
  background: #003d79;
  border-color: #003d79;
}
body.theme-iveco .form-check input[type="checkbox"]:focus,
.theme-iveco .form-check input[type="checkbox"]:focus {
  border-color: #003d79;
}
body.theme-iveco .form-check .form-check-label a,
.theme-iveco .form-check .form-check-label a {
  color: #003d79;
}
body.theme-iveco .form-check .form-check-label a:hover,
.theme-iveco .form-check .form-check-label a:hover {
  color: #002d59;
}

body.theme-iveco .contact-info-panel .info-group .info-label,
.theme-iveco .contact-info-panel .info-group .info-label {
  color: #003d79;
}
body.theme-iveco .contact-info-panel .info-group .info-value a:hover,
.theme-iveco .contact-info-panel .info-group .info-value a:hover {
  color: #003d79;
}
body.theme-iveco .contact-info-panel .contact-map-placeholder svg,
.theme-iveco .contact-info-panel .contact-map-placeholder svg {
  color: #003d79;
}

body.theme-iveco .breadcrumbs a:hover,
.theme-iveco .breadcrumbs a:hover {
  color: #003d79;
}
body.theme-iveco .breadcrumbs-sub-banner .breadcrumbs a:hover,
.theme-iveco .breadcrumbs-sub-banner .breadcrumbs a:hover {
  color: #003d79;
}
body.theme-iveco .page-hero.has-brand-banner .breadcrumbs a:hover,
.theme-iveco .page-hero.has-brand-banner .breadcrumbs a:hover {
  color: #7dd3fc;
}

body.theme-iveco .page-main-text a,
.theme-iveco .page-main-text a {
  color: #003d79;
}
body.theme-iveco .page-main-text a:hover,
.theme-iveco .page-main-text a:hover {
  color: #002d59;
}

body.theme-iveco .section-tag,
.theme-iveco .section-tag {
  color: #003d79 !important;
}

body.theme-iveco .glowing-orb.orb-primary,
.theme-iveco .glowing-orb.orb-primary {
  background: #003d79;
}

.admin-main .form-control {
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid #cbd5e1 !important;
  font-weight: 500;
}
.admin-main .form-control:focus {
  background: #ffffff !important;
  color: #0f172a !important;
  border-color: #00b4d8 !important;
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2) !important;
}
.admin-main .form-control::placeholder {
  color: #94a3b8 !important;
}
.admin-main .image-upload-wrapper {
  background: #f8fafc !important;
  border: 1px dashed #cbd5e1 !important;
}
.admin-main .image-upload-wrapper .image-card-item {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/*# sourceMappingURL=main.css.map */

