:root {
  --orange: #ff9700;
  --black: #050505;
  --white: #ffffff;
  --gray: rgba(255,255,255,0.62);
  --border: rgba(255,255,255,0.14);
  --surface: rgba(255,255,255,0.08);
  --surface-strong: rgba(255,255,255,0.12);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.62);
  --desc-size: 17px;
  --desc-line: 1.75;
}

/* SCROLLBAR */

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: #050505;
}

::-webkit-scrollbar-thumb {
  background: #ff9700;
  border: 3px solid #050505;
  border-radius: 30px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffb13b;
}

html {
  scrollbar-color: #ff9700 #050505;
  scrollbar-width: thin;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background: #050505;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.44), rgba(5,5,5,0.78)),
    url("assets/darkbg.png") center / cover no-repeat;
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,151,0,0.11), transparent 34%),
    radial-gradient(circle at 15% 85%, rgba(255,151,0,0.08), transparent 30%);
  z-index: -1;
  pointer-events: none;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.site {
  min-height: 100vh;
}

.page-section {
  position: relative;
  background: transparent;
  scroll-margin-top: 120px;
}

/* GLOBAL TITLES */

.section-head {
  max-width: 920px;
  margin-bottom: 56px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2,
.process-left h2,
.vision-content h2,
.hero h1 {
  font-size: clamp(42px, 5.5vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.075em;
  font-weight: 850;
  color: var(--text);
}

.section-head p,
.process-left p,
.vision-content p,
.hero p,
.service-card p,
.platform-card p,
.process-step p,
.why-tcs-content p {
  font-size: var(--desc-size);
  line-height: var(--desc-line);
  font-weight: 500;
  color: var(--muted);
}

.section-head p {
  max-width: 720px;
  margin: 24px auto 0;
}

.title-mark {
  display: inline-block;
  padding: 0 0.12em 0.06em;
  background: var(--orange);
  color: var(--black);
  line-height: 0.95;
}

/* GLOBAL BUTTONS */

.btn {
  height: 58px;
  padding: 0 18px 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 850;
  border: 1px solid rgba(255,151,0,0.34);
  cursor: pointer;
  transition: 0.25s ease;
  width: fit-content;
  background: var(--orange);
  color: var(--black);
  box-shadow: 0 22px 55px rgba(255,151,0,0.16);
}

.btn:hover {
  background: #ffffff;
  color: #050505;
  transform: translateY(-3px);
  box-shadow: 0 26px 65px rgba(255,255,255,0.12);
}

.btn-arrow {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #050505;
  color: #ffffff;
  transition: 0.25s ease;
}

.btn-arrow svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn:hover .btn-arrow {
  background: var(--orange);
  color: #050505;
  transform: translateX(3px);
}

/* HEADER SECTION */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 80;
  padding: 24px 0;
  transform: translateY(0);
  transition: transform 0.35s ease, padding 0.25s ease;
}

.header.header-hidden {
  transform: translateY(-120%);
}

.header.scrolled {
  padding: 14px 0;
}

.nav {
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.logo {
  display: inline-flex;
  width: fit-content;
}

.logo img {
  height: 38px;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 15px 28px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.12);
}

.menu a {
  font-size: 14px;
  font-weight: 750;
  color: var(--muted);
  position: relative;
  transition: 0.25s ease;
}

.menu a:hover,
.menu a.active {
  color: var(--text);
}

.menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 0;
  height: 2px;
  border-radius: 30px;
  background: var(--orange);
  transform: translateX(-50%);
  transition: 0.25s ease;
}

.menu a.active::after {
  width: 18px;
}

.nav-btn {
  justify-self: end;
  height: 46px;
  font-size: 13px;
}

.nav-btn .btn-arrow {
  width: 28px;
  height: 28px;
}

.menu-toggle {
  display: none;
}

/* HERO SECTION */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 110px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 66%);
  opacity: 0.45;
}

.orb {
  position: absolute;
  border-radius: 999px;
  background: var(--orange);
  filter: blur(55px);
}

.orb-one {
  width: 620px;
  height: 620px;
  right: -190px;
  top: 70px;
  opacity: 0.24;
}

.orb-two {
  width: 420px;
  height: 420px;
  left: -220px;
  bottom: -140px;
  opacity: 0.13;
}

