:root {
  color-scheme: light;
  --ink: #172026;
  --muted: #5f6d7a;
  --line: #d9e2e5;
  --paper: #ffffff;
  --soft: #f4f7f6;
  --soft-2: #eaf2f1;
  --teal: #087f7b;
  --teal-dark: #075f5c;
  --blue: #2563eb;
  --gold: #f0b429;
  --red: #c2410c;
  --charcoal: #111827;
  --shadow: 0 18px 42px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: #38bdf8 #061e47;
  scrollbar-width: thin;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #061e47;
}

::-webkit-scrollbar-thumb {
  border: 2px solid #061e47;
  border-radius: 999px;
  background: linear-gradient(180deg, #38d8ff, #1267ff);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #7dd3fc, #2684ff);
}

::-webkit-scrollbar-corner {
  background: #061e47;
}

body.menu-open {
  overflow: hidden;
}

body.general-chat-page {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: 100vh;
  overflow: hidden;
  background: #031431;
}

body.general-chat-page #app {
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  min-height: 0;
  overflow: hidden;
}

body.general-chat-page .site-footer {
  display: none;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 14px clamp(18px, 4.8vw, 64px);
  background: rgba(2, 19, 48, 0.96);
  border-bottom: 1px solid rgba(72, 148, 255, 0.24);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
  color: #ffffff;
}

.brand img,
.brand-mark {
  width: 46px;
  height: 46px;
}

.brand img {
  border-radius: 8px;
  object-fit: cover;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  border-radius: 0 14px 14px 0;
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  color: #d9e8ff;
  font-weight: 800;
}

.nav a {
  padding: 10px 11px;
  border-radius: 8px;
}

.nav a:hover,
.nav a.active {
  background: rgba(56, 189, 248, 0.08);
  color: #ffffff;
}

.nav a.active {
  box-shadow: inset 0 -2px 0 #38bdf8;
}

.nav .nav-cta {
  margin-left: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #2684ff, #1267ff);
  box-shadow: 0 10px 22px rgba(18, 103, 255, 0.28);
}

.nav .nav-cta:hover {
  background: linear-gradient(135deg, #3b9dff, #1267ff);
  box-shadow: 0 12px 26px rgba(18, 103, 255, 0.34);
}

.nav .nav-cta.active {
  box-shadow: 0 10px 22px rgba(18, 103, 255, 0.28);
}

.nav-caret {
  color: #7dd3fc;
}

.menu-button {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(125, 211, 252, 0.38);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 900;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 520px);
  gap: 32px;
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(42px, 7vw, 88px) clamp(18px, 4.8vw, 64px);
  background:
    linear-gradient(90deg, rgba(244, 247, 246, 0.94), rgba(244, 247, 246, 0.82)),
    url("/assets/welcome-banner.png") center/cover no-repeat;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
li,
span {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.65rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: #34424c;
  font-size: 1.14rem;
  line-height: 1.68;
}

.hero-actions,
.action-row,
.filter-row,
.ticket-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  margin-top: 28px;
}

.primary-button,
.secondary-button,
.ghost-button,
.small-button,
.admin-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 0 16px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: 0.16s ease;
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.small-button:hover,
.admin-button:hover,
.hero-outline-button:hover {
  transform: translateY(-2px);
}

.primary-button,
.admin-button {
  color: #ffffff;
  background: var(--teal);
}

.primary-button:hover,
.admin-button:hover {
  background: var(--teal-dark);
}

.secondary-button {
  color: #ffffff;
  background: var(--charcoal);
}

.secondary-button:hover {
  background: #263241;
}

.ghost-button,
.small-button {
  color: #263241;
  background: #ffffff;
  border-color: var(--line);
}

.ghost-button:hover,
.small-button:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.small-button {
  min-height: 34px;
  padding: 0 10px;
  font-size: 0.88rem;
}

button:disabled {
  opacity: 0.65;
  cursor: progress;
}

.hero-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.status-line {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 900;
}

.status-line.ready {
  color: var(--teal-dark);
  border-color: #98d4cf;
}

.status-line.warning {
  color: var(--red);
  border-color: #fed7aa;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.metric {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.metric strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: center;
  min-height: 560px;
  padding: clamp(42px, 6vw, 72px) clamp(20px, 6vw, 118px);
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 72% 42%, rgba(30, 144, 255, 0.42), transparent 34%),
    radial-gradient(circle at 18% 18%, rgba(56, 189, 248, 0.18), transparent 28%),
    linear-gradient(135deg, #020b22 0%, #06245a 52%, #021637 100%);
}

.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-hero::before {
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 100%);
  opacity: 0.38;
}

.home-hero::after {
  background:
    linear-gradient(120deg, transparent 30%, rgba(56, 189, 248, 0.16) 30.2%, transparent 30.8%),
    linear-gradient(145deg, transparent 47%, rgba(37, 99, 235, 0.24) 47.2%, transparent 47.8%),
    linear-gradient(20deg, transparent 55%, rgba(125, 211, 252, 0.18) 55.2%, transparent 55.6%);
}

.home-hero > * {
  position: relative;
  z-index: 1;
}

.home-hero.banner-loaded {
  display: block;
  min-height: clamp(520px, 56.25vw, 860px);
  padding: 0;
  background: #020b22;
}

.home-hero.banner-loaded::before,
.home-hero.banner-loaded::after {
  display: none;
}

.home-hero.banner-loaded .hero-copy {
  display: none;
}

.home-hero.banner-loaded .hero-visual {
  min-height: inherit;
}

.home-hero.banner-loaded .hero-slider {
  border-radius: 0;
}

.home-hero.banner-loaded .hero-slide {
  object-fit: cover;
  filter: none;
}

.welcome-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 16px;
  margin-bottom: 18px;
  border: 2px solid rgba(78, 145, 255, 0.9);
  border-radius: 999px;
  color: #eaf6ff;
  background: rgba(37, 99, 235, 0.16);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.home-hero h1 {
  color: #ffffff;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.25);
}

.home-hero h1 span {
  display: block;
  color: #38d8ff;
}

.home-hero h2 {
  margin-top: 8px;
  color: #ffffff;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
}

.home-hero .lead {
  max-width: 570px;
  color: #c9daf0;
}

.hero-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  min-width: 148px;
  border: 1px solid rgba(180, 213, 255, 0.35);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 900;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.hero-outline-button:hover {
  border-color: rgba(56, 216, 255, 0.72);
  background: rgba(56, 189, 248, 0.12);
}

.home-hero .primary-button {
  min-height: 54px;
  min-width: 172px;
  gap: 10px;
  background: linear-gradient(135deg, #2684ff, #1267ff);
}

.hero-visual {
  position: relative;
  min-height: 430px;
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 18px;
}

.hero-slide-fallback {
  position: absolute;
  inset: 0;
}

.hero-slide-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transform: scale(1.03);
  animation: heroSlideFade var(--slide-duration, 36s) infinite ease-in-out;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.3));
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-slider-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  animation: heroDotActive var(--slide-duration, 36s) infinite ease-in-out;
}

@keyframes heroSlideFade {
  0%,
  9.5% {
    opacity: 1;
    transform: scale(1);
  }

  12.5%,
  100% {
    opacity: 0;
    transform: scale(1.035);
  }
}

