﻿/*------------------------------------------------------------
    Template name    : Technoit - IT Solutions & Business Services Multipurpose Responsive Website Template
    Author           : ZRTHEMES
    Version          : 3.0
    File Description : Main css file of the template
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --font-default:
    'Open Sans', sans-serif;
  --font-primary:
    'Open Sans', sans-serif;
  --font-secondary:
    'Open Sans', sans-serif;
  scroll-behavior: smooth;
  --color-bg: #495677;
  --hero-overlay-color: transparent;
  --menu-color: #ffffff;
  --theme-color: #495677;
  --border-color: #e2e2e2;
  --theme-color-dark: #f8f8f8;
  --text-color: #3a3a3a;
  --hero-text-color: #ffffff;
  --text-white-color: #ffffff;
  --text-grey-color: #3a3a3a;
  --text-theme-color: #495677;
  --light-color: #ffffff;
  --color-default: #3a3a3a;
  --color-primary: #495677;
  --color-secondary: #4b5878;
  --color-start: #3a3a3a;
  --color-end: #3a3a3a;
  --hero-card-bg: rgb(228 227 223 / 17%);
  --box-shadow-color: rgb(82 90 101 / 10%);
}

:root.dark {
  --menu-color-bg: #565656;
  --color-bg: #000000;
  --hero-overlay-color: #000000;
  --menu-color: #ffffff;
  --theme-color: #000000;
  --border-color: #14929a;
  --theme-color-dark: #2c2c2c;
  --text-color: #ffffff;
  --hero-text-color: #ffffff;
  --text-white-color: #ffffff;
  --text-grey-color: #565656;
  --text-theme-color: #14929a;
  --light-color: #000000;
  --color-default: #000000;
  --color-primary: #000000;
  --color-secondary: #000000;
  --color-start: #000000;
  --color-end: #000000;
  --hero-card-bg: rgb(0 0 0 / 83%);
  --box-shadow-color: rgb(20 146 154 / 49%);
}

body {
  font-family: var(--font-default);
  color: var(--text-color);
  background: #fff;
  transition: 0.5s background ease;
}

body.dark {
  --menu-color-bg: #ffffff;
  --color-bg: #000000;
  --hero-overlay-color: #000000;
  --menu-color: #ffffff;
  --border-color: #495677;
  --theme-color-dark: #151515;
  --text-color: #ffffff;
  --text-white-color: #ffffff;
  --text-grey-color: #565656;
  --text-theme-color: #495677;
  --light-color: #000000;
  --color-default: #000000;
  --color-secondary: #0c6de0;
  --color-start: #000000;
  --color-end: #000000;
  --hero-card-bg: rgb(0 0 0 / 83%);
  --box-shadow-color: rgb(12 109 224 / 69%);
}


#darkmode-button {
  border-radius: 50%;
  border: none;
  outline: none;
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  margin-left: 10px;
}

#rtl-button {
  cursor: pointer;
}

#rtl-button {
  position: absolute;
  top: 100px;
  right: 0;
  padding: 6px;
  margin-left: 16px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.4);
  color: #999;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 4px;
  font: 700 30px consolas;
  overflow: hidden;
  font-size: 14px;
}

#rtl-button span:nth-child(1) {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #171618, var(--theme-color));
  animation: animate1 2s linear infinite;
}

@keyframes animate1 {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

#rtl-button span:nth-child(2) {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, #171618, var(--theme-color));
  animation: animate2 2s linear infinite;
  animation-delay: 1s;
}

@keyframes animate2 {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

#rtl-button span:nth-child(3) {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to left, #171618, var(--theme-color));
  animation: animate3 2s linear infinite;
}

@keyframes animate3 {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

#rtl-button span:nth-child(4) {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(to top, #171618, var(--theme-color));
  animation: animate4 2s linear infinite;
  animation-delay: 1s;
}

@keyframes animate4 {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(-100%);
  }
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

.toggle-container {
  position: relative;
}

.theme-btn {
  width: 6em;
  height: 6em;
  padding: 0.5em;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  background-color: transparent;
}

.theme-btn img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.theme-btn.light {
  display: none;
}

.dark .theme-btn.dark {
  display: none;
}

.dark .theme-btn.light {
  display: block;
}

.hide-on-mobile {
  display: block;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section {
  padding: 60px 0;
  overflow: hidden;
  background: #fff;
}

.section-grey {
  padding: 90px 0;
  overflow: hidden;
  background: var(--theme-color-dark);
}

.sections-bg {
  background-color: var(--theme-color-dark);
}

.section-header {
  text-align: center;
  padding-bottom: 60px;
}

.section-header h2 {
  font-size: 32px;
  position: relative;
  color: var(--color-primary);
}

.section-header p {
  margin-bottom: 0;
  color: #b8651d;
}

img {
  transition: 0.3s;
}

/* img:hover {
  transform: scale(1.1);
} */

.fill-btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  border: 0;
  transition: 0.3s;
  color: var(--text-white-color);
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.fill-btn:hover {
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
  color: var(--text-white-color);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 120px 0 60px 0;
  min-height: 20vh;
  background: url(../images/page-header-bg.png) center bottom;
  background-size: cover;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
}

.breadcrumbs .page-header:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, var(--light-color), var(--light-color));
  z-index: 0;
  opacity: 0.6;
}

.breadcrumbs .page-header h2 {
  color: var(--color-primary);
}

.breadcrumbs .page-header p {
  color: var(--menu-color);
}

.breadcrumbs nav {
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: var(--color-default);
}

.breadcrumbs nav ol a {
  color: #495677;
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li+li {
  padding-left: 10px;
}

.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary);
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: #303e55;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgb(16 16 16 / 80%);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 90px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-out;
}

#preloader:before {
  content: "";
  width: 40px;
  height: 40px;
  border: 3px solid #e8edf5;
  border-top-color: #3A7BFF;
  border-radius: 50%;
  animation: animate-preloader 0.75s linear infinite;
}

@keyframes animate-preloader {
  to { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }

  .hide-on-mobile {
    display: none !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar {
  background: #00796b;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

.topbar .contact-info i {
  font-style: normal;
  color: #fff;
  line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

@media (max-width: 575px) {

  .topbar .contact-info i a,
  .topbar .contact-info i span {
    font-size: 13px;
  }
}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

.topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.topbar .social-links a:hover {
  color: #fff;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 90px;
}

.header .logo img {
  max-height: 65px;
  margin-right: 6px;
}

.header.stikcy-menu {
  background: var(--light-color);
}

.header.stikcy-menu .logo h1 {
  color: var(--color-primary);
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  letter-spacing: 0.8px;
  color: var(--color-primary);
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

.sticked-header-offset {
  margin-top: 0;
}

section {
  background: var(--light-color);
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    color: var(--menu-color);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .stikcy-menu .navbar a {
    color: var(--text-color);
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 20px);
    margin: 0;
    padding: 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0 8px 32px rgba(26, 35, 64, 0.13), 0 1.5px 6px rgba(58, 123, 255, 0.07);
    transition: opacity 0.2s ease, top 0.2s ease;
    border-radius: 10px;
    border: 1px solid #e8edf5;
    min-width: 260px;
    overflow: hidden;
  }

  .navbar .dropdown ul.dropdown-erp-modules::before {
    content: 'Module ClassoftSQL ERP';
    display: block;
    padding: 12px 20px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3A7BFF;
    border-bottom: 1px solid #e8edf5;
    background: #f6f9ff;
  }

  .navbar .dropdown ul li {
    min-width: 260px;
  }

  .navbar .dropdown ul li:last-child a {
    border-bottom: none;
  }

  .navbar .dropdown ul a {
    padding: 11px 20px;
    font-size: 14.5px;
    font-weight: 500;
    color: #1a2340;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f4fb;
    border-left: 3px solid transparent;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
  }

  .navbar .dropdown ul a .menu-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    object-fit: contain;
  }

  .navbar .dropdown ul a span {
    flex: 1;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: #3A7BFF;
    background: #f0f5ff;
    border-left-color: #3A7BFF;
    text-decoration: none;
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    bottom: 0;
    transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 70px 0 24px 0;
    margin: 0;
    background: #fff;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    border-left: 1px solid #e8edf5;
    box-shadow: -4px 0 24px rgba(26, 35, 64, 0.10);
  }

  .navbar > ul > li {
    border-bottom: 1px solid #f0f4fb;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 500;
    color: #1a2340;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    color: #94a3b8;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #3A7BFF;
    background: #f6f9ff;
    text-decoration: none;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: #f6f9ff;
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #3A7BFF;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #2563EB;
    background: #eef3ff;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 4px 0;
    margin: 0;
    background: #f6f9ff;
    border-top: 1px solid #e8edf5;
    border-bottom: 1px solid #e8edf5;
  }

  .navbar .dropdown ul li {
    border-bottom: 1px solid #edf1f9;
  }

  .navbar .dropdown ul li:last-child {
    border-bottom: none;
  }

  .navbar .dropdown ul a,
  .navbar .dropdown ul a:focus {
    padding: 11px 24px 11px 36px;
    font-size: 14px;
    font-weight: 400;
    color: #3a4a6b;
    border-left: 3px solid transparent;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul li:hover > a {
    color: #3A7BFF;
    background: #eef3ff;
    border-left-color: #3A7BFF;
  }

  .navbar .dropdown > .dropdown-active,
  .navbar .dropdown .dropdown > .dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #1a2340;
    font-size: 26px;
    cursor: pointer;
    line-height: 0;
    transition: 0.2s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #64748b;
    font-size: 26px;
    cursor: pointer;
    line-height: 0;
    transition: 0.2s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-hide:hover {
    color: #1a2340;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 30, 0.45);
    backdrop-filter: blur(2px);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Featured Section
--------------------------------------------------------------*/

.left {
  text-align: right;
}

.right {
  text-align: left;
}

.list-wrap {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  overflow: visible;
}

.list-wrap p {
  color: var(--text-color);
  font-size: 0.88rem;
}

.list-wrap:nth-child(3),
.list-wrap:nth-child(6) {
  margin-bottom: 0;
}

#featured .left .list-wrap,
#featured .right .list-wrap {
  margin-bottom: 0;
}

.list-wrap .description h4 {
  color: #1a1a2e;
  font-size: 0.97rem;
  font-weight: 700;
}

.list-wrap .description p {
  font-size: 0.92rem;
}

.icon {
  width: 150px;
  text-align: center;
  height: 100px;
  border-radius: 50%;
}

.icon svg {
  width: 100%;
}

.list-center-wrap {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  height: 100%;
}

.center-icon {
  width: 100%;
  text-align: center;
}

.center-icon img {
  width: 100%;
  border-radius: 20px;
  opacity: 0.9;
}

.center-icon img.img-xl {
  width: 140%;
  margin-left: -20%;
}

@media (max-width: 768px) {
  #featured .center {
    margin-bottom: 0 !important;
  }

  #featured .center .center-icon img {
    width: 100% !important;
    position: static !important;
    left: auto !important;
    transform: none !important;
  }
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about h3 {
  font-size: 28px;
  margin-bottom: 20px;
  font-family: var(--font-secondary);
}

.about .call-us {
  left: 10%;
  right: 10%;
  bottom: 0;
  background-color: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}

.about .call-us h4 {
  font-size: 24px;
  margin-bottom: 5px;
}

.about .call-us p {
  font-size: 28px;
  color: var(--color-primary);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(0, 131, 116, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(0, 131, 116, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

.about .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.img-frame {
  position: relative;
  background: #f6f6f6;
  background-size: contain;
  padding: 9%;
}

.bar {
  background-color: #f1f1f1;
  padding: 1px;
  border-radius: 15px;
  margin-bottom: 20px;
  font-size: 12px;
  color: var(--light-color);
}

.bar::before {
  content: attr(data-skill);
  background-color: var(--color-primary);
  display: inline-block;
  padding: 5px 0 5px 10px;
  border-radius: inherit;
  animation: load 2s 0s;
  -webkit-animation: load 2s 0s;
  -moz-animation: load 2s 0s;
  -o-animation: load 2s 0s;
}

.bar.front::before {
  background-color: var(--color-primary);
}

.bar.back::before {
  background-color: var(--color-primary);
}

.bar.learning::before {
  width: calc(20% - 10px);
}

.bar.basic::before {
  width: calc(40% - 10px);
}

.bar.intermediate::before {
  width: calc(60% - 10px);
}

.bar.advanced::before {
  width: calc(80% - 10px);
}

.bar.expert::before {
  width: calc(100% - 10px);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 90px 0;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-slide img {
  transition: 0.3s;
  filter: grayscale(1);
  opacity: 1;
  border-radius: 8px;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: url(../images/hero-bg.png) center left;
  background-size: cover;
  padding: 150px 0px;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
  background-attachment: fixed;
}

.call-to-action-erp {
  background: url(../images/mockup_1.png) center left;
  background-size: cover;
  padding: 150px 0px;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
  background-attachment: fixed;
}

@media (max-width: 767px) {
  .call-to-action-erp {
    background-image: url(../images/mockup_1.png);
    background-attachment: scroll;
  }
}

.call-to-action h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
}

.call-to-action p {
  color: #fff;
  margin-bottom: 20px;
}

.call-to-action .play-btn {
  width: 94px;
  height: 94px;
  margin-bottom: 20px;
  background: radial-gradient(var(--color-primary) 50%, rgba(0, 131, 116, 0.4) 52%);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.call-to-action .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(0, 131, 116, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.call-to-action:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 0;
  opacity: 0.6;
}

.call-to-action .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

.call-to-action .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

.call-to-action .cta-btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 48px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}

.call-to-action .cta-btn:hover {
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 10px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 10px;
  position: relative;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 5px 20px 0px var(--box-shadow-color);
}

.testimonials .testimonial-item .info-box {
  min-width: 276px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-primary);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--color-primary);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
  color: var(--text-color);
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgb(134 134 134 / 20%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
    flex-direction: column;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}


/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  border-radius: 10px;
  padding: 15px;
  overflow: hidden;
}

.team .member img {
  border-radius: 10px;
  overflow: hidden;
}

.team .member .member-content {
  padding: 0 20px 30px 20px;
}

.team .member h4 {
  margin-top: 16px;
  margin-bottom: 2px;
  font-size: 20px;
  color: var(--color-primary);
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 14px;
  color: var(--text-color);
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #6c757d;
}

.team .member .social {
  margin-top: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  color: var(--color-primary);
  transition: 0.3s;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e8e8e8;
}

.team .member .social a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.team .member .social i {
  font-size: 14px;
  margin: 0 2px;
}


/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content h4 {
  font-size: 20px;
  margin-top: 5px;
}

.faq .content p {
  font-size: 15px;
  color: #6c757d;
}

.faq .accordion-item {
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--theme-color-dark);
  border: 1px solid var(--border-color);
}

.accordion-flush .accordion-item:last-child {
  border-bottom: 1px solid var(--border-color);
}


.faq .accordion-collapse {
  border: 0;
  background: var(--theme-color-dark);
  border-radius: 0 8px 8px 0;
}

.accordion-flush .accordion-item:first-child {
  border: 1px solid var(--border-color);
}

.faq .accordion-button {
  background: var(--theme-color-dark);
  padding: 20px 50px 20px 20px;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-primary);
  text-align: left;
  box-shadow: none;
  border-radius: 8px !important;
}

.faq .accordion-button .num {
  padding-right: 10px;
  font-size: 20px;
  line-height: 0;
  color: var(--color-primary);
}

.faq .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  box-shadow: none;
}

.faq .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 20px;
  background: url(../images/icons/down-arrow.svg);
}

.faq .accordion-body {
  padding: 20px 30px 24px 30px;
  border: 0;
  border-radius: 0 0 8px 8px;
  background: var(--theme-color-dark);
  box-shadow: none;
  color: var(--text-color);
}

.faq .accordion-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.faq .accordion-body ul li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  line-height: 1.4;
  padding: 6px 14px 6px 10px;
  background: #eef1f7;
  border: 1px solid #d0d7e6;
  border-radius: 6px;
  color: #3a3a3a;
}

.faq .accordion-body ul li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #495677;
  flex-shrink: 0;
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  background-color: var(--light-color);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
  border-radius: 8px;
}

.recent-posts .post-category {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 22px;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts .title a {
  color: var(--color-primary);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--text-color);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  margin-bottom: 5px;
  color: var(--text-color);
}

.recent-posts .post-date {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 0;
}

@media (min-width: 1280px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1140px;
  }
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  /*background: url(../images/hero-bg.png) center center;
  background-size: cover;*/
  padding: 60px 0 0 0;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
  margin-top: 0;
  background: linear-gradient(360deg, var(--hero-overlay-color), var(--hero-overlay-color));
}

.hero .circle {
  color: #FFF;
}

@media (min-width: 1365px) {
  .hero {
    background-attachment: fixed;
  }
}

.dark-bg {
  padding: 50px 30px;
  border-radius: 8px;
}

.social {
  margin-top: 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  /* justify-content: space-around; */
  gap: 10px;
}

.social a {
  color: var(--text-color);
  transition: 0.3s;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.social i {
  font-size: 14px;
  margin: 0 2px;
  color: var(--color-primary);
}

.mr-20 {
  margin-right: 20px !important;
}

.hero h2 {
  font-size: 20px;
  margin-bottom: 20px;
  margin-left: 50px;
  color: var(--hero-text-color);
  letter-spacing: 0.7px;
  font-weight: 400;
}

.hero h1 {
  font-size: 40px;
  margin-left: 50px;
  color: var(--hero-text-color);
  font-weight: 600;
}

.hero span {
  color: var(--color-primary);
  font-weight: bold;
}

.hero p {
  color: var(--hero-text-color);
  font-weight: 400;
  margin-left: 50px;
  margin-bottom: 30px;
}

.btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 16px;
  border-radius: 50px;
  transition: 0.3s;
  color: var(--text-white-color);
  background: #2563EB;
}

.btn-get-started:hover {
  background: #3A7BFF;
  color: var(--text-white-color);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #fff;
}

.hero .btn-watch-video i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover i {
  color: #fff;
}

