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

html,
body {
  height: 100%;
}

body.fst-body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #111 0, #050505 45%, #000 80%);
  color: #f5f5f5;
  -webkit-font-smoothing: antialiased;
}

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

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

.fst-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 6vw;
  backdrop-filter: blur(20px);
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.92),
    rgba(0, 0, 0, 0.75),
    transparent
  );
}

.fst-social-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.fst-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d0d0d0;
  transition: all 0.2s ease;
  text-decoration: none;
}

.fst-social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transform: translateY(-2px);
}

.fst-social-link svg {
  width: 18px;
  height: 18px;
}

.fst-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 65px;
}

.fst-logo-glow {
  position: absolute;
  width: 80px;
  height: 80px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.9) 25%, rgba(220, 220, 220, 0.75) 50%, rgba(180, 180, 180, 0.5) 75%, rgba(140, 140, 140, 0.3) 100%);
  pointer-events: none;
  box-shadow: 
    0 0 30px rgba(255, 255, 255, 0.95),
    0 0 50px rgba(255, 255, 255, 0.8),
    0 0 70px rgba(240, 240, 240, 0.6),
    0 0 90px rgba(220, 220, 220, 0.4),
    inset 0 0 40px rgba(255, 255, 255, 0.6);
  z-index: 0;
  border: 2.5px solid rgba(255, 255, 255, 0.8);
}

.fst-logo-glow::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.6);
  opacity: 1;
  z-index: -1;
  filter: blur(0.5px);
}

.fst-logo-glow::after {
  display: none;
}

.fst-logo-img {
  position: relative;
  z-index: 2;
  max-width: 68px;
  max-height: 65px;
  height: auto;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 15px rgba(0, 0, 0, 0.7)) brightness(1.1) contrast(1.2);
  transform: translate(0, 0);
}

.fst-logo-footer {
  width: auto;
  height: auto;
  margin-bottom: 0.8rem;
}

.fst-logo-footer .fst-logo-img {
  max-width: 90px;
  max-height: 45px;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.2));
}

.fst-logo-footer .fst-logo-glow {
  display: none;
}

@keyframes fst-logo-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

@keyframes fst-logo-glow-move {
  0%, 100% {
    box-shadow: 
      0 0 25px rgba(255, 255, 255, 0.9),
      0 0 50px rgba(255, 255, 255, 0.7),
      0 0 75px rgba(255, 255, 255, 0.5),
      0 0 100px rgba(200, 200, 200, 0.3),
      inset 0 0 35px rgba(255, 255, 255, 0.4);
  }
  25% {
    box-shadow: 
      0 -5px 30px rgba(255, 255, 255, 0.95),
      0 -10px 60px rgba(255, 255, 255, 0.75),
      0 -15px 90px rgba(255, 255, 255, 0.55),
      0 -20px 120px rgba(200, 200, 200, 0.35),
      inset 0 0 40px rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow: 
      5px 0 30px rgba(255, 255, 255, 0.95),
      10px 0 60px rgba(255, 255, 255, 0.75),
      15px 0 90px rgba(255, 255, 255, 0.55),
      20px 0 120px rgba(200, 200, 200, 0.35),
      inset 0 0 40px rgba(255, 255, 255, 0.5);
  }
  75% {
    box-shadow: 
      0 5px 30px rgba(255, 255, 255, 0.95),
      0 10px 60px rgba(255, 255, 255, 0.75),
      0 15px 90px rgba(255, 255, 255, 0.55),
      0 20px 120px rgba(200, 200, 200, 0.35),
      inset 0 0 40px rgba(255, 255, 255, 0.5);
  }
}

@keyframes fst-logo-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fst-logo-rotate-reverse {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes fst-logo-ring-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes fst-logo-ring-pulse-delayed {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.9;
  }
}

.fst-nav {
  display: flex;
  align-items: center;
}

.fst-nav-list {
  list-style: none;
  display: flex;
  gap: 1.6rem;
}

.fst-nav-list a {
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #bdbdbd;
  position: relative;
  padding-bottom: 0.3rem;
}

.fst-nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #ffffff, #999);
  transition: width 0.24s ease;
}

