/* ============================================
   Complex Solutions - Custom Stylesheet
   ============================================ */

/* CSS Variables */
:root {
  --text-main-color: #00142e;
  --white: #ffffff;
  --3affef: #3affef;
  --blue-primary: #0165c7;
  --blue-light: #06b3f7;
  --green-accent: #31ccbf;
  --font-primary: 'Albert Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Libre Caslon Text', serif;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  color: var(--text-main-color);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 500;
  line-height: 1.2;
}

p {
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: 1328px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.div-content {
  overflow-x: clip;
  max-width: 100vw;
}

/* ============================================
   HEADER
   ============================================ */

.header {
  z-index: 99;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
}

.header-wrapper {
  justify-content: space-between;
  height: 44px;
  padding-left: 6px;
  padding-right: 6px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.wrapper-nav {
  background-color: var(--white);
  border-radius: 50px;
  flex: 1;
  min-width: 0;
  max-width: 1280px;
  box-shadow: 0 2px 8px rgba(0, 20, 46, 0.08);
}

.logo {
  justify-content: center;
  align-items: center;
  margin-right: 16px;
  display: flex;
  flex-shrink: 0;
}

.logo-img {
  transition: all 0.3s;
}

.logo-img:hover {
  transform: scale(1.1);
}

.nav-menu {
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-link {
  padding: 12px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  transition: all 0.3s;
  color: var(--text-main-color);
}

.nav-link:hover {
  color: var(--blue-primary);
  text-decoration: underline;
}

.menu-wrp {
  justify-content: center;
  align-items: center;
  padding-left: 8px;
  padding-right: 8px;
  display: flex;
}

.right-menu-block {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  display: flex;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 12h18M3 6h18M3 18h18' stroke='%2300142e' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.mobile-menu-btn._w--open {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 6L6 18M6 6l12 12' stroke='%2300142e' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ============================================
   BUTTONS
   ============================================ */

.button {
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  min-height: 32px;
  padding-left: 38px;
  padding-right: 12px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  border: none;
  cursor: pointer;
}

.button.black {
  color: var(--white);
  background-color: #00142e;
  white-space: nowrap;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8h10M9 4l4 4-4 4' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: 12px center;
  background-repeat: no-repeat;
  box-shadow: 0 1px 3.4px rgba(26, 80, 151, 0.1), 0 2px 3.3px rgba(0, 20, 46, 0.2);
}

.button.black.header-cta {
  flex-shrink: 0;
}

.button.black:hover {
  color: var(--text-main-color);
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8h10M9 4l4 4-4 4' stroke='%2300142e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.button.white {
  color: var(--text-main-color);
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8h10M9 4l4 4-4 4' stroke='%2300142e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: 32px center;
  background-repeat: no-repeat;
  min-height: 44px;
  padding-left: 62px;
  padding-right: 32px;
  box-shadow: 0 2px 4px rgba(26, 80, 151, 0.1), 0 4px 4px rgba(0, 20, 46, 0.2), 0 0 0 4px rgba(106, 194, 254, 0.5);
}

.button.white:hover {
  background-color: #e6f5ff;
}

.button.button-link {
  color: var(--blue-primary);
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8h10M9 4l4 4-4 4' stroke='%230165c7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: 0 center;
  background-repeat: no-repeat;
  padding-left: 26px;
  padding-right: 0;
  min-height: auto;
  box-shadow: none;
}

.button.button-link:hover {
  color: #09f;
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */

.language-wrp {
  background-color: rgba(0, 20, 46, 0.1);
  border-radius: 100px;
  width: 120px;
  height: 28px;
  padding: 2px;
  display: flex;
  position: relative;
}

.lng-link {
  z-index: 1;
  color: var(--text-main-color);
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  height: 100%;
  padding-left: 8px;
  gap: 4px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  transition: all 0.3s;
  display: flex;
  position: relative;
}

.lng-link.dk {
  filter: grayscale(100%);
}

.lng-link.dk:hover {
  filter: grayscale(0%);
}

.flag-icon {
  width: 16px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
}

.switcher {
  background-color: var(--white);
  border-radius: 12px;
  width: 58px;
  height: 24px;
  position: absolute;
  top: 2px;
  left: 2px;
  box-shadow: 0 1px 1px rgba(0, 20, 46, 0.1);
  transition: left 0.3s;
}

.language-wrp.lang-en .switcher {
  left: 60px;
}

.mobile-cta-link {
  display: none;
}

.mobile-lang-wrp {
  display: none;
}

.mobile-lang-header {
  display: none;
}

.mobile-controls-pill {
  display: none;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  background-image: url("67f5494f12c7f5fd129b6923_main-bg-2.webp");
  background-position: 50% 90%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  margin: 12px;
  padding-top: 178px;
  padding-bottom: 46px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-wrapper {
  z-index: 1;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.hero-badge {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 41px;
  justify-content: center;
  align-items: center;
  min-height: 33px;
  margin-bottom: 19px;
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
}

.hero-badge-text {
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
}

.hero-h1 {
  color: var(--white);
  text-align: center;
  letter-spacing: -0.06em;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: var(--font-primary);
  font-size: 56px;
  font-weight: 500;
  line-height: 1em;
}

.hero-title-linear {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #3affef 16%, #cfd6ff);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
}

.hero-title-linear.ml-l-minus {
  margin-left: -10px;
  margin-right: -5px;
  padding-left: 10px;
  padding-right: 5px;
}

.hero-title-b {
  color: var(--3affef);
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
}

.hero-subheadline {
  color: var(--white);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3em;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-p {
  color: var(--white);
  text-align: center;
  max-width: 420px;
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.85;
}

.hero-bottom-wrp {
  justify-content: flex-start;
  align-items: center;
  margin-top: 92px;
  display: flex;
  gap: 24px;
}

.hero-bottom-wrp.footer-hero {
  margin-top: 0;
}

.hero-bottom-text {
  opacity: 0.85;
  color: var(--white);
  max-width: 114px;
  font-size: 14px;
  line-height: 120%;
}

/* Service Wheel */
.service-wheel-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  pointer-events: none;
  z-index: 0;
}

.service-wheel {
  position: relative;
  width: 100%;
  height: 100%;
  animation: spinWheel 30s linear infinite;
}

.service-wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: counterSpin 30s linear infinite;
  font-family: 'Albert Sans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
}

.service-wheel-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max-content;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transform: rotate(calc(var(--i) * 60deg)) translate(300px) rotate(calc(var(--i) * -60deg));
  animation: counterSpin 30s linear infinite;
  transform-origin: 0 0;
  margin-top: -16px;
  margin-left: -60px;
}

.service-wheel::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.service-wheel::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

@keyframes spinWheel {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes counterSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

.service-wheel-item:nth-child(2) { animation: none; transform: rotate(0deg) translate(300px) rotate(0deg); }
.service-wheel-item:nth-child(3) { animation: none; transform: rotate(60deg) translate(300px) rotate(-60deg); }
.service-wheel-item:nth-child(4) { animation: none; transform: rotate(120deg) translate(300px) rotate(-120deg); }
.service-wheel-item:nth-child(5) { animation: none; transform: rotate(180deg) translate(300px) rotate(-180deg); }
.service-wheel-item:nth-child(6) { animation: none; transform: rotate(240deg) translate(300px) rotate(-240deg); }
.service-wheel-item:nth-child(7) { animation: none; transform: rotate(300deg) translate(300px) rotate(-300deg); }

/* ============================================
   PARTNER LOGOS
   ============================================ */

/* Logos inside hero */
.hero-logos-wrp {
  margin-top: 64px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-logos-label {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin-bottom: 28px;
}

.partner-logos-section {
  padding: 48px 0;
}

.partner-logos-track {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.partner-logos-inner {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: scrollLogos 30s linear infinite;
}

.partner-logo-img {
  height: 36px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  opacity: 0.5;
  filter: grayscale(100%) brightness(2);
  transition: opacity 0.3s, filter 0.3s;
  flex-shrink: 0;
  vertical-align: middle;
}

.partner-logo-img:hover {
  opacity: 0.85;
  filter: grayscale(0%);
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.our-service-section {
  padding-top: 108px;
}

.main-title-wrp {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.main-title {
  letter-spacing: -0.06em;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 500;
  line-height: 120%;
}

.main-title.ta-center {
  text-align: center;
}

.main-title.fz-28 {
  font-size: 28px;
  line-height: 100%;
}

.main-title.fz-36 {
  font-size: 36px;
  line-height: 100%;
}

.main-title.white {
  color: var(--white);
}

.main-title-p {
  opacity: 0.6;
  text-align: center;
  max-width: 442px;
  margin-bottom: 0;
}

.main-title-p.no-mw {
  text-align: left;
  max-width: 100%;
}

.main-title-gradient {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
}

.main-title-gradient.green {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #31ccbf 63%, #9dc6ed);
  -webkit-background-clip: text;
  background-clip: text;
  padding-right: 4px;
}

.main-title-gradient.green.green-2 {
  background-image: linear-gradient(90deg, #3affef 39%, #cfd6ff);
}

.main-title-gradient.blue {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #0165c7 52% 70%, #06b3f7);
  -webkit-background-clip: text;
  background-clip: text;
  padding-right: 7px;
}

.main-title-gradient.blue.blue-2 {
  background-image: linear-gradient(90deg, #0165c7 19% 48%, #06b3f7);
}

.o-service-wrp {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1062px;
  margin-top: 56px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.o-service-item {
  background-image: url("67f1714cea70324b57470d04_service-bg-1.webp");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
  padding: 22px 24px 24px;
  position: relative;
}

.o-service-item.second {
  background-image: url("67f1714ca1aa4919ed9bd6e9_service-bg-2.webp");
}

.o-service-item.third {
  background-image: url("67f1714c7941ead9c8da36c3_service-bg-3.webp");
}

.o-service-img {
  width: 64px;
  margin-bottom: 12px;
  margin-left: -8px;
}

.o-service-item-p {
  color: var(--white);
  font-size: 14px;
  opacity: 0.8;
  margin-top: 12px;
}

.and-symbol {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
}

/* ============================================
   CASES SECTION
   ============================================ */

.cases-section {
  padding-top: 120px;
}

.marquee-container {
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-container.cases {
  margin-top: 56px;
}

.marquee-track {
  width: max-content;
  animation: scroll-right 40s linear infinite;
  display: flex;
}

.marquee-track.clients-second {
  animation: scroll-left 40s linear infinite;
}

.marquee-track.case-track {
  animation: scroll-right 50s linear infinite;
}

@keyframes scroll-right {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-left {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-item {
  border-radius: 16px;
  width: 248px;
  min-width: 248px;
  height: 248px;
  margin-right: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 1.9px rgba(5, 16, 60, 0.1), 0 0 7px rgba(0, 20, 46, 0.07);
}

.marquee-item.clients-item {
  white-space: normal;
  background-color: var(--white);
  border: 1px solid #e6e8f0;
  width: 280px;
  min-width: 280px;
  height: auto;
  padding: 16px;
  box-shadow: 0 1px 4.5px rgba(5, 16, 60, 0.15);
}

.case-marquee-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-case {
  background-image: linear-gradient(transparent 37%, rgba(0, 0, 0, 0.5) 90%);
  position: absolute;
  inset: 0;
}

.case-bottom-block-marquee {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 1;
}

.case-title-wrp {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.case-flag-wrp {
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  display: flex;
}

.case-flag-img {
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin-left: -8px;
  border-radius: 50%;
}

.case-flag-img.first {
  margin-left: 0;
}

.case-name {
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 100%;
}

.case-name-span {
  font-family: var(--font-accent);
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
}

.case-name-i {
  letter-spacing: -0.06em;
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 500;
}

.case-bottom-badge-wrp {
  margin-top: 8px;
  display: flex;
  gap: 8px;
}

.case-badge {
  color: var(--white);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-primary);
}

.case-badge.gradient {
  background-image: linear-gradient(90deg, rgba(5, 16, 60, 0.5), rgba(44, 169, 174, 0.5));
  backdrop-filter: blur(31.6px);
}

.swiper-left-grad {
  z-index: 1;
  background-image: linear-gradient(270deg, transparent, var(--white));
  width: 120px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.swiper-left-grad.right {
  left: auto;
  right: 0;
  transform: rotate(180deg);
}

.swiper-left-grad.case {
  display: block;
}

/* ============================================
   WHY US SECTION
   ============================================ */

.why-do-we-work-section {
  z-index: 1;
  padding-top: 120px;
  position: relative;
}

.why-work-wrp {
  background: linear-gradient(135deg, #00142e 0%, #001a3d 50%, #0a2a52 100%);
  border-radius: 16px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 64px;
  display: flex;
  position: relative;
  overflow: hidden;
  margin-top: 56px;
  gap: 32px;
}

.why-work-left {
  width: 50%;
}

.why-work-right {
  width: 50%;
}

.why-work-p {
  margin-top: 24px;
  margin-bottom: 0;
}

.ww-right-item {
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

.ww-right-item.first {
  margin-top: 0;
}

.ww-item-semi-title {
  letter-spacing: -0.06em;
  color: var(--blue-primary);
  width: 77px;
  min-width: 77px;
  font-family: var(--font-accent);
  font-size: 36px;
  font-style: italic;
  font-weight: 400;
  line-height: 100%;
  padding-top: 24px;
}

.ww-item-semi-title.no {
  color: #8691a1;
}

.ww-item-right-text-block {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(0, 20, 46, 0.1);
  border-radius: 16px;
  width: 100%;
  padding: 32px 24px;
}

.ww-item-right-text-block.yes {
  background: linear-gradient(135deg, rgba(1, 101, 199, 0.15) 0%, rgba(6, 179, 247, 0.1) 100%);
  border-color: rgba(106, 194, 254, 0.3);
}

.ww-i-r-t-list-item {
  min-height: 20px;
  margin-top: 16px;
  padding-left: 28px;
  font-size: 14px;
  position: relative;
  color: rgba(255, 255, 255, 0.7);
}

.ww-i-r-t-list-item.first {
  margin-top: 0;
}

.ww-i-r-t-list-item.no::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 4L4 12M4 4l8 8' stroke='%238691a1' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.ww-i-r-t-list-item.no {
  color: #8691a1;
}

.ww-i-r-t-list-item.yes {
  color: var(--white);
}

.ww-i-r-t-list-item.yes::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.3 4L6 11.3 2.7 8' stroke='%233affef' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ============================================
   UNIQUE SECTION
   ============================================ */

.unique-section {
  z-index: 1;
  padding-top: 120px;
  position: relative;
}

.unique-review-block {
  z-index: 1;
  border: 1px solid #e6e8f0;
  border-radius: 16px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 56px;
  padding: 12px 56px 12px 12px;
  display: flex;
  position: relative;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

.u-r-b-left {
  border-radius: 12px;
  width: 532px;
  min-width: 532px;
  overflow: hidden;
}

.u-r-b-left-img {
  border-radius: 12px;
  width: 100%;
}

.u-r-b-right {
  width: calc(100% - 588px);
  margin-left: 56px;
  padding-top: 56px;
  padding-bottom: 56px;
}

.u-r-b-right-p {
  margin-top: 24px;
  margin-bottom: 0;
  opacity: 0.7;
}

/* ============================================
   CHART SECTION
   ============================================ */

.unique-chart-block {
  background-image: url("67f5494f12c7f5fd129b6923_main-bg-2.webp");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -100px;
  padding-top: 218px;
  padding-bottom: 80px;
  position: relative;
}

.chart-wrapper {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
  gap: 40px;
}

.chart-left-block {
  width: 519px;
}

.chart-right-block {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.chart-img {
  max-width: 500px;
  width: 100%;
}

.chart-p {
  color: var(--white);
  opacity: 0.8;
}

.quote-block {
  backdrop-filter: blur(99.7px);
  background-color: rgba(108, 193, 229, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0 8px 8px 0;
  margin-top: 16px;
  padding: 10px 14px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 4.5px rgba(5, 16, 60, 0.15);
}

.quote-divider {
  background-color: #3affee;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  width: 2px;
  position: absolute;
  inset: 0 auto 0 0;
}

.quote-number {
  letter-spacing: -0.06em;
  color: #44fcef;
  min-width: 19px;
  margin-right: 12px;
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
}

.quote-text {
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
}

/* ============================================
   CASE STUDIES DETAILED
   ============================================ */

.case-studies-section {
  padding-top: 108px;
  padding-bottom: 120px;
}

.main-title-wrp.customer.mg-bottom-56 {
  margin-bottom: 56px;
}

.case-st-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-columns: 1fr 1fr 1fr;
  display: grid;
}

.case-st-item {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border: 1px solid #e6e8f0;
  border-radius: 16px;
  flex-flow: column;
  height: 100%;
  padding: 24px;
  display: flex;
  overflow: hidden;
}

.case-st-img-wrp {
  border-radius: 12px;
  height: 162px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.case-st-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.case-st-badge-wrp {
  gap: 8px;
  margin-bottom: 26px;
  display: flex;
}

.case-st-badge-item {
  background-color: #e5f2ff;
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 14px;
}

.case-st-badge-item.with-img {
  padding-left: 8px;
}

.case-st-badge-b {
  color: #00b67a;
  font-weight: 500;
}

.case-st-badge-p {
  margin-bottom: 0;
  font-size: 14px;
}

.case-st-item-title {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2em;
}

.case-st-item-list {
  gap: 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
}

.case-st-item-list.last {
  margin-bottom: 54px;
}

.case-st-badge-list-icon {
  margin-top: 3px;
  flex-shrink: 0;
}

.case-st-img-country {
  gap: 5px;
  background-color: var(--white);
  border-radius: 40px;
  padding: 5px 8px 5px 4px;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 12px;
  right: 12px;
}

.case-st-img-country-txt {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.cases-thumb {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* ============================================
   STORY BEHIND SECTION
   ============================================ */

.story-behind-section {
  padding-top: 120px;
}

.sb-content {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border: 1px solid #e6e8f0;
  border-radius: 16px;
  padding: 80px 64px;
  margin-top: 32px;
}

.sb-content-wrp {
  grid-column-gap: 50px;
  grid-template-columns: 1fr 454px;
  display: grid;
  align-items: center;
}

.sb-button {
  margin-top: 32px;
}

.sb-img {
  border-radius: 12px;
  width: 100%;
}

/* ============================================
   CLIENTS SECTION
   ============================================ */

.clients-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.clients-slider {
  margin-top: 56px;
  position: relative;
}

.client-logo {
  margin-bottom: 12px;
}

.clients-text {
  white-space: normal;
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 14px;
  opacity: 0.7;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background-image: url("67f5494f12c7f5fd129b6923_main-bg-2.webp");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
  padding-bottom: 120px;
  position: relative;
}

.main-cta-form {
  padding-top: 220px;
}

.main-cta-form.pd-top-120 {
  padding-top: 120px;
}

.cta-wrapper {
  justify-content: space-between;
  display: flex;
  gap: 40px;
}

.cta-wrapper.cta-wrapper-centered {
  flex-direction: column;
  align-items: center;
}

.cta-header-block {
  max-width: 700px;
  text-align: center;
}

.cta-p {
  color: var(--white);
  margin-top: 32px;
  opacity: 0.8;
}

.cta-calendly-block {
  width: 100%;
  max-width: 900px;
  margin-top: 48px;
}

.cta-left-block {
  width: 576px;
  margin-right: 20px;
}

.cta-list {
  margin-top: 32px;
}

.cta-list-item {
  margin-top: 15px;
  padding-left: 30px;
  position: relative;
}

.cta-list-item-icon {
  background-color: rgba(255, 255, 255, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.3 4L6 11.3 2.7 8' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-size: 10px;
  background-repeat: no-repeat;
  border-radius: 100px;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 3px;
  left: 0;
}

.cta-list-item-text {
  color: var(--white);
  font-size: 14px;
}

.cta-right-block {
  width: 519px;
  min-width: 519px;
}

.cta-form-block {
  gap: 23px;
  backdrop-filter: blur(59px);
  background-color: var(--white);
  border-radius: 16px;
  flex-flow: wrap;
  padding: 32px 24px;
  display: flex;
  box-shadow: 0 1px 1.9px rgba(5, 16, 60, 0.15), 0 4px 7px rgba(0, 20, 46, 0.07);
}

.f-label {
  margin-bottom: 8px;
  font-weight: 500;
  display: block;
  font-size: 14px;
}

.f-group {
  width: 100%;
}

.f-group.half {
  width: calc(50% - 12px);
}

.f-input {
  border: 1px solid rgba(230, 232, 240, 0.8);
  border-radius: 6px;
  height: 46px;
  width: 100%;
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 14px;
  transition: all 0.3s;
  outline: none;
}

.f-input:focus {
  border-color: #6ac2fe;
  box-shadow: 0 0 0 3px rgba(106, 194, 254, 0.2);
}

.f-input.f-area {
  resize: none;
  height: 113px;
}

.sup {
  color: #e52d2d;
}

.form-btn-group {
  position: relative;
  width: 100%;
}

.lucas-photo-img {
  width: 61px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 0 12px 12px;
}

.footer-content {
  background-image: none;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px 0;
}

.footer-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-compact-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-divider {
  color: rgba(0, 20, 46, 0.2);
  font-size: 14px;
}

.footer-logo {
  margin-right: 0;
  flex-shrink: 0;
}

.footer-nav-link {
  color: var(--text-main-color);
  font-family: var(--font-primary);
  font-size: 14px;
}

.footer-nav-link:hover {
  text-decoration: underline;
}

.footer-nav-link-text {
  opacity: 0.6;
  color: var(--text-main-color);
}

.footer-nav-link-text.link:hover {
  opacity: 1;
}

.copyright {
  color: var(--text-main-color);
  margin-bottom: 0;
  font-size: 13px;
  opacity: 0.4;
  white-space: nowrap;
}

.footer-legal-link {
  color: var(--text-main-color);
  opacity: 0.6;
  font-size: 14px;
  font-family: var(--font-primary);
  transition: opacity 0.3s;
}

.footer-legal-link:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-section {
  padding-top: 140px;
  padding-bottom: 80px;
}

.legal-title {
  font-family: var(--font-primary);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--text-main-color);
  margin-bottom: 48px;
}

.legal-content {
  max-width: 800px;
  color: var(--text-main-color);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
}

.legal-content h2 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--text-main-color);
}

.legal-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text-main-color);
}

.legal-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--text-main-color);
}

.legal-content p {
  margin-bottom: 12px;
}

.legal-content a {
  color: var(--blue-primary);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--blue-light);
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media screen and (max-width: 991px) {
  .header {
    left: 24px;
    right: 24px;
  }

  /* Header bar - pill on mobile containing logo + controls */
  .header-wrapper {
    background-color: var(--white);
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 20, 46, 0.08);
    padding: 6px 6px 6px 16px;
    position: relative;
  }

  .mobile-menu-btn {
    display: block;
  }

  /* Hide wrapper-nav on mobile, show only when menu open */
  .wrapper-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    z-index: 100;
  }

  .wrapper-nav.menu-is-open {
    display: block;
  }

  .menu-wrp {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--white);
    border-radius: 20px;
    padding: 24px 16px;
    display: flex;
    box-shadow: 0 8px 24px rgba(0, 20, 46, 0.15);
  }

  .nav-link {
    font-size: 18px;
    padding: 14px 8px;
    width: 100%;
    border-bottom: 1px solid rgba(0, 20, 46, 0.06);
  }

  .nav-link.first {
    padding-top: 4px;
  }

  /* Backdrop overlay */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 20, 46, 0.5);
    z-index: 90;
  }

  .menu-overlay.is-visible {
    display: block;
  }

  body.menu-is-open {
    overflow: hidden;
  }

  .right-menu-block {
    display: none;
  }

  .button.black.header-cta {
    display: none;
  }

  .nav-menu .mobile-cta-link {
    display: none;
  }

  .nav-menu .mobile-lang-wrp {
    display: none;
  }

  .nav-menu .nav-link:last-of-type {
    border-bottom: none;
  }

  /* Mobile controls: lang switcher + hamburger (pill styling now on header-wrapper) */
  .mobile-controls-pill {
    display: flex;
    align-items: center;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    gap: 4px;
    box-shadow: none;
    flex: 0 0 auto;
    min-width: 0;
    justify-content: flex-end;
  }

  .mobile-lang-header {
    display: flex;
    align-items: center;
  }

  .mobile-lang-header .language-wrp {
    width: 68px;
    height: 28px;
  }

  .mobile-lang-header .lng-link {
    font-size: 0;
    padding-left: 0;
    justify-content: center;
    gap: 0;
  }

  .mobile-lang-header .flag-icon {
    width: 18px;
    height: 14px;
  }

  .mobile-lang-header .switcher {
    width: 32px;
  }

  .mobile-lang-header .language-wrp.lang-en .switcher {
    left: 34px;
  }

  /* Black logo on mobile (visible on white pill background) */
  .logo-img {
    filter: brightness(0) saturate(100%);
  }

  .logo {
    margin-right: auto;
    flex-shrink: 0;
  }

  /* Hamburger inside pill stays as block */
  .mobile-menu-btn {
    flex-shrink: 0;
  }

  .hero-h1 {
    font-size: 40px;
  }

  .main-title {
    font-size: 36px;
  }

  .o-service-wrp {
    grid-template-columns: 1fr;
  }

  .why-work-wrp {
    flex-direction: column;
    padding: 56px 32px 32px;
  }

  .why-work-left,
  .why-work-right {
    width: 100%;
  }

  .cta-wrapper {
    flex-direction: column;
  }

  .cta-left-block {
    width: 100%;
    margin-right: 0;
  }

  .cta-right-block {
    width: 100%;
    min-width: 100%;
    margin-top: 40px;
  }

  .unique-review-block {
    flex-direction: column;
    padding: 12px;
  }

  .u-r-b-left {
    width: 100%;
    min-width: 100%;
  }

  .u-r-b-right {
    width: 100%;
    margin-left: 0;
    padding: 32px 24px;
  }

  .chart-wrapper {
    flex-direction: column;
  }

  .chart-left-block {
    width: 100%;
  }

  .case-st-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sb-content-wrp {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sb-content {
    padding: 40px 32px;
  }

  .footer-compact {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-compact-links {
    justify-content: center;
  }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media screen and (max-width: 767px) {
  .header {
    top: 16px;
    left: 12px;
    right: 12px;
  }

  .logo-img {
    width: 140px;
  }

  .hero-section {
    padding-top: 110px;
    padding-bottom: 40px;
    margin: 8px;
    max-width: calc(100vw - 16px);
  }

  .hero-wrapper {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
  }

  .hero-h1 {
    font-size: 32px;
  }

  .hero-bottom-wrp {
    margin-top: 48px;
    flex-direction: column;
    gap: 12px;
  }

  .hero-bottom-text {
    max-width: none;
    text-align: center;
  }

  .main-title {
    font-size: 28px;
  }

  .main-title.fz-28 {
    font-size: 22px;
  }

  .our-service-section {
    padding-top: 64px;
  }

  .cases-section,
  .why-do-we-work-section,
  .unique-section,
  .story-behind-section,
  .clients-section,
  .case-studies-section {
    padding-top: 80px;
  }

  .clients-section {
    padding-bottom: 80px;
  }

  .why-work-wrp {
    padding: 32px 20px;
  }

  .ww-item-semi-title {
    font-size: 28px;
    min-width: 60px;
    width: 60px;
  }

  .case-st-grid {
    grid-template-columns: 1fr;
  }

  .f-group.half {
    width: 100%;
  }

  .unique-chart-block {
    padding-top: 160px;
    padding-bottom: 60px;
  }

  .footer-compact-links {
    gap: 12px;
  }

  .main-cta-form.pd-top-120 {
    padding-top: 80px;
  }

  .cta-section {
    padding-bottom: 60px;
  }

  .sb-content {
    padding: 24px 16px;
  }

  .hero-badge {
    padding: 8px 12px;
    border-radius: 12px;
    max-width: 100%;
  }

  .hero-badge-text {
    font-size: 11px;
    text-align: center;
    line-height: 1.4;
    white-space: normal;
    word-break: break-word;
  }

  .main-title-gradient {
    padding-left: 2px;
    padding-right: 4px;
  }

  .hero-subheadline {
    font-size: 20px;
    line-height: 1.4;
    padding: 0 8px;
  }

  .hero-p {
    font-size: 14px;
    padding: 0 8px;
  }

  .main-title-p {
    font-size: 14px;
    padding: 0 8px;
  }

  .o-service-item {
    padding: 20px 18px;
  }

  .o-service-item-p {
    font-size: 13px;
  }

  .unique-review-block {
    padding: 8px;
  }

  .u-r-b-left {
    border-radius: 8px;
  }

  .u-r-b-right {
    padding: 24px 12px;
  }

  .u-r-b-right-p {
    font-size: 14px;
    margin-top: 16px;
  }

  .chart-left-block {
    width: 100%;
    text-align: center;
  }

  .quote-block {
    text-align: left;
  }

  .chart-img {
    max-width: 100%;
  }

  .quote-text {
    font-size: 13px;
  }

  .partner-logos-inner {
    gap: 32px;
  }

  .partner-logo-img {
    height: 28px;
    max-width: 140px;
  }

  .hero-logos-wrp {
    margin-top: 40px;
  }

  .cta-calendly-block {
    margin-top: 32px;
  }

  .calendly-inline-widget {
    min-width: 100% !important;
  }

  .footer-compact-links {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer-divider {
    display: none;
  }

  .copyright {
    white-space: normal;
    text-align: center;
  }

  .comparison-table-container {
    margin-top: 32px;
    padding: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table-container::after {
    display: none;
  }

  .comparison-scroll-arrows {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 12px 0 4px;
  }

  .comparison-scroll-arrows button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    font-family: var(--font-primary);
    line-height: 1;
  }

  .comparison-scroll-arrows button:hover,
  .comparison-scroll-arrows button:active {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
  }

  .comparison-table {
    min-width: 580px;
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 10px 10px;
    font-size: 12px;
  }

  .comparison-table thead th:first-child {
    width: 70px;
  }

  .comparison-table tbody td.row-label {
    white-space: normal;
  }
}

@media screen and (max-width: 479px) {
  .hero-section {
    padding-top: 100px;
  }

  .hero-h1 {
    font-size: 24px;
  }

  .hero-subheadline {
    font-size: 18px;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .main-title {
    font-size: 24px;
  }

  .main-title.fz-28 {
    font-size: 20px;
  }

  .marquee-item {
    width: 200px;
    min-width: 200px;
    height: 200px;
  }

  .marquee-item.clients-item {
    width: 240px;
    min-width: 240px;
  }

  .comparison-container {
    padding: 20px 12px;
    gap: 32px;
  }

  .comparison-list-item {
    font-size: 13px;
  }

  .ww-item-right-text-block {
    padding: 20px 16px;
  }

  .ww-i-r-t-list-item {
    font-size: 13px;
  }

  .hero-video-wrp {
    margin-top: 24px;
  }

  .logo-img {
    width: 120px;
  }

  .button.white {
    padding-left: 48px;
    padding-right: 24px;
    font-size: 13px;
  }

  .reviews-inner .review-card {
    width: 260px;
    min-width: 260px;
  }

  .review-card-text {
    font-size: 13px;
  }

  .cases-thumb {
    width: 260px;
  }
}

/* ================================================
   NEW SECTIONS: Ecompusher On-Brand Update
   ================================================ */

/* --- TYPISCHE PROBLEME --- */
.problems-section {
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  background: #ffffff;
  border-radius: 16px;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.problem-card {
  background: linear-gradient(135deg, #00142e 0%, #001a3d 50%, #0a2a52 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: border-color 0.3s ease;
}

.problem-card:hover {
  border-color: rgba(58, 255, 239, 0.3);
}

.problem-icon {
  font-size: 36px;
  color: var(--3affef);
  font-family: var(--font-accent);
  margin-bottom: 16px;
}

.problem-title {
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

/* --- COMPARISON SECTION --- */
.comparison-section {
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  background: linear-gradient(180deg, #001535 0%, #00142e 50%, #001a3d 100%);
  border-radius: 16px;
}

/* --- PROOF / SUCCESS SECTION --- */
.proof-section {
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  background: linear-gradient(180deg, #00142e 0%, #001535 50%, #0a2548 100%);
  border-radius: 16px;
}

.proof-awards-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  margin-bottom: 56px;
}

.proof-award-card {
  background: linear-gradient(135deg, #00142e 0%, #001a3d 50%, #0a2a52 100%);
  border: 1px solid rgba(58, 255, 239, 0.2);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  max-width: 400px;
  flex: 1;
}

.proof-award-3d {
  margin-bottom: 24px;
}

.proof-award-placeholder {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border: 2px dashed rgba(58, 255, 239, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-family: var(--font-body);
}

.proof-award-title {
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 8px;
}

.proof-award-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

.proof-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.proof-testimonial-card {
  background: linear-gradient(135deg, rgba(1, 101, 199, 0.1) 0%, rgba(6, 179, 247, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s ease;
}

.proof-testimonial-card:hover {
  border-color: rgba(58, 255, 239, 0.2);
}

.proof-testimonial-header {
  margin-bottom: 16px;
}

.proof-testimonial-platform {
  color: var(--3affef);
  font-size: 12px;
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.proof-testimonial-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 16px;
  font-family: var(--font-body);
}

.proof-testimonial-author {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.proof-testimonial-name {
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-primary);
  display: block;
  margin-bottom: 4px;
}

.proof-testimonial-role {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-family: var(--font-body);
}

/* --- ABOUT ME SECTION --- */
.about-me-section {
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  background: linear-gradient(180deg, #001a3d 0%, #00142e 50%, #001535 100%);
  border-radius: 16px;
}

.about-me-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.about-me-card {
  background: linear-gradient(135deg, #00142e 0%, #001a3d 50%, #0a2a52 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 32px;
  transition: border-color 0.3s ease;
}

.about-me-card:hover {
  border-color: rgba(58, 255, 239, 0.2);
}

.about-me-card-label {
  color: var(--3affef);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.about-me-card-number {
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 500;
  display: block;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.about-me-card-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  font-family: var(--font-body);
}

.about-me-services {
  background: linear-gradient(135deg, rgba(1, 101, 199, 0.1) 0%, rgba(6, 179, 247, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  margin-top: 24px;
}

.about-me-services-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  font-family: var(--font-body);
}

.about-me-services-text strong {
  color: var(--white);
}

/* --- TOOLS BY ECOMPUSHER --- */
.tools-section {
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  background-image: url("67f5494f12c7f5fd129b6923_main-bg-2.webp");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
}

.tools-section.tools-section-slim {
  padding-top: 80px;
  padding-bottom: 80px;
}

.tools-coming-soon {
  margin-top: 56px;
  text-align: center;
}

.tools-coming-soon-inner {
  background: linear-gradient(135deg, #00142e 0%, #001a3d 50%, #0a2a52 100%);
  border: 1px dashed rgba(58, 255, 239, 0.3);
  border-radius: 16px;
  padding: 80px 48px;
  max-width: 720px;
  margin: 0 auto;
}

.tools-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--3affef), var(--blue-light));
  color: var(--text-main-color);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tools-title-accent {
  color: #7dd3fc;
  font-family: var(--font-accent);
  font-style: italic;
}

.tools-desc {
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin: 16px auto 0;
  font-size: 16px;
  line-height: 1.6;
  font-family: var(--font-body);
}

.tools-desc-inline {
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 20px auto 0;
  font-size: 16px;
  line-height: 1.6;
  font-family: var(--font-body);
  text-align: center;
}

/* --- ADDITIONAL SERVICES (inside tools section) --- */
.services-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(58, 255, 239, 0.4), transparent);
  margin: 56px auto;
}

.services-headline {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  justify-items: center;
}

.services-grid .services-card {
  width: 100%;
}

.services-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: left;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.services-card:hover {
  border-color: rgba(58, 255, 239, 0.25);
  background: rgba(255, 255, 255, 0.07);
}

.services-card-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.services-card-title {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.services-card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-headline {
    font-size: 20px;
  }
}

/* --- FAQ SECTION --- */
.faq-section {
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  background: #ffffff;
  border-radius: 16px;
}

.faq-list {
  max-width: 800px;
  margin: 56px auto 0;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #00142e 0%, #001a3d 50%, #0a2a52 100%);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
  gap: 16px;
}

.faq-question:hover {
  color: var(--3affef);
}

.faq-icon {
  font-size: 24px;
  color: var(--3affef);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 32px 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  font-family: var(--font-body);
}

/* --- SERVICE EXAMPLES PLACEHOLDER --- */
.o-service-examples {
  margin-top: 16px;
}

.o-service-example-placeholder {
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  font-family: var(--font-body);
}

/* --- HERO VIDEO --- */
.hero-video-wrp {
  margin-top: 48px;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-video-container {
  position: relative;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.hero-video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}


.mg-bottom-32 {
  margin-bottom: 32px;
}

.main-title.fz-20 {
  font-size: 20px;
}

.main-title-p.white-dim {
  color: rgba(255, 255, 255, 0.6);
}

/* --- PROBLEM CARDS (SERVICE STYLE) --- */
.problem-icon-area {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  margin-left: -8px;
}

.o-service-item.problem-style {
  text-align: left;
}

.o-service-item.problem-style .main-title.fz-28 {
  font-size: 20px;
  line-height: 1.3;
}

/* --- PROBLEMS SECTION WHITE BACKGROUND OVERRIDES --- */
.problems-section .main-title {
  color: var(--text-main-color);
}

.problems-section .main-title-p {
  color: var(--text-main-color);
  opacity: 0.6;
}

.problems-section .o-service-item.problem-style {
  /* Gradient background restored */
}

.problems-section .o-service-item.problem-style:hover {
  border-color: rgba(58, 255, 239, 0.3);
}

.problems-section .main-title.fz-28.white {
  color: var(--white);
}

.problems-section .o-service-item-p {
  color: var(--white);
  opacity: 0.8;
}

/* --- FAQ SECTION WHITE BACKGROUND OVERRIDES --- */
.faq-section .main-title {
  color: var(--text-main-color);
}

.faq-section .faq-item {
  background: #f5f7fa;
  border-color: rgba(0, 20, 46, 0.1);
}

.faq-section .faq-question {
  color: var(--text-main-color);
}

.faq-section .faq-question:hover {
  color: #31ccbf;
}

.faq-section .faq-icon {
  color: #31ccbf;
}

.faq-section .faq-answer p {
  color: rgba(0, 20, 46, 0.7);
}

/* --- FOOTER WHITE BACKGROUND OVERRIDES --- */
.footer .footer-logo img {
  filter: brightness(0) saturate(100%);
}

.footer-hero-text {
  color: var(--text-main-color);
}

.footer-nav-link {
  color: var(--text-main-color);
}

.footer-nav-link-text {
  color: var(--text-main-color);
  opacity: 0.7;
}

.copyright {
  color: var(--text-main-color);
  opacity: 0.4;
}

.footer-legal-link {
  color: var(--text-main-color);
  opacity: 0.5;
}

.footer-legal-link:hover {
  color: var(--text-main-color);
  opacity: 1;
}

/* --- COMPARISON SECTION (WHY BRANDS CHOOSE US) --- */
.comparison-section.why-choose {
  background-image: url("67f5494f12c7f5fd129b6923_main-bg-2.webp");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #001535;
  border-radius: 16px;
  padding-top: 108px;
  padding-bottom: 108px;
}

.comparison-section.why-choose .main-title,
.comparison-section.why-choose .main-title-p {
  color: var(--white);
}

.comparison-container {
  border-radius: 24px;
  display: flex;
  padding: 64px 48px;
  margin-top: 56px;
  gap: 48px;
}

.comparison-col {
  flex: 1;
}

.comparison-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin-top: -8px;
  margin-bottom: 24px;
}

.comparison-logo {
  height: auto;
  margin-bottom: 8px;
}

.comparison-list-wrp {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.comparison-list {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  flex: 1;
  width: 100%;
}

.comparison-col-right .comparison-list {
  background: linear-gradient(135deg, rgba(1, 101, 199, 0.15) 0%, rgba(6, 179, 247, 0.1) 100%);
  border-color: rgba(106, 194, 254, 0.3);
}

.comparison-col-right .comparison-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.comparison-col-right .comparison-list-item {
  color: var(--white);
  font-weight: 500;
}

.comparison-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.comparison-list-item.yes {
  color: var(--white);
  font-weight: 500;
}

.comparison-icon-x {
  color: #8691a1;
  font-size: 18px;
  line-height: 1;
  min-width: 16px;
  flex-shrink: 0;
}

.comparison-icon-check {
  color: var(--3affef);
  font-size: 16px;
  line-height: 1;
  min-width: 16px;
  flex-shrink: 0;
}

.comparison-section.why-choose .ww-item-semi-title {
  display: none;
}

.comparison-section.why-choose .ww-item-semi-title.yes {
  display: none;
}

/* --- CASE STUDY CHECKMARK --- */
.case-st-check {
  color: #00b67a;
  font-size: 14px;
  min-width: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- REVIEW CARDS IN MIXED GRID --- */
.case-st-item.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card-header {
  margin-bottom: 16px;
}

.review-platform-badge {
  color: var(--blue-primary);
  font-size: 12px;
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  background-color: #e5f2ff;
  border-radius: 6px;
  padding: 4px 10px;
  display: inline-block;
}

.review-card-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
  color: var(--text-main-color);
  opacity: 0.8;
}

.review-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #e6e8f0;
  padding-top: 16px;
  margin-top: auto;
}

.review-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
}

.review-card-name {
  font-weight: 600;
  font-size: 13px;
  font-family: var(--font-primary);
  display: block;
  color: var(--text-main-color);
}

.review-card-role {
  font-size: 12px;
  color: rgba(0, 20, 46, 0.5);
  display: block;
  margin-top: 2px;
}

/* --- PROOF SECTION UPDATE (horizontal carousel) --- */
.proof-section {
  background: var(--white);
  border-radius: 0;
  padding-top: 108px;
  padding-bottom: 108px;
}

.proof-section .main-title,
.proof-section .main-title-p {
  color: var(--text-main-color);
}

/* --- CONTINUOUS SCROLL TICKER: REVIEWS --- */
.reviews-track {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.reviews-inner {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollReviews 120s linear infinite;
}

.reviews-inner:hover {
  animation-play-state: paused;
}

.reviews-inner .review-card {
  width: 380px;
  min-width: 380px;
  flex-shrink: 0;
}

.review-linkedin-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.review-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

@keyframes scrollReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- CONTINUOUS SCROLL TICKER: CASE STUDIES --- */
.cases-track {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.cases-inner {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollCases 40s linear infinite;
}

.cases-inner:hover {
  animation-play-state: paused;
}

.cases-thumb {
  width: 400px;
  height: auto;
  border-radius: 12px;
  flex-shrink: 0;
}

@keyframes scrollCases {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- RESPONSIVE: NEW SECTIONS --- */
@media screen and (max-width: 991px) {
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-awards-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .proof-award-card {
    max-width: 100%;
    width: 100%;
  }

  .proof-testimonials {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-me-grid {
    grid-template-columns: 1fr;
  }

  .tools-coming-soon-inner {
    padding: 56px 32px;
  }

  .problems-section,
  .comparison-section,
  .proof-section,
  .about-me-section,
  .tools-section,
  .faq-section {
    padding-top: 80px;
  }

  .comparison-container {
    flex-direction: column;
    padding: 40px 32px;
  }

  .comparison-section.why-choose {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 767px) {
  .problems-grid {
    grid-template-columns: 1fr;
  }

  .proof-testimonials {
    grid-template-columns: 1fr;
  }

  .proof-award-card {
    padding: 32px;
  }

  .comparison-container {
    padding: 24px 16px;
  }

  .comparison-list-wrp {
    flex-direction: column;
  }

  .hero-video-wrp {
    margin-top: 32px;
  }

  .comparison-section.why-choose,
  .proof-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .faq-question {
    font-size: 14px;
    padding: 20px 24px;
  }

  .faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
  }

  .problems-section,
  .comparison-section,
  .proof-section,
  .about-me-section,
  .tools-section,
  .faq-section {
    padding-top: 64px;
  }

  .reviews-inner .review-card {
    width: 300px;
    min-width: 300px;
  }

  .cases-thumb {
    width: 300px;
  }

  .service-wheel-container {
    width: 350px;
    height: 350px;
  }

  .service-wheel-item {
    font-size: 10px;
    padding: 5px 10px;
  }

  .service-wheel-item:nth-child(2) { transform: rotate(0deg) translate(150px) rotate(0deg); }
  .service-wheel-item:nth-child(3) { transform: rotate(60deg) translate(150px) rotate(-60deg); }
  .service-wheel-item:nth-child(4) { transform: rotate(120deg) translate(150px) rotate(-120deg); }
  .service-wheel-item:nth-child(5) { transform: rotate(180deg) translate(150px) rotate(-180deg); }
  .service-wheel-item:nth-child(6) { transform: rotate(240deg) translate(150px) rotate(-240deg); }
  .service-wheel-item:nth-child(7) { transform: rotate(300deg) translate(150px) rotate(-300deg); }

  .service-wheel-center {
    font-size: 14px;
  }

  .service-wheel::before {
    width: 250px;
    height: 250px;
  }

  .service-wheel::after {
    width: 300px;
    height: 300px;
  }
}

/* ============================================
   COMPARISON TABLE (3-Column)
   ============================================ */
.comparison-table-container {
  overflow-x: auto;
  margin-top: 48px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 8px;
}

.comparison-scroll-arrows {
  display: none;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.comparison-table thead th {
  padding: 20px 24px;
  font-family: 'Albert Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  vertical-align: middle;
}

.comparison-table thead th:first-child {
  width: 130px;
}

.comparison-table thead th.highlight-col {
  color: var(--white);
  background: linear-gradient(135deg, rgba(1, 101, 199, 0.15) 0%, rgba(6, 179, 247, 0.1) 100%);
  border-radius: 12px 12px 0 0;
}

.comparison-table tbody td {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}

.comparison-table tbody td.row-label {
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.comparison-table tbody td.highlight-col {
  background: linear-gradient(135deg, rgba(1, 101, 199, 0.15) 0%, rgba(6, 179, 247, 0.1) 100%);
  color: var(--white);
  font-weight: 500;
}

.comparison-table tbody tr:last-child td.highlight-col {
  border-radius: 0 0 12px 12px;
}

@media (max-width: 768px) {
  .comparison-table {
    font-size: 13px;
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 12px 14px;
  }

  .comparison-table thead th:first-child {
    width: 90px;
  }
}

/* ============================================
   IN-HOUSE GRAPHIC DESIGNER SECTION
   ============================================ */
.designer-section {
  padding: 100px 0 80px;
  background: var(--white);
}

.designer-toggle-wrp {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 40px;
  margin-bottom: 48px;
  background: #f0f2f5;
  border-radius: 100px;
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.designer-toggle-btn {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 32px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  background: transparent;
  color: #6b7280;
  transition: all 0.3s ease;
  position: relative;
  line-height: 1.4;
}

.designer-toggle-btn.active {
  background: var(--white);
  color: var(--text-main-color);
  box-shadow: 0 1px 3px rgba(0, 20, 46, 0.12);
}

.designer-toggle-btn.disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.coming-soon-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, #0165c7, #06b3f7);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 8px;
  vertical-align: middle;
}

.designer-carousel-wrp {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.designer-carousel-wrp.designer-hidden {
  display: none;
}

.designer-track {
  overflow: hidden;
}

.designer-inner {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollDesigner 60s linear infinite;
}

.designer-inner:hover {
  animation-play-state: paused;
}

.designer-slide {
  flex-shrink: 0;
  width: 280px;
  height: 498px;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 2px 12px rgba(0, 20, 46, 0.08);
}

.designer-slide.ratio-4x5 {
  height: 350px;
}

.designer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.designer-coming-soon-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
}

@keyframes scrollDesigner {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media screen and (max-width: 991px) {
  .designer-section {
    padding: 80px 0 64px;
  }

  .designer-slide {
    width: 240px;
    height: 427px;
  }

  .designer-slide.ratio-4x5 {
    height: 300px;
  }
}

@media screen and (max-width: 767px) {
  .designer-section {
    padding: 64px 0 48px;
  }

  .designer-toggle-btn {
    font-size: 13px;
    padding: 10px 20px;
  }

  .designer-slide {
    width: 200px;
    height: 356px;
  }

  .designer-slide.ratio-4x5 {
    height: 250px;
  }

  .coming-soon-badge {
    font-size: 9px;
    padding: 2px 6px;
  }
}