@media (max-width: 991px) {
  .hero {
    background: url(../images/hero-bg.png) center center;
  }

  .hero h2 {
    font-size: 22px;
  }

  .call-to-action {
    background: url(../images/cta-bg.jpg) center left;
    background-size: cover;
    padding: 150px 60px;
    border-radius: 0px;
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  .caption h1+h2 {
    margin-top: 120px;
  }

  .text-left.caption {
    text-align: center;
  }

  .caption .justify-content-start {
    justify-content: center !important;
  }

  .caption .social {
    justify-content: center;
  }

  .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }

  .icon-boxes .card-two {
    margin-top: var(--bs-gutter-y);
    margin-bottom: 0px;
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);

  }
}

@media (min-width: 768px) {

  .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }

  .icon-boxes .card-two {
    margin-top: -20px;
    margin-bottom: -20px;
  }
}

.icon-box {
  padding: 10px 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
  color: var(--text-color);
  box-shadow: -1px 5px 20px 0px var(--box-shadow-color);
  display: flex;
  flex-direction: column;
}

.icon-box h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  margin: auto 0 6px;
}

.icon-box p {
  font-size: 0.92rem;
  color: #666;
  margin: 0;
}

.icon-box img {
  width: 100%;
  height: auto;
}

.icon-box-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.icon-box-link-text {
  text-decoration: none;
  color: inherit;
}

.icon-box .icon img {
  width: 77px;
}

.icon-box .title {
  margin-bottom: 15px;
  font-size: 24px;
}

.icon-box .title a {
  color: var(--color-primary);
  transition: 0.3s;
}

.icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 48px;
  line-height: 1;
  color: var(--color-primary);
}

.icon-box:hover {
  transform: scale(1.04);
}

.icon-box-clickable {
  cursor: pointer;
  border: 2px solid transparent;
}

.icon-box-clickable:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.15);
}


/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #555555;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
  border-radius: 10px;
}

.blog .blog-pagination li a {
  color: var(--color-default);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--color-primary);
  color: #fff;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: var(--color-white);
}

.blog-sidbar {
  background-color: var(--light-color);
  padding: 30px 20px;
  border-radius: 8px;
}

.blog-sidbar ul li a:hover {
  color: rgb(74 74 74);
}

/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog .posts-list .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog .posts-list .post-category {
  font-size: 16px;
  color: #555555;
  margin-bottom: 10px;
}

.blog .posts-list .title {
  font-size: 22px;

  padding: 0;
  margin: 0 0 20px 0;
}

.blog .posts-list .title a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .posts-list .title a:hover {
  color: var(--color-primary);
}

.blog .posts-list .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog .posts-list .post-author-list {
  font-weight: 500;
  margin-bottom: 5px;
}

.blog .posts-list .post-date {
  font-size: 14px;
  color: #3c3c3c;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  padding: 30px;
  border-radius: 10px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.blog .blog-details .title {
  font-size: 28px;

  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-default);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(34, 34, 34, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-primary);
}

.blog .blog-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(34, 34, 34, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #555555;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(34, 34, 34, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  border-radius: 10px;
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-default);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(34, 34, 34, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
dl,
ol,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.single-page ul {
  list-style: none;
}

.single-page ul li {
  position: relative;
  color: var(--text-color);
  margin-bottom: 5px;
  border-radius: 8px;
}

.blog .sidebar {
  padding: 30px;
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  border-radius: 10px;
}

.search-form {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  margin-bottom: 30px;
  border: 0;
}

.search-form input {
  width: 100%;
  padding: 14px 28px;
  background: #ffffff;
  border: none;
  color: #393838;
  outline: none;
}

.search-form button {
  position: absolute;
  right: 0;
  padding: 16px 20px;
  border: none;
  top: 0px;
  color: var(--text-white-color);
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  outline: none;
}

.search-form button:hover {
  cursor: pointer;
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
  color: var(--text-white-color);
}

.search-form button i {
  color: #fff;
}

.blog .sidebar .sidebar-title {
  font-size: 20px;

  padding: 0;
  margin: 0;
  color: var(--color-default);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.3);
  padding: 5px 10px;
  position: relative;
  border-radius: 50px;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 50px;
  width: calc(100% - 60px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 25px;
  margin: -1px;
  background: var(--color-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(0, 131, 116, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-primary);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(34, 34, 34, 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #555555;
  font-size: 14px;
  padding: 6px 20px;
  margin: 0 6px 8px 0;
  border: 1px solid #d5d5d5;
  display: inline-block;
  transition: 0.3s;
  border-radius: 50px;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(85, 85, 85, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 50px;
  padding: 14px 40px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  background-color: rgba(248, 90, 64, 0.8);
}


/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/

.stats-counter .stats-item .purecounter {
  padding-right: 0;
}

.stats-counter .stats-item i {
  font-size: 90px;
  line-height: 0;
  color: var(--color-primary);
  margin-bottom: 30px;
}

.stats-counter .stats-item span {
  font-size: 24px;
  display: block;
  color: #cecece;
  line-height: 34px;
  text-align: center;
}

.stats-counter .stats-item p {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stats-counter-erp {
  padding: 120px 0;
  position: relative;
}

.stats-counter-erp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.stats-counter-erp .container {
  position: relative;
  z-index: 1;
}

.stats-item-erp span.stat-counter {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  display: block;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.stats-item-erp p {
  margin: 6px 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  text-align: center;
}

.stats-item-erp p span {
  display: block;
}


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-flters {
  padding: 0 0 40px 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  color: var(--text-white-color);
  line-height: 1;
  transition: all 0.3s ease-in-out;
  padding: 15px 25px;
  border-radius: 30px;
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
  color: var(--text-white-color);
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
}

.portfolio .portfolio-flters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-flters li {
    font-size: 14px;
  }
}

.portfolio .portfolio-wrap {
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  border-radius: 8px;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-wrap .portfolio-info {
  padding: 25px 20px;
  position: absolute;
  z-index: 2;
  bottom: -1px;
  -webkit-backdrop-filter: saturate(180%) blur(5px);
  backdrop-filter: saturate(180%) blur(5px);
  background: var(--color-secondary);
  border-radius: 0 8px 0 0;
}

.portfolio .portfolio-wrap .portfolio-info:hover {
  background: #1c042e;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 18px;
  margin-bottom: 0;
  color: #fff;
}

.portfolio .portfolio-wrap .portfolio-info h4 a {
  color: var(--light-color);
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 a:hover {
  color: var(--color-primary);
}

.portfolio .portfolio-wrap .project-btn a {
  color: var(--light-color);
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-details {
  margin-bottom: 20px;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.card {
  position: relative;
  height: auto;
  background: var(--light-color);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  margin: 0 auto;
  padding: 40px 20px;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  overflow: hidden;
  margin-bottom: 20px;
  border: 0;
  box-shadow: -1px 5px 20px 0px var(--box-shadow-color);
}

.card:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.card .title img {
  width: 120px;
}

.col-sm-3:nth-child(1) .card,
.col-sm-3:nth-child(1) .card .title .fa {
  /* background: linear-gradient(-45deg, var(--color-primary), #ec9f00); */
}

.col-sm-3:nth-child(2) .card,
.col-sm-4:nth-child(2) .card .title .fa {
  /* background: linear-gradient(-45deg, var(--color-primary), #ec9f00); */
}

.col-sm-3:nth-child(3) .card,
.col-sm-3:nth-child(3) .card .title .fa {
  background: linear-gradient(-45deg, var(--color-primary), #ec9f00);
}

.col-sm-3:nth-child(3) .card a {
  color: var(--light-color);
  border: 2px solid var(--light-color);
}

.card:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  z-index: 1;
  transform: skewY(-5deg) scale(1.5);
  -webkit-transform: skewY(-5deg) scale(1.5);
  -moz-transform: skewY(-5deg) scale(1.5);
  -ms-transform: skewY(-5deg) scale(1.5);
  -o-transform: skewY(-5deg) scale(1.5);
}

.title .fa {
  color: #fff;
  font-size: 60px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  text-align: center;
  line-height: 100px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, .2);
}

.title h2 {
  position: relative;
  margin: 20px 0 0;
  padding: 0;
  color: var(--text-color);
  font-size: 28px;
  z-index: 2;
}

.price {
  position: relative;
  z-index: 2;
  color: var(--text-color);
}

.price h4 {
  margin: 0;
  padding: 20px 0;
  color: var(--text-color);
  font-size: 60px;
}

.option {
  position: relative;
  z-index: 2;
}

.option ul {
  margin: 0;
  padding: 0;
}

.option ul li {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  color: var(--text-color);
  font-size: 16px;
}

.card a {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
  padding: 15px 25px;
  border-radius: 30px;
  margin-bottom: 20px;
  position: relative;
  color: var(--text-white-color);
  z-index: 2;
  margin: 20px auto 0;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}

.card a:hover {
  text-decoration: none;
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
}

/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog .posts-list .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog .posts-list .post-category {
  font-size: 16px;
  color: #555555;
  margin-bottom: 10px;
}

.blog .posts-list .title {
  font-size: 22px;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .posts-list .title a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .posts-list .title a:hover {
  color: var(--color-primary);
}

.blog .posts-list .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog .posts-list .post-author-list {
  margin-bottom: 5px;
}

.blog .posts-list .post-date {
  font-size: 14px;
  color: #3c3c3c;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  padding: 30px;
  border-radius: 10px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.blog .blog-details .title {
  font-size: 28px;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-default);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(34, 34, 34, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-primary);
}

.blog .blog-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(34, 34, 34, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #555555;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(34, 34, 34, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  border-radius: 10px;
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-default);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(34, 34, 34, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  border-radius: 10px;
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  padding: 0;
  margin: 0;
  color: var(--color-default);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.3);
  padding: 5px 10px;
  position: relative;
  border-radius: 50px;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 50px;
  width: calc(100% - 60px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 25px;
  margin: -1px;
  background: var(--color-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(0, 131, 116, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-primary);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(34, 34, 34, 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #555555;
  font-size: 14px;
  padding: 6px 20px;
  margin: 0 6px 8px 0;
  border: 1px solid #d5d5d5;
  display: inline-block;
  transition: 0.3s;
  border-radius: 50px;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(85, 85, 85, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 50px;
  padding: 14px 40px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  background-color: rgba(248, 90, 64, 0.8);
}


/**************************************
  Contact
 **************************************/
.form-control {
  font-size: 15px;
  width: 100%;
  padding: 0px 20px;
  height: 52px;
  color: #495677;
  border: none;
  border-radius: 8px;
  transition: all 0.4s;
  background: var(--theme-color-dark);
}

.contact-section .contact-form-3 form input:focus,
.contact-section .contact-form-3 form textarea:focus {
  outline: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.contact-information-box-3 {
  padding: 25px 20px;
  border-radius: 8px;
  margin-bottom: 50px;
}

.contact-information-box-3 .single-contact-info-box {
  position: relative;
  z-index: 1;
  padding: 10px 10px;
  display: block;
  border-radius: 3px;
  text-align: left;
  margin-bottom: 10px;
  overflow: hidden;
}

.contact-information-box-3 .contact-info {
  position: relative;
  z-index: 1;
}

.contact-information-box-3 .contact-info h6 {
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: 7px;
  text-transform: capitalize;
}

.contact-information-box-3 .contact-info p {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.contact-information-box-3 .single-contact-info-box .contact-info-bg-icon {
  color: #f44336;
  opacity: .2;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  margin: 0 auto;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.contact-information-box-3 .single-contact-info-box .contact-info-bg-icon i {
  font-size: 100px;
}

.contact-section .contact-form .form-group {
  margin-bottom: 30px;
}

textarea.form-control {
  height: auto;
  padding-top: 15px;
  line-height: initial;
}

.contact-section .form-message {
  margin: 0;
}

.contact-form button[type=submit] {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  transition: 0.3s;
  border: 0;
  color: var(--text-white-color);
  background: #303e55;
}

.contact-form button[type=submit]:hover {
  color: var(--text-white-color);
  background: #303e55;
}

.contact-section .form-message.success {
  background: #03b103;
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  margin-bottom: 30px;
}

.contact-section .form-message.error {
  background: #ff4d15;
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  margin-bottom: 30px;
}

.contact-area .form-message.success {
  background: #03b103;
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  display: block;
  margin-bottom: 15px;
}

.contact-area .form-message.error {
  background: #ff4d15;
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  display: block;
  margin-bottom: 15px;
}

.with-errors {
  color: #dc3545;
}

.messages {
  margin-top: 30px;
}

.alert-success {
  margin-left: 15px;
}

.hidden {
  display: none;
}


/*--------------------------------------------------------------
# Particles
--------------------------------------------------------------*/
#particles-js {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

canvas {
  display: block;
  vertical-align: bottom;
}


.count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13E8E9;
  font-size: .8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.js-count-particles {
  font-size: 1.1em;
}

#stats,
.count-particles {
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}

#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles {
  border-radius: 0 0 3px 3px;
}


/*--------------------------------------------------------------
# Custom
--------------------------------------------------------------*/

.tutoriale-item {
  display: flex;
}

.tutoriale-wrap {
  display: flex;
  flex: 1;
}

.tutoriale-item a {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 10px;
  border-bottom: 1px solid #e9e9e9;
  padding: 12px 0;
}

.tutoriale-wrap .icoana-play {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.tutoriale-wrap .partea-dreapta {
  line-height: 1.4;
}

.red_input {
  background: #fee8f1 !important;
  border: 1px solid #ced4da !important;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/


.footer-section {
  background: #0f1b2d;
  padding: 60px 0;
  border-radius: 0px;
  position: relative;
}

.footer-section:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #0f1b2d;
  z-index: 0;
  opacity: 1;
}

.footer-cta {
  border-bottom: 1px solid #373636;
}

.copyright-text {
  margin-top: 30px;
}

.single-cta i {
  color: #c00113;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
}

.cta-text h4 {
  color: #c00113;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 2px;
}

.cta-text span {
  color: #757575;
  font-size: 15px;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-content .list {
  padding-left: 0;
}

.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  max-width: 200px;
}

.footer-widget ul li,
.footer-widget ul li a {
  font-size: 14px;
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 28px;
}

.footer-social-icon span {
  color: #e4e4e4;
  display: block;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}

.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 41px;
  border-radius: 50%;
}

.facebook-bg {
  background: var(--color-primary);
}

.twitter-bg {
  background: var(--color-primary);
}

.google-bg {
  background: var(--color-primary);
}

.footer-widget-heading h3 {
  color: #e4e4e4;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  position: relative;
}

.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 100%;
  margin-bottom: 18px;
}

.footer-widget ul li a:hover {
  color: var(--color-primary);
}

.footer-widget ul li a {
  color: rgba(255, 255, 255, 0.75);
  text-transform: capitalize;
}

.subscribe-form {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #e4e4e4;
  border: 1px solid #e4e4e4;
  color: #222222;
  outline: none;
}

.subscribe-form button {
  position: absolute;
  right: -3px;
  background: transparent;
  border: 0;
  top: -8px;
}

.subscribe-form button i {
  color: #303e55;
  font-size: 3rem;
  transform: rotate(-6deg);
}

.copyright-area {
  padding: 25px 0;
}

.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #b9b9b9;
}

.copyright-text p a {
  color: var(--color-primary);
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}

.footer-menu li:hover a {
  color: var(--color-primary);
}

.footer-menu li a {
  font-size: 14px;
  color: #b9b9b9;
}

.footer-menu li a:hover {
  color: #000000;
}


/* -- API Documentation styles ---------------------------------------------- */

/* Section cards */
.api-doc .api-section {
  background: #fff;
  border: 1px solid #e3e8f0;
  border-radius: 10px;
  padding: 28px 30px;
  margin-bottom: 24px;
}

.api-doc .api-section-title {
  font-size: 16px;
  font-weight: 700;
  color: #1e2a3a;
  margin: 0 0 18px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.api-doc .api-section-title::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 16px;
  background: #4f8ef7;
  border-radius: 2px;
  flex-shrink: 0;
}

.api-doc .api-subsection-title {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .9px;
  margin: 22px 0 10px;
}

/* Endpoint header */
.api-doc .api-header {
  margin-bottom: 28px;
}

.api-doc .api-header h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1e2a3a;
  margin-bottom: 10px;
}

.api-doc .api-endpoint-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef2ff;
  border: 1px solid #c7d9fd;
  border-radius: 6px;
  padding: 6px 14px;
  margin-bottom: 10px;
}

.api-doc .api-endpoint-pill .api-url {
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 14px;
  font-weight: 600;
  color: #1e2a3a;
}

.api-doc .api-header p {
  color: #6b7a99;
  font-size: 15px;
  margin: 0;
}

/* Method badge */
.api-doc .method-post {
  background: #1a56db;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  letter-spacing: .5px;
  vertical-align: middle;
  text-transform: uppercase;
}

/* Auth note */
.api-doc .auth-note {
  background: #f0f6ff;
  border-left: 3px solid #3b82f6;
  padding: 12px 16px;
  border-radius: 0 6px 6px 0;
  font-size: 14px;
  color: #1e3a5f;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* Rate limiting cards */
.api-doc .rate-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.api-doc .rate-card {
  flex: 1;
  min-width: 160px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  padding: 12px 14px;
}

.api-doc .rate-card small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #94a3b8;
  margin-bottom: 5px;
}

.api-doc .rate-card span {
  font-size: 13px;
  color: #1e293b;
  line-height: 1.5;
}

.api-doc .rate-card code {
  background: #e2e8f0;
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 12px;
  font-family: 'SFMono-Regular', Consolas, monospace;
}

/* Code blocks */
.api-doc .code-wrap {
  border-radius: 8px;
  overflow: hidden;
  margin: 12px 0;
  border: 1px solid #2d3d55;
}

.api-doc .code-label {
  background: #2d3d55;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  display: block;
}

.api-doc pre {
  background: #1e2a3a;
  color: #e2e8f0;
  padding: 16px 18px;
  font-size: 13px;
  line-height: 1.7;
  overflow-x: auto;
  margin: 0;
}

.api-doc code {
  font-family: 'SFMono-Regular', Consolas, monospace;
}

/* Tables */
.api-doc table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.api-doc thead th {
  background: #f8fafc;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 9px 14px;
  border-bottom: 2px solid #e2e8f0;
  text-align: left;
}

.api-doc tbody tr {
  border-bottom: 1px solid #f1f5f9;
}

.api-doc tbody tr:last-child {
  border-bottom: none;
}

.api-doc tbody tr:hover {
  background: #fafbfd;
}

.api-doc tbody td {
  padding: 10px 14px;
  vertical-align: top;
  line-height: 1.5;
  color: #374151;
}

/* Param styling */
.api-doc .param-name {
  font-family: 'SFMono-Regular', Consolas, monospace;
  color: #1a56db;
  font-weight: 600;
  font-size: 13px;
}

.api-doc .param-type {
  background: #eef2ff;
  color: #3a5cc9;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  font-family: 'SFMono-Regular', Consolas, monospace;
}

.api-doc .param-default {
  background: #f1f5f9;
  color: #64748b;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: 'SFMono-Regular', Consolas, monospace;
}

/* HTTP status codes */
.api-doc .http-4 {
  color: #b91c1c;
  font-weight: 700;
}

.api-doc .http-5 {
  color: #991b1b;
  font-weight: 700;
}

.api-doc .http-429 {
  color: #7c3aed;
  font-weight: 700;
}

.api-doc .error-code {
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 12px;
  background: #fff0f0;
  color: #b91c1c;
  padding: 2px 7px;
  border-radius: 4px;
}

/* Callout */
.api-doc .callout {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 7px;
  padding: 12px 16px;
  font-size: 13.5px;
  color: #78350f;
  margin-top: 16px;
  line-height: 1.55;
}

/* Divider */
.api-doc .api-divider {
  border: none;
  border-top: 1px solid #f1f5f9;
  margin: 0;
}

/* JSON syntax colors */
.json-key {
  color: #79b8ff;
}

.json-str {
  color: #9ecbff;
}

.json-num {
  color: #f8c555;
}

.json-bool {
  color: #f97583;
}

.json-cmt {
  color: #6a737d;
  font-style: italic;
}

/* Shell syntax colors */
.sh-flag {
  color: #b392f0;
}

.sh-str {
  color: #9ecbff;
}

.sh-cmd {
  color: #79b8ff;
}

.api-toc {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 4px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 18px;
  margin-bottom: 28px;
}

.api-toc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: background .15s, color .15s;
}

.api-toc-link:hover {
  background: #e8edf5;
  color: #1a56db;
  text-decoration: none;
}

.api-toc-ep .method-post {
  font-size: 10px;
  padding: 2px 6px;
}

.api-toc-sep {
  color: #cbd5e1;
  font-size: 16px;
  padding: 0 4px;
}

.api-toc-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #94a3b8;
  padding: 0 4px;
}

.api-endpoints-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  margin: 36px 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.api-endpoints-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.method-get {
  background: #059669;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  letter-spacing: .5px;
  vertical-align: middle;
  text-transform: uppercase;
}



.timeline {
  position: relative;
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #303e55, #0d47a1);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  margin-bottom: 48px;
  position: relative;
}

.timeline-item.right {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 8px;
  z-index: 1;
}

.timeline-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 14px 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  max-width: 280px;
  width: 100%;
}

.timeline-card h4 {
  margin: 0 0 6px 0;
  color: #303e55;
  font-size: 15px;
  font-weight: 700;
}

.timeline-card p {
  margin: 0;
  font-size: 13px;
  color: #444;
  line-height: 1.5;
}

.timeline-year {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -6px;
  background: #303e55;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
  z-index: 2;
}





.about-wrap {
  display: flex;
  flex-direction: column;
  gap: 52px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-text {
  font-size: 17px;
  line-height: 1.9;
  color: #444;
}

.about-text p {
  margin: 0 0 26px 0;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-text p:first-child {
  font-size: 19px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.8;
}

.about-p-accent {
  border-left: 3px solid #2563EB;
  padding-left: 16px;
  color: #64748b !important;
  font-size: 15.5px !important;
  margin-bottom: 18px !important;
}

.about-stats {
  display: flex;
  gap: 0;
  margin: 32px 0 36px;
  border: 1px solid #e8edf5;
  border-radius: 14px;
  overflow: hidden;
}

.about-stat {
  flex: 1;
  text-align: center;
  padding: 22px 16px;
  border-right: 1px solid #e8edf5;
}

.about-stat:last-child {
  border-right: none;
}

.about-stat-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: #3a7bff;
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat-label {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-tl-section {
  padding-top: 4px;
}

.about-tl-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3a7bff;
  margin-bottom: 4px;
}

/* RIGHT: timeline */
.about-timeline {
  flex: 1;
  position: relative;
  padding-left: 32px;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, #303e55, #6b7fa3);
}

.tl-item {
  position: relative;
  margin-bottom: 32px;
}

.tl-item:last-child {
  margin-bottom: 0;
}

.tl-dot {
  position: absolute;
  left: -29px;
  top: 6px;
}

.tl-card h4 {
  margin: 0 0 5px 0;
  font-size: 14px;
  font-weight: 700;
  color: #303e55;
}

.tl-card p {
  margin: 0;
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-wrap {
    gap: 36px;
  }

  .about-text {
    font-size: 15.5px;
  }

  .dist-inner {
    padding: 28px 20px;
    border-radius: 16px;
  }
}



.program-diagram {
  display: block;
  width: 75%;
  max-width: 1140px;
  margin: 32px auto;
  transform: none !important;
  transition: none !important;
}

@media (max-width: 768px) {
  .program-diagram {
    width: 100%;
    margin: 24px auto;
  }
}

.phone-screenshots-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 32px auto;
  max-width: 600px;
}

.phone-screenshots-row img {
  width: calc(33.333% - 11px);
  height: auto;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .phone-screenshots-row {
    flex-direction: column;
    align-items: center;
    margin: 24px auto;
  }

  .phone-screenshots-row img {
    width: 60%;
  }
}

@media (max-width: 767px) {
  .row {
    display: flex;
    flex-wrap: wrap;
  }

  .mob-order-1 {
    order: 1;
  }

  .mob-order-2 {
    order: 2;
  }

  .mob-order-3 {
    order: 3;
  }

  .mob-order-4 {
    order: 4;
  }

  .mob-order-5 {
    order: 5;
  }

  .mob-order-6 {
    order: 6;
  }

  .mob-order-7 {
    order: 7;
  }

  .mob-order-8 {
    order: 8;
  }

  .mob-order-9 {
    order: 9;
  }
}

/*--------------------------------------------------------------
# Feature Cards (ERP-CRM)
--------------------------------------------------------------*/

/* ERP benefits grid � Option A: icon cards 2�4 */
.erp-benefits-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.erp-benefit-card {
  padding: 24px 28px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.erp-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.erp-benefit-icon {
  font-size: 1.4rem;
  color: #3A7BFF;
  margin-bottom: 10px;
}

.erp-benefits-grid h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}

.erp-benefits-grid p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

.erp-section-divider {
  border: none;
  border-top: 2px dashed #e2e8f0;
  margin: 56px 0;
}

@media (max-width: 640px) {
  .erp-benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ERP details list � asymmetric layout */
.erp-details-list {
  margin-top: 40px;
  border-top: 1px solid #e2e8f0;
}

.erp-detail-row {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 24px 48px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid #e2e8f0;
}

.erp-detail-row h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #3A7BFF;
  margin: 0;
  line-height: 1.4;
}

.erp-detail-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.erp-detail-body p {
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 640px) {
  .erp-detail-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }
}

.erp-feat-section {
  margin-top: 48px;
  /* background: #f5f7fb; */
  border-radius: 16px;
  padding: 48px 32px 44px;
}

.erp-feat-header {
  text-align: center;
  margin-bottom: 44px;
}

.erp-feat-badge {
  display: inline-block;
  background: rgba(73, 86, 119, 0.08);
  color: var(--color-primary);
  border: 1px solid rgba(73, 86, 119, 0.18);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.erp-feat-header h3 {
  font-size: 1.95rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 12px;
  line-height: 1.3;
}

.erp-feat-header h3 span {
  color: #3A7BFF;
}

.erp-feat-header p {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

.feat-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .feat-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .feat-cards-grid {
    grid-template-columns: 1fr;
  }
}

.feat-card {
  background: #fff;
  border: none;
  border-radius: 12px;
  border-top: 2px solid #3A7BFF;
  padding: 28px 24px 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.22s, transform 0.22s;
  display: flex;
  flex-direction: column;
}

.feat-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.09);
  transform: translateY(-6px) translateX(4px);
}

/* Single highlight � V�nzari & CRM */
.feat-cards-grid .feat-card:nth-child(2) {
  box-shadow: 0 8px 32px rgba(58, 123, 255, 0.13);
}

.feat-card-icon {
  font-size: 1.6rem;
  color: #5a6a85;
  margin-bottom: 14px;
  line-height: 1;
  transition: color 0.2s;
}

.feat-card:hover .feat-card-icon {
  color: #3A7BFF;
}

.feat-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
}

.feat-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.feat-card ul li {
  font-size: 0.95rem;
  color: #4a5568;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.feat-card ul li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3A7BFF;
  margin-top: 6px;
  flex-shrink: 0;
  opacity: 0.7;
}

.feat-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 400;
  color: #fff;
  background: #303e55;
  text-decoration: none;
  padding: 7px 16px;
  border-radius: 6px;
  transition: background 0.18s, gap 0.18s;
}

.feat-card-btn:hover {
  background: #2A364A;
  color: #fff;
  gap: 10px;
  text-decoration: none;
}

/* ── Feat Module Tabs ──────────────────────────────── */
.feat-tabs-wrap {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  margin-bottom: 0;
}

.feat-tabs-strip-outer {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 0 6px;
  gap: 2px;
}

.feat-tabs-strip {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
  gap: 4px;
  padding: 10px 2px;
}
.feat-tabs-strip::-webkit-scrollbar { display: none; }

.feat-tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  white-space: nowrap;
  flex: 1;
  min-width: max-content;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: none;
  font-size: 0.865rem;
  font-weight: 500;
  color: #5a6a85;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  line-height: 1;
}
.feat-tab-btn i { font-size: 0.95rem; }
.feat-tab-btn:hover {
  background: #eef2ff;
  color: #3A7BFF;
}
.feat-tab-btn.active {
  background: #3A7BFF;
  color: #fff;
  border-color: #3A7BFF;
}

.feat-tabs-scroll-btn {
  background: none;
  border: none;
  color: #94a3b8;
  padding: 6px 7px;
  cursor: pointer;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: color 0.15s;
  line-height: 1;
}
.feat-tabs-scroll-btn:hover { color: #3A7BFF; }

.feat-tabs-body {
  padding: 36px 40px 32px;
}

.feat-tab-panel {
  display: none;
}
.feat-tab-panel.active {
  display: block;
  animation: featTabIn 0.22s ease;
}

@keyframes featTabIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.feat-tab-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feat-tab-title i { color: #3A7BFF; font-size: 1.1rem; }

.feat-tab-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  margin-bottom: 28px;
}

.feat-tab-col-header {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 12px;
}

.feat-tab-col + .feat-tab-col {
  border-left: 1px solid #e9eef6;
  padding-left: 48px;
}

.feat-tab-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feat-tab-list li {
  font-size: 0.93rem;
  color: #475569;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
  margin-bottom: 11px;
}
.feat-tab-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3A7BFF;
  opacity: 0.75;
}

.feat-tab-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e9eef6;
  padding-top: 22px;
  flex-wrap: wrap;
  gap: 12px;
}

.feat-tab-detail-link {
  font-size: 0.875rem;
  color: #64748b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.18s;
}
.feat-tab-detail-link:hover { color: #3A7BFF; text-decoration: none; }

.feat-tab-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3A7BFF;
  color: #fff;
  text-decoration: none;
  margin-left: auto;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.18s, gap 0.18s;
}
.feat-tab-cta-btn:hover {
  background: #3A7BFF;
  color: #fff;
  gap: 12px;
  text-decoration: none;
}

@media (max-width: 767px) {
  .feat-tabs-body { padding: 22px 18px 20px; }
  .feat-tab-cols { grid-template-columns: 1fr; gap: 24px 0; }
  .feat-tab-col + .feat-tab-col { border-left: none; padding-left: 0; border-top: 1px solid #e9eef6; padding-top: 20px; }
  .feat-tab-footer { flex-direction: column; align-items: flex-start; }
}

/* ERP CTA section */
.erp-cta-section {
  margin-top: 60px;
  padding: 60px 40px;
  background: #0f1b2d;
  border-radius: 16px;
  text-align: center;
}

.erp-cta-section h3 {
  font-size: 1.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
}

.erp-cta-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.erp-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.erp-cta-secondary {
  display: inline-block;
  padding: 10px 28px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.02rem;
  transition: border-color 0.2s;
}

.erp-cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
}

/* Feat card modal */
.fcm-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.fcm-overlay.fcm-open {
  display: flex;
}

.fcm-box {
  background: #f8fafc;
  border-radius: 14px;
  width: calc(100vw - 32px);
  max-width: 1100px;
  height: calc(100vh - 32px);
  max-height: 860px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
  animation: fcmIn 0.22s ease;
  display: flex;
  flex-direction: column;
}

@keyframes fcmIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fcm-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(0, 0, 0, 0.45);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background 0.15s;
}

.fcm-close:hover {
  background: rgba(0, 0, 0, 0.7);
}

.fcm-img {
  width: 100%;
  flex: 0 0 50%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.fcm-body {
  flex: 1 1 auto;
  padding: 28px 40px 36px;
  overflow-y: auto;
  background: #f8fafc;
}

.fcm-title {
  display: none;
  /* title is now inside .fcm-text via h2 */
}

.fcm-text {
  font-size: 0.93rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}

/* SaaS-style modal content typography */
.fcm-text h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 14px;
  line-height: 1.3;
}

.fcm-text h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #3A7BFF;
  margin: 20px 0 8px;
}