.fst-nav-list a:hover::after,
.fst-nav-list a.active::after {
  width: 100%;
}

.fst-nav-list a.active {
  color: #ffffff;
}

.fst-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.22rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.65);
  padding: 0.4rem 0.35rem;
  cursor: pointer;
}

.fst-burger span {
  height: 2px;
  width: 100%;
  background: #f5f5f5;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease, translate 0.25s ease;
}

.fst-burger.is-open span:nth-child(1) {
  transform: rotate(45deg);
  translate: 0 4px;
}
.fst-burger.is-open span:nth-child(2) {
  opacity: 0;
}
.fst-burger.is-open span:nth-child(3) {
  transform: rotate(-45deg);
  translate: 0 -4px;
}

.fst-main {
  padding: 2.8rem 6vw 4rem;
}

.fst-main-inner {
  padding-top: 2.2rem;
}

.fst-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 4vw;
  align-items: flex-start;
  min-height: calc(100vh - 90px);
  padding-top: 3rem;
}

.fst-hero-left {
  max-width: 680px;
  padding-top: 0;
}

.fst-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.22rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #dedede;
  margin-bottom: 1.2rem;
}

.fst-hero-title {
  font-size: clamp(2.4rem, 3.8vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1.1rem;
}

.fst-hero-highlight {
  position: relative;
  display: inline-block;
}

.fst-hero-highlight::before {
  content: "";
  position: absolute;
  inset: 55% -8px 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0)
  );
  border-radius: 999px;
  pointer-events: none;
}

.fst-hero-text {
  color: #b7b7b7;
  font-size: 0.96rem;
  max-width: 540px;
}

.fst-hero-actions {
  display: flex;
  gap: 0.9rem;
  margin: 1.8rem 0 1.6rem;
  flex-wrap: wrap;
}

.fst-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.fst-btn-primary {
  background: linear-gradient(130deg, #ffffff, #6f6f6f);
  color: #050505;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 14px 38px rgba(0, 0, 0, 0.75);
}

.fst-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 18px 46px rgba(0, 0, 0, 0.9);
}

.fst-btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: #f3f3f3;
  border-color: rgba(255, 255, 255, 0.2);
}

.fst-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.fst-meta-label {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
}

.fst-meta-text {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #a4a4a4;
}

.fst-hero-meta {
  display: flex;
  gap: 1.8rem;
  margin-top: 0.6rem;
  flex-wrap: wrap;
}

.fst-hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  align-items: center;
  padding-top: 0;
}

.fst-orbit {
  position: relative;
  width: min(360px, 70vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: visible;
}

.fst-orbit-large {
  width: min(1100px, 98vw);
  margin-top: -12rem;
}

.fst-sound-wave-static {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: fst-wave-static-pulse 4s ease-in-out infinite;
}

.fst-wave-static-1 {
  width: 380px;
  height: 380px;
  border-color: rgba(255, 255, 255, 0.3);
  animation-delay: 0s;
}

.fst-wave-static-2 {
  width: 480px;
  height: 480px;
  border-color: rgba(255, 255, 255, 0.25);
  animation-delay: 0.5s;
}

.fst-wave-static-3 {
  width: 580px;
  height: 580px;
  border-color: rgba(255, 255, 255, 0.2);
  animation-delay: 1s;
}

.fst-wave-static-4 {
  width: 680px;
  height: 680px;
  border-color: rgba(255, 255, 255, 0.18);
  animation-delay: 1.5s;
}

.fst-wave-static-5 {
  width: 780px;
  height: 780px;
  border-color: rgba(255, 255, 255, 0.15);
  animation-delay: 2s;
}

.fst-wave-static-6 {
  width: 880px;
  height: 880px;
  border-color: rgba(255, 255, 255, 0.12);
  animation-delay: 2.5s;
}

.fst-wave-static-7 {
  width: 980px;
  height: 980px;
  border-color: rgba(255, 255, 255, 0.08);
  animation-delay: 3s;
}

.fst-wave-static-8 {
  width: 1080px;
  height: 1080px;
  border-color: rgba(255, 255, 255, 0.05);
  animation-delay: 3.5s;
}

@keyframes fst-wave-static-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
  }
}