@keyframes heroDotActive {
  0%,
  9.5% {
    width: 24px;
    background: #38d8ff;
  }

  12.5%,
  100% {
    width: 8px;
    background: rgba(255, 255, 255, 0.34);
  }
}

.neon-ring {
  position: absolute;
  left: 15%;
  right: 6%;
  bottom: 46px;
  height: 92px;
  border: 3px solid rgba(56, 189, 248, 0.75);
  border-radius: 50%;
  filter: drop-shadow(0 0 18px rgba(56, 189, 248, 0.65));
  transform: perspective(480px) rotateX(62deg);
}

.laptop {
  position: absolute;
  right: 9%;
  top: 92px;
  width: min(62%, 430px);
  transform: rotate(10deg) skew(-5deg);
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.34));
}

.laptop-screen {
  height: 230px;
  padding: 24px 28px;
  border: 8px solid #6d86b7;
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(135deg, #061126, #10285b);
}

.laptop-screen i {
  display: block;
  height: 9px;
  margin-bottom: 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, #38bdf8, #7c3aed 35%, transparent 35%);
}

.laptop-screen i:nth-child(2) { width: 78%; margin-left: 30px; }
.laptop-screen i:nth-child(3) { width: 66%; margin-left: 12px; background: linear-gradient(90deg, #22c55e, #38bdf8 50%, transparent 50%); }
.laptop-screen i:nth-child(4) { width: 86%; margin-left: 46px; }
.laptop-screen i:nth-child(5) { width: 60%; margin-left: 20px; background: linear-gradient(90deg, #f97316, #38bdf8 54%, transparent 54%); }
.laptop-screen i:nth-child(6) { width: 74%; margin-left: 54px; }

.laptop-base {
  height: 30px;
  margin: -1px 20px 0;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(180deg, #91a6d1, #566b98);
}

.phone-card {
  position: absolute;
  left: 12%;
  bottom: 102px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  width: 118px;
  height: 188px;
  padding: 24px 14px;
  border: 7px solid #81a3dd;
  border-radius: 28px;
  background: linear-gradient(180deg, #092152, #0b4ea2);
  transform: rotate(-8deg);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.32));
}

.phone-card span {
  border-radius: 8px;
  background: linear-gradient(135deg, #38bdf8, #7c3aed);
}

.floating-icon {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 18px;
  color: #eaf6ff;
  background: linear-gradient(135deg, #1d65ff, #3bd6ff);
  box-shadow: 0 16px 30px rgba(14, 89, 255, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.42);
  font-size: 1.7rem;
  font-weight: 950;
}

.code-icon { left: 25%; top: 72px; }
.cloud-icon { right: 3%; top: 78px; }
.gear-icon { right: 5%; bottom: 118px; background: linear-gradient(135deg, #334155, #6b7ea8); }

.circuit-lines {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  background:
    linear-gradient(35deg, transparent 28%, rgba(37, 99, 235, 0.52) 28.3%, transparent 29%),
    linear-gradient(155deg, transparent 55%, rgba(56, 189, 248, 0.42) 55.3%, transparent 56%),
    radial-gradient(circle at 72% 12%, #116cff 0 4px, transparent 5px),
    radial-gradient(circle at 55% 30%, #38bdf8 0 4px, transparent 5px),
    radial-gradient(circle at 84% 68%, #116cff 0 4px, transparent 5px);
}

.home-about,
.home-services,
.home-work {
  padding: clamp(34px, 5.6vw, 72px) clamp(24px, 4.6vw, 72px);
  background: #ffffff;
}

.home-about {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 28px;
  align-items: start;
}

.blue-kicker {
  margin: 0 0 8px;
  color: #1267ff;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.home-about h2 span,
.center-head h2 span {
  color: #1267ff;
}

.home-about > p {
  margin: 26px 0 0;
  color: #475569;
  line-height: 1.65;
}

.feature-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.feature-strip article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.feature-strip article:hover {
  background: #f5f8fc;
  transform: translateY(-4px);
}

.feature-strip article > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #1267ff;
  background: #e8f1ff;
  font-size: 1.5rem;
  font-weight: 950;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-strip article:hover > span {
  box-shadow: 0 10px 24px rgba(18, 103, 255, 0.16);
  transform: scale(1.08);
}

.feature-strip h3 {
  margin-bottom: 5px;
  font-size: 0.98rem;
}

.feature-strip p {
  margin: 0;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.4;
}

.home-services {
  background: #f5f8fc;
}

.center-head {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(330px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.home-service-card {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr 34px;
  gap: 16px;
  align-items: center;
  min-height: 132px;
  padding: 22px;
  border: 1px solid #dbe5ef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 103, 255, 0.11), rgba(56, 216, 255, 0.08));
  opacity: 0;
  transform: translateX(-18%);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.home-service-card > * {
  position: relative;
  z-index: 1;
}

.home-service-card:hover {
  border-color: rgba(18, 103, 255, 0.42);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.14);
  transform: translateY(-5px);
}

.home-service-card:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.home-service-card:hover .home-service-icon {
  transform: scale(1.08) rotate(-2deg);
}

.home-service-card:hover b,
.work-card:hover b {
  color: #ffffff;
  background: #1267ff;
  transform: translateX(3px);
}

.home-service-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #e8f1ff;
  color: #1267ff;
  font-size: 2rem;
  transition: transform 0.22s ease;
}

.home-service-card:nth-child(2) .home-service-icon { background: #dcfce7; }
.home-service-card:nth-child(3) .home-service-icon { background: #efe7ff; }
.home-service-card:nth-child(4) .home-service-icon { background: #ffe4ef; }
.home-service-card:nth-child(5) .home-service-icon { background: #ffedd5; }
.home-service-card:nth-child(6) .home-service-icon { background: #e0f2fe; }
.home-service-card:nth-child(7) .home-service-icon { background: #fff1dc; }
.home-service-card:nth-child(8) .home-service-icon { background: #ffe7e7; }
.home-service-card:nth-child(9) .home-service-icon { background: #e5e7ff; }

.home-service-card p {
  margin: 6px 0 0;
  color: #526174;
  font-size: 0.96rem;
  line-height: 1.48;
}

.home-service-card b,
.work-card b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #1267ff;
  background: #edf4ff;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.home-work {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 8%, rgba(56, 189, 248, 0.18), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(37, 99, 235, 0.22), transparent 28%),
    linear-gradient(135deg, #020b22 0%, #062456 55%, #020b22 100%);
}

.home-work::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.12) 1px, transparent 1px);
  background-size: 58px 58px;
}

.home-work > * {
  position: relative;
  z-index: 1;
}

.home-work .blue-kicker {
  color: #38d8ff;
}

.home-work h2 {
  color: #ffffff;
}

.section-subtitle {
  max-width: 620px;
  margin: 10px auto 0;
  color: #c8d8ea;
  line-height: 1.6;
}

.work-strip {
  width: 100%;
  overflow: hidden;
  padding: 4px 0 18px;
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}

.work-slider-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: workShowcaseSlide calc(var(--showcase-count, 14) * 4s) linear infinite;
}

.work-slider-track:hover {
  animation-play-state: paused;
}

.work-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 154px;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  color: #ffffff;
  background: #071a40;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.work-slider-track .work-card {
  flex: 0 0 clamp(300px, 30vw, 500px);
}

.work-card.has-image {
  aspect-ratio: 16 / 9;
  min-height: 0;
  border: 1px solid rgba(125, 211, 252, 0.2);
  background-color: #071a40;
  background-size: cover;
  background-position: center;
  filter: none;
}

.work-card.has-image.work-crop {
  background-size: 124%;
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 20%, rgba(2, 10, 28, 0.84) 100%),
    linear-gradient(135deg, rgba(56, 189, 248, 0.24), rgba(2, 6, 23, 0.18));
  transition: background 0.22s ease;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 8px;
  opacity: 0.72;
}

.work-card.has-image::after {
  display: none;
}

.work-card.has-image::before {
  display: none;
}

.work-card.has-image span {
  display: none;
}

.work-card.has-image b {
  position: absolute;
  right: 14px;
  bottom: 14px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

.work-action {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

@keyframes workShowcaseSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.work-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.24);
}

.work-card:hover::before {
  background:
    linear-gradient(180deg, rgba(18, 103, 255, 0.04) 0%, rgba(2, 10, 28, 0.92) 100%),
    linear-gradient(135deg, rgba(56, 216, 255, 0.18), rgba(18, 103, 255, 0.22));
}

.work-card.code::after {
  background: repeating-linear-gradient(180deg, #38bdf8 0 4px, transparent 4px 15px), repeating-linear-gradient(90deg, transparent 0 18px, rgba(56, 189, 248, 0.2) 18px 20px);
}

.work-card.mobile::after {
  background: radial-gradient(circle at 30% 35%, #dbeafe 0 18px, transparent 19px), radial-gradient(circle at 65% 52%, #bfdbfe 0 24px, transparent 25px), linear-gradient(135deg, #eff6ff, #93c5fd);
}

.work-card.server::after {
  background: repeating-linear-gradient(180deg, #22c55e 0 3px, transparent 3px 14px), linear-gradient(135deg, #020617, #1e293b);
}

.work-card.gaming::after {
  background: radial-gradient(circle at 40% 40%, #38bdf8 0 24px, transparent 25px), radial-gradient(circle at 70% 55%, #1d4ed8 0 26px, transparent 27px), linear-gradient(135deg, #030712, #172554);
}

.work-card.design::after {
  background: radial-gradient(circle at 26% 36%, #fecdd3 0 24px, transparent 25px), radial-gradient(circle at 68% 42%, #bae6fd 0 24px, transparent 25px), linear-gradient(135deg, #ffffff, #dbeafe);
}

.work-card span,
.work-card b {
  position: relative;
  z-index: 1;
  font-weight: 950;
}

.work-card:not(.has-image) {
  padding: 14px;
}

.page-hero,
.section {
  padding: clamp(38px, 6vw, 76px) clamp(18px, 4.8vw, 64px);
}

.page-hero {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.page-hero .lead {
  max-width: 860px;
}

.section-head {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin-bottom: 24px;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 14px;
}

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

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

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

.card,
.service-card,
.announcement-card,
.showcase-card,
.form-card,
.chat-message,
.admin-panel,
.ticket-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.card,
.service-card,
.announcement-card,
.showcase-card,
.chat-message {
  padding: 18px;
}

.service-card {
  min-height: 214px;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--soft-2);
  font-size: 1.45rem;
}

.card p,
.service-card p,
.announcement-card p,
.showcase-card p,
.chat-message p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.services-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 620px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 420px;
  padding: clamp(54px, 7vw, 92px) clamp(18px, 8vw, 150px);
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 52%, rgba(18, 103, 255, 0.26), transparent 28%),
    radial-gradient(circle at 14% 26%, rgba(56, 216, 255, 0.1), transparent 24%),
    linear-gradient(135deg, #020b22 0%, #071b42 55%, #02112d 100%);
}

.services-hero::before,
.services-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.services-hero::before {
  opacity: 0.22;
  background-image: radial-gradient(rgba(125, 211, 252, 0.35) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, #000, transparent 68%);
}

.services-hero::after {
  background:
    linear-gradient(116deg, transparent 36%, rgba(56, 189, 248, 0.13) 36.2%, transparent 36.7%),
    linear-gradient(42deg, transparent 62%, rgba(37, 99, 235, 0.15) 62.2%, transparent 63%);
}

.services-hero > * {
  position: relative;
  z-index: 1;
}

.services-kicker {
  margin: 0 0 12px;
  color: #38d8ff;
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.services-hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.96;
}

.services-hero h1 span {
  display: block;
  color: #2f8dff;
}

.services-hero .lead {
  max-width: 650px;
  margin: 20px 0 0;
  color: #bfd1e8;
  font-size: 1.06rem;
  line-height: 1.65;
}

.services-feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 32px;
}

.services-feature-row span {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  min-width: 160px;
}

.services-feature-row b {
  display: grid;
  grid-row: 1 / 3;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.14);
  box-shadow: inset 0 0 0 1px rgba(125, 211, 252, 0.18);
  font-size: 1.18rem;
}

.services-feature-row strong {
  color: #ffffff;
  font-size: 0.95rem;
}

.services-feature-row small {
  color: #9fb3cb;
}

.services-hero-visual {
  display: grid;
  place-items: center;
  min-height: 300px;
}

.service-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 520px);
  aspect-ratio: 1.55;
}

.service-orbit::before,
.service-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(80, 176, 255, 0.26);
  border-radius: 50%;
  transform: rotate(-9deg);
}

.service-orbit::before {
  width: 76%;
  height: 44%;
}

.service-orbit::after {
  width: 54%;
  height: 30%;
  filter: blur(0.2px);
}

.service-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(125, 211, 252, 0.5);
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #38d8ff, #1267ff);
  box-shadow: 0 0 48px rgba(18, 103, 255, 0.48);
  font-size: 3.1rem;
  font-weight: 950;
  animation: servicePulse 2.4s ease-in-out infinite;
}

.service-orbit i {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(125, 211, 252, 0.24);
  border-radius: 18px;
  color: #d9ecff;
  background: rgba(8, 34, 78, 0.72);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  font-style: normal;
  font-size: 1.35rem;
  transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y)));
  animation: serviceFloat 3s ease-in-out infinite;
}

.service-orbit i:nth-child(2n) {
  animation-delay: -0.7s;
}

.service-orbit i:nth-child(3n) {
  animation-delay: -1.3s;
}

.services-page-section {
  padding: clamp(30px, 4.2vw, 46px) clamp(18px, 8vw, 150px) clamp(44px, 5vw, 64px);
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.08), transparent 25%),
    #f5f8fc;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-page-card {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  min-height: 150px;
  padding: 24px 22px;
  overflow: hidden;
  border: 1px solid #dce7f3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-page-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 103, 255, 0.08), rgba(56, 216, 255, 0.04));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.service-page-card > * {
  position: relative;
  z-index: 1;
}

.service-page-card:hover {
  border-color: rgba(18, 103, 255, 0.36);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.13);
  transform: translateY(-6px);
}

.service-page-card:hover::before {
  opacity: 1;
}

.service-page-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #e8f1ff;
  font-size: 1.72rem;
  transition: transform 0.22s ease;
}

.service-page-card:hover .service-page-icon {
  transform: scale(1.07) rotate(-4deg);
}

.service-page-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.08rem;
}

.service-page-card p {
  margin: 9px 0 0;
  color: #526174;
  font-size: 0.94rem;
  line-height: 1.55;
}

.service-learn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: #1267ff;
  font-size: 0.92rem;
  font-weight: 950;
}

.service-learn span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #ffffff;
  background: #1267ff;
  transition: transform 0.2s ease;
}

.service-page-card:hover .service-learn span {
  transform: translateX(4px);
}

.service-page-card:nth-child(2) .service-page-icon { background: #efe7ff; }
.service-page-card:nth-child(3) .service-page-icon { background: #e0f2fe; }
.service-page-card:nth-child(4) .service-page-icon { background: #ffe4e6; }
.service-page-card:nth-child(5) .service-page-icon { background: #f3e8ff; }
.service-page-card:nth-child(6) .service-page-icon { background: #ede9fe; }
.service-page-card:nth-child(7) .service-page-icon { background: #ffe7dc; }
.service-page-card:nth-child(8) .service-page-icon { background: #e5e7ff; }

.services-help {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
  padding: 22px 26px;
  border: 1px solid #cfe0f3;
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 100%, rgba(18, 103, 255, 0.12), transparent 24%),
    #f8fbff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.services-help-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38d8ff, #1267ff);
  box-shadow: 0 12px 24px rgba(18, 103, 255, 0.22);
  font-size: 1.5rem;
}

.services-help h2 {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
}

.services-help p {
  margin: 6px 0 0;
  color: #526174;
}

@keyframes servicePulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-6px) scale(1.04);
  }
}

@keyframes serviceFloat {
  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -10px;
  }
}

.announcement-card {
  border-left: 4px solid var(--teal);
}

.announcement-meta,
.ticket-meta,
.chat-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.announcements-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: clamp(48px, 7vw, 92px) 20px 42px;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  background:
    radial-gradient(circle at 50% 100%, rgba(37, 99, 235, 0.24), transparent 24%),
    radial-gradient(circle at 15% 28%, rgba(56, 189, 248, 0.14), transparent 26%),
    linear-gradient(135deg, #020b22 0%, #061e47 58%, #020b22 100%);
}

.announcements-hero::before,
.announcements-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.announcements-hero::before {
  opacity: 0.22;
  background-image: radial-gradient(rgba(125, 211, 252, 0.35) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at center, #000 0 45%, transparent 72%);
}

.announcements-hero::after {
  background:
    linear-gradient(120deg, transparent 30%, rgba(56, 189, 248, 0.13) 30.2%, transparent 31%),
    linear-gradient(50deg, transparent 58%, rgba(37, 99, 235, 0.16) 58.2%, transparent 58.8%);
}

.announcements-hero > * {
  position: relative;
  z-index: 1;
}

.announcements-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.06;
}

.announcements-hero p:not(.blue-kicker) {
  max-width: 680px;
  margin: 14px 0 0;
  color: #c8d8ea;
  font-size: 1.12rem;
  line-height: 1.6;
}

.announcement-orb {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin-top: 26px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(56, 216, 255, 0.32), rgba(18, 103, 255, 0.2) 48%, rgba(18, 103, 255, 0.05) 72%);
  box-shadow: 0 0 38px rgba(18, 103, 255, 0.34);
  font-size: 2rem;
  animation: announcementOrb 2.4s ease-in-out infinite;
}

.announcements-section {
  padding: clamp(38px, 5vw, 64px) clamp(16px, 2.6vw, 34px) clamp(48px, 7vw, 86px);
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.09), transparent 28%),
    #f5f8fc;
}

.announcement-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.filter-button {
  min-width: 140px;
  min-height: 42px;
  border: 1px solid #dce7f3;
  border-radius: 8px;
  color: #475569;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-button:hover,
.filter-button.active {
  color: #ffffff;
  border-color: #1267ff;
  background: linear-gradient(135deg, #2684ff, #1267ff);
  transform: translateY(-2px);
}

.announcement-status {
  display: none;
}

.announcement-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: 100%;
  margin: 0 auto;
}

.announcement-card {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr 42px;
  gap: 20px;
  min-height: 156px;
  padding: 24px 26px;
  overflow: hidden;
  border: 1px solid #dce7f3;
  border-left: 4px solid #1267ff;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.09);
  animation: announcementCardIn 0.42s ease both;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.announcement-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 103, 255, 0.08), rgba(56, 216, 255, 0.04));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.announcement-card > * {
  position: relative;
  z-index: 1;
}

.announcement-card:hover {
  border-color: rgba(18, 103, 255, 0.46);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.14);
  transform: translateY(-6px);
}

.announcement-card:hover::before {
  opacity: 1;
}

.announcement-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #e8f1ff;
  font-size: 2rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.announcement-card:hover .announcement-icon {
  box-shadow: 0 12px 24px rgba(18, 103, 255, 0.18);
  transform: scale(1.08) rotate(-4deg);
}

.announcement-card h3 {
  margin-top: 10px;
  color: #0f172a;
  font-size: 1.2rem;
}

.announcement-card p {
  margin: 10px 0 0;
  color: #526174;
  line-height: 1.58;
}

.announcement-body {
  margin-top: 12px;
  color: #46576d;
  font-size: 1rem;
  line-height: 1.72;
  white-space: normal;
}

.announcement-body strong {
  color: #0f172a;
  font-weight: 950;
}

.announcement-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 8px;
  padding: 3px 9px;
  color: #1267ff;
  background: #e8f1ff;
}

.read-more {
  display: inline-flex;
  margin-top: 14px;
  color: #1267ff;
  font-weight: 950;
}

.announcement-arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  align-self: start;
  justify-self: end;
  border-radius: 50%;
  color: #1267ff;
  background: #edf4ff;
  font-size: 1.4rem;
  font-weight: 950;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.announcement-card:hover .announcement-arrow {
  color: #ffffff;
  background: #1267ff;
  transform: translateX(3px);
}

.announcement-empty {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed #b9c9da;
  border-radius: 8px;
  color: #526174;
  background: #ffffff;
  text-align: center;
  font-weight: 900;
}

.announcement-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.announcement-pagination button {
  min-width: 42px;
  height: 42px;
  border: 1px solid #dce7f3;
  border-radius: 50%;
  color: #334155;
  background: #ffffff;
  font-weight: 950;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.announcement-pagination button:hover,
.announcement-pagination button.active {
  color: #ffffff;
  background: #1267ff;
  transform: translateY(-2px);
}

@keyframes announcementOrb {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.04);
  }
}

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

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

.showcase-card {
  display: grid;
  gap: 14px;
}

.showcase-shot {
  display: grid;
  place-items: center;
  min-height: 150px;
  border-radius: 8px;
  background: linear-gradient(135deg, #eaf2f1, #f7f4e7);
  color: var(--teal-dark);
  font-size: 2rem;
  font-weight: 950;
}

.showcase-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 430px;
  padding: clamp(54px, 6.5vw, 92px) clamp(20px, 8vw, 150px) clamp(84px, 8vw, 116px);
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, rgba(18, 103, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #eef6ff 58%, #dfeeff 100%);
  border-bottom: 1px solid #dce7f3;
}

.showcase-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background:
    radial-gradient(circle at 4% 25%, rgba(18, 103, 255, 0.08) 0 16px, transparent 17px),
    radial-gradient(rgba(18, 103, 255, 0.16) 1px, transparent 1px);
  background-size: auto, 28px 28px;
  pointer-events: none;
}

.showcase-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background:
    linear-gradient(150deg, transparent 32%, rgba(18, 103, 255, 0.08) 32.3%, transparent 58%),
    linear-gradient(155deg, transparent 44%, rgba(56, 216, 255, 0.08) 44.3%, transparent 72%);
  pointer-events: none;
}