.line-shape {
  position: absolute;
  width: 720px;
  height: 720px;
  right: 7%;
  top: 14%;
  border: 1px solid rgba(255,151,0,0.18);
  border-radius: 48% 52% 56% 44% / 45% 43% 57% 55%;
  transform: rotate(-18deg);
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 90px 0 80px;
}

.hero h1 {
  max-width: 1120px;
  margin: 0 auto;
  font-size: clamp(62px, 8.3vw, 132px);
  line-height: 0.94;
  letter-spacing: -0.085em;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 strong {
  width: fit-content;
  max-width: 100%;
  margin: 16px auto 0;
  padding: 0 0.14em 0.08em;
  background: var(--orange);
  color: #050505;
  line-height: 0.92;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero h1 strong.hide {
  opacity: 0;
  transform: translateY(14px);
}

.hero p {
  max-width: 730px;
  margin: 34px auto 0;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 42px;
  flex-wrap: wrap;
}

/* SCROLL INTRO TEXT SECTION */

.scroll-text-section {
  padding: 175px 0 105px;
  overflow: hidden;
}

.scroll-text {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(28px, 3.7vw, 54px);
  line-height: 1.18;
  letter-spacing: -0.045em;
  font-weight: 750;
  color: rgba(255,255,255,0.16);
}

.scroll-text span {
  color: rgba(255,255,255,0.18);
  transition: color 0.2s ease;
}

.scroll-text span.active {
  color: var(--orange);
}

.scroll-text span.dark {
  color: var(--text);
}

/* COMMON SECTION SPACING */

.services-section,
.platforms-section,
.process-section,
.why-tcs-section,
.vision-section,
.contact-section {
  padding: 105px 0;
  overflow: hidden;
}

/* SERVICES SECTION */

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

.service-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--surface);
  backdrop-filter: blur(14px);
  transition: 0.28s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,151,0,0.12), transparent 42%);
  opacity: 0;
  transition: 0.28s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255,151,0,0.42);
  box-shadow: 0 28px 80px rgba(0,0,0,0.14);
}

.service-card:hover::after {
  opacity: 1;
}

.service-number {
  width: 48px;
  height: 48px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--surface-strong);
  color: var(--text);
  font-size: 13px;
  font-weight: 850;
  position: relative;
  z-index: 2;
}

.service-card:hover .service-number {
  background: var(--orange);
  color: #050505;
}

.service-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.035em;
  font-weight: 850;
  color: var(--text);
}

.service-card p {
  position: relative;
  z-index: 2;
  max-width: 95%;
  font-size: 15px;
  line-height: 1.7;
}

/* PLATFORMS SECTION */

.platforms-tree {
  position: relative;
}

.platforms-root {
  width: 142px;
  height: 142px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  transform: rotate(45deg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 28px 85px rgba(0,0,0,0.12);
  position: relative;
}

.platforms-root::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 22px;
  background-image: radial-gradient(rgba(255,255,255,0.16) 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.38;
}

.platforms-root span {
  position: relative;
  z-index: 2;
  transform: rotate(-45deg);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.platforms-line {
  width: 1px;
  height: 62px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--border), transparent);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.platform-card {
  min-height: 218px;
  padding: 24px 16px 20px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  backdrop-filter: blur(14px);
  text-align: center;
  box-shadow: 0 20px 70px rgba(0,0,0,0.08);
  transition: 0.28s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.platform-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255,151,0,0.42);
  box-shadow: 0 30px 90px rgba(0,0,0,0.14);
}

.platform-dot {
  width: 13px;
  height: 13px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--surface-strong);
  border: 4px solid rgba(255,255,255,0.18);
}

.platform-card:hover .platform-dot {
  border-color: var(--orange);
  box-shadow: 0 0 0 7px rgba(255,151,0,0.12);
}

.platform-card h3 {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.12;
  letter-spacing: -0.045em;
  font-weight: 850;
}

.platform-card p {
  min-height: 66px;
  max-width: 210px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.45;
}

.platform-card a {
  margin-top: auto;
  padding-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 850;
  color: var(--text);
  transition: 0.25s ease;
}