.fcm-text p {
  margin: 0 0 10px;
  color: #475569;
  font-size: 0.93rem;
  line-height: 1.65;
}

.fcm-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.fcm-text ul li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #1e293b;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 5px 12px;
  line-height: 1.4;
}

.fcm-text ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3A7BFF;
  flex-shrink: 0;
}

.fcm-text p:last-child {
  margin-top: 14px;
  background: #eff6ff;
  border-left: 3px solid #3A7BFF;
  border-radius: 0 6px 6px 0;
  padding: 10px 14px;
  font-size: 0.9rem;
  color: #1e3a5f;
  margin-bottom: 0;
}

/* Module pages (vanzari-crm, etc.) */
.module-section {
  padding: 0;
  overflow: visible;
}

.module-section img:hover {
  transform: none;
}

.module-hero {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
}

.module-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.module-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 20, 40, 0.82) 0%, rgba(10, 20, 40, 0.0) 60%);
  display: flex;
  align-items: flex-end;
  padding: 32px 40px;
}

.module-hero-text {
  max-width: 480px;
  padding-bottom: 4px;
}

.module-hero-overlay h1 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.35;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.module-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #2563EB;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s;
}

.module-hero-cta:hover {
  background: #2563eb;
  color: #fff;
}

/* 2-column feature list */
.module-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  margin-bottom: 8px;
}

.module-2col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.module-2col ul li,
.module-content .module-2col ul li {
  font-size: 0.88rem;
  color: #1e293b;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.module-2col ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3A7BFF;
  flex-shrink: 0;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .module-hero {
    height: 280px;
    border-radius: 8px;
  }

  .module-hero-overlay {
    padding: 20px 20px;
  }

  .module-hero-overlay h1 {
    font-size: 1rem;
  }

  .module-2col {
    grid-template-columns: 1fr;
  }
}

.module-content {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 12px 12px 0 0;
  padding: 32px 36px 36px;
}

.module-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
  line-height: 1.3;
}

.module-content h3 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #3A7BFF;
  margin: 24px 0 8px;
}

.module-content p {
  font-size: 0.93rem;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 10px;
}

.module-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.module-content ul li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #1e293b;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 5px 12px;
  line-height: 1.4;
}

.module-content ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3A7BFF;
  flex-shrink: 0;
}

.module-result {
  margin-top: 20px !important;
  background: #eff6ff !important;
  border-left: 3px solid #3A7BFF;
  border-radius: 0 6px 6px 0;
  padding: 10px 14px !important;
  font-size: 0.9rem !important;
  color: #1e3a5f !important;
  margin-bottom: 0 !important;
}

@media (max-width: 768px) {
  .module-content {
    padding: 20px 18px 24px;
  }

  .module-content h2 {
    font-size: 1.2rem;
  }

  .module-section .program-diagram {
    max-height: 220px;
    border-radius: 8px;
  }
}

@media (max-width: 640px) {
  .fcm-box {
    height: calc(100vh - 32px);
    max-height: none;
    border-radius: 10px;
  }

  .fcm-img {
    flex: 0 0 50%;
  }

  .fcm-body {
    padding: 20px 20px 24px;
  }

  .fcm-title {
    font-size: 1.2rem;
  }
}

/* ===== Video Tutoriale ===== */
.vt-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e293b;
}

.vt-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.vt-search-wrap {
  position: relative;
  flex: 1;
  min-width: 220px;
  max-width: 340px;
}

.vt-search-wrap i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.9rem;
}

.vt-search-wrap input {
  width: 100%;
  padding: 9px 14px 9px 34px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #1e293b;
  background: #f8fafc;
  outline: none;
  transition: border-color 0.2s;
}

.vt-search-wrap input:focus {
  border-color: #3A7BFF;
  background: #fff;
}

.vt-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vt-cat {
  padding: 7px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #f8fafc;
  font-size: 0.82rem;
  font-weight: 500;
  color: #475569;
  cursor: pointer;
  transition: all 0.18s;
}

.vt-cat:hover {
  border-color: #3A7BFF;
  color: #3A7BFF;
}

.vt-cat.active {
  background: #3A7BFF;
  border-color: #3A7BFF;
  color: #fff;
}