.showcase-hero > * {
  position: relative;
  z-index: 1;
}

.showcase-hero-copy {
  padding-left: 26px;
  border-left: 5px solid #1267ff;
}

.showcase-hero h1 {
  max-width: 820px;
  color: #07152e;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 1;
}

.showcase-hero p {
  max-width: 710px;
  margin: 22px 0 0;
  color: #46576d;
  font-size: 1.12rem;
  line-height: 1.68;
}

.showcase-hero-visual {
  min-height: 270px;
  display: grid;
  place-items: center;
}

.showcase-stack {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1.75;
}

.showcase-panel {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 103, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 24px 50px rgba(18, 103, 255, 0.15);
}

.panel-code {
  left: 4%;
  top: 31%;
  z-index: 3;
  width: 42%;
  height: 34%;
  color: #ff9d3b;
  background:
    linear-gradient(90deg, rgba(56, 216, 255, 0.2) 0 22%, transparent 22%),
    #082154;
  font-size: 2.3rem;
  font-weight: 950;
}

.panel-chart {
  right: 19%;
  top: 19%;
  z-index: 2;
  width: 42%;
  height: 37%;
  background:
    linear-gradient(#edf4ff 0 16%, transparent 16%),
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(18, 103, 255, 0.14) 18px 20px),
    #ffffff;
}