.fst-orbit-core {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.35));
  box-shadow: 
    0 0 30px rgba(255, 255, 255, 0.3),
    0 0 60px rgba(255, 255, 255, 0.2),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.fst-orbit-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  animation: fst-orbit-glow-pulse 3s ease-in-out infinite;
  filter: blur(15px);
}

@keyframes fst-orbit-glow-pulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.1);
  }
}

.fst-orbit-large .fst-orbit-core {
  width: 220px;
  height: 220px;
}

.fst-orbit-logo {
  max-width: 80px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.1);
}

.fst-orbit-large .fst-orbit-logo {
  max-width: 160px;
  max-height: 160px;
}

  .fst-hero-tags,
  .fst-hero-tags-clickable {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
  }

  .fst-hero-tag-link {
    font-size: 0.72rem;
    padding: 0.35rem 0.8rem;
  }

.fst-hero-tags span {
  font-size: 0.78rem;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dcdcdc;
}

.fst-hero-tags-clickable {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.fst-hero-tag-link {
  font-size: 0.78rem;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dcdcdc;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
  cursor: pointer;
}

.fst-hero-tag-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-2px);
}

.fst-strip {
  margin-top: 3.4rem;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.fst-strip-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-block: 1rem;
  white-space: nowrap;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #b3b3b3;
  animation: fst-strip-move 28s linear infinite;
}

@keyframes fst-strip-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.fst-section {
  margin-top: 3.8rem;
}

.fst-section-header {
  max-width: 720px;
}

.fst-section-header h2 {
  font-size: 1.6rem;
  margin: 0.6rem 0;
}

.fst-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b7b7b7;
}

.fst-section-header p {
  color: #b3b3b3;
  font-size: 0.9rem;
}

.fst-section-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 1.8rem;
}

.fst-section-cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fst-card {
  border-radius: 1.1rem;
  padding: 1.6rem 1.5rem;
  background: radial-gradient(circle at top left, #181818, #080808);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.fst-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 220deg,
    rgba(255, 255, 255, 0.18),
    transparent 40%,
    transparent 80%,
    rgba(255, 255, 255, 0.4)
  );
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.4s ease, transform 0.6s ease;
  transform: translate3d(-10%, -10%, 0);
  pointer-events: none;
  z-index: 0;
}

.fst-card:hover::before {
  opacity: 0.4;
  transform: translate3d(0, 0, 0);
}

.fst-card h3,
.fst-card h2 {
  margin-bottom: 0.5rem;
}

.fst-card p {
  color: #c2c2c2;
  font-size: 0.9rem;
}

.fst-card-glow {
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.82);
}

.fst-card-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a0a0a0;
}

.fst-list {
  list-style: none;
  margin-top: 0.7rem;
}

.fst-list li {
  font-size: 0.88rem;
  color: #d2d2d2;
  position: relative;
  padding-left: 1.2rem;
}

.fst-list li + li {
  margin-top: 0.35rem;
}

.fst-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #777);
  position: absolute;
  left: 0.1rem;
  top: 0.55rem;
}

.fst-section-cta {
  margin-top: 3.6rem;
}

.fst-section-cta-inner {
  border-radius: 1.4rem;
  padding: 2.2rem 2rem;
  background: radial-gradient(circle at top left, #f5f5f5, #9d9d9d);
  color: #050505;
  display: grid;
  gap: 0.8rem;
  align-items: center;
}

.fst-section-cta-inner h2 {
  font-size: 1.4rem;
}

.fst-section-cta-inner p {
  font-size: 0.92rem;
  max-width: 640px;
}

.fst-section-cta-inner .fst-btn-primary {
  justify-self: flex-start;
}

.fst-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.6rem 6vw 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  font-size: 0.8rem;
  color: #a7a7a7;
}

.fst-footer-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.4rem;
}

.fst-footer-text {
  margin-top: 0.8rem;
  max-width: 420px;
}