.vt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.vt-card {
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}

.vt-card:hover {
  box-shadow: 0 6px 24px rgba(58, 123, 255, 0.12);
  transform: translateY(-2px);
}

.vt-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0f172a;
}

.vt-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.vt-card:hover .vt-thumb-wrap img {
  transform: scale(1.04);
}

.vt-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.2s;
}

.vt-card:hover .vt-play-btn {
  background: rgba(0, 0, 0, 0.38);
}

.vt-play-btn i {
  font-size: 3rem;
  color: #fff;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.vt-card-body {
  padding: 12px 14px 14px;
}

.vt-card-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #3A7BFF;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
}

.vt-card-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  line-height: 1.4;
}

.vt-empty {
  text-align: center;
  color: #94a3b8;
  padding: 40px 0;
  font-size: 0.95rem;
}

/* Video modal */
.vt-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 40, 0.75);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.vt-modal-overlay.vt-modal-open {
  display: flex;
}

.vt-modal-box {
  background: #0f172a;
  border-radius: 12px;
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  position: relative;
}

.vt-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
  opacity: 0.7;
}

.vt-modal-close:hover {
  opacity: 1;
}

.vt-modal-title {
  padding: 14px 44px 10px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e2e8f0;
}

.vt-modal-embed {
  position: relative;
  aspect-ratio: 16/9;
}

.vt-modal-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 576px) {
  .vt-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .vt-search-wrap {
    max-width: 100%;
  }

  .vt-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}


/* ===== Studii de caz ===== */
.studii-page-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e293b;
}

.studii-page-sub {
  color: #64748b;
  font-size: 0.95rem;
  margin-top: 4px;
}

.studii-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.studiu-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}

.studiu-card:hover {
  box-shadow: 0 8px 28px rgba(58, 123, 255, 0.13);
  transform: translateY(-3px);
  color: inherit;
  text-decoration: none;
}

.studiu-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f1f5f9;
}

.studiu-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}

.studiu-card:hover .studiu-img-wrap img {
  transform: scale(1.04);
}

.studiu-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.studiu-client {
  font-size: 0.72rem;
  font-weight: 600;
  color: #3A7BFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.studiu-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px;
  line-height: 1.35;
}

.studiu-desc {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0 0 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.studiu-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: #3A7BFF;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}

.studiu-link i {
  transition: transform 0.2s;
}

.studiu-card:hover .studiu-link i {
  transform: translateX(4px);
}

@media (max-width: 576px) {
  .studii-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== Studii de caz � v2 listing page ===== */

.studii-hero {
  background: #fff;
  border-bottom: 1px solid #e8edf5;
  padding-top: 90px;
}

.studii-hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  line-height: 0;
}

.studii-hero-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48%;
  background: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none;
}

.studii-hero-img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.studii-hero-img--tall {
  max-height: 520px;
}

.studii-hero-text {
  position: relative;
  z-index: 1;
  margin-top: -110px;
  padding: 0 0 48px;
  max-width: 720px;
}

.studii-hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 14px;
}

.studii-hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
  margin: 0 0 22px;
  letter-spacing: -0.02em;
}

.studii-hero-title strong {
  color: #2563eb;
  font-weight: 800;
}

.studii-hero-count {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: #64748b;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 5px 14px;
}

.studii-hero-count strong {
  color: #1e293b;
  font-weight: 700;
}

@media (max-width: 768px) {
  .studii-hero-img {
    height: 400px;
    object-fit: cover;
    object-position: center top;
  }

  .studii-hero-text {
    margin-top: -80px;
    padding-bottom: 32px;
  }

  .studii-hero-title {
    font-size: 1.6rem;
  }
}

/* Listing */
.studii-listing {
  padding: 40px 0 80px;
  background: #fff;
}

/* Category filter pills */
.studii-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.studii-filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #475569;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  text-decoration: none;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
}

.studii-filter-pill:hover {
  border-color: #2563eb;
  color: #2563eb;
}

.studii-filter-pill.active {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

/* Filter bar: pills row + modules dropdown */
.studii-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
  position: relative;
  z-index: 50;
}

.studii-filter-bar .studii-filters {
  margin-bottom: 0;
  flex: 1 1 auto;
}

/* Modules multiselect dropdown */
.studii-mod-dropdown {
  position: relative;
  flex-shrink: 0;
}

.studii-mod-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #475569;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  white-space: nowrap;
}

.studii-mod-btn:hover,
.studii-mod-btn.open {
  border-color: #2563eb;
  color: #2563eb;
}

.studii-mod-btn.active {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

.studii-mod-btn.active:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

.studii-mod-chevron {
  font-size: 0.72rem;
  transition: transform 0.2s;
}

.studii-mod-btn.open .studii-mod-chevron {
  transform: rotate(180deg);
}

.studii-mod-panel {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(30, 41, 59, 0.12);
  padding: 10px 8px;
  min-width: 230px;
  z-index: 500;
}

.studii-mod-panel.open {
  display: block;
}

.studii-mod-option {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #334155;
  cursor: pointer;
  transition: background 0.14s;
}

.studii-mod-option:hover {
  background: #f1f5f9;
}

.studii-mod-option.checked {
  color: #2563eb;
  font-weight: 600;
}

.studii-mod-option input[type="checkbox"] {
  accent-color: #2563eb;
  width: 15px;
  height: 15px;
}

.studii-mod-clear {
  display: block;
  margin: 8px 10px 2px;
  font-size: 0.78rem;
  color: #94a3b8;
  text-decoration: none;
  border-top: 1px solid #f1f5f9;
  padding-top: 8px;
}

.studii-mod-clear:hover {
  color: #2563eb;
}

#studii-results {
  transition: opacity 0.15s;
}

#studii-results.studii-loading {
  opacity: 0.4;
  pointer-events: none;
}

.scv2-img-wrap {
  position: relative;
}

.scv2-cat-badge {
  background: #3a7bff;
  color: #fff;
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 9px;
  border-radius: 4px;
  border: none;
}

/* Grid */
.studii-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 992px) {
  .studii-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .studii-grid-v2 {
    grid-template-columns: 1fr;
  }
}

/* Card */
.studiu-card-v2 {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(30, 41, 59, 0.07);
  border: 1px solid #e8edf8;
  transition: box-shadow 0.22s, transform 0.22s;
}

.studiu-card-v2:hover {
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.14);
  transform: translateY(-4px);
  color: inherit;
  text-decoration: none;
}

.scv2-img-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #e8edf8;
  position: relative;
}

.scv2-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.38s;
}

.studiu-card-v2:hover .scv2-img-wrap img {
  transform: scale(1.05);
}

.scv2-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 30%, rgba(0,0,0,0) 65%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px 14px 12px;
}

.scv2-company-name {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 7px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.scv2-cat-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.scv2-body {
  padding: 22px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.scv2-title {
  font-size: 1rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 10px;
  line-height: 1.35;
}

.scv2-metric-strip {
  border-left: 4px solid #3a7bff;
  padding: 6px 14px;
  margin-bottom: 14px;
}

.scv2-metric-big {
  display: block;
  font-size: 1.2rem;
  font-weight: 900;
  color: #2563eb;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.scv2-metric-small {
  display: block;
  font-size: 0.78rem;
  color: #475569;
  line-height: 1.4;
  font-weight: 500;
  margin-top: 2px;
}

.scv2-desc {
  font-size: 0.9rem;
  color: #1e293b;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.scv2-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f0f4ff;
}

.scv2-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: #2563eb;
}

.scv2-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eff4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
}

.studiu-card-v2:hover .scv2-arrow {
  background: #2563eb;
  color: #fff;
  transform: translateX(3px);
}

/* Empty state */
.studii-empty {
  text-align: center;
  padding: 80px 0;
  color: #94a3b8;
}

.studii-empty i {
  font-size: 3rem;
  display: block;
  margin-bottom: 12px;
}

/* Blog posts grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 992px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .blog-grid { grid-template-columns: 1fr; }
}

.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(30, 41, 59, 0.07);
  border: 1px solid #e8edf8;
  transition: box-shadow 0.22s, transform 0.22s;
}

.blog-card:hover {
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.14);
  transform: translateY(-4px);
  color: inherit;
  text-decoration: none;
}

.bc-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #e8edf8;
}

.bc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.38s;
}

.blog-card:hover .bc-img-wrap img {
  transform: scale(1.05);
}

.bc-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bc-date {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.bc-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.45;
  margin: 0 0 auto;
  padding-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bc-short {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #f0f4ff;
}

.blog-card:hover .scv2-arrow {
  background: #2563eb;
  color: #fff;
  transform: translateX(3px);
}

.blog-section {
  padding: 48px 0 80px;
  background: #fff;
}

/* Pagination */
.studii-pag-wrap {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.studii-pagination {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 6px;
  align-items: center;
}

.sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  text-decoration: none;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
}

.sp-btn:hover {
  border-color: #2563eb;
  color: #2563eb;
  background: #eff4ff;
}

.sp-active {
  background: #2563eb !important;
  color: #fff !important;
  border-color: #2563eb !important;
}


/* ===== Related Case Studies Partial ===== */
.cs-related-section {
  padding: 80px 0 60px;
  background: #fff;
  /* border-top: 1px solid #e8edf8; */
}

.cs-related-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.cs-related-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1e293b;
  margin: 8px 0 4px;
}

.cs-related-sub {
  font-size: 0.92rem;
  color: #64748b;
  margin: 0;
}

.cs-related-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #3a7bff;
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 18px;
  border: 1.5px solid rgba(58, 123, 255, 0.3);
  border-radius: 8px;
  transition: background 0.18s, border-color 0.18s;
}

.cs-related-all-btn:hover {
  background: rgba(58, 123, 255, 0.07);
  border-color: rgba(58, 123, 255, 0.6);
  color: #3a7bff;
}

.cs-related-all-btn i {
  transition: transform 0.18s;
}

.cs-related-all-btn:hover i {
  transform: translateX(3px);
}

.cs-related-footer {
  text-align: center;
  margin-top: 40px;
}

/* ===== Testimoniale SaaS ===== */
.testimonials-section {
  padding: 80px 0;
}

.testi-page-listing {
  padding: 60px 0 80px;
  background: #fff;
}

/* ── Testimoniale page stats bar ── */
.testi-stats-bar.testi-stats-bar--four {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
  .testi-stats-bar.testi-stats-bar--four {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testi-stats-pull {
  position: relative;
  z-index: 3;
  margin-top: -36px;
  padding-bottom: 0;
}

.testi-stats-bar {
  background: #eaecef;
  border: 1px solid #e0e2e6;
  border-radius: 16px;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.07);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.testi-stat-item {
  background: #f7f8fa;
  padding: 32px 28px;
  text-align: center;
  border-right: 1px solid #e0e2e6;
}

.testi-stat-item:last-child {
  border-right: none;
}

.testi-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #2563EB;
  line-height: 1;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.testi-stat-star {
  font-size: 1.1rem;
  color: #f59e0b;
}

.testi-stat-label {
  font-size: 0.88rem;
  color: #000;
  font-weight: 500;
}

/* ── Company logo on card ── */
.testi-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testi-company-logo {
  max-height: 32px;
  max-width: 90px;
  object-fit: contain;
  opacity: 0.75;
  filter: grayscale(0.3);
}

/* ── Big decorative quote ── */
.testi-big-quote {
  font-size: 5rem;
  font-weight: 900;
  color: #3a7bff;
  line-height: 0.7;
  opacity: 0.18;
  margin-bottom: -4px;
  font-family: Georgia, serif;
  user-select: none;
}

@media (max-width: 768px) {
  .testi-stats-bar {
    grid-template-columns: repeat(3, 1fr);
  }

  .testi-stat-item {
    padding: 20px 12px;
  }

  .testi-stat-num {
    font-size: 1.35rem;
  }

  .testi-stat-label {
    font-size: 0.75rem;
  }

  .testi-stats-pull {
    margin-top: -20px;
  }
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.testi-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
}

.testi-card:hover {
  box-shadow: 0 8px 28px rgba(58, 123, 255, 0.1);
  transform: translateY(-2px);
}

.testi-stars {
  display: flex;
  gap: 3px;
}

.testi-stars i {
  color: #f59e0b;
  font-size: 0.82rem;
}

.testi-quote {
  color: #3A7BFF;
  font-size: 1.5rem;
  line-height: 1;
  opacity: 0.35;
}

.testi-text {
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.7;
  flex: 1;
}

.testi-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: #3A7BFF;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.testi-more i {
  transition: transform 0.2s;
}

.testi-more:hover i {
  transform: translateX(3px);
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  margin-top: 4px;
}

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #3A7BFF;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
}

.testi-company {
  font-size: 0.78rem;
  color: #64748b;
}

@media (max-width: 991px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== Module page nav ===== */
.module-page-nav {
  border-top: 1px solid #e2e8f0;
  margin-top: 8px;
}

/* Strip wrapper � holds arrows + scrollable grid */
.module-all-strip-wrap {
  position: relative;
}

.module-strip-arrow {
  display: none;
  /* shown only on mobile via media query */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #475569;
  transition: box-shadow 0.18s, color 0.18s;
}

.module-strip-arrow:hover {
  color: #3A7BFF;
  box-shadow: 0 3px 12px rgba(58, 123, 255, 0.18);
}

.module-strip-arrow--left {
  left: 4px;
}

.module-strip-arrow--right {
  right: 4px;
}

/* All-modules grid */
.module-all-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-bottom: 1px solid #e2e8f0;
}

.module-all-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  text-decoration: none;
  color: #475569;
  border-right: 1px solid #e2e8f0;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  transition: background 0.18s, color 0.18s;
  position: relative;
}

.module-all-card:last-child {
  border-right: none;
}

.module-all-card i {
  font-size: 1.3rem;
  color: #94a3b8;
  transition: color 0.18s;
}

.module-all-card:hover {
  background: #f8fafc;
  color: #1e293b;
  text-decoration: none;
}

.module-all-card:hover i {
  color: #3A7BFF;
}

.module-all-card--active {
  background: #f0f5ff;
  color: #3A7BFF;
}

.module-all-card--active i {
  color: #3A7BFF;
}

.module-all-card--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #3A7BFF;
  border-radius: 2px 2px 0 0;
}

.module-all-badge {
  display: none;
}

/* Bottom row: back link + arrows */
.module-nav-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 36px;
  flex-wrap: wrap;
  gap: 12px;
}

.module-nav-back {
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.18s;
}

.module-nav-back:hover {
  color: #3A7BFF;
}

.module-nav-arrows {
  display: flex;
  gap: 10px;
}

.module-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  text-decoration: none;
  color: #1e293b;
  background: #fff;
  transition: box-shadow 0.18s, border-color 0.18s;
  min-width: 180px;
}

.module-nav-btn:hover {
  border-color: #3A7BFF;
  box-shadow: 0 4px 14px rgba(58, 123, 255, 0.1);
  color: #1e293b;
  text-decoration: none;
}

.module-nav-btn span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.module-nav-btn small {
  font-size: 0.68rem;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.module-nav-btn strong {
  font-size: 0.84rem;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 5px;
}

.module-nav-next span {
  align-items: flex-end;
}

.module-nav-disabled {
  min-width: 180px;
  border: none;
  pointer-events: none;
}

.module-nav-prev>i,
.module-nav-next>i {
  font-size: 0.95rem;
  color: #3A7BFF;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .module-strip-arrow {
    display: flex;
  }

  /* Horizontal scroll strip on mobile */
  .module-all-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 36px;
    /* room for the arrow buttons */
    grid-template-columns: unset;
    border-bottom: 1px solid #e2e8f0;
  }

  .module-all-grid::-webkit-scrollbar {
    display: none;
  }

  .module-all-card {
    flex: 0 0 auto;
    width: 80px;
    padding: 12px 8px;
    font-size: 0.68rem;
    border-right: 1px solid #e2e8f0;
    gap: 5px;
  }

  .module-all-card i {
    font-size: 1.1rem;
  }

  /* Compact side-by-side prev/next */
  .module-nav-bottom {
    display: none;
  }

  .module-nav-btn {
    min-width: unset;
    padding: 8px 10px;
    gap: 6px;
    border-radius: 8px;
  }

  .module-nav-btn span {
    gap: 1px;
  }

  .module-nav-btn small {
    font-size: 0.62rem;
  }

  .module-nav-btn strong {
    font-size: 0.78rem;
  }

  .module-nav-next span {
    align-items: flex-start;
  }

  .module-nav-disabled {
    min-width: unset;
    border: 1px solid transparent;
  }
}


/* ===== Clien?i page ===== */
.clienti-page {
  padding: 48px 0 0;
  background: #F9F9F9;
}

/* Intro */
.clienti-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
  padding: 0 20px;
}

.clienti-intro-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #3A7BFF;
  background: #eff4ff;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.clienti-intro-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.25;
  margin-bottom: 14px;
}

.clienti-intro-title span {
  color: #3A7BFF;
}

.clienti-intro-sub {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Stats bar */
.clienti-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 60px;
}

.clienti-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 24px 16px;
  border-right: 1px solid #e2e8f0;
}

.clienti-stat:last-child {
  border-right: none;
}

.clienti-stat strong {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1e293b;
}

.clienti-stat span {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Logo slider */
.clienti-slider-section {
  /* margin-bottom: 60px; */
  overflow: hidden;
  background: #F9F9F9;
}

.clienti-slider-label {
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin-bottom: 24px;
}

.clienti-slider-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}

/* Fade edges */
.clienti-slider-wrap::before,
.clienti-slider-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}

.clienti-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, #F9F9F9 0%, transparent 100%);
}

.clienti-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, #F9F9F9 0%, transparent 100%);
}

.clienti-slider-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: clientiScroll 32s linear infinite;
}

.clienti-slider-track--reverse {
  animation-direction: reverse;
  animation-duration: 101s;
}

@keyframes clientiScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.clienti-logo-card {
  flex-shrink: 0;
  width: 190px;
  height: 84px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  cursor: pointer;
  padding: 10px 14px;
}