.link-arrow {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.link-arrow svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.platform-card a:hover {
  color: var(--orange);
}

.platform-card a:hover .link-arrow {
  transform: translateX(4px);
  background: #ffffff;
  color: #050505;
}

/* PROCESS SECTION */

.process-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.process-left {
  max-width: 560px;
}

.process-left p {
  margin-top: 24px;
  max-width: 510px;
}

.process-left .btn {
  margin-top: 34px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
  transition: 0.25s ease;
}

.process-step::before {
  content: "";
  position: absolute;
  left: -24px;
  right: -24px;
  top: 10px;
  bottom: 10px;
  background: rgba(255,151,0,0.10);
  opacity: 0;
  transition: 0.25s ease;
  pointer-events: none;
}

.process-step:hover::before {
  opacity: 1;
}

.process-step span,
.process-step div {
  position: relative;
  z-index: 2;
}

.process-step span {
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 850;
  color: rgba(255,255,255,0.22);
}

.process-step:hover span {
  color: var(--orange);
}

.process-step h3 {
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.045em;
  font-weight: 850;
}

.process-step p {
  max-width: 560px;
  font-size: 15.5px;
  line-height: 1.7;
}

/* WHY TCS SECTION */

.why-tcs-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.why-tcs-item {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(340px, 0.8fr) minmax(460px, 1.2fr) 54px;
  align-items: center;
  gap: 38px;
  min-height: 126px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  transition: 0.32s ease;
}

.why-tcs-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange);
  opacity: 0;
  transform: translateY(14px);
  transition: 0.32s ease;
  z-index: -1;
}

.why-tcs-item:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.why-tcs-number {
  padding-left: 10px;
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 750;
  color: var(--muted);
}

.why-tcs-title h3 {
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.03;
  letter-spacing: -0.055em;
  font-weight: 850;
}

.why-tcs-content {
  overflow: hidden;
}

.why-tcs-content p {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 600;
  color: #050505;
  opacity: 0;
  transform: translateX(-26px);
  transition: 0.34s ease;
}

.why-tcs-item:hover .why-tcs-number,
.why-tcs-item:hover .why-tcs-title h3 {
  color: #050505;
}

.why-tcs-item:hover .why-tcs-content p {
  opacity: 1;
  transform: translateX(0);
}

.why-tcs-plus {
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.why-tcs-plus span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 27px;
  height: 2px;
  border-radius: 20px;
  background: var(--text);
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
}

.why-tcs-plus span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}

.why-tcs-item:hover .why-tcs-plus span {
  background: #050505;
}

.why-tcs-item:hover .why-tcs-plus span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(0deg);
}

/* VISION SECTION */

.vision-layout {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 80px;
  align-items: start;
}

.vision-label {
  padding-top: 8px;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.vision-content p {
  max-width: 620px;
  margin-top: 28px;
}

.vision-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin-top: 78px;
}

.vision-stat strong {
  display: block;
  font-size: clamp(52px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.08em;
  font-weight: 850;
  color: var(--orange);
}

.vision-stat span {
  display: block;
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--muted);
}

.logo-marquee {
  margin-top: 95px;
  padding-top: 42px;
  border-top: 1px solid var(--border);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: logoSlide 24s linear infinite;
}

.logo-track span {
  white-space: nowrap;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 850;
  color: var(--muted);
  opacity: 0.5;
}

.logo-track span:hover {
  color: var(--orange);
  opacity: 1;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

@keyframes logoSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* CONTACT SECTION */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  gap: 28px;
  align-items: stretch;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.10);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-row.full {
  grid-column: 1 / -1;
}

.form-row label {
  font-size: 13px;
  font-weight: 850;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--border);
  outline: none;
  border-radius: 16px;
  background: var(--surface-strong);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  transition: 0.25s ease;
}

.form-row input,
.form-row select {
  height: 54px;
  padding: 0 16px;
}

.form-row textarea {
  min-height: 132px;
  resize: vertical;
  padding: 16px;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--muted);
}

.form-row select option {
  color: #050505;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(255,151,0,0.75);
  box-shadow: 0 0 0 4px rgba(255,151,0,0.10);
}

.contact-submit {
  grid-column: 1 / -1;
  width: 100%;
  justify-content: space-between;
  margin-top: 4px;
}

.contact-details {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--surface);
  backdrop-filter: blur(14px);
}

