* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

:root {
  --pine: #0F4F46;
  --pine-2: #167A6F;
  --glow: #2BB5A5;
  --gold: #C7923A;
  --ink: #161310;
  --sand: #F3EDE3;
  --mist: #FAF7F2;
}

html { scroll-behavior: smooth; }

html, body, * {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(43, 181, 165, .10), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(199, 146, 58, .10), transparent 24%),
    radial-gradient(circle at 70% 78%, rgba(15, 79, 70, .06), transparent 30%),
    linear-gradient(180deg, #FAF7F2 0%, #F3EDE3 100%);
  overflow-x: hidden;
  color: var(--ink);
}

.noise:before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .42;
  background-image:
    linear-gradient(rgba(15, 79, 70, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 79, 70, .022) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.glass {
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(15, 79, 70, .08);
}

.grad-text {
  background: linear-gradient(100deg, #0F4F46 0%, #1A8A7C 52%, #C7923A 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px) scale(.985);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.site-header {
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled {
  background: rgba(250, 247, 242, .86);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(15, 79, 70, .08);
  box-shadow: 0 10px 30px rgba(22, 19, 16, .05);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--pine);
  color: #fff;
  box-shadow: 0 16px 34px rgba(15, 79, 70, .28);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn-primary:hover {
  background: #0C3F38;
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(15, 79, 70, .34);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(22, 19, 16, .08);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.btn-ghost:hover {
  border-color: rgba(15, 79, 70, .28);
  box-shadow: 0 14px 32px rgba(22, 19, 16, .07);
  transform: translateY(-1px);
}

.faq-trigger { cursor: pointer; }

.service-card,
.why-card,
.contact-card,
.process-step {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.service-card:hover,
.why-card:hover,
.contact-card:hover,
.vacancy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(15, 79, 70, .12);
  border-color: rgba(15, 79, 70, .16);
}

.vacancy-card {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  text-align: left;
  width: 100%;
}
.vacancy-card.is-closed {
  opacity: .78;
}
.pay-table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
}
.pay-table th,
.pay-table td {
  padding: 14px 0;
  text-align: left;
  font-size: 15px;
  line-height: 1.4;
}
.pay-table th {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.pay-table td {
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.pay-table tr:last-child td {
  border-bottom: none;
}
.pay-table td:last-child,
.pay-table th:last-child {
  text-align: right;
  font-weight: 700;
}
.example-col p + p {
  margin-top: 1em;
}

.guide-btn.is-open {
  background: var(--pine);
  color: #fff;
  border-color: var(--pine);
}
.guide-panel[hidden] {
  display: none !important;
}
.guide-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  background: #fff;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  pointer-events: none;
}

.marquee {
  overflow: hidden;
  user-select: none;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 2.5rem;
  padding: 0 1.25rem;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.laptop {
  width: 100%;
  max-width: 580px;
  transform: rotate(3deg);
  transform-origin: center center;
  filter: drop-shadow(0 40px 70px rgba(15, 23, 42, .22));
}
.laptop-lid {
  background: linear-gradient(150deg, #2a2b32 0%, #0c0d10 48%, #23242b 100%);
  border-radius: 18px 18px 8px 8px;
  padding: 11px 11px 9px;
  box-shadow:
    inset 0 0 0 1.5px rgba(255,255,255,.14),
    0 18px 40px rgba(15, 79, 70, .10);
}
.laptop-camera {
  position: relative;
  height: 8px;
  margin-bottom: 6px;
}
.laptop-camera:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 1px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #1a1b20;
  box-shadow: inset 0 0 0 1.5px #3a3b44, 0 0 0 1px rgba(255,255,255,.08);
  transform: translateX(-50%);
}
.laptop-screen {
  overflow: hidden;
  border-radius: 6px;
  background: #0b1220;
  aspect-ratio: 16 / 10;
}
.laptop-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.laptop-base {
  position: relative;
  height: 16px;
  margin: -1px -3.5% 0;
  background: linear-gradient(180deg, #d5d6dc 0%, #9ea0a8 42%, #b7b8bf 100%);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 10px 18px rgba(22, 19, 16, .12);
}
.laptop-notch {
  width: 20%;
  height: 7px;
  margin: 0 auto;
  background: linear-gradient(180deg, #8b8c94, #6a6b73);
  border-radius: 0 0 8px 8px;
}
@media (min-width: 640px) {
  .laptop { max-width: 640px; }
}
@media (min-width: 1024px) {
  .laptop { max-width: 720px; }
}

.dash-line {
  stroke: #167A6F;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-dasharray: 5 7;
  fill: none;
  opacity: .7;
  animation: dash 2.8s linear infinite;
}

.process-rail {
  background: linear-gradient(90deg, transparent, rgba(15, 79, 70, .18), transparent);
}

.tg-pulse {
  position: relative;
}
.tg-pulse:after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(43, 181, 165, .4);
  animation: pulseRing 1.8s ease-out infinite;
}

.float-cta {
  box-shadow: 0 16px 40px rgba(15, 79, 70, .32);
}

.stat-num {
  font-variant-numeric: tabular-nums;
}

@media (max-width: 1023px) {
  .desktop-only { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-up,
  .reveal-up.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .marquee-track,
  .dash-line,
  .tg-pulse:after,
  .animate-floaty,
  .animate-fadeUp {
    animation: none !important;
  }
}