.clienti-logo-card:hover {
  border-color: #3A7BFF;
  box-shadow: 0 4px 14px rgba(58, 123, 255, 0.1);
}

.clienti-logo-card img {
  width: 100% !important;
  height: 100% !important;
  max-width: unset !important;
  max-height: unset !important;
  object-fit: contain !important;
}

.clienti-logo-card span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #94a3b8;
  text-align: center;
  padding: 0 12px;
  line-height: 1.3;
}

/* Industries grid */
.clienti-industries {
  margin-bottom: 60px;
}

.clienti-ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.clienti-ind-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.clienti-ind-card:hover {
  border-color: #3A7BFF;
  box-shadow: 0 4px 14px rgba(58, 123, 255, 0.08);
}

.clienti-ind-card i {
  font-size: 1.2rem;
  color: #3A7BFF;
  flex-shrink: 0;
}

/* CTA */
.clienti-cta {
  text-align: center;
  background: #0f172a;
  border-radius: 16px;
  padding: 56px 32px;
  margin-bottom: 0;
}

.clienti-cta h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.clienti-cta p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.clienti-cta-btn {
  display: inline-block;
  background: #3A7BFF;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s;
}

.clienti-cta-btn:hover {
  background: #2563eb;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .clienti-intro-title {
    font-size: 1.5rem;
  }

  .clienti-stats {
    flex-wrap: wrap;
  }

  .clienti-stat {
    flex: 0 0 50%;
    border-bottom: 1px solid #e2e8f0;
  }

  .clienti-stat:nth-child(even) {
    border-right: none;
  }

  .clienti-ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .clienti-ind-grid {
    grid-template-columns: 1fr 1fr;
  }

  .clienti-stat {
    flex: 0 0 50%;
  }
}

/* ===== Devino Distribuitor Section ===== */
.dist-section {
  padding: 70px 0;
  background-color: #0f1b2d !important;
  position: relative;
  overflow: hidden;
}

.dist-section .container {
  position: relative;
}

.dist-inner {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 52px 56px;
}

.dist-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(58, 123, 255, 0.07) 0%, transparent 58%),
    radial-gradient(circle at 80% 20%, rgba(58, 123, 255, 0.05) 0%, transparent 48%);
  pointer-events: none;
}

.dist-badge {
  display: inline-block;
  background: rgba(58, 123, 255, 0.15);
  color: #5b9bff;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(58, 123, 255, 0.25);
}

.dist-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.dist-title span {
  color: #5b9bff;
}

.dist-lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.dist-benefits {
  margin-bottom: 2.2rem;
}

.dist-benefits [class*="col"] {
  display: flex;
}

.dist-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 16px;
  width: 100%;
}

.dist-benefit-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(58, 123, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dist-benefit-icon i {
  color: #5b9bff;
  font-size: 1rem;
}

.dist-benefit-title {
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
}

.dist-benefit-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: .85rem;
}

.dist-btn {
  background: #3a7bff;
  color: #fff;
  padding: .75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: background .2s;
  border: none;
}

.dist-btn:hover {
  background: #2563eb;
  color: #fff;
}

.dist-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.dist-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.dist-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(58, 123, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.dist-card-icon i {
  color: #5b9bff;
  font-size: 1.8rem;
}

.dist-card-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: .3rem;
}

.dist-card-subtitle {
  color: rgba(255, 255, 255, 0.55);
  font-size: .9rem;
  margin: 0;
}

.dist-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.dist-checklist li {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: #e2e8f0;
  font-size: .9rem;
}

.dist-checklist li i {
  color: #3a7bff;
  flex-shrink: 0;
}

.dist-card-footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.dist-card-footer p {
  color: rgba(255, 255, 255, 0.45);
  font-size: .8rem;
  margin: 0;
}

.dist-card-footer strong {
  color: #5b9bff;
}


/* ===== Distribuitor rewrite ===== */
.dstr-section {
  margin-top: 48px;
}

.dstr-box {
  display: flex;
  align-items: stretch;
  gap: 48px;
  background: #0f1b2d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 52px;
}

.dstr-left {
  flex: 1;
  min-width: 0;
}

.dstr-right {
  flex: 0 0 340px;
}

.dstr-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.dstr-title span {
  color: #5b9bff;
}

.dstr-lead {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.dstr-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 2.2rem;
}

.dstr-perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 16px;
}

.dstr-perk-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(58, 123, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dstr-perk-icon i {
  color: #5b9bff;
  font-size: 1rem;
}

.dstr-perk-title {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.dstr-perk-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  line-height: 1.4;
}

.dstr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3a7bff;
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s;
}

.dstr-btn:hover {
  background: #2563eb;
  color: #fff;
}

.dstr-panel {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.dstr-panel-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(58, 123, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.dstr-panel-icon i {
  color: #5b9bff;
  font-size: 1.6rem;
}

.dstr-panel-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.dstr-panel-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.dstr-list {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.dstr-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff !important;
  font-size: 0.9rem;
}

.dstr-list li i {
  color: #3a7bff;
  flex-shrink: 0;
  font-size: 1rem;
}

.dstr-panel-footer {
  width: 100%;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dstr-panel-footer p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin: 0;
}

.dstr-panel-footer strong {
  color: #5b9bff;
}

@media (max-width: 992px) {
  .dstr-right {
    flex: none;
    width: 100%;
  }

  .dstr-box {
    flex-direction: column;
    padding: 32px 24px;
    border-radius: 16px;
  }
}

@media (max-width: 576px) {
  .dstr-perks {
    grid-template-columns: 1fr;
  }
}


/*--------------------------------------------------------------
# Studii de caz � .cs-page
--------------------------------------------------------------*/
.cs-page {
  font-family: var(--font-default, 'Poppins', sans-serif);
  color: #3a3a3a;
}

/* Hero */
.cs-hero {
  background: #fff;
}

.cs-hero-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: none !important;
}

.cs-hero-bg-pattern {
  display: none;
}

.cs-hero .container {
  padding-top: 48px;
  padding-bottom: 56px;
}

.cs-industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(99, 130, 220, 0.1);
  border: 1px solid rgba(99, 130, 220, 0.25);
  color: #5a6fa8;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.cs-hero-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2340;
  line-height: 1.3;
  margin-bottom: 18px;
}

.cs-highlight {
  color: #3a7bff;
}

.cs-hero-sub {
  font-size: 1.05rem;
  color: #000;
  margin-bottom: 28px;
  line-height: 1.65;
}

.cs-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cs-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(99, 130, 220, 0.08);
  border: 1px solid rgba(99, 130, 220, 0.2);
  color: #4a5a80;
  font-size: 0.82rem;
  padding: 4px 12px;
  border-radius: 4px;
  text-decoration: none;
}

a.cs-tag:hover {
  background: rgba(99, 130, 220, 0.18);
  color: #3a5bff;
}

/* Company card */
.cs-company-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.cs-company-logo-wrap {
  /* background: #f0f4ff; */
  padding: 32px 24px;
  text-align: center;
  border-bottom: 1px solid #dde6ff;
}

.cs-company-logo {
  width: 160px;
  height: 80px;
  object-fit: contain;
}

.cs-company-logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #3a7bff;
}

.cs-company-logo-placeholder i {
  font-size: 2.6rem;
}

.cs-company-logo-placeholder span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #303e55;
}

.cs-company-meta {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cs-company-meta li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid #f0f2f8;
  font-size: 0.86rem;
}

.cs-company-meta li:last-child {
  border-bottom: none;
}

.cs-meta-label {
  color: #888;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.cs-meta-value {
  color: #303e55;
  font-weight: 600;
  text-align: right;
}

.cs-meta-block {
  display: block;
  width: 100%;
}

.cs-meta-block ul li {
  display: block;
  justify-content: unset;
  padding: 4px 0;
  border-bottom: none;
}

.cs-meta-block .cs-meta-value {
  text-align: left;
  font-weight: 600;
}

/* Section labels & titles */
.cs-section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3a7bff;
  background: #eef3ff;
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.cs-label-red {
  color: #c0392b;
  background: #fdf0ef;
}

.cs-label-green {
  color: #1a7a4a;
  background: #edf7f2;
}

.cs-label-no-caps {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.88rem;
}

.cs-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #303e55;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cs-section-sub {
  font-size: 1rem;
  color: #666;
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto;
}

/* About */
.cs-about {
  padding: 70px 0;
  background: #F9F9F9;
  text-align: center;
}

.cs-about-text {
  font-size: 0.97rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 14px;
  text-align: left;
}

/* Challenges */
.cs-challenges {
  padding: 70px 0;
  background: #fff;
}

.cs-challenge-card {
  background: #fff;
  border-left: 4px solid #c0392b;
  border-radius: 8px;
  padding: 24px;
  width: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s;
}

.cs-challenge-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.cs-challenge-icon {
  font-size: 1.5rem;
  color: #c0392b;
  margin-bottom: 10px;
}

.cs-challenge-card h4 {
  font-size: 0.96rem;
  font-weight: 700;
  color: #303e55;
  margin-bottom: 8px;
}

.cs-challenge-card p {
  font-size: 0.86rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.cs-challenge-conclusion {
  font-size: 1.15rem;
  font-weight: 600;
  color: #303e55;
  border-top: 1px solid #e2e8f0;
  padding-top: 28px;
  line-height: 1.5;
}

/* Solution */
.cs-solution {
  padding: 70px 0;
  background: #F9F9F9;
}

.cs-module-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 24px;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border-top: 3px solid #3a7bff;
  transition: box-shadow 0.2s, transform 0.2s;
}

.cs-module-card:hover {
  box-shadow: 0 8px 24px rgba(58, 123, 255, 0.14);
  transform: translateY(-3px);
}

.cs-module-icon {
  font-size: 1.7rem;
  color: #3a7bff;
  margin-bottom: 14px;
}

.cs-module-card h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #303e55;
  margin-bottom: 8px;
}

.cs-module-card p {
  font-size: 0.86rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Results */
.cs-results {
  padding: 70px 0;
  background: #fff;
}

.cs-result-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cs-result-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cs-result-icon {
  font-size: 1.25rem;
  color: #1a7a4a;
  flex-shrink: 0;
  margin-top: 2px;
}

.cs-result-icon--red {
  color: #c0392b;
}

.cs-result-list strong {
  display: block;
  font-size: 0.96rem;
  font-weight: 700;
  color: #303e55;
  margin-bottom: 4px;
}

.cs-result-list p {
  font-size: 0.86rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.cs-compare-headings {
  align-items: stretch;
}

.cs-compare-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
  padding: 18px 22px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
}

.cs-compare-heading__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  flex-shrink: 0;
}

.cs-compare-heading__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cs-compare-heading__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cs-compare-heading__title {
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1a2340;
}

.cs-compare-heading--before {
  border-color: rgba(192, 57, 43, 0.22);
  background: #fffdfd;
}

.cs-compare-heading--before .cs-compare-heading__icon {
  color: #c0392b;
  background: #fdf0ef;
}

.cs-compare-heading--before .cs-compare-heading__eyebrow {
  color: #c0392b;
}

.cs-compare-heading--after {
  border-color: rgba(26, 122, 74, 0.22);
  background: #fcfefc;
}

.cs-compare-heading--after .cs-compare-heading__icon {
  color: #1a7a4a;
  background: #edf7f2;
}

.cs-compare-heading--after .cs-compare-heading__eyebrow {
  color: #1a7a4a;
}

.cs-result-pair {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  height: 100%;
  border-radius: 10px;
  padding: 16px;
}

.cs-result-pair--red {
  background: #fff;
}

.cs-result-pair--green {
  background: #fff;
}

.cs-result-pair strong {
  display: block;
  font-size: 0.96rem;
  font-weight: 700;
  color: #303e55;
  margin-bottom: 4px;
}

.cs-result-pair p {
  font-size: 0.86rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.cs-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cs-metric-card {
  background: rgba(58, 123, 255, 0.05);
  border: 1.5px solid rgba(58, 123, 255, 0.18);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(58, 123, 255, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: box-shadow 0.2s, border-color 0.2s;
  height: 100%;
}

.cs-metric-card:hover {
  border-color: rgba(58, 123, 255, 0.35);
  box-shadow: 0 4px 24px rgba(58, 123, 255, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.cs-metric-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: #3a7bff;
  line-height: 1;
  margin-bottom: 8px;
}

.cs-metric-label {
  font-size: 0.82rem;
  color: #303e55;
  line-height: 1.4;
}

/* Quote */
.cs-quote-section {
  padding: 60px 0;
  background: #F9F9F9;
}

.cs-quote-card {
  background: #fff;
  border-radius: 14px;
  padding: 44px 44px 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  position: relative;
}

.cs-quote-mark {
  font-size: 3rem;
  color: #3a7bff;
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 12px;
}

.cs-quote-text {
  font-size: 1.1rem;
  color: #2d2d3a;
  line-height: 1.75;
  font-style: italic;
  margin: 0 0 28px;
  border: none;
  padding: 0;
}

.cs-quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cs-quote-author-avatar {
  font-size: 2.2rem;
  color: #8a95b0;
}

.cs-quote-author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #303e55;
}

.cs-quote-author-role {
  font-size: 0.82rem;
  color: #888;
}

/* Comparison table */
.cs-comparison {
  padding: 70px 0;
  background: #fff;
}

.cs-comparison-table {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

.cs-comparison-header,
.cs-comparison-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.cs-comparison-header {
  background: #1a2340;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

.cs-comparison-header>div {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cs-comparison-col-before {
  background: transparent;
  color: #e07060;
}

.cs-comparison-col-after {
  background: transparent;
  color: #7aa4ff;
}

.cs-comparison-row {
  border-bottom: 1px solid #eaedf5;
  font-size: 0.87rem;
  background: #fff;
}

.cs-comparison-row:last-child {
  border-bottom: none;
}

.cs-comparison-aspect {
  padding: 14px 20px;
  font-weight: 600;
  color: #1a2340;
}

.cs-comparison-before {
  padding: 14px 20px;
  color: #c0392b;
  background: #fff;
}

.cs-comparison-after {
  padding: 14px 20px;
  color: #4c72d5;
  background: #fff;
}

/* CTA */
.cs-cta {
  padding: 80px 0;
  background: #303e55;
}

.cs-cta-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.cs-cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 32px;
  line-height: 1.65;
}

.cs-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.cs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3a7bff;
  color: #fff;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #3a7bff;
  transition: background 0.2s, border-color 0.2s;
}

.cs-btn-primary:hover {
  background: #2a62d4;
  border-color: #2a62d4;
  color: #fff;
}

.cs-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: border-color 0.2s, color 0.2s;
}

.cs-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .cs-hero {
    padding: 50px 0 40px;
  }

  .cs-hero-title {
    font-size: 1.5rem;
  }

  .cs-section-title {
    font-size: 1.4rem;
  }

  .cs-metrics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cs-quote-card {
    padding: 28px 22px 24px;
  }

  .cs-quote-text {
    font-size: 0.97rem;
  }

  .cs-results .row.align-items-stretch.g-3.mb-3 {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 32px !important;
    padding: 16px 14px;
    border: 1.5px solid #d9e1ec;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
  }

  .cs-results .row.align-items-stretch.g-3.mb-3>[class*="col-"] {
    padding-left: 0;
    padding-right: 0;
  }

  .cs-results .row.align-items-stretch.g-3.mb-3>[class*="col-"]+[class*="col-"] {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #eef2f7;
  }

  .cs-result-pair {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .cs-result-pair--red {
    background: rgba(192, 57, 43, 0.035);
    border-radius: 12px;
    padding: 12px;
  }

  .cs-result-pair--green {
    background: rgba(26, 122, 74, 0.035);
    border-radius: 12px;
    padding: 12px;
  }

  .cs-compare-heading {
    padding: 16px 18px;
  }

  .cs-compare-heading__icon {
    width: 46px;
    height: 46px;
    font-size: 1.25rem;
  }

  .cs-compare-heading__title {
    font-size: 1.05rem;
  }

  .cs-comparison-header,
  .cs-comparison-row {
    grid-template-columns: 1fr;
  }

  .cs-comparison-header>div:first-child,
  .cs-comparison-aspect {
    display: none;
  }

  .cs-comparison-before,
  .cs-comparison-after {
    padding: 10px 16px;
  }

  .cs-comparison-col-before,
  .cs-comparison-col-after {
    border-radius: 0;
  }

  .cs-company-card {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .cs-metrics-grid {
    grid-template-columns: 1fr;
  }

  .cs-cta-title {
    font-size: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Studii de caz v2 � .cs2-page
--------------------------------------------------------------*/

/* Page background */
.cs2-page {
  background: #fff;
}

/* Hero � full bleed with image fade */
.cs2-hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.cs2-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
  mask-image: linear-gradient(to right, transparent 0%, black 30%);
}

.cs2-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cs2-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 64px;
  padding-bottom: 64px;
}

.cs2-hero-logo {
  display: block;
  max-width: 180px;
  max-height: 74px;
  object-fit: contain;
  margin-bottom: 18px;
}

.cs2-hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  color: #1a2340;
  line-height: 1.1;
  margin: 0;
}

.cs2-hero-tagline {
  font-size: 1.2rem;
  font-weight: 600;
  color: #303e55;
  line-height: 1.5;
  margin-bottom: 10px;
}

.cs2-hero-desc {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
}

.cs2-mod-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.cs2-mod-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #d4deff;
  color: #4a5a80;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 4px;
}

.cs2-mod-tag i {
  font-size: 0.95rem;
  color: #3a7bff;
}

.cs2-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2563EB;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 13px 26px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}

.cs2-demo-btn:hover {
  background: #1d4fc4;
  color: #fff;
}

/* Desktop: circular badge on photo */
.cs2-hero-badge-desktop {
  position: absolute;
  top: 28px;
  right: 28px;
  background: linear-gradient(145deg, rgba(30, 42, 78, 0.95), rgba(18, 26, 52, 0.92));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  padding: 16px 22px;
  text-align: center;
  color: #fff;
  z-index: 2;
  min-width: 130px;
  max-width: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.cs2-hero-badge-desktop i {
  display: none;
}

.cs2-hero-badge-desktop strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: #f2c451;
  letter-spacing: -0.02em;
}