.contact-detail {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail:first-child {
  padding-top: 0;
}

.contact-detail:last-of-type {
  border-bottom: 0;
}

.contact-detail span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
}

.contact-detail a {
  font-size: 17px;
  line-height: 1.35;
  font-weight: 750;
}

.contact-detail a:hover {
  color: var(--orange);
}

.contact-socials,
.footer-social-icons {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.contact-socials a,
.footer-social-icons a {
  width: 42px;
  height: 42px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  backdrop-filter: blur(14px);
  color: var(--text);
  transition: 0.25s ease;
}

.contact-socials svg,
.footer-social-icons svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-socials a:first-child svg,
.footer-social-icons a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.contact-socials a:hover,
.footer-social-icons a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #050505;
  transform: translateY(-3px);
}

/* FOOTER SECTION */

.footer-section {
  position: relative;
  min-height: 620px;
  padding: 95px 0 30px;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 7px 7px;
  opacity: 0.12;
  mask-image: linear-gradient(180deg, transparent 0%, black 16%, black 100%);
  pointer-events: none;
}

.footer-cursor-glow {
  position: absolute;
  left: var(--footer-x, 50%);
  top: var(--footer-y, 60%);
  width: 430px;
  height: 430px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255,151,0,0.16);
  filter: blur(90px);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 1;
}

.footer-section:hover .footer-cursor-glow {
  opacity: 1;
}

.footer-bg-text {
  position: absolute;
  left: 50%;
  bottom: -58px;
  transform: translateX(-50%);
  font-size: clamp(260px, 38vw, 760px);
  line-height: 0.68;
  letter-spacing: -0.15em;
  font-weight: 950;
  color: rgba(255,255,255,0.10);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.footer-inner {
  position: relative;
  z-index: 3;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
}

.footer-col h4 {
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
}

.footer-col a {
  width: fit-content;
  display: block;
  margin-bottom: 13px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 650;
  color: var(--muted);
  transition: 0.25s ease;
}

.footer-col a:hover {
  color: var(--text);
  transform: translateX(5px);
}

.footer-bottom {
  margin-top: auto;
  padding-top: 26px;
  padding-bottom: 8px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

/* FADE ANIMATIONS */

.fade-up {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* BACK TO TOP */

.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--orange);
  color: #050505;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 70;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.25s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #ffffff;
  color: #050505;
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .platforms-line {
    display: none;
  }

  .platforms-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 54px;
  }

  .platform-card {
    text-align: left;
    align-items: flex-start;
    padding: 28px;
  }

  .platform-card h3 {
    min-height: auto;
    justify-content: flex-start;
  }

  .platform-card p {
    max-width: 100%;
    min-height: 62px;
  }

  .why-tcs-item {
    grid-template-columns: 95px 1fr 46px;
  }

  .why-tcs-content {
    grid-column: 2 / 3;
  }

  .why-tcs-content p {
    opacity: 1;
    transform: none;
    margin-top: 12px;
    color: var(--muted);
  }
}

@media (max-width: 950px) {
  .process-layout,
  .vision-layout,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .process-left,
  .vision-layout {
    text-align: center;
  }

  .process-left {
    max-width: 760px;
    margin: 0 auto;
  }

  .process-left p,
  .vision-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .vision-stats {
    gap: 24px;
  }

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

  .footer-inner {
    min-height: 520px;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 32px, 1240px);
  }

  .header {
    padding: 16px 0;
  }

  .nav {
    height: 58px;
    display: flex;
    justify-content: space-between;
  }

  .menu {
    position: fixed;
    top: 86px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: 28px;
    padding: 24px;
  }

  .menu.show {
    display: flex;
  }

  .nav-btn {
    display: none;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 50%;
    padding: 0 13px;
    backdrop-filter: blur(16px);
  }

  .menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 20px;
  }

  .hero {
    padding-top: 90px;
  }
}