.panel-chart::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 18%;
  width: 38%;
  height: 42%;
  background:
    linear-gradient(90deg, #93c5fd 0 18%, transparent 18% 28%, #60a5fa 28% 46%, transparent 46% 56%, #2563eb 56% 76%, transparent 76%);
}

.panel-k {
  right: 0;
  top: 45%;
  z-index: 4;
  width: 82px;
  height: 82px;
  color: #ffffff;
  background: linear-gradient(135deg, #38d8ff, #1267ff);
  font-size: 3rem;
  font-weight: 950;
  animation: showcaseFloat 4s ease-in-out infinite;
}

.panel-card {
  left: 38%;
  bottom: 5%;
  z-index: 4;
  width: 32%;
  height: 24%;
  background:
    linear-gradient(90deg, #dbeafe 0 22%, transparent 22%),
    repeating-linear-gradient(0deg, transparent 0 12px, rgba(18, 103, 255, 0.14) 12px 14px),
    #ffffff;
}

.showcase-capability-strip {
  position: absolute;
  left: clamp(20px, 8vw, 150px);
  right: clamp(20px, 8vw, 150px);
  bottom: 26px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(185, 201, 218, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
  backdrop-filter: blur(10px);
}

.showcase-capability-strip article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 13px;
  align-items: center;
  min-height: 74px;
  padding: 14px 24px;
  border-right: 1px solid #dce7f3;
}

.showcase-capability-strip article:last-child {
  border-right: 0;
}

.showcase-capability-strip span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #1267ff;
  background: #e8f1ff;
  font-size: 1.45rem;
}

.showcase-capability-strip strong,
.showcase-capability-strip small {
  display: block;
}

.showcase-capability-strip strong {
  color: #07152e;
}

.showcase-capability-strip small {
  margin-top: 3px;
  color: #526174;
  font-weight: 750;
}

.showcase-gallery-section {
  padding: clamp(30px, 4.5vw, 58px) clamp(20px, 8vw, 150px) clamp(42px, 5vw, 72px);
  background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
}

.showcase-project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 22px;
}