.cs2-hero-badge-desktop span {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 5px;
  line-height: 1.35;
}

/* Mobile: pill badge in content flow */
.cs2-hero-badge-mobile {
  display: none;
  align-items: center;
  gap: 8px;
  background: #1a2340;
  border: 2px solid #d4a843;
  border-radius: 50px;
  padding: 9px 18px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  margin: 10px 0 16px;
}

.cs2-hero-badge-mobile i {
  color: #d4a843;
  font-size: 0.88rem;
}

/* Section wrappers & card */
.cs2-section-wrap {
  padding: 12px 0;
}

.cs2-section-wrap--last {
  padding-bottom: 40px;
}

.cs2-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.cs2-card--stats {
  padding: 0;
  overflow: hidden;
}

/* Eyebrow label (replaces cs-section-label pill) */
.cs2-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3a7bff;
  margin-bottom: 10px;
}

/* Stats row */
.cs2-stats-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.cs2-stat-item {
  padding: 28px 16px 32px;
  border-right: 1px solid #eaedf5;
  text-align: center;
}

.cs2-stat-item:last-child {
  border-right: none;
}

.cs2-stat-icon {
  font-size: 1.3rem;
  color: #3a7bff;
  display: block;
  margin-bottom: 10px;
}

.cs2-stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a2340;
  line-height: 1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}

.cs2-stat-num .stat-counter {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  display: inline-block;
}

.stat-counter-prefix {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.cs2-stat-name {
  font-size: 1rem;
  font-weight: 700;
  color: #303e55;
  margin-bottom: 6px;
  line-height: 1.3;
}

.cs2-stat-note {
  font-size: 1rem;
  color: #aaa;
  line-height: 1.4;
}

/* Solution section */
.cs2-overview-sub {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.6;
}

.cs2-mod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cs2-mod-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f8faff;
  border-radius: 8px;
  padding: 14px 16px;
  border: 1px solid #eaedf5;
}

.cs2-mod-item i {
  font-size: 1.2rem;
  color: #3a7bff;
  flex-shrink: 0;
  margin-top: 2px;
}

.cs2-mod-item strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: #303e55;
  margin-bottom: 2px;
}

.cs2-mod-item span {
  font-size: 0.79rem;
  color: #888;
  line-height: 1.4;
}

/* Fiscal compliance panel */
.cs2-fiscal-panel {
  background: #f8faff;
  border-radius: 12px;
  border: 1px solid #d4deff;
  padding: 28px 24px;
  height: 100%;
}

.cs2-fiscal-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2340;
  margin-bottom: 4px;
}

.cs2-fiscal-sub {
  font-size: 0.86rem;
  color: #aaa;
  margin-bottom: 20px;
}

.cs2-fiscal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.cs2-fiscal-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 8px;
  padding: 16px 10px;
  text-align: center;
  border: 1px solid #eaedf5;
}

.cs2-fiscal-item i {
  font-size: 1.4rem;
  color: #3a7bff;
}

.cs2-fiscal-item span {
  font-size: 0.76rem;
  font-weight: 600;
  color: #303e55;
  line-height: 1.35;
}

.cs2-fiscal-desc {
  font-size: 0.84rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
  border-top: 1px solid #d4deff;
  padding-top: 18px;
}

/* Results */
.cs2-check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs2-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: #303e55;
  line-height: 1.55;
}

.cs2-check-item i {
  color: #1a7a4a;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Quote card */
.cs2-card--quote {
  padding: 0;
  overflow: hidden;
}

.cs2-quote-content {
  padding: 44px 40px;
}

.cs2-quote-img-wrap {
  overflow: hidden;
  display: flex;
}

.cs2-card--quote .cs2-quote-img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
  flex: 1;
  min-height: 0;
}

.cs2-quote-mark {
  font-size: 3.5rem;
  color: #3a7bff;
  opacity: 0.18;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.cs2-quote-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a2340;
  line-height: 1.72;
  margin-bottom: 24px;
  border: none;
  padding: 0;
}

.cs2-quote-text p {
  margin-bottom: 16px;
}

.cs2-quote-text p:last-child {
  margin-bottom: 0;
}

.cs2-quote-dash {
  width: 36px;
  height: 3px;
  background: #3a7bff;
  border-radius: 2px;
  margin-bottom: 12px;
}

.cs2-quote-author {
  font-size: 0.9rem;
  font-weight: 700;
  color: #303e55;
}

/* Partners */
.cs2-logos-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.cs2-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.cs2-logo-item img {
  height: 28px;
  object-fit: contain;
}

.cs2-partners-note {
  font-size: 0.86rem;
  color: #888;
  line-height: 1.6;
  margin: 0;
}

/* Timeline */
.cs2-timeline {
  position: relative;
  display: flex;
  gap: 0;
  margin-top: 32px;
}

.cs2-tl-track {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #d4deff;
}

.cs2-tl-item {
  flex: 1;
  position: relative;
  text-align: center;
}

.cs2-tl-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #3a7bff;
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
}

.cs2-tl-item--active .cs2-tl-dot {
  background: #3a7bff;
}

.cs2-tl-year {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2340;
  margin-bottom: 6px;
}

.cs2-tl-item--active .cs2-tl-year {
  color: #3a7bff;
}

.cs2-tl-desc {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.5;
  padding: 0 6px;
}

.cs2-tl-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 300px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

/* Growth + Chart + SGR section */
.cs2-card--growth {
  padding: 24px 36px;
}

.cs2-growth-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eaedf5;
}

.cs2-growth-header i {
  font-size: 1.35rem;
  color: #3a7bff;
}

.cs2-growth-header span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3a7bff;
}

.cs2-growth-panel {
  padding-right: 36px;
  border-right: 1px solid #eaedf5;
  text-align: center;
}

.cs2-growth-company {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2340;
  margin-bottom: 16px;
}

.cs2-growth-values {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 0;
}

.cs2-growth-val .num {
  font-size: 1rem;
  font-weight: 800;
  color: #1a2340;
  display: block;
  line-height: 1.2;
}

.cs2-growth-val .lbl {
  font-size: 0.7rem;
  color: #9aa3bc;
  margin-top: 5px;
  display: block;
  line-height: 1.5;
}

.cs2-growth-arrow-icon {
  font-size: 1.1rem;
  color: #3a7bff;
  flex-shrink: 0;
  margin-top: 3px;
}

.cs2-growth-pct {
  padding-left: 16px;
  border-left: 1px solid #eaedf5;
  text-align: left;
}

.cs2-growth-pct .pct-num {
  font-size: 1.7rem;
  font-weight: 900;
  color: #17a66a;
  display: block;
  line-height: 1;
  letter-spacing: 0;
}

.cs2-growth-pct .pct-lbl {
  font-size: 0.8rem;
  font-weight: 700;
  color: #17a66a;
  margin-top: 4px;
  margin-bottom: 0;
}

.cs2-chart-panel {
  padding: 0 32px;
}

.cs2-chart-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a2340;
  text-align: center;
  margin-bottom: 8px;
}

.cs2-chart-svg {
  width: 100%;
  height: auto;
  display: block;
}

.cs2-sgr-panel {
  padding-left: 36px;
  border-left: 1px solid #eaedf5;
  display: flex;
  align-items: center;
  gap: 26px;
  justify-content: center;
}

.cs2-sgr-copy {
  flex: 1 1 0;
  min-width: 0;
}

.cs2-sgr-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2340;
  margin-bottom: 8px;
  line-height: 1.35;
}

.cs2-sgr-desc {
  font-size: 0.85rem;
  color: #6b7fa3;
  line-height: 1.55;
  margin-bottom: 0;
}

.cs2-sgr-logos {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.cs2-sgr-logo-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 2px solid #eaedf5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  overflow: hidden;
}

.cs2-sgr-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cs2-sgr-logos-arrow {
  font-size: 1.5rem;
  color: #3a7bff;
}

/* Case study v2 Compas additions */
.cs2-page--compas .cs2-hero--compas {
  min-height: 560px;
}

.cs2-page--compas .cs2-hero-title {
  color: #071b64;
}

.cs2-page--compas .cs2-hero-tagline {
  color: #071b64;
  font-size: 1.18rem;
}

.cs2-page--compas .cs2-hero-desc {
  color: #1d315f;
}

.cs2-section-wrap--pull {
  margin-top: -28px;
  position: relative;
  z-index: 3;
}

.cs2-stat-num span {
  font-size: 0.72rem;
  font-weight: 800;
}

.cs2-case-grid {
  align-items: stretch;
}

.cs2-case-card,
.cs2-card--compact {
  height: 100%;
  padding: 28px 24px;
}

.cs2-case-card__title,
.cs2-case-card-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.cs2-case-card__title i,
.cs2-case-card-title i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1a7a4a;
  border: 1px solid currentColor;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.cs2-case-card__title h2,
.cs2-case-card-title h2 {
  font-size: 1.1rem;
  color: #071b64;
  font-weight: 800;
  margin: 0;
}

.cs2-case-card--challenge .cs2-case-card__title i,
.cs2-card--challenge .cs2-case-card-title i {
  color: #e04f4f;
}

.cs2-case-card--solution .cs2-case-card__title i {
  color: #1a7a4a;
}

.cs2-case-card--results .cs2-case-card__title i,
.cs2-card--results .cs2-case-card-title i {
  color: #2563eb;
}

.cs2-case-card__sub,
.cs2-case-card-sub {
  color: #1d315f;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 700;
  margin-bottom: 18px;
}

.cs2-case-list,
.cs2-mini-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cs2-case-list div,
.cs2-mini-list div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #1d315f;
  font-size: 1rem;
  line-height: 1.55;
}

.cs2-case-list i,
.cs2-mini-list i {
  color: #1a7a4a;
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.cs2-case-list--red i,
.cs2-mini-list--red i {
  color: #e04f4f;
}

.cs2-case-list--blue i,
.cs2-mini-list--blue i {
  color: #2563eb;
}

.cs2-case-list strong,
.cs2-mini-list strong {
  color: #071b64;
  font-weight: 800;
}

.cs2-timeline--five .cs2-tl-desc {
  padding: 0 8px;
}

/* 8-column stats variant */
.cs2-stats-row--eight {
  grid-template-columns: repeat(8, 1fr);
}

/* WMS 2x2 combo grid (feat + photo per cell) */
.cs2-wms-combo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.cs2-wms-combo-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cs2-wms-combo-feat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: #fff;
  border: 1px solid #eaedf5;
  border-radius: 10px;
}

.cs2-wms-combo-feat i {
  font-size: 1.6rem;
  color: #3a7bff;
  align-self: center;
}

.cs2-wms-combo-feat strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2340;
  display: block;
}

.cs2-wms-combo-feat span {
  font-size: 1rem;
  color: #888;
  line-height: 1.5;
}

.cs2-wms-combo-photo {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  order: -1;
}

.cs2-combo-dots {
  display: none;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
}

.cs2-combo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d0d5e8;
  transition: background 0.25s, transform 0.25s;
  cursor: pointer;
}

.cs2-combo-dot.active {
  background: #3a7bff;
  transform: scale(1.3);
}

/* Combo section header */
.cs2-combo-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.cs2-combo-header--dark {
  background: #fff;
  border-left: 4px solid #3a7bff;
  padding: 20px 24px;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 1px 8px rgba(58, 123, 255, 0.07);
}

.cs2-stats-card-header {
  border-left: 4px solid #3a7bff;
  padding: 20px 24px;
}

.cs2-eyebrow--on-dark {
  color: #3a7bff;
}

.cs2-title--on-dark {
  color: #1a2340;
  margin-bottom: 0;
}

/* Prev/next arrows (visible on mobile only) */
.cs2-combo-arrows {
  display: none;
  gap: 8px;
  flex-shrink: 0;
}

.cs2-combo-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #d0d8f0;
  background: #fff;
  color: #3a7bff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.cs2-combo-arrow:hover {
  background: #e8eeff;
  border-color: #3a7bff;
}

.cs2-combo-arrow:disabled {
  opacity: 0.28;
  cursor: default;
}

/* Bullet list inside combo feat */
.cs2-combo-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cs2-combo-bullets li {
  font-size: 0.95rem;
  color: #888;
  line-height: 1.55;
  padding-left: 14px;
  position: relative;
}

.cs2-combo-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3a7bff;
}

/* Barcode highlight split card */
.cs2-card--dark-split {
  padding: 0;
  overflow: hidden;
}

.cs2-card--dark-split>.row>div {
  display: flex;
}

.cs2-dark-split-left {
  background: #1a2340;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  flex: 1;
}

.cs2-dark-split-icon {
  font-size: 2.2rem;
  color: #3a7bff;
}

.cs2-dark-split-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin: 0;
}

.cs2-dark-split-right {
  padding: 44px 40px;
}

.cs2-barcode-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 28px;
}

.cs2-barcode-list>div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cs2-barcode-list>div i {
  color: #3a7bff;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.cs2-barcode-list>div span {
  font-size: 0.87rem;
  color: #444;
  line-height: 1.5;
}

/* WMS feature grid */
.cs2-wms-feat-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border-top: 1px solid #eaedf5;
  margin-top: 28px;
}

.cs2-wms-feat-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.cs2-wms-feat-item {
  padding: 22px 10px;
  text-align: center;
  border-right: 1px solid #eaedf5;
}

.cs2-wms-feat-item:last-child {
  border-right: none;
}

.cs2-wms-feat-item i {
  font-size: 1.5rem;
  color: #3a7bff;
  display: block;
  margin-bottom: 10px;
}

.cs2-wms-feat-item strong {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1a2340;
  display: block;
  margin-bottom: 6px;
  line-height: 1.3;
}

.cs2-wms-feat-item span {
  font-size: 0.7rem;
  color: #888;
  line-height: 1.4;
  display: block;
}

.cs2-wms-photo-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.cs2-wms-photo-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Responsive � v2 */
@media (max-width: 991px) {
  .cs2-hero-bg {
    width: 50%;
  }

  .cs2-hero-title {
    font-size: 2.4rem;
  }

  .cs2-stats-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .cs2-stat-item:nth-child(3) {
    border-right: none;
  }

  .cs2-stat-item:nth-child(4) {
    border-top: 1px solid #eaedf5;
  }

  .cs2-stat-item:nth-child(5) {
    border-top: 1px solid #eaedf5;
  }

  .cs2-stat-item:nth-child(6) {
    border-right: none;
    border-top: 1px solid #eaedf5;
  }

  .cs2-stats-row--eight {
    grid-template-columns: repeat(4, 1fr);
  }

  .cs2-wms-feat-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .cs2-wms-feat-grid--four {
    grid-template-columns: repeat(2, 1fr);
  }

  .cs2-wms-photo-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .cs2-wms-photo-grid--four {
    grid-template-columns: repeat(2, 1fr);
  }

  .cs2-wms-combo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cs2-barcode-list {
    grid-template-columns: 1fr;
  }

  .cs2-dark-split-left {
    height: auto;
  }

  .cs2-growth-panel {
    padding-right: 0;
    padding-bottom: 24px;
    border-right: none;
    border-bottom: 1px solid #eaedf5;
  }

  .cs2-chart-panel {
    padding: 28px 0;
  }

  .cs2-sgr-panel {
    padding-left: 0;
    padding-top: 24px;
    border-left: none;
    border-top: 1px solid #eaedf5;
  }
}