.fst-footer-right {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.fst-footer-link {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: #d4d4d4;
}

.fst-footer-credit {
  margin-top: 0.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 0.72rem;
  color: #8a8a8a;
}

.fst-footer-credit p {
  margin: 0;
}

.fst-footer-credit-link {
  color: #b8b8b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.fst-footer-credit-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.fst-page-hero {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.fst-page-hero h1 {
  font-size: 2rem;
  margin: 0.7rem 0;
}

.fst-page-hero p {
  color: #b9b9b9;
  font-size: 0.94rem;
}

.fst-page-hero-contact h1 {
  font-size: 1.8rem;
}

.fst-card-service {
  min-height: 230px;
}

.fst-service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.8rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fst-project-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr);
  gap: 1.8rem;
}

.fst-project-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at top left, #1b1b1b, #050505);
}

.fst-project-visual {
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.fst-project-visual::before {
  content: "";
  position: absolute;
  inset: -20%;
  background-size: 200% 200%;
  mix-blend-mode: screen;
  opacity: 0.75;
  animation: fst-project-noise 18s ease-in-out infinite alternate;
}

.fst-project-visual-a::before {
  background-image: radial-gradient(circle at 20% 0, #ffffff, transparent 45%),
    radial-gradient(circle at 80% 100%, #bcbcbc, transparent 36%);
}

.fst-project-visual-b::before {
  background-image: radial-gradient(circle at 10% 100%, #e4e4e4, transparent 40%),
    radial-gradient(circle at 90% 0, #888888, transparent 40%);
}

.fst-project-visual-c::before {
  background-image: radial-gradient(circle at 50% 0, #f3f3f3, transparent 40%),
    radial-gradient(circle at 0 90%, #a1a1a1, transparent 40%);
}

@keyframes fst-project-noise {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-8%, 6%, 0);
  }
}

.fst-project-body {
  padding: 1.6rem 1.6rem 1.7rem;
}

.fst-about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.fst-about-content-wrapper {
  display: flex;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.fst-about-content {
  max-width: 100%;
  padding: 2.5rem 2.5rem;
}

.fst-about-content p {
  color: #c2c2c2;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.fst-about-content p:last-child {
  margin-bottom: 0;
}

.fst-card-about-lines {
  background: radial-gradient(circle at top left, #121212, #050505);
  border-style: dashed;
}

.fst-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 1.8rem;
}

.fst-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 0.9rem;
}

.fst-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.fst-form-field label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b5b5b5;
  display: block;
  margin-bottom: 0.35rem;
}

.fst-form-field input,
.fst-form-field select,
.fst-form-field textarea {
  width: 100%;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.6);
  color: #f5f5f5;
  padding: 0.7rem 0.9rem;
  font-size: 0.86rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    background 0.2s ease;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.fst-form-field textarea {
  resize: vertical;
}

#form-message {
  font-size: 0.86rem;
  line-height: 1.5;
}

#contact-phone,
#contact-email {
  transition: all 0.2s ease;
  -webkit-user-select: all;
  -moz-user-select: all;
  -ms-user-select: all;
  user-select: all;
  color: #f2f2f2;
  display: block;
}

#contact-phone:hover,
#contact-email:hover {
  opacity: 0.8;
  color: #4caf50;
  transform: scale(1.02);
}

.fst-form-field input:focus,
.fst-form-field select:focus,
.fst-form-field textarea:focus {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.8);
}

.fst-card-contact {
  position: relative;
  z-index: 1;
}