.showcase-project-card {
  position: relative;
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid #dce7f3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.showcase-project-card:hover {
  border-color: rgba(18, 103, 255, 0.38);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.13);
  transform: translateY(-6px);
}

.showcase-project-image {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  min-height: 190px;
  overflow: hidden;
  color: #ffffff;
  background-size: cover;
  background-position: center;
}

.showcase-project-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 11, 34, 0.12), rgba(2, 11, 34, 0.52)),
    radial-gradient(circle at 18% 14%, rgba(56, 216, 255, 0.18), transparent 34%);
}

.showcase-project-image.has-image span {
  display: none;
}

.showcase-project-image.has-image::before {
  display: none;
}

.showcase-project-image.has-image {
  background: #eaf2ff;
}

.showcase-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.showcase-project-card:hover .showcase-project-image img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

.showcase-project-image span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 18px;
  background: rgba(18, 103, 255, 0.7);
  font-size: 2.4rem;
}

.showcase-project-image.fallback-1 {
  background: linear-gradient(135deg, #111827, #3730a3);
}

.showcase-project-image.fallback-2 {
  background: linear-gradient(135deg, #0f172a, #0ea5e9);
}

.showcase-project-image.fallback-3 {
  background: linear-gradient(135deg, #1e1b4b, #be123c);
}

.showcase-project-image.fallback-4 {
  background: linear-gradient(135deg, #020617, #1d4ed8);
}

.showcase-number {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 34px;
  margin: -17px 0 0 24px;
  border-radius: 999px;
  color: #ffffff;
  background: #1267ff;
  box-shadow: 0 10px 22px rgba(18, 103, 255, 0.28);
  font-weight: 950;
}

.showcase-project-body {
  display: grid;
  gap: 12px;
  padding: 18px 24px 24px;
}

.showcase-project-body h3 {
  color: #07152e;
  font-size: 1.2rem;
}

.showcase-project-body p {
  margin: 0;
  color: #526174;
  line-height: 1.62;
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.showcase-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 10px;
  border: 1px solid #d7e6ff;
  border-radius: 999px;
  color: #1267ff;
  background: #f1f7ff;
  font-size: 0.78rem;
  font-weight: 900;
}

.showcase-project-body a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  color: #1267ff;
  font-weight: 950;
}

.showcase-project-body a span {
  transition: transform 0.2s ease;
}

.showcase-project-card:hover .showcase-project-body a span {
  transform: translateX(4px);
}

@keyframes showcaseFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.get-touch-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
  min-height: 390px;
  padding: clamp(50px, 6.5vw, 88px) clamp(20px, 8vw, 150px);
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 76% 35%, rgba(18, 103, 255, 0.28), transparent 31%),
    radial-gradient(circle at 16% 96%, rgba(56, 216, 255, 0.12), transparent 30%),
    linear-gradient(135deg, #020b22 0%, #061a3d 52%, #082764 100%);
}

.get-touch-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(rgba(125, 211, 252, 0.35) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.get-touch-hero > * {
  position: relative;
  z-index: 1;
}

.get-touch-hero h1 {
  max-width: 780px;
  font-size: clamp(2.7rem, 5.4vw, 4.7rem);
  line-height: 1;
}

.get-touch-hero h1 span {
  display: block;
}

.get-touch-hero .lead {
  max-width: 650px;
  color: #c8d8ea;
}

.get-touch-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.get-touch-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(18, 103, 255, 0.22);
  font-size: 0.82rem;
  font-weight: 950;
}

.contact-hero-visual {
  min-height: 260px;
  display: grid;
  place-items: center;
}

.mail-scene {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1.42;
  display: grid;
  place-items: center;
}

.mail-cube {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 154px;
  height: 154px;
  border: 1px solid rgba(125, 211, 252, 0.42);
  border-radius: 28px;
  color: #ffffff;
  background: linear-gradient(145deg, #3aa8ff, #1267ff 66%, #0a3ea4);
  box-shadow:
    0 24px 60px rgba(18, 103, 255, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  font-size: 5rem;
  animation: contactFloat 4s ease-in-out infinite;
}

.mail-base {
  position: absolute;
  z-index: 1;
  inset: auto 14% 5% 14%;
  height: 82px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(56, 216, 255, 0.9), rgba(18, 103, 255, 0.5) 42%, transparent 70%);
  filter: blur(2px);
}

.orbit {
  position: absolute;
  z-index: 2;
  width: 78%;
  height: 38%;
  border: 1px solid rgba(56, 216, 255, 0.42);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.orbit.two {
  width: 62%;
  height: 46%;
  transform: rotate(22deg);
  opacity: 0.55;
}

.mail-dot {
  position: absolute;
  z-index: 4;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #38d8ff;
  box-shadow: 0 0 24px rgba(56, 216, 255, 0.7);
}

.dot-one {
  left: 22%;
  top: 18%;
}

.dot-two {
  right: 15%;
  top: 46%;
  width: 10px;
  height: 10px;
}

.get-touch-main {
  padding: clamp(26px, 4vw, 48px) clamp(18px, 8vw, 150px);
  background:
    radial-gradient(circle at 18% 16%, rgba(56, 216, 255, 0.09), transparent 28%),
    linear-gradient(180deg, #eef6ff 0%, #f8fbff 100%);
}

.get-touch-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(440px, 1fr);
  gap: 20px;
  align-items: start;
}

.contact-card,
.contact-ticket-panel .form-card {
  display: grid;
  gap: 18px;
  max-width: none;
  border: 1px solid rgba(185, 201, 218, 0.66);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 52px rgba(2, 19, 48, 0.1);
}

.contact-card {
  padding: clamp(18px, 2.5vw, 28px);
}

.contact-card h2,
.contact-ticket-panel h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.contact-card p,
.contact-ticket-panel form > div > p,
.safe-note {
  margin: 4px 0 0;
  color: #526174;
  line-height: 1.55;
}

.contact-methods {
  display: grid;
  gap: 12px;
}

.contact-method {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 70px;
  padding: 12px;
  border: 1px solid #dce7f3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-method:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 103, 255, 0.35);
  box-shadow: 0 16px 34px rgba(18, 103, 255, 0.1);
}

.method-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 950;
}

.method-icon.email {
  background: linear-gradient(135deg, #3aa8ff, #1267ff);
}

.method-icon.whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.method-icon.location {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.method-icon.available {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.contact-method strong,
.contact-method small {
  display: block;
}

.contact-method strong {
  color: #0b2145;
}

.contact-method small {
  margin-top: 3px;
  color: #526174;
  font-weight: 750;
}

.contact-method button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  color: #46617f;
  background: #eef5ff;
  cursor: pointer;
  font-weight: 950;
}

.contact-method button:hover {
  color: #ffffff;
  background: #1267ff;
}

.contact-services {
  display: grid;
  gap: 10px;
}

.contact-service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.contact-service-grid span {
  display: grid;
  place-items: center;
  min-height: 104px;
  padding: 10px 8px;
  border: 1px solid #dce7f3;
  border-radius: 8px;
  color: #0b2145;
  background: #ffffff;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.25;
}

.contact-service-grid b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 5px;
  border-radius: 50%;
  background: #eef5ff;
  font-size: 1.25rem;
}

.response-guarantee {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 13px 16px;
  border-radius: 8px;
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 10%, rgba(56, 216, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #061e47, #1267ff);
}

.response-guarantee span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(56, 216, 255, 0.18);
}

.response-guarantee strong,
.response-guarantee small {
  display: block;
}

.response-guarantee small {
  color: #c8d8ea;
  font-weight: 700;
}

.response-guarantee b {
  color: #7dd3fc;
  font-size: 1.8rem;
}

.contact-ticket-panel .form-card {
  padding: clamp(18px, 2.5vw, 30px);
}

.ticket-submit-button {
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, #2684ff, #1267ff);
}

.safe-note {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 800;
}

@keyframes contactFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.form-card {
  display: grid;
  gap: 15px;
  max-width: 760px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.wide-form {
  max-width: 960px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: #24313a;
  font-size: 0.92rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cfd9de;
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: #ffffff;
  font-weight: 650;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(8, 127, 123, 0.18);
  border-color: var(--teal);
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-weight: 850;
}

.form-message.success {
  color: var(--teal-dark);
}

.form-message.error {
  color: var(--red);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 520px);
  gap: 24px;
  align-items: start;
}

.chat-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: 20px;
  align-items: start;
}

.chat-feed {
  display: grid;
  gap: 12px;
  max-height: 680px;
  overflow: auto;
  padding-right: 6px;
}

.chat-message.replying {
  border-left: 4px solid var(--blue);
}

.discord-chat-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 270px;
  padding: clamp(38px, 5vw, 64px) 20px clamp(28px, 4vw, 46px);
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  background:
    radial-gradient(circle at 50% 90%, rgba(37, 99, 235, 0.22), transparent 30%),
    radial-gradient(circle at 18% 18%, rgba(56, 216, 255, 0.12), transparent 24%),
    linear-gradient(135deg, #020b22 0%, #071b42 58%, #02112d 100%);
}

.discord-chat-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(rgba(125, 211, 252, 0.35) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.discord-chat-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% -10%;
  height: 75%;
  opacity: 0.5;
  background:
    radial-gradient(ellipse at 18% 72%, rgba(56, 189, 248, 0.12), transparent 40%),
    linear-gradient(165deg, transparent 44%, rgba(56, 189, 248, 0.08) 44.5%, transparent 64%);
  pointer-events: none;
}

.discord-chat-hero > * {
  position: relative;
  z-index: 1;
}

.discord-chat-hero h1 {
  font-size: clamp(2.45rem, 4.8vw, 4.5rem);
}

.discord-chat-hero p:not(.services-kicker) {
  max-width: 760px;
  margin: 16px auto 0;
  color: #c8d8ea;
  font-size: 1.08rem;
  line-height: 1.65;
}

.discord-chat-section {
  margin-top: 0;
  padding: clamp(18px, 2vw, 28px) clamp(12px, 2vw, 34px) clamp(46px, 5vw, 72px);
  background:
    radial-gradient(circle at 78% 10%, rgba(18, 103, 255, 0.18), transparent 28%),
    radial-gradient(circle at 8% 92%, rgba(56, 216, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #061e47 0%, #041a3e 54%, #031431 100%);
}

.discord-chat-shell {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-radius: 8px;
  background: rgba(4, 26, 62, 0.74);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.discord-channel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  padding: 0 20px;
  color: #eef7ff;
  background: rgba(4, 17, 38, 0.46);
  border-bottom: 1px solid rgba(125, 211, 252, 0.18);
}

.discord-channel-head div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.discord-channel-head > span {
  color: #a9bdd4;
  font-size: 0.92rem;
  font-weight: 800;
}

.discord-hash {
  color: #7dd3fc;
  font-size: 1.45rem;
  font-weight: 950;
}

.discord-feed {
  display: grid;
  align-content: start;
  min-height: 0;
  max-height: none;
  overflow: visible;
  padding: 24px 30px 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(18, 103, 255, 0.12), transparent 26%),
    rgba(3, 20, 49, 0.42);
}

.discord-empty {
  margin: 26px;
  padding: 24px;
  border: 1px dashed rgba(125, 211, 252, 0.28);
  border-radius: 8px;
  color: #d9e8ff;
  background: rgba(6, 30, 71, 0.72);
  text-align: center;
}

.discord-empty p {
  color: #a9bdd4;
}

.discord-message {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 13px 0 14px;
  color: #d9e8ff;
  border-bottom: 1px solid rgba(125, 211, 252, 0.16);
  transition: background 0.16s ease, transform 0.16s ease, padding 0.16s ease;
}

.discord-message:hover {
  margin-inline: -12px;
  padding-inline: 12px;
  border-radius: 8px;
  background: rgba(18, 103, 255, 0.1);
}

.discord-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #38d8ff, #1267ff);
  font-weight: 950;
}

.discord-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discord-message-main {
  min-width: 0;
}

.discord-message-meta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}

.discord-message-meta strong {
  color: #ffffff;
  font-size: 1rem;
}

.discord-message-meta time {
  color: #8ea6c1;
  font-size: 0.78rem;
  font-weight: 700;
}

.discord-source {
  display: inline-flex;
  align-items: center;
  min-height: 19px;
  padding: 2px 6px;
  border-radius: 4px;
  color: #ffffff;
  background: #2684ff;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.discord-reply {
  margin-top: 4px;
  color: #9bb2cc;
  font-size: 0.86rem;
  font-weight: 800;
}

.discord-message-body {
  margin-top: 3px;
  color: #d9e8ff;
  line-height: 1.55;
  white-space: normal;
}

.discord-message-body strong {
  color: #ffffff;
  font-weight: 950;
}

.discord-attachments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.discord-attachments a {
  display: inline-flex;
  max-width: min(320px, 100%);
  overflow: hidden;
  border: 1px solid rgba(125, 211, 252, 0.24);
  border-radius: 8px;
  color: #dbeafe;
  background: rgba(2, 11, 34, 0.4);
}

.discord-attachments img {
  display: block;
  max-width: min(320px, 100%);
  max-height: 220px;
  object-fit: cover;
}

.discord-attachments span {
  padding: 10px 12px;
}

.discord-message .small-button {
  min-height: 28px;
  margin-top: 7px;
  padding: 0 9px;
  border-color: rgba(125, 211, 252, 0.25);
  color: #bfe4ff;
  background: rgba(6, 30, 71, 0.85);
}

.discord-message .small-button:hover {
  color: #ffffff;
  border-color: #38d8ff;
  background: rgba(18, 103, 255, 0.68);
}

.discord-composer {
  display: grid;
  gap: 6px;
  padding: 10px 20px 14px;
  background: rgba(6, 30, 71, 0.72);
  border-top: 1px solid rgba(125, 211, 252, 0.18);
}

.discord-reply-notice {
  min-height: 0;
  color: #1267ff;
  font-size: 0.9rem;
  font-weight: 900;
}

.discord-composer label,
.discord-field {
  display: grid;
  gap: 7px;
  color: #d9e8ff;
  font-weight: 850;
}

.discord-name-field {
  max-width: 420px;
}

.discord-name-field span {
  color: #c8d8ea;
  font-size: 0.82rem;
  font-weight: 950;
}

.discord-name-field input {
  min-height: 38px;
  padding: 0 13px;
  border-radius: 8px;
}

.discord-message-field > span {
  display: none;
}

.discord-file-name {
  min-height: 0;
  margin: 0 4px;
  color: #7dd3fc;
  font-size: 0.82rem;
  font-weight: 850;
}

.discord-composer input,
.discord-composer textarea {
  border-color: rgba(125, 211, 252, 0.24);
  color: #eef7ff;
  background: rgba(2, 11, 34, 0.36);
}

.discord-input-wrap {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 52px;
  border: 1px solid rgba(125, 211, 252, 0.24);
  border-radius: 8px;
  background: rgba(2, 11, 34, 0.36);
}

.discord-input-wrap.message {
  align-items: center;
}

.discord-input-wrap b,
.discord-tool-button {
  display: grid;
  place-items: center;
  min-height: 50px;
  color: #7dd3fc;
  font-size: 1.55rem;
  font-weight: 500;
}

.discord-tool-button {
  width: 40px;
  cursor: pointer;
}

.discord-tool-button:hover {
  color: #ffffff;
  background: rgba(56, 216, 255, 0.08);
}

.discord-input-wrap input,
.discord-input-wrap textarea {
  min-height: 50px;
  padding-left: 4px;
  border: 0;
  background: transparent;
}

.discord-input-wrap textarea {
  padding-top: 14px;
  resize: none;
}

.discord-tools {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  color: #c8d8ea;
  font-size: 1rem;
  font-weight: 900;
  white-space: nowrap;
  opacity: 0.85;
}

.discord-tools button,
.emoji-picker button {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  min-height: 34px;
  border: 0;
  border-radius: 8px;
  color: #c8d8ea;
  background: transparent;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 950;
}

.discord-tools button:hover,
.emoji-picker button:hover {
  color: #ffffff;
  background: rgba(56, 216, 255, 0.12);
}

.emoji-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  padding: 8px;
  border: 1px solid rgba(125, 211, 252, 0.24);
  border-radius: 8px;
  background: rgba(2, 11, 34, 0.7);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.emoji-picker[hidden] {
  display: none;
}

.discord-input-wrap input:focus,
.discord-input-wrap textarea:focus {
  outline: 0;
}

.discord-input-wrap:focus-within {
  border-color: #38d8ff;
  box-shadow: 0 0 0 3px rgba(56, 216, 255, 0.12);
}

.discord-composer input::placeholder,
.discord-composer textarea::placeholder {
  color: #8ea6c1;
}

.discord-composer input:focus,
.discord-composer textarea:focus {
  outline: 3px solid rgba(18, 103, 255, 0.15);
  border-color: #1267ff;
}

.discord-composer textarea {
  resize: none;
}

.discord-composer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.discord-composer-actions .primary-button {
  background: #1267ff;
}

.discord-composer-actions .primary-button:hover {
  background: #0b55d9;
}

.discord-send-status {
  min-height: 18px;
  margin: 0 4px;
  font-size: 0.82rem;
}

body.general-chat-page .discord-chat-hero {
  min-height: 170px;
  padding: 24px 20px 22px;
}

body.general-chat-page .discord-chat-hero h1 {
  font-size: clamp(2rem, 3.6vw, 3.5rem);
}

body.general-chat-page .discord-chat-hero p {
  margin-top: 10px;
}

body.general-chat-page .discord-chat-section {
  min-height: 0;
  overflow: hidden;
  padding: 10px clamp(10px, 1.6vw, 24px) 12px;
}

body.general-chat-page .discord-chat-shell {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: 100%;
  min-height: 0;
}

body.general-chat-page .discord-feed {
  min-height: 0;
  max-height: none;
  overflow-y: auto;
  scrollbar-width: none;
}

body.general-chat-page .discord-feed::-webkit-scrollbar {
  display: none;
}

body.general-chat-page .discord-composer {
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 8px;
  padding: 4px 8px;
  background: var(--soft-2);
  color: var(--teal-dark);
  font-weight: 950;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;
  gap: 34px;
  padding: 34px clamp(20px, 6vw, 118px) 30px;
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.18), transparent 24%),
    linear-gradient(135deg, #020b22, #061e47);
}

.site-footer div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.site-footer h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.site-footer a {
  color: #d4dde5;
  font-weight: 760;
}

.site-footer span {
  color: #d4dde5;
}

.footer-brand p {
  max-width: 320px;
  margin: 0;
  color: #d4dde5;
  line-height: 1.58;
}

.social-row {
  display: flex !important;
  grid-template-columns: none !important;
  flex-direction: row;
  gap: 10px !important;
  margin-top: 6px;
}

.social-row span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(37, 99, 235, 0.62);
  font-size: 0.82rem;
  font-weight: 950;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #ffffff;
  background: #25d366;
  box-shadow: 0 18px 32px rgba(7, 94, 84, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: inherit;
  animation: whatsappPulse 2.4s ease-out infinite;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  box-shadow: 0 22px 42px rgba(7, 94, 84, 0.34);
  transform: translateY(-4px) scale(1.04);
}

.whatsapp-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
}