@media (max-width: 768px) {
  .cs2-hero {
    min-height: auto;
  }

  .cs2-hero-bg {
    display: none;
  }

  .cs2-hero-badge-desktop {
    display: none;
  }

  .cs2-hero-badge-mobile {
    display: inline-flex;
  }

  .cs2-hero-title {
    font-size: 2rem;
  }

  .cs2-card {
    padding: 24px 20px;
  }

  .cs2-quote-content {
    padding: 28px 20px;
  }

  .cs2-stats-row {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
  }

  .cs2-stats-row--eight {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
  }

  .cs2-card--stats {
    display: flex;
    flex-direction: column;
  }

  .cs2-stat-item {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cs2-stat-item .cs2-stat-num {
    min-height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cs2-stat-item .cs2-stat-note {
    margin-top: auto;
  }

  .cs2-wms-feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cs2-wms-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cs2-wms-feat-grid--four {
    grid-template-columns: 1fr;
    border-top: none;
  }

  .cs2-wms-feat-item--four {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 14px;
    border-right: none;
    border-top: 1px solid #eaedf5;
    padding: 18px 0;
  }

  .cs2-wms-feat-item--four i {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .cs2-wms-feat-grid--four .cs2-wms-feat-item--four:first-child {
    border-top: none;
  }

  .cs2-wms-photo-grid--four {
    grid-template-columns: repeat(2, 1fr);
  }

  .cs2-wms-combo-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    /* extra right padding lets the peeking next card breathe */
    padding-right: 32px;
    padding-bottom: 4px;
  }

  .cs2-wms-combo-grid::-webkit-scrollbar {
    display: none;
  }

  /* ~82% width so the next card peeks ~18% — clear swipe affordance */
  .cs2-wms-combo-item {
    flex: 0 0 82%;
    scroll-snap-align: start;
    min-width: 0;
  }

  .cs2-wms-combo-photo {
    width: 100%;
    order: -1;
  }

  /* Dot indicators — larger and pill-shaped when active */
  .cs2-combo-dots {
    display: flex;
    margin-bottom: 4px;
    gap: 6px;
  }

  .cs2-combo-dot {
    width: 8px;
    height: 8px;
    transition: width 0.25s, background 0.25s, border-radius 0.25s;
  }

  .cs2-combo-dot.active {
    width: 24px;
    border-radius: 4px;
    transform: none;
  }

  /* Arrows always visible on mobile */
  .cs2-combo-arrows {
    display: flex;
  }

  /* Header stacks title + arrows vertically on narrow screens */
  .cs2-combo-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Give the header + grid a card-like shell so users read it as a widget */
  .cs2-combo-header--dark {
    border-radius: 10px 10px 0 0;
    border-bottom: 1px solid #e8eef6;
    margin-bottom: 0;
  }

  .cs2-section-wrap:has(.cs2-wms-combo-grid) .container {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding-top: 0;
    overflow: hidden;
  }

  .cs2-section-wrap:has(.cs2-wms-combo-grid) .cs2-combo-header--dark {
    box-shadow: none;
    border-radius: 0;
    padding: 18px 20px 16px;
  }

  .cs2-section-wrap:has(.cs2-wms-combo-grid) .cs2-wms-combo-grid {
    padding: 16px 8px 12px 20px;
  }

  .cs2-section-wrap:has(.cs2-wms-combo-grid) .cs2-combo-dots {
    padding-bottom: 16px;
  }

  .cs2-stats-card-header {
    border-left: none;
    padding: 16px 16px 12px;
  }

  .cs2-quote-img-wrap {
    display: none;
  }

  .cs2-stat-item:nth-child(2) {
    border-right: none;
  }

  .cs2-stat-item:nth-child(3) {
    border-right: 1px solid #eaedf5;
    border-top: 1px solid #eaedf5;
  }

  .cs2-stat-item:nth-child(4) {
    border-right: none;
    border-top: 1px solid #eaedf5;
  }

  .cs2-stat-item:nth-child(5) {
    border-right: 1px solid #eaedf5;
    border-top: 1px solid #eaedf5;
  }

  .cs2-stat-item:nth-child(6) {
    border-top: 1px solid #eaedf5;
  }

  .cs2-growth-values {
    flex-wrap: wrap;
  }

  .cs2-growth-pct {
    padding-left: 0;
    border-left: none;
    text-align: center;
    flex-basis: 100%;
  }

  .cs2-sgr-panel {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
  }

  .cs2-sgr-title br {
    display: none;
  }

  .cs2-sgr-desc {
    max-width: 30rem;
  }

  .cs2-sgr-logos {
    width: 100%;
    justify-content: center;
  }

  .cs2-mod-grid {
    grid-template-columns: 1fr;
  }

  .cs2-timeline {
    flex-direction: column;
    gap: 20px;
  }

  .cs2-tl-track {
    display: none;
  }

  .cs2-tl-item {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    position: relative;
  }

  .cs2-tl-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 24px;
    bottom: -20px;
    width: 2px;
    background: #d4deff;
  }

  .cs2-tl-dot {
    margin: 4px 0 0;
    flex-shrink: 0;
  }

  .cs2-tl-content {
    flex: 1;
  }

  .cs2-quote-text {
    font-size: 0.9rem;
  }

  .cs2-section-wrap--pull {
    margin-top: 0;
  }

  .cs2-case-card,
  .cs2-card--compact {
    padding: 24px 20px;
  }
}

/* -- Contact Modal ------------------------------------------ */
.cm-dialog {
  max-width: 760px;
}

.cm-content {
  display: flex;
  flex-direction: row;
  border-radius: 12px;
  overflow: hidden;
  border: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
  background: #fff;
}

.cm-left {
  width: 38%;
  flex-shrink: 0;
  background: #fff;
  border-right: 1px solid #e9edf4;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.cm-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.cm-icon {
  font-size: 1.6rem;
  color: #2563EB;
  margin-bottom: 18px;
}

.cm-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2340;
  margin: 0 0 8px;
  line-height: 1.35;
}

.cm-desc {
  font-size: 0.86rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 0;
}

.cm-trust {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  border-top: 1px solid #e9edf4;
  margin-top: 28px;
}

.cm-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: #303e55;
  font-weight: 500;
}

.cm-trust i {
  color: #2563EB;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.cm-right {
  flex: 1;
  overflow-y: auto;
}

.cm-header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px 24px 0;
}

.cm-body {
  padding: 20px 28px 0;
}

.cm-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #303e55;
  margin-bottom: 5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cm-input {
  display: block;
  width: 100%;
  background: #fff !important;
  border: 1px solid #dde3ee !important;
  border-radius: 7px !important;
  font-size: 0.92rem !important;
  color: #1a2340 !important;
  padding: 9px 13px !important;
  height: auto !important;
  transition: border-color 0.18s, box-shadow 0.18s !important;
  box-shadow: none !important;
}

.cm-input:focus {
  border-color: #2563EB !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
  outline: none !important;
}

textarea.cm-input {
  resize: vertical;
}

.cm-terms-label {
  font-size: 0.82rem;
  color: #666;
}

.cm-terms-label a {
  color: #2563EB;
  text-decoration: none;
}

.cm-terms-label a:hover {
  text-decoration: underline;
}

.cm-footer {
  padding: 16px 28px 28px;
  border-top: 1px solid #e9edf4;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cm-submit {
  display: block;
  width: 100%;
  padding: 12px;
  background: #2563EB;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.18s;
}

.cm-submit:hover {
  background: #1d4ed8;
}

@media (max-width: 640px) {
  .cm-dialog {
    max-height: calc(100dvh - 32px);
    margin: 16px;
  }

  .cm-content {
    flex-direction: column;
    max-height: inherit;
    overflow: hidden;
  }

  .cm-left {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e9edf4;
    padding: 24px 20px;
    flex-shrink: 0;
  }

  .cm-trust {
    margin-top: 20px;
    padding-top: 20px;
  }

  .cm-right {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
  }

  .cm-body,
  .cm-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cm-header {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* =========================================
   Problems Section (#problems)
   ========================================= */

#problems {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.problems-header {
  margin-bottom: 40px;
}

.problems-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1a1a2e;
}

.problems-highlight {
  color: #c0392b;
}

.problems-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-top: 12px;
}

.problem-card {
  background: #fff;
  border-left: 4px solid #c0392b;
  border-radius: 6px;
  padding: 22px 24px;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.problem-card-title {
  margin: 0 0 8px 0;
  color: #1a1a2e;
  font-size: 1rem;
  font-weight: 600;
}

.problem-card-text {
  margin: 0;
  color: #666;
  font-size: 0.92rem;
  line-height: 1.5;
}

.problems-footer {
  margin-top: 40px;
}

.problems-tagline {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a2e;
  border-top: 1px solid #ddd;
  padding-top: 28px;
}

/* =========================================
   Services Section (#services)
   ========================================= */

.services-header {
  margin-bottom: 10px;
}

.services-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
}

/* =========================================
   Portfolio Section header overrides
   ========================================= */

.portfolio-section-header {
  padding-bottom: 40px;
}

.portfolio-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 12px;
}

.portfolio .section-header h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1a1a2e;
}

.portfolio .section-header p {
  font-size: 1.05rem;
  color: #555;
  margin-top: 10px;
  margin-bottom: 0;
}

.portfolio .section-header p strong {
  color: #2563eb;
}

.portfolio-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  text-decoration: none;
}

.portfolio-cta-link:hover .scv2-arrow {
  background: #2563eb;
  color: #fff;
  transform: translateX(3px);
}

/* =========================================
   Testimonials Section header overrides
   ========================================= */

.testimonials-section-header {
  padding-bottom: 40px;
}

.testimonials-section .section-header h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1a1a2e;
}

.testimonials-section .section-header p {
  font-size: 1.05rem;
  color: #555;
  margin-top: 10px;
  margin-bottom: 0;
}

.testimonials-section .section-header p strong {
  color: #2563eb;
}

/* =============================================
   Vânzări module page
   ============================================= */

.module-hero-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(58, 123, 255, 0.6);
  margin-bottom: 6px;
}

.vanz-intro {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
}

.vanz-intro-lead {
  font-size: 1.1rem;
  color: #0f172a;
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
}

.vanz-problem {
  margin-bottom: 40px;
  padding: 18px 22px;
  background: #e1f0ff;
  border-left: 3px solid #3a7bff;
  border-radius: 0 8px 8px 0;
}

.vanz-problem p {
  font-size: 0.93rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.vanz-blocks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .vanz-blocks-grid {
    grid-template-columns: 1fr;
  }
}

.vanz-block {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 12px;
  padding: 22px 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.vanz-block:hover {
  box-shadow: 0 8px 28px rgba(58, 123, 255, 0.08);
  border-color: #c7d8ff;
}

.vanz-block-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.vanz-block-icon {
  width: 38px;
  height: 38px;
  background: #eef3ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #3a7bff;
  flex-shrink: 0;
}

.vanz-block h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
  text-transform: none;
}

.vanz-block-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.vanz-block-list li {
  font-size: 0.92rem;
  color: #475569;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
  flex: 1;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

.vanz-block .vanz-block-list li::before {
  display: none;
}

.vanz-block-list li i {
  color: #1a7a4a;
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.vanz-block-list li span {
  flex: 1;
}

.vanz-hw-section {
  padding: 28px;
  background: #f8fafc;
  border-radius: 12px;
  margin-bottom: 8px;
}

.vanz-hw-header {
  margin-bottom: 20px;
}

.vanz-hw-header h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px;
}

.vanz-hw-header p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}

.vanz-hw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vanz-hw-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid #dde3ef;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 0.92rem;
  color: #1e293b;
  font-weight: 500;
  line-height: 1.4;
}

.vanz-hw-tag i {
  color: #3a7bff;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.module-studii-section {
  padding: 64px 0 48px;
  background: #fff;
  margin-bottom: 20px;
}

.module-studii-header {
  text-align: center;
  margin-bottom: 36px;
}

.module-studii-header h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.module-studii-header p {
  font-size: 1.05rem;
  color: #555;
  margin: 0;
}

/* ============================================================
   Financiar & Contabilitate — optional modules separator
   ============================================================ */

.fin-optional-separator {
  margin: 4px 0 24px;
  padding: 24px 0 28px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

.fin-optional-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff8ec;
  border: 1px solid #fcd97e;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #92620a;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.fin-optional-label i {
  color: #d97706;
  font-size: 0.85rem;
}

.fin-optional-desc {
  font-size: 0.88rem;
  color: #64748b;
  margin: 0 auto;
  max-width: 520px;
  line-height: 1.6;
}

.fin-optional-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .fin-optional-grid {
    grid-template-columns: 1fr;
  }
}

.fin-optional-block {
  background: #fffdf7;
  border: 1px solid #fde9a8;
  border-radius: 12px;
  padding: 22px 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.fin-optional-block:hover {
  box-shadow: 0 8px 28px rgba(217, 119, 6, 0.08);
  border-color: #fbbf24;
}

.fin-optional-block h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
  text-transform: none;
}

.fin-optional-icon {
  width: 38px;
  height: 38px;
  background: #fff8ec;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #d97706;
  flex-shrink: 0;
}

.fin-optional-block .vanz-block-list li {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

.fin-optional-block .vanz-block-list li::before {
  display: none;
}

/* ============================================================
   Logistică & Aprovizionare — full-width third block
   ============================================================ */

.vanz-block--wide {
  grid-column: 1 / -1;
}

.vanz-block--wide .vanz-block-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 24px;
}

@media (max-width: 768px) {
  .vanz-block--wide .vanz-block-list {
    grid-template-columns: 1fr;
  }
}

.vanz-section-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 3rem 0 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}
.vanz-section-divider i {
    font-size: 20px;
    color: #1a56db;
}
.vanz-section-divider h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

/* ============================================================
   Blog Article (ba-)
   ============================================================ */

/* Hero */
.ba-hero {
  background: #1a2340;
  padding: 64px 0 48px;
}

.ba-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3a7bff;
  margin-bottom: 20px;
}

.ba-title {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.22;
  margin-bottom: 24px;
  max-width: 780px;
}

.ba-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.ba-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Hero image */
.ba-hero-img-wrap {
  background: #1a2340;
  padding-bottom: 0;
}

.ba-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  display: block;
}

/* Body */
.ba-body {
  padding: 56px 0 80px;
}

/* section#page wraps blog content and inherits overflow:hidden from the global
   section rule — this kills position:sticky on all descendants */
#page {
  overflow: visible;
}

/* Intro card */
.ba-intro-card {
  background: #f0f5ff;
  border-left: 4px solid #3a7bff;
  border-radius: 0 8px 8px 0;
  padding: 22px 28px;
  margin-bottom: 36px;
}

.ba-intro-card p {
  font-size: 1.05rem;
  color: #1a2340;
  line-height: 1.75;
  margin: 0;
  font-weight: 500;
}

/* Content typography */
.ba-content > p {
  font-size: 0.97rem;
  color: #444;
  line-height: 1.85;
  margin-bottom: 20px;
}

.ba-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a2340;
  margin: 52px 0 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid #eaedf5;
  scroll-margin-top: 110px;
}

.ba-content h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #303e55;
  margin: 32px 0 12px;
}

/* Highlight callout */
.ba-highlight {
  background: #eef3ff;
  border-left: 4px solid #3a7bff;
  border-radius: 0 8px 8px 0;
  padding: 18px 24px;
  margin: 24px 0;
}

.ba-highlight p {
  font-size: 0.97rem;
  font-weight: 600;
  color: #1a2340;
  margin: 0;
  line-height: 1.65;
}

.ba-highlight-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #3a7bff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Comparison table */
.ba-compare {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eaedf5;
  margin: 28px 0;
}

.ba-compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ba-compare-header-cell {
  padding: 14px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ba-compare-header-cell:first-child {
  background: #f4f6fb;
  color: #aaa;
  border-right: 1px solid #eaedf5;
}

.ba-compare-header-cell:last-child {
  background: #1a2340;
  color: #fff;
}

.ba-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #eaedf5;
}

.ba-compare-cell {
  padding: 14px 20px;
  font-size: 0.875rem;
  line-height: 1.55;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ba-compare-cell:first-child {
  background: #fafafa;
  color: #999;
  border-right: 1px solid #eaedf5;
}

.ba-compare-cell:last-child {
  background: #fff;
  color: #303e55;
  font-weight: 500;
}

.ba-compare-cell i {
  font-size: 0.9rem;
  flex-shrink: 0;
}

.ba-compare-cell:first-child i {
  color: #e0e0e0;
}

.ba-compare-cell:last-child i {
  color: #3a7bff;
}

/* Metrics grid */
.ba-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.ba-metric-card {
  background: #f8faff;
  border: 1px solid #eaedf5;
  border-radius: 10px;
  padding: 18px 20px;
}

.ba-metric-subject {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aaa;
  margin-bottom: 6px;
}

.ba-metric-value {
  font-size: 1.85rem;
  font-weight: 800;
  color: #d93025;
  line-height: 1;
  margin-bottom: 6px;
}

.ba-metric-value--positive {
  color: #1a7a4a;
}

.ba-metric-desc {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.45;
}

/* Concrete example */
.ba-example-quote {
  background: #fff;
  border: 1px solid #d4deff;
  border-radius: 10px;
  padding: 20px 24px;
  margin: 20px 0;
}

.ba-example-quote-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #3a7bff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ba-example-quote p {
  font-size: 0.95rem;
  color: #303e55;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
  padding-left: 14px;
  border-left: 3px solid #3a7bff;
}

/* Check list */
.ba-check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ba-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: #303e55;
  line-height: 1.6;
}

.ba-check-list li i {
  font-size: 1rem;
  color: #3a7bff;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Warning list */
.ba-warning-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ba-warning-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: #303e55;
  line-height: 1.6;
  background: #fff5f5;
  border-radius: 8px;
  padding: 12px 16px;
  border: 1px solid #fde8e8;
}

.ba-warning-list li i {
  font-size: 1rem;
  color: #d93025;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Dimensions */
.ba-dimensions-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}

.ba-dimension {
  border: 1px solid #eaedf5;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.ba-dimension-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: #f8faff;
  border-bottom: 1px solid #eaedf5;
}

.ba-dimension-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #eaedf5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #3a7bff;
  flex-shrink: 0;
}

.ba-dimension-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2340;
  margin: 0;
  line-height: 1.2;
}

.ba-dimension-subtitle {
  font-size: 0.78rem;
  color: #aaa;
  margin: 0;
  margin-top: 2px;
}

.ba-dimension-body {
  padding: 20px 24px;
}

.ba-dimension-body p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Video placeholder */
.ba-video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}

.ba-video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.yt-player {
  cursor: pointer;
}

.yt-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(10, 10, 20, 0.75);
  border: 2px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
  pointer-events: none;
}

.yt-player:hover .yt-play-btn {
  background: rgba(10, 10, 20, 0.92);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translate(-50%, -50%) scale(1.1);
}

.ba-video-placeholder {
  background: #0f1729;
  border-radius: 10px;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
}

.ba-video-placeholder:hover {
  background: #162040;
}

.ba-video-play {
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.65);
  transition: border-color 0.2s, color 0.2s;
}

.ba-video-placeholder:hover .ba-video-play {
  border-color: #3a7bff;
  color: #3a7bff;
}

.ba-video-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
}

/* Competition flow */
.ba-competition-flow {
  background: #f8faff;
  border: 1px solid #eaedf5;
  border-radius: 12px;
  padding: 24px 28px;
  margin: 24px 0;
}

.ba-flow-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ba-flow-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ba-flow-num {
  width: 28px;
  height: 28px;
  background: #1a2340;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.ba-flow-text {
  font-size: 0.9rem;
  color: #303e55;
  line-height: 1.65;
  padding-top: 4px;
}

/* Conclusion card */
.ba-conclusion-card {
  background: #1a2340;
  border-radius: 14px;
  padding: 44px 40px;
  margin-top: 52px;
  text-align: center;
}

.ba-conclusion-card p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* Sidebar */
.ba-sidebar {
  position: sticky;
  top: 90px;
}

.ba-toc {
  background: #fff;
  border: 1px solid #eaedf5;
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 18px;
}

.ba-toc-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #bbb;
  margin-bottom: 14px;
}

.ba-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ba-toc-list li {
  border-bottom: 1px solid #f4f4f4;
}

.ba-toc-list li:last-child {
  border-bottom: none;
}

.ba-toc-list a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 0;
  font-size: 0.845rem;
  color: #555;
  line-height: 1.4;
  transition: color 0.2s;
}

.ba-toc-list a.ba-toc-active {
  color: #3a7bff;
  font-weight: 700;
}

.ba-toc-list a.ba-toc-active::before {
  background: #3a7bff;
}

.ba-toc-list a:hover {
  color: #3a7bff;
}