@media (max-width: 650px) {
  :root {
    --desc-size: 15.5px;
  }

  .logo img {
    height: 32px;
  }

  .hero,
  .services-section,
  .platforms-section,
  .process-section,
  .why-tcs-section,
  .vision-section,
  .contact-section {
    padding: 78px 0 82px;
  }

  .scroll-text-section {
    padding: 120px 0 80px;
  }

  .hero {
    min-height: 100vh;
    padding-top: 90px;
  }

  .hero h1,
  .section-head h2,
  .process-left h2,
  .vision-content h2 {
    font-size: clamp(40px, 13vw, 58px);
    line-height: 1.03;
    letter-spacing: -0.06em;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .services-grid,
  .platforms-grid,
  .vision-stats,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .service-card,
  .platform-card {
    min-height: auto;
    border-radius: 24px;
    padding: 26px;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-tcs-item {
    grid-template-columns: 1fr 42px;
    gap: 14px;
  }

  .why-tcs-number,
  .why-tcs-title {
    grid-column: 1 / 2;
  }

  .why-tcs-plus {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
  }

  .why-tcs-content {
    grid-column: 1 / -1;
  }

  .contact-form,
  .contact-details {
    padding: 22px;
    border-radius: 24px;
  }

  .footer-section {
    padding: 68px 0 26px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-inner {
    min-height: 610px;
  }

  .footer-bg-text {
    bottom: -14px;
    font-size: 235px;
  }
}












/* PROJECTS SECTION */

.projects-section {
  padding: 105px 0;
  overflow: hidden;
}

.projects-filter {
  width: fit-content;
  margin: -18px auto 44px;
  padding: 7px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
}

.project-filter-btn {
  height: 40px;
  padding: 0 17px;
  border: 0;
  border-radius: 100px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: 0.25s ease;
}

.project-filter-btn:hover,
.project-filter-btn.active {
  background: var(--orange);
  color: var(--black);
}

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

.project-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--surface);
  backdrop-filter: blur(14px);
  transition: 0.32s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,151,0,0.45);
  box-shadow: 0 34px 95px rgba(0,0,0,0.22);
}

.project-image {
  position: relative;
  display: block;
  height: 310px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,151,0,0.18), transparent 32%),
    rgba(255,255,255,0.06);
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(5,5,5,0.32) 68%, rgba(5,5,5,0.76) 100%),
    radial-gradient(circle at 50% 50%, transparent 45%, rgba(5,5,5,0.28) 100%);
  pointer-events: none;
  z-index: 2;
}

.project-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.86;
  transform: scale(1.02);
  transition: 0.45s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.08);
  opacity: 1;
}

.project-category {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 3;
  height: 34px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  background: rgba(255,151,0,0.94);
  color: #050505;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.project-info {
  padding: 22px 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.project-info h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 850;
  color: var(--text);
}

.project-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  transition: 0.25s ease;
}

.project-link span {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: var(--orange);
  color: #050505;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.project-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-link:hover {
  color: var(--orange);
}

.project-link:hover span {
  background: #ffffff;
  transform: translateX(4px);
}

.project-card.project-hidden {
  display: none;
}

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

  .project-image {
    height: 280px;
  }
}

@media (max-width: 650px) {
  .projects-section {
    padding: 78px 0 82px;
  }

  .projects-filter {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    margin-bottom: 32px;
    border-radius: 22px;
  }

  .project-filter-btn {
    flex: 0 0 auto;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    border-radius: 24px;
  }

  .project-image {
    height: 240px;
  }

  .project-info {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-info h3 {
    font-size: 30px;
  }
}















/* INDUSTRY SYSTEMS SECTION */

.industry-systems-section {
  padding: 115px 0;
  overflow: hidden;
}

.industry-systems {
  display: grid;
  grid-template-columns: 265px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 38px;
  background:
    radial-gradient(circle at 82% 8%, rgba(255,151,0,0.18), transparent 32%),
    rgba(255,255,255,0.055);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}

.industry-systems::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -260px;
  bottom: -260px;
  border-radius: 50%;
  background: rgba(255,151,0,0.10);
  filter: blur(95px);
  pointer-events: none;
}

.industry-sidebar,
.industry-main {
  position: relative;
  z-index: 2;
}

/* LEFT SIDE */

.industry-sidebar {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(5,5,5,0.32);
  backdrop-filter: blur(14px);
}

.industry-sidebar-head {
  padding: 12px 10px 18px;
}

.industry-sidebar-head span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.industry-sidebar-head h3 {
  font-size: 26px;
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 850;
  color: var(--text);
}

.industry-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.industry-nav-item {
  width: 100%;
  min-height: 61px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  transition: 0.25s ease;
}