.whatsapp-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  min-width: 156px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #ffffff;
  background: #075e54;
  font-size: 0.9rem;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translate(0, -50%);
}

@keyframes whatsappPulse {
  0% {
    opacity: 0.7;
    transform: scale(0.92);
  }

  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

.admin-main {
  min-height: calc(100vh - 78px);
  padding: clamp(24px, 5vw, 58px) clamp(18px, 4.8vw, 64px);
}

.admin-shell {
  display: grid;
  gap: 18px;
}

.admin-panel,
.ticket-row {
  padding: 18px;
}

.login-row {
  display: grid;
  grid-template-columns: minmax(0, 360px) auto;
  gap: 10px;
  align-items: end;
}

.toolbar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.ticket-list {
  display: grid;
  gap: 12px;
}

.ticket-row {
  display: grid;
  gap: 10px;
}

@media (max-width: 1100px) {
  .hero,
  .home-hero,
  .services-hero,
  .showcase-hero,
  .get-touch-hero,
  .get-touch-grid,
  .home-about,
  .split-layout,
  .chat-layout {
    grid-template-columns: 1fr;
  }

  .contact-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 380px;
  }

  .feature-strip,
  .home-service-grid,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  .showcase-capability-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
  }

  .showcase-capability-strip article:nth-child(2n) {
    border-right: 0;
  }

  .services-hero {
    padding-inline: clamp(18px, 5vw, 64px);
  }

  .services-page-section {
    padding-inline: clamp(18px, 5vw, 64px);
  }

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

  .grid-3,
  .contact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    display: none;
    position: fixed;
    inset: 78px 14px auto 14px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 12px;
    border: 1px solid rgba(125, 211, 252, 0.38);
    border-radius: 8px;
    background: #021330;
    box-shadow: var(--shadow);
  }

  body.menu-open .nav {
    display: flex;
  }

  .nav a {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .home-hero {
    min-height: auto;
    padding-top: 40px;
  }

  .home-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .hero-visual {
    min-height: 320px;
  }

  .laptop {
    right: 2%;
    width: 72%;
  }

  .phone-card {
    left: 2%;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .services-page-grid,
  .field-grid,
  .metrics,
  .contact-strip,
  .contact-service-grid,
  .login-row,
  .feature-strip,
  .home-service-grid,
  .work-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 16px;
  }

  .site-footer {
    padding: 28px 20px;
  }

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

  .services-hero {
    min-height: auto;
    padding-top: 44px;
  }

  .showcase-hero {
    min-height: auto;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .showcase-hero-copy {
    padding-left: 18px;
  }

  .showcase-capability-strip,
  .showcase-project-grid {
    grid-template-columns: 1fr;
  }

  .showcase-capability-strip article {
    border-right: 0;
    border-bottom: 1px solid #dce7f3;
  }

  .showcase-capability-strip article:last-child {
    border-bottom: 0;
  }

  .get-touch-hero {
    min-height: auto;
    padding-top: 44px;
  }

  .services-hero h1 {
    font-size: clamp(2.65rem, 11vw, 4.2rem);
  }

  .services-feature-row {
    gap: 16px;
  }

  .services-hero-visual {
    min-height: 250px;
  }

  .service-orbit {
    width: min(100%, 390px);
  }

  .service-core {
    width: 76px;
    height: 76px;
    font-size: 2.45rem;
  }

  .service-orbit i {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    font-size: 1rem;
    transform: translate(-50%, -50%);
  }

  .service-orbit i:nth-of-type(1) { transform: translate(calc(-50% - 122px), calc(-50% - 42px)); }
  .service-orbit i:nth-of-type(2) { transform: translate(calc(-50% - 88px), calc(-50% + 66px)); }
  .service-orbit i:nth-of-type(3) { transform: translate(calc(-50% - 18px), calc(-50% - 88px)); }
  .service-orbit i:nth-of-type(4) { transform: translate(calc(-50% + 90px), calc(-50% - 62px)); }
  .service-orbit i:nth-of-type(5) { transform: translate(calc(-50% + 118px), calc(-50% + 44px)); }
  .service-orbit i:nth-of-type(6) { transform: translate(calc(-50% + 26px), calc(-50% + 86px)); }
  .service-orbit i:nth-of-type(7) { transform: translate(calc(-50% - 114px), calc(-50% + 6px)); }

  .service-page-card {
    grid-template-columns: 58px 1fr;
    padding: 20px;
  }

  .service-page-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    font-size: 1.4rem;
  }

  .services-help {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .services-help .primary-button {
    width: 100%;
    justify-content: center;
  }

  .discord-chat-section {
    padding-inline: 12px;
  }

  .discord-channel-head,
  .discord-composer-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .discord-channel-head {
    padding: 12px 14px;
  }

  .discord-message {
    grid-template-columns: 40px 1fr;
    gap: 10px;
    padding-inline: 12px;
  }

  .discord-avatar {
    width: 36px;
    height: 36px;
  }

  .discord-composer {
    padding-inline: 12px;
  }

  .discord-composer-actions .primary-button {
    width: 100%;
  }

  .announcement-card {
    grid-template-columns: 58px 1fr;
    padding: 20px;
  }

  .announcement-icon {
    width: 50px;
    height: 50px;
    font-size: 1.45rem;
  }

  .announcement-arrow {
    grid-column: 2;
    justify-self: start;
  }

  .filter-button {
    min-width: 0;
    flex: 1 1 150px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}