.ba-toc-list a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: #d4deff;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Sidebar CTA */
.ba-cta-card {
  background: #1a2340;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}

.ba-cta-card-icon {
  font-size: 2rem;
  color: #3a7bff;
  margin-bottom: 14px;
}

.ba-cta-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.ba-cta-card p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 20px;
  line-height: 1.6;
}

.ba-cta-card .cs2-demo-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.88rem;
}

/* Responsive */
@media (max-width: 991px) {
  .ba-sidebar {
    position: static;
  }

  .ba-metrics-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .ba-hero {
    padding: 48px 0 32px;
  }

  .ba-title {
    font-size: 1.7rem;
  }

  .ba-metrics-grid {
    grid-template-columns: 1fr;
  }

  .ba-compare-header,
  .ba-compare-row {
    grid-template-columns: 1fr;
  }

  .ba-compare-cell:first-child {
    border-right: none;
    border-bottom: 1px solid #eaedf5;
  }

  .ba-compare-header-cell:first-child {
    border-right: none;
    border-bottom: 1px solid #eaedf5;
  }

  .ba-conclusion-card {
    padding: 32px 20px;
  }
}

/* ============================================================
   Despre noi (dn-*)
   ============================================================ */

/* Hero */
.dn-hero {
  padding: 72px 0 56px;
  border-bottom: 0.5px solid #e8edf5;
}

.dn-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3A7BFF;
  margin-bottom: 18px;
}

.dn-hero-title {
  font-size: 2rem;
  font-weight: 700;
  color: #3a3a3a;
  line-height: 1.25;
  margin-bottom: 20px;
  max-width: 780px;
}

.dn-hero-intro {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 680px;
  line-height: 1.7;
  margin: 0;
}

/* Stats */
.dn-stats {
  padding: 56px 0;
  border-bottom: 0.5px solid #e8edf5;
}

/* Timeline */
.dn-tl-section {
  padding: 56px 0;
  border-bottom: 0.5px solid #e8edf5;
}

.dn-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 36px;
}

/* Mission + De ce Classoft */
.dn-mission-section {
  padding: 56px 0;
  border-bottom: 0.5px solid #e8edf5;
}

.dn-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.dn-col-box {
  border: 0.5px solid #e8edf5;
  border-radius: 10px;
  padding: 36px 32px;
}

.dn-col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.dn-col-icon {
  font-size: 1.4rem;
  color: #3A7BFF;
  line-height: 1;
  flex-shrink: 0;
}

.dn-col-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #3a3a3a;
  margin: 0;
}

.dn-col-text {
  font-size: 0.97rem;
  color: #64748b;
  line-height: 1.75;
  margin: 0;
}

/* Partner banner */
.dn-partner-section {
  padding: 56px 0 72px;
}

.dn-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 0.5px solid #e8edf5;
  border-radius: 10px;
  padding: 28px 36px;
}

.dn-banner-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #3a3a3a;
  margin-bottom: 4px;
}

.dn-banner-sub {
  font-size: 0.88rem;
  color: #64748b;
}

.dn-banner-btn {
  display: inline-block;
  white-space: nowrap;
  background: #3A7BFF;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.18s;
  flex-shrink: 0;
}

.dn-banner-btn:hover {
  background: #2563eb;
  color: #fff;
}

/* Story section */
.dn-story-section {
  padding: 64px 0;
  border-bottom: 0.5px solid #e8edf5;
}


.dn-story-lead {
  font-size: 1.25rem;
  font-weight: 600;
  color: #495677;
  line-height: 1.6;
  margin-bottom: 24px;
}

.dn-story-text {
  font-size: 0.97rem;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 16px;
}

.dn-story-closing {
  font-size: 1rem;
  font-style: italic;
  color: #3a3a3a;
  text-align: center;
  margin: 32px 0 28px;
}

.dn-story-section .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .dn-hero {
    padding: 48px 0 40px;
  }

  .dn-hero-title {
    font-size: 1.5rem;
  }

  .dn-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dn-cols {
    grid-template-columns: 1fr;
  }

  .dn-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
}

/* =============================================
   THANK YOU / MULTUMIM PAGE  (ty-*)
   ============================================= */

.ty-main {
  background: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.ty-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.ty-icon-wrap {
  width: 72px;
  height: 72px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.ty-icon-wrap--error {
  background: #ef4444;
}

.ty-check-icon {
  color: #fff;
  font-size: 32px;
  line-height: 1;
}

.ty-title {
  color: #1e293b;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ty-sub {
  color: #64748b;
  font-size: 16px;
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 32px;
}

/* Steps card */
.ty-steps-card {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  margin-bottom: 24px;
}

.ty-steps-label {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ty-step {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #e2e8f0;
}

.ty-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ty-step-num {
  width: 32px;
  height: 32px;
  background: #3A7BFF;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.ty-step-body {
  flex: 1;
}

.ty-step-title {
  color: #1e293b;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}

.ty-step-desc {
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

/* Info row */
.ty-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}

.ty-info-box {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  text-align: left;
}

.ty-info-icon {
  color: #3A7BFF;
  font-size: 20px;
  flex-shrink: 0;
}

.ty-info-label {
  color: #94a3b8;
  font-size: 12px;
  margin-bottom: 3px;
}

.ty-info-val {
  color: #1e293b;
  font-weight: 600;
  font-size: 14px;
}

/* Action buttons */
.ty-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.ty-btn-primary {
  background: #3A7BFF;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s;
}

.ty-btn-primary:hover {
  background: #2563eb;
  color: #fff;
  text-decoration: none;
}

.ty-btn-outline {
  background: transparent;
  color: #475569;
  padding: 12px 22px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color .2s, color .2s;
}

.ty-btn-outline:hover {
  border-color: #94a3b8;
  color: #1e293b;
  text-decoration: none;
}

.ty-404-num {
  font-size: 96px;
  font-weight: 800;
  color: #e2e8f0;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -4px;
}

@media (max-width: 540px) {
  .ty-title { font-size: 22px; }
  .ty-404-num { font-size: 72px; }
  .ty-info-row { grid-template-columns: 1fr; }
  .ty-actions { flex-direction: column; align-items: stretch; }
  .ty-btn-primary,
  .ty-btn-outline { justify-content: center; }
}

/* ============================================================
   SAF-T Manual Page (sf-*)
   ============================================================ */

/* Hero */
.sf-hero {
  background: #1a2340;
  padding: 72px 0 56px;
}

.sf-page .hero-content {
  max-width: 760px;
}

.sf-page .hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3a7bff;
  margin-bottom: 20px;
}

.sf-page #hero-title {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.22;
  margin-bottom: 24px;
}

.sf-page .accent {
  color: #3a7bff;
}

.sf-page .hero-subtitle {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 640px;
}

.sf-page .hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.sf-page .btn-outline-hero {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  padding: 10px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: border-color 0.2s, background 0.2s;
}

.sf-page .btn-outline-hero:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
}

.sf-page .btn-large {
  padding: 13px 28px;
  font-size: 0.95rem;
}

.sf-page .trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sf-page .trust-badges li {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.48);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Download bar */
.sf-download-bar {
  background: #f0f5ff;
  border-bottom: 1px solid #d4deff;
}

.sf-download-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.sf-download-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sf-download-info > .bi {
  font-size: 1.25rem;
  color: #d93025;
  flex-shrink: 0;
}

.sf-download-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a2340;
}

.sf-download-meta {
  font-size: 0.78rem;
  color: #888;
}

.sf-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #3a7bff;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}

.sf-download-btn:hover {
  background: #253060;
  color: #fff;
  text-decoration: none;
}

.sf-download-btn .bi {
  font-size: 0.9rem;
}

@media (max-width: 575px) {
  .sf-download-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sf-download-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Body */
.sf-body {
  padding: 56px 0 80px;
}

/* Sections */
.sf-page section {
  padding: 48px 0;
  border-bottom: 1px solid #eaedf5;
  scroll-margin-top: 100px;
}

.sf-page section:last-of-type {
  border-bottom: none;
}

/* Section header */
.sf-page .section-header {
  text-align: left;
  padding-bottom: 28px;
  background: none;
}

.sf-page .section-header h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
  font-weight: 800;
  color: #1a2340;
  line-height: 1.28;
  margin-bottom: 14px;
  position: static;
}

.sf-page .section-lead {
  font-size: 0.96rem;
  color: #555;
  line-height: 1.85;
  margin: 0;
}

/* Cards grid */
.sf-page .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.sf-page .card {
  background: #fff;
  border: 1px solid #eaedf5;
  border-radius: 12px;
  padding: 22px 20px;
  height: auto;
  margin: 0;
  transition: box-shadow 0.2s;
}

.sf-page .card:hover {
  box-shadow: 0 4px 20px rgba(26, 35, 64, 0.08);
  transform: none;
}

.sf-page .card-featured {
  border-color: #3a7bff;
  background: #f0f5ff;
}

.sf-page .card-icon {
  font-size: 1.75rem;
  margin-bottom: 14px;
  line-height: 1;
  color: #3a7bff;
}

.sf-page .card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a2340;
  margin-bottom: 6px;
  line-height: 1.35;
}

.sf-page .card-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #3a7bff;
  margin-bottom: 10px;
}

.sf-page .card p {
  font-size: 0.86rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 10px;
}

.sf-page .card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sf-page .card li {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}

.sf-page .card li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: #3a7bff;
  font-weight: 700;
}

/* Tables */
.sf-page .table-wrapper {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid #eaedf5;
  margin: 20px 0;
}

.sf-page table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.sf-page caption {
  caption-side: top;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aaa;
  padding: 12px 16px 6px;
  text-align: left;
}

.sf-page thead tr {
  background: #f8faff;
}

.sf-page th {
  padding: 11px 16px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1a2340;
  border-bottom: 1px solid #eaedf5;
  white-space: nowrap;
}

.sf-page td {
  padding: 11px 16px;
  color: #444;
  border-bottom: 1px solid #f4f6fb;
  line-height: 1.55;
  vertical-align: top;
}

.sf-page tbody tr:last-child td {
  border-bottom: none;
}

.sf-page tbody tr:hover td {
  background: #f8faff;
}

/* Inline code */
.sf-page td code,
.sf-page p code,
.sf-page li code {
  background: #eef3ff;
  color: #1a2340;
  font-size: 0.82em;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', Courier, monospace;
  font-weight: 600;
}

/* Blocks grid */
.sf-page .blocks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.sf-page .block {
  background: #f8faff;
  border: 1px solid #eaedf5;
  border-radius: 12px;
  padding: 22px 20px;
}

.sf-page .block h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #1a2340;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}

.sf-page .block-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: #3a7bff;
  color: #fff;
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 700;
}

.sf-page .block p {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.sf-page .block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.sf-page .block li {
  font-size: 0.84rem;
  color: #444;
  line-height: 1.55;
  padding-left: 14px;
  position: relative;
}

.sf-page .block li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #3a7bff;
  font-weight: 700;
}

/* Diagram figure */
.sf-page .diagram-figure {
  margin: 0 0 28px;
  border: 1px solid #eaedf5;
  border-radius: 12px;
  overflow: hidden;
  background: #f8faff;
}

.sf-page .diagram-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.sf-page .diagram-figure figcaption {
  font-size: 0.78rem;
  color: #888;
  text-align: center;
  padding: 11px 16px;
  border-top: 1px solid #eaedf5;
}

/* Two-column layout */
.sf-page .two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.sf-page .col-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2340;
  margin-bottom: 14px;
}

.sf-page .col-content p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 14px;
}

.sf-page .col-image figure {
  margin: 0;
  border: 1px solid #eaedf5;
  border-radius: 12px;
  overflow: hidden;
  background: #f8faff;
}

.sf-page .col-image img {
  width: 100%;
  height: auto;
  display: block;
}

.sf-page .col-image figcaption {
  font-size: 0.76rem;
  color: #888;
  text-align: center;
  padding: 10px 14px;
  border-top: 1px solid #eaedf5;
}

/* Check list */
.sf-page .check-list {
  list-style: none;
  padding: 0;
  margin: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sf-page .check-list li {
  font-size: 0.9rem;
  color: #303e55;
  line-height: 1.65;
  padding-left: 22px;
  position: relative;
}

.sf-page .check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #3a7bff;
  font-weight: 700;
  font-size: 0.85rem;
}

/* Info box */
.sf-page .info-box {
  background: #eef3ff;
  border-left: 4px solid #3a7bff;
  border-radius: 0 8px 8px 0;
  padding: 15px 18px;
  margin-top: 18px;
  font-size: 0.875rem;
  color: #303e55;
  line-height: 1.7;
}

/* Subsection */
.sf-page .subsection {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #eaedf5;
}

.sf-page .subsection h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2340;
  margin-bottom: 10px;
}

.sf-page .subsection > p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 14px;
}

/* Tabs section (panels without tab navigation) */
.sf-page .tabs-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sf-page .tab-panel {
  border: 1px solid #eaedf5;
  border-radius: 12px;
  padding: 24px 22px;
}

.sf-page .tab-panel h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2340;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid #eaedf5;
}

/* Feature list */
.sf-page .feature-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sf-page .feature-list li {
  font-size: 0.875rem;
  color: #303e55;
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.sf-page .feature-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #3a7bff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
}

/* Highlight box */
.sf-page .highlight-box {
  background: #f0f5ff;
  border-left: 4px solid #3a7bff;
  border-radius: 0 8px 8px 0;
  padding: 13px 17px;
  margin: 14px 0;
  font-size: 0.875rem;
  color: #1a2340;
  line-height: 1.7;
}

/* Small cards (3-col variant) */
.sf-page .cards-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 24px;
}

.sf-page .card-small {
  padding: 20px 18px;
}

.sf-page .card-small h3 {
  font-size: 0.92rem;
}

/* Screenshot wide */
.sf-page .screenshot-wide {
  margin: 24px 0 0;
  border: 1px solid #eaedf5;
  border-radius: 12px;
  overflow: hidden;
  background: #f8faff;
}

.sf-page .screenshot-wide img {
  width: 100%;
  height: auto;
  display: block;
}

.sf-page .screenshot-wide figcaption {
  font-size: 0.76rem;
  color: #888;
  text-align: center;
  padding: 10px 14px;
  border-top: 1px solid #eaedf5;
}

/* Steps list */
.sf-page .steps-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
}

.sf-page .step {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 32px;
}

.sf-page .step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: #eaedf5;
}

.sf-page .step-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #3a7bff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.sf-page .step-content {
  flex: 1;
  padding-top: 8px;
}

.sf-page .step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2340;
  margin-bottom: 10px;
}

.sf-page .step-content p {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 0;
}

.sf-page .step-screenshot {
  margin: 16px 0 0;
  border: 1px solid #eaedf5;
  border-radius: 10px;
  overflow: hidden;
  background: #f8faff;
}

.sf-page .step-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

.sf-page .step-screenshot figcaption {
  font-size: 0.74rem;
  color: #888;
  padding: 8px 12px;
  border-top: 1px solid #eaedf5;
  text-align: center;
}

/* Features grid */
.sf-page .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sf-page .feature {
  background: #f8faff;
  border: 1px solid #eaedf5;
  border-radius: 12px;
  padding: 22px 18px;
  transition: box-shadow 0.2s;
}

.sf-page .feature:hover {
  box-shadow: 0 4px 16px rgba(26, 35, 64, 0.07);
}

.sf-page .feature-icon {
  font-size: 1.65rem;
  margin-bottom: 14px;
  line-height: 1;
  color: #3a7bff;
}

.sf-page .feature h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1a2340;
  margin-bottom: 8px;
  line-height: 1.35;
}

.sf-page .feature p {
  font-size: 0.84rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Code examples */
.sf-page .code-example {
  margin-bottom: 24px;
  border: 1px solid #eaedf5;
  border-radius: 12px;
  overflow: hidden;
}

.sf-page .code-example:last-child {
  margin-bottom: 0;
}

.sf-page .code-example h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a2340;
  padding: 14px 18px;
  margin: 0;
  background: #f8faff;
  border-bottom: 1px solid #eaedf5;
}

.sf-page .code-example figure {
  margin: 0;
}

.sf-page .code-example img {
  width: 100%;
  height: auto;
  display: block;
}

.sf-page .code-example figcaption {
  font-size: 0.74rem;
  color: #888;
  padding: 9px 14px;
  border-top: 1px solid #eaedf5;
  text-align: center;
}

/* Sidebar */
.sf-sidebar {
  position: sticky;
  top: 90px;
}

.sf-toc {
  background: #fff;
  border: 1px solid #eaedf5;
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 16px;
}

.sf-toc-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #bbb;
  margin-bottom: 14px;
}

.sf-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sf-toc-list li {
  border-bottom: 1px solid #f4f4f4;
}

.sf-toc-list li:last-child {
  border-bottom: none;
}

.sf-toc-list a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 0;
  font-size: 0.845rem;
  color: #555;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s;
}

.sf-toc-list a.sf-toc-active {
  color: #3a7bff;
  font-weight: 700;
}

.sf-toc-list a.sf-toc-active::before {
  background: #3a7bff;
}

.sf-toc-list a:hover {
  color: #3a7bff;
}

.sf-toc-list a::before {
  content: '';
  width: 4px;
  height: 4px;
  min-width: 4px;
  background: #d4deff;
  border-radius: 50%;
}

/* Sidebar CTA */
.sf-cta-card {
  background: #1a2340;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}

.sf-cta-card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1;
  color: #3a7bff;
}

.sf-cta-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.sf-cta-card p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 20px;
  line-height: 1.6;
}

.sf-cta-card .cs2-demo-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.88rem;
}

/* Responsive */
@media (max-width: 1199px) {
  .sf-page .cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sf-page .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .sf-sidebar {
    position: static;
  }

  .sf-page .blocks-grid {
    grid-template-columns: 1fr;
  }

  .sf-page .two-col-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .sf-page .cards-grid,
  .sf-page .cards-grid--3 {
    grid-template-columns: 1fr;
  }

  .sf-page .features-grid {
    grid-template-columns: 1fr;
  }

  .sf-hero {
    padding: 48px 0 36px;
  }

  .sf-page .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }
}