.industry-nav-item span {
  width: 34px;
  height: 34px;
  border-radius: 13px;
  background: rgba(255,255,255,0.07);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  transition: 0.25s ease;
}

.industry-nav-item strong {
  font-size: 15px;
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 850;
}

.industry-nav-item:hover,
.industry-nav-item.active {
  background: rgba(255,151,0,0.12);
  border-color: rgba(255,151,0,0.38);
}

.industry-nav-item:hover span,
.industry-nav-item.active span {
  background: var(--orange);
  color: #050505;
}

/* MAIN SCREEN */

.industry-main {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255,255,255,0.07);
  overflow: hidden;
  box-shadow: 0 34px 110px rgba(0,0,0,0.26);
}

.industry-main-top {
  min-height: 94px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(5,5,5,0.24);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.industry-main-top span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.industry-main-top h3 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 850;
  color: var(--text);
}

.industry-main-btn {
  flex: 0 0 auto;
  height: 46px;
  padding: 0 8px 0 17px;
  border-radius: 100px;
  background: var(--orange);
  color: #050505;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 900;
  transition: 0.25s ease;
}

.industry-main-btn span {
  width: 31px;
  height: 31px;
  margin: 0;
  border-radius: 50%;
  background: #050505;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.industry-main-btn svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-main-btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.industry-screen {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.industry-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.00) 0%, rgba(5,5,5,0.05) 52%, rgba(5,5,5,0.72) 100%),
    radial-gradient(circle at 82% 8%, rgba(255,151,0,0.16), transparent 28%);
  z-index: 3;
  pointer-events: none;
}

.industry-screen-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  opacity: 0;
  transform: scale(1.045) translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.industry-screen-img.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.industry-screen-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 4;
}

.industry-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  background: rgba(5,5,5,0.46);
  backdrop-filter: blur(18px);
}

.industry-modules span {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
  transition: 0.25s ease;
}

.industry-modules span:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #050505;
}

.industry-custom-note {
  margin-top: 18px;
  padding: 22px 26px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    radial-gradient(circle at 95% 0%, rgba(255,151,0,0.16), transparent 34%),
    rgba(255,255,255,0.055);
  backdrop-filter: blur(14px);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: center;
}

.industry-custom-note span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 850;
}

.industry-custom-note p {
  max-width: 980px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .industry-systems {
    grid-template-columns: 1fr;
  }

  .industry-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .industry-screen {
    height: 540px;
  }
}

@media (max-width: 760px) {
  .industry-systems-section {
    padding: 78px 0 82px;
  }

  .industry-systems {
    padding: 14px;
    border-radius: 28px;
  }

  .industry-sidebar,
  .industry-main {
    border-radius: 24px;
  }

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

  .industry-nav-item {
    min-height: 58px;
    padding: 0 12px;
    grid-template-columns: 34px 1fr;
  }

  .industry-nav-item span {
    width: 30px;
    height: 30px;
    border-radius: 12px;
  }

  .industry-nav-item strong {
    font-size: 13.5px;
  }

  .industry-main-top {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px;
  }

  .industry-main-btn {
    width: 100%;
    justify-content: space-between;
  }

  .industry-screen {
    height: 360px;
  }

  .industry-screen-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .industry-modules {
    padding: 12px;
    border-radius: 18px;
  }

  .industry-modules span {
    min-height: 32px;
    font-size: 12px;
  }

  .industry-custom-note {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}

/* =========================================================
   SAFE PATCH - MOBILE MENU + SOCIAL ICONS
   Kjo pjesë është vetëm shtesë/override dhe nuk prek seksionet tjera.
========================================================= */

.mobile-menu-info {
  display: none;
}

@media (max-width: 900px) {
  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .header {
    transform: translateY(0) !important;
  }

  .menu {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    width: min(430px, 82vw);
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 104px 24px 28px;
    border-radius: 0 28px 28px 0;
    border: 1px solid var(--border);
    border-left: 0;
    background: rgba(5, 5, 5, 0.94);
    backdrop-filter: blur(22px);
    box-shadow: 24px 0 80px rgba(0, 0, 0, 0.36);
    transform: translateX(-110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.32s ease, opacity 0.25s ease, visibility 0.25s ease;
    z-index: 120;
  }

  .menu.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .menu a:not(.mobile-menu-socials a) {
    width: 100%;
    padding: 14px 0;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 850;
    letter-spacing: -0.04em;
    color: var(--text);
  }

  .menu a::after {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 140;
  }

  .mobile-menu-info {
    width: 100%;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: block;
  }

  .mobile-menu-contact span {
    display: block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
  }

  .mobile-menu-contact a {
    display: block;
    width: fit-content;
    padding: 0;
    margin-bottom: 10px;
    font-size: 16px !important;
    line-height: 1.35 !important;
    letter-spacing: 0 !important;
    font-weight: 750 !important;
    color: var(--text) !important;
  }

  .mobile-menu-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
  }

  .mobile-menu-socials a {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px;
    min-height: 44px;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text) !important;
  }

  .mobile-menu-socials svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-menu-socials a:first-child svg {
    fill: currentColor;
    stroke: none;
  }
}