.fst-card-contact-info {
  background: radial-gradient(circle at top left, #141414, #050505);
}

.fst-contact-list {
  list-style: none;
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.fst-contact-label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b7b7b7;
}

.fst-contact-value {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.92rem;
  color: #f2f2f2;
}

.fst-contact-value:hover {
  text-decoration: underline;
}

.fst-page-transition {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top left, #ffffff, #050505);
  transform: translateY(100%);
  z-index: 80;
  pointer-events: none;
}

.fst-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fst-modal.is-active {
  display: flex;
  opacity: 1;
}

.fst-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.fst-modal-content {
  position: relative;
  z-index: 1001;
  background: radial-gradient(circle at top left, #181818, #080808);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.4rem;
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
  transform: scale(0.95);
  transition: transform 0.3s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.fst-modal-content::-webkit-scrollbar {
  width: 8px;
}

.fst-modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.fst-modal-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.fst-modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.fst-modal.is-active .fst-modal-content {
  transform: scale(1);
}

.fst-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #f5f5f5;
  font-size: 1.8rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 1002;
}

.fst-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.fst-page-transition.is-active {
  animation: fst-page-slide 0.65s ease forwards;
}

@keyframes fst-page-slide {
  0% {
    transform: translateY(100%);
  }
  45% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

.fst-scroll-fade {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fst-scroll-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 980px) {
  .fst-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .fst-hero-right {
    order: -1;
  }

  .fst-project-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .fst-about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fst-section-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .fst-header {
    padding-inline: 4vw;
    padding-block: 1.2rem;
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .fst-social-links {
    gap: 0.5rem;
  }

  .fst-social-link {
    width: 32px;
    height: 32px;
  }

  .fst-social-link svg {
    width: 16px;
    height: 16px;
  }

  .fst-logo {
    width: 80px;
    height: 58px;
  }

  .fst-logo-glow {
    width: 70px;
    height: 70px;
  }

  .fst-logo-img {
    max-width: 62px;
    max-height: 58px;
  }

  .fst-main {
    padding-inline: 4vw;
    padding-top: 2rem;
  }

  .fst-footer {
    padding-inline: 4vw;
    padding-block: 1.8rem;
  }

  .fst-footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .fst-footer-right {
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
  }

  .fst-footer-credit {
    text-align: left;
    margin-top: 1rem;
  }

  .fst-burger {
    display: flex;
  }

  .fst-nav-list {
    position: fixed;
    inset: 70px 0 auto 0;
    padding: 1rem 4vw 1.4rem;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    gap: 0.6rem;
    transform-origin: top;
    transform: scaleY(0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 100;
  }

  .fst-nav-list.is-open {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .fst-nav-list a {
    font-size: 0.9rem;
    padding: 0.6rem 0;
  }

  .fst-hero {
    min-height: auto;
    padding-top: 1rem;
  }

  .fst-hero-meta {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .fst-section-cards,
  .fst-section-cards-2,
  .fst-project-grid,
  .fst-about-grid,
  .fst-contact-grid,
  .fst-form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .fst-section-cta-inner {
    padding: 1.8rem 1.4rem;
  }

  .fst-page-hero {
    margin-bottom: 1.8rem;
  }

  .fst-page-hero h1 {
    font-size: 1.6rem;
  }
}

@media (max-width: 520px) {
  .fst-header {
    padding-inline: 3vw;
    padding-block: 1rem;
  }

  .fst-social-links {
    gap: 0.4rem;
  }

  .fst-social-link {
    width: 30px;
    height: 30px;
  }

  .fst-social-link svg {
    width: 14px;
    height: 14px;
  }

  .fst-logo {
    height: 52px;
    width: 70px;
  }

  .fst-logo-glow {
    width: 60px;
    height: 60px;
  }

  .fst-logo-img {
    max-width: 55px;
    max-height: 52px;
  }

  .fst-main {
    padding-inline: 3vw;
  }

  .fst-hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .fst-hero-text {
    font-size: 0.88rem;
  }

  .fst-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
  }

  .fst-btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.4rem;
    font-size: 0.8rem;
  }

  .fst-hero-meta {
    gap: 0.8rem;
  }

  .fst-meta-label {
    font-size: 1rem;
  }

  .fst-meta-text {
    font-size: 0.72rem;
  }

  .fst-page-hero h1 {
    font-size: 1.4rem;
  }

  .fst-page-hero p {
    font-size: 0.88rem;
  }

  .fst-section-header h2 {
    font-size: 1.3rem;
  }

  .fst-card {
    padding: 1.3rem 1.2rem;
  }

  .fst-footer {
    padding-inline: 3vw;
    padding-block: 1.5rem;
  }

  .fst-footer-text {
    font-size: 0.75rem;
  }

  .fst-service-image {
    height: 150px;
    margin-bottom: 1rem;
  }

  .fst-section-cards {
    grid-template-columns: 1fr;
  }

  .fst-section-cards-2 {
    grid-template-columns: 1fr;
  }

  .fst-modal {
    padding: 1rem;
  }

  .fst-modal-content {
    padding: 1.8rem 1.5rem;
    max-height: 95vh;
  }

  .fst-modal-close {
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    font-size: 1.5rem;
  }
}