@media (max-width: 520px) {
  .menu {
    width: 86vw;
    border-radius: 0 24px 24px 0;
  }
}

.contact-socials,
.footer-social-icons {
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-socials a,
.footer-social-icons a {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px;
  min-height: 42px;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 999px !important;
  line-height: 1 !important;
}

.contact-socials svg,
.footer-social-icons svg {
  width: 18px !important;
  height: 18px !important;
  display: block;
  flex: 0 0 auto;
}

















/* ================================
   TCS CREATIVE PRELOADER
================================ */
/* ================================
   TCS PREMIUM SIMPLE PRELOADER
================================ */

.tcs-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050505;
  overflow: hidden;
  transition:
    opacity 0.65s ease,
    visibility 0.65s ease;
}

.tcs-preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.tcs-preloader::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(255, 151, 0, 0.10);
  filter: blur(95px);
  opacity: 0.95;
  animation: tcsPreloaderGlow 2.2s ease-in-out infinite alternate;
}

.tcs-preloader::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
  opacity: 0.42;
  pointer-events: none;
}

.tcs-preloader-line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  z-index: 1;
}

.tcs-preloader-line::after {
  content: "";
  position: absolute;
  left: -35%;
  top: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    #ff9700,
    #ffffff,
    #ff9700,
    transparent
  );
  animation: tcsPreloaderLineMove 1.35s ease-in-out infinite;
}

.tcs-preloader-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: tcsPreloaderContentIn 0.7s ease forwards;
}

.tcs-preloader-content img {
  width: 175px;
  height: auto;
  display: block;
  margin-bottom: 34px;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.35));
}

.tcs-preloader-text {
  text-align: center;
}

.tcs-preloader-text span {
  display: block;
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.24em;
  color: #ff9700;
  text-transform: uppercase;
}

.tcs-preloader-word {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1;
  letter-spacing: -0.065em;
  color: #ffffff;
  overflow: hidden;
}

.tcs-preloader-word em,
.tcs-preloader-word strong {
  font-style: normal;
  display: inline-block;
}

.tcs-preloader-word em {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  animation: tcsWordLeft 1.15s ease-in-out infinite alternate;
}

.tcs-preloader-word strong {
  font-weight: 850;
  color: #ffffff;
  animation: tcsWordRight 1.15s ease-in-out infinite alternate;
}

body.tcs-loading {
  overflow: hidden;
}

@keyframes tcsPreloaderLineMove {
  0% {
    left: -35%;
  }

  100% {
    left: 100%;
  }
}

@keyframes tcsPreloaderContentIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tcsPreloaderGlow {
  from {
    transform: scale(0.92);
    opacity: 0.65;
  }

  to {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes tcsWordLeft {
  from {
    opacity: 0.45;
    transform: translateX(10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes tcsWordRight {
  from {
    opacity: 0.65;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 650px) {
  .tcs-preloader::before {
    width: 420px;
    height: 420px;
  }

  .tcs-preloader-content img {
    width: 140px;
    margin-bottom: 30px;
  }

  .tcs-preloader-text span {
    font-size: 12px;
    letter-spacing: 0.2em;
  }

  .tcs-preloader-word {
    flex-direction: column;
    gap: 8px;
    font-size: 36px;
    letter-spacing: -0.055em;
  }
}