:root {
  --bg: #f3f6fb;
  --bg-soft: #e7edf6;
  --card: rgba(255, 255, 255, 0.94);
  --line: rgba(136, 161, 197, 0.36);
  --text: #122641;
  --muted: #5b6f8f;
  --brand: #1f4f8f;
  --brand-soft: #3a6fb1;
  --mint: #1d6f90;
  --cyan: #5aa6d8;
  --radius: 18px;
  --shadow: 0 20px 48px rgba(20, 46, 92, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Sora", sans-serif;
  background:
    radial-gradient(circle at 12% 12%, rgba(67, 125, 206, 0.13) 0%, transparent 40%),
    radial-gradient(circle at 88% 8%, rgba(90, 141, 207, 0.11) 0%, transparent 35%),
    radial-gradient(circle at 50% 100%, rgba(62, 131, 180, 0.11) 0%, transparent 46%),
    linear-gradient(165deg, #f8fbff 0%, #edf3fa 100%);
  overflow-x: hidden;
}

body.mobile-clean::before,
body.mobile-clean::after {
  display: none;
}

body.mobile-clean .scan-beam,
body.mobile-clean .orb,
body.mobile-clean .storm-flare,
body.mobile-clean .torch-layer,
body.mobile-clean .cursor-glow {
  display: none !important;
}

body.mobile-clean .code-rain {
  opacity: 0.22;
  mix-blend-mode: normal;
}

body.mobile-clean .code-flow {
  color: rgba(26, 96, 147, 0.6);
  text-shadow: none;
}

.code-rain {
  position: fixed;
  inset: 0;
  z-index: -7;
  width: 100%;
  height: 100%;
  opacity: 0.36;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.code-float-layer {
  position: fixed;
  inset: 0;
  z-index: -6;
  pointer-events: none;
  overflow: hidden;
}

.code-flow {
  position: absolute;
  left: -24vw;
  top: var(--y, 50%);
  transform: translateY(-50%);
  font-family: "JetBrains Mono", monospace;
  font-size: var(--size, 12px);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(20, 96, 138, 0.56);
  text-shadow: 0 0 14px rgba(77, 187, 255, 0.28);
  white-space: nowrap;
  opacity: 0;
  animation: codeFlow var(--dur, 14s) linear var(--delay, 0s) infinite;
}

.storm-flare {
  position: absolute;
  left: -30vw;
  top: var(--y, 50%);
  width: var(--w, 160px);
  height: var(--h, 8px);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(133, 199, 255, 0), rgba(133, 199, 255, 0.95), rgba(133, 199, 255, 0));
  box-shadow: 0 0 24px rgba(123, 191, 255, 0.68);
  opacity: 0;
  filter: blur(0.1px);
  pointer-events: none;
  animation: stormSweep var(--dur, 3.2s) ease-in-out var(--delay, 0s) infinite;
}

.scan-beam {
  position: fixed;
  inset: -30% auto auto -20%;
  z-index: -5;
  width: 45vw;
  height: 160vh;
  pointer-events: none;
  transform: rotate(12deg);
  background: linear-gradient(
    180deg,
    rgba(114, 188, 255, 0) 0%,
    rgba(114, 188, 255, 0.08) 28%,
    rgba(114, 188, 255, 0.2) 50%,
    rgba(114, 188, 255, 0.08) 72%,
    rgba(114, 188, 255, 0) 100%
  );
  filter: blur(12px);
  animation: beamSweep 7.8s ease-in-out infinite;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(115, 149, 204, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 149, 204, 0.1) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 30%, transparent 78%);
}

.noise-layer {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.03;
  background-image: radial-gradient(rgba(29, 57, 108, 0.6) 0.45px, transparent 0.55px);
  background-size: 3px 3px;
}

.orb {
  position: fixed;
  z-index: -2;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  animation: orbFloat 16s ease-in-out infinite;
}

.orb-a {
  width: 340px;
  height: 340px;
  top: -110px;
  left: -80px;
  background: rgba(84, 137, 255, 0.28);
}

.orb-b {
  width: 430px;
  height: 430px;
  right: -120px;
  bottom: -210px;
  background: rgba(101, 140, 195, 0.24);
  animation-delay: -7s;
}

.cursor-glow {
  position: fixed;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(53, 146, 255, 0.35), rgba(53, 146, 255, 0));
  transform: translate(-50%, -50%);
  opacity: 0;
  mix-blend-mode: color-dodge;
  filter: saturate(140%) blur(1px);
  transition: opacity 0.2s ease;
}

.container {
  width: min(1140px, calc(100% - 2.2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 252, 255, 0.86);
  border-bottom: 1px solid rgba(164, 190, 231, 0.38);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  line-height: 1;
}

.brand-logo {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(30, 97, 182, 0.28));
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  gap: 0.3rem;
}

.brand-main {
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(90deg, var(--brand), var(--brand-soft));
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(31, 79, 143, 0.34);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(31, 79, 143, 0.42);
}

.btn-small {
  font-size: 0.84rem;
  padding: 0.63rem 0.95rem;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(109, 142, 194, 0.45);
  box-shadow: none;
  color: var(--text);
}

.btn-block {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 30px;
  border: 0;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  margin: 7px 0;
}

.hero {
  padding: 5rem 0 2rem;
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 1rem;
}

.hero-copy,
.hero-panel,
.trust-strip,
.stat-band,
.code-marquee-wrap,
.showcase-card,
.project-card,
.flow-grid article,
.proposal-copy,
.proposal-form {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.torch-target {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --torch-size: 280px;
  --torch-power: 0.92;
  --torch-core: rgba(104, 198, 255, 0.92);
  --torch-accent: rgba(98, 152, 223, 0.66);
  transition:
    transform 0.18s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    filter 0.2s ease;
}

.torch-layer {
  position: absolute;
  inset: -1px;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.12s ease;
  mix-blend-mode: color-dodge;
  filter: saturate(140%);
  background:
    radial-gradient(
      calc(var(--torch-size) * 0.38) circle at var(--tx, 50%) var(--ty, 50%),
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.42) 40%,
      rgba(255, 255, 255, 0) 74%
    ),
    radial-gradient(
      var(--torch-size) circle at var(--tx, 50%) var(--ty, 50%),
      var(--torch-core) 0%,
      rgba(70, 170, 255, 0.52) 24%,
      rgba(70, 170, 255, 0.22) 45%,
      rgba(255, 255, 255, 0) 70%
    ),
    radial-gradient(
      calc(var(--torch-size) * 1.4) circle at var(--tx, 50%) var(--ty, 50%),
      var(--torch-accent) 0%,
      rgba(98, 152, 223, 0.12) 46%,
      rgba(98, 152, 223, 0) 74%
    );
}

.torch-target.torch-on .torch-layer {
  opacity: var(--torch-power);
  animation: torchPulse 1.15s ease-in-out infinite;
}

.torch-target.torch-auto .torch-layer {
  opacity: var(--torch-power);
  animation: torchPulse 2.8s ease-in-out infinite;
}

.torch-target.torch-on {
  filter: saturate(1.15) contrast(1.04);
}

.project-card.torch-on,
.showcase-card.torch-on,
.stat-tile.torch-on,
.flow-grid article.torch-on {
  border-color: rgba(109, 175, 255, 0.66);
  box-shadow: 0 28px 70px rgba(23, 84, 157, 0.22);
  transform: translateY(-2px);
}

.hero-copy.torch-on,
.hero-panel.torch-on {
  border-color: rgba(152, 219, 255, 0.54);
  box-shadow: 0 30px 72px rgba(8, 20, 45, 0.56);
}

.hero-copy,
.hero-panel {
  color: #eaf3ff;
  position: relative;
  overflow: hidden;
  border-color: rgba(177, 211, 255, 0.26);
  background:
    linear-gradient(150deg, rgba(8, 18, 38, 0.95) 0%, rgba(8, 16, 30, 0.9) 100%),
    radial-gradient(circle at 90% 0%, rgba(94, 148, 219, 0.22) 0%, transparent 56%);
}

.hero-copy {
  padding: 2.2rem;
}

.hero-copy::before,
.hero-panel::before {
  content: "";
  position: absolute;
  inset: -120px auto auto -120px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(78, 214, 255, 0.3), transparent 68%);
  pointer-events: none;
}

.hero .eyebrow {
  color: #8cc3ea;
}

.eyebrow {
  margin: 0;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  font-weight: 800;
}

.hero-copy h1 {
  margin: 0.95rem 0 0;
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(2.15rem, 4.8vw, 3.7rem);
  line-height: 1.02;
  background: linear-gradient(90deg, #ffffff 0%, #a8d8ff 56%, #d6e9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  margin: 1rem 0 0;
  color: #a8bcdb;
  line-height: 1.7;
}

.service-pill-track {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-pill-track span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(144, 203, 255, 0.42);
  background: rgba(6, 22, 45, 0.56);
  color: #d7e9ff;
  padding: 0.34rem 0.66rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-actions {
  margin-top: 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-panel {
  padding: 1rem;
}

.terminal-head {
  display: flex;
  align-items: center;
  gap: 0.44rem;
  padding: 0.5rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(185, 215, 255, 0.22);
  background: rgba(0, 0, 0, 0.2);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.dot.red {
  background: #ff5e5e;
}

.dot.yellow {
  background: #9bb2d9;
}

.dot.green {
  background: #54d67a;
}

.terminal-stream {
  margin-top: 0.7rem;
  padding: 0.8rem;
  min-height: 295px;
  border-radius: 12px;
  border: 1px solid rgba(185, 215, 255, 0.16);
  background: rgba(1, 4, 11, 0.72);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  line-height: 1.5;
  overflow: hidden;
  position: relative;
}

.terminal-stream::before {
  content: "";
  position: absolute;
  inset: -35% 0 auto 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(134, 220, 255, 0.25), rgba(134, 220, 255, 0));
  animation: terminalScan 2.4s linear infinite;
  pointer-events: none;
}

.terminal-stream::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.44) 100%);
  pointer-events: none;
}

.term-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.5rem;
  align-items: baseline;
  color: #c8e7ff;
  text-shadow: 0 0 8px rgba(89, 223, 255, 0.24);
  opacity: 0;
  transform: translateY(6px);
  animation: lineIn 0.45s ease forwards;
}

.term-line .time {
  color: #6ca8b7;
}

.term-line .command {
  color: #d8e7ff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.term-line .status {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status.ok {
  color: #8ed4ff;
}

.status.warn {
  color: #b2c6e6;
}

.status.info {
  color: #7fd4ff;
}

.trust-strip {
  margin-top: 0.65rem;
  padding: 0.95rem;
  display: grid;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.92);
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.trust-track {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.trust-track span {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(171, 196, 236, 0.5);
  background: rgba(241, 247, 255, 0.9);
  padding: 0.38rem 0.66rem;
  font-size: 0.76rem;
  color: #2d4d7e;
  font-family: "JetBrains Mono", monospace;
}

.stat-band {
  margin-top: 0.65rem;
  padding: 0.9rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.92);
}

.stat-tile {
  border-radius: 12px;
  border: 1px solid rgba(177, 203, 241, 0.42);
  background: rgba(246, 251, 255, 0.95);
  padding: 0.85rem;
}

.stat-value {
  margin: 0;
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}

.stat-tile span {
  margin-top: 0.45rem;
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.code-marquee-wrap {
  margin-top: 0.85rem;
  padding: 0.72rem;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.code-marquee {
  display: flex;
  width: max-content;
  gap: 0.55rem;
  animation: marquee 14s linear infinite;
}

.code-chip {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
  color: #2f4f7f;
  border: 1px solid rgba(175, 205, 245, 0.55);
  border-radius: 999px;
  background: rgba(244, 250, 255, 0.95);
  padding: 0.38rem 0.7rem;
  white-space: nowrap;
  animation: chipPulse 1.9s ease-in-out infinite;
}

.block {
  padding: 4rem 0 1.3rem;
}

.teklif-yonlendirme-inner {
  border-radius: var(--radius);
  border: 1px solid rgba(169, 198, 240, 0.45);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 46px rgba(17, 54, 111, 0.12);
  padding: 1.1rem;
  display: grid;
  gap: 0.72rem;
}

.contact-grid {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.contact-card {
  border-radius: 14px;
  border: 1px solid rgba(165, 190, 227, 0.48);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 32px rgba(19, 49, 92, 0.1);
  padding: 0.9rem;
  display: grid;
  gap: 0.5rem;
}

.contact-label {
  margin: 0;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  font-weight: 800;
}

.contact-main {
  margin: 0;
  text-decoration: none;
  color: var(--text);
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.15rem;
  line-height: 1.2;
}

.contact-main.static {
  text-decoration: none;
}

.contact-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.58;
}

.contact-grid-pro .contact-card {
  min-height: 176px;
}

.contact-map-shell {
  border-radius: var(--radius);
  border: 1px solid rgba(165, 190, 227, 0.5);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 36px rgba(19, 49, 92, 0.11);
  padding: 0.8rem;
}

.contact-map {
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 14px;
  display: block;
}

.contact-map-actions {
  margin-top: 0.72rem;
  display: flex;
  justify-content: flex-end;
}

.block-head h2 {
  margin: 0.7rem 0 0;
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(1.68rem, 3.1vw, 2.56rem);
  line-height: 1.08;
}

.subtext {
  margin: 0.82rem 0 0;
  max-width: 76ch;
  color: var(--muted);
  line-height: 1.65;
}

.faq-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.faq-card {
  border-radius: 14px;
  border: 1px solid rgba(173, 202, 240, 0.48);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 32px rgba(16, 56, 115, 0.11);
  padding: 0.95rem;
}

.faq-card h3 {
  margin: 0;
  font-size: 1rem;
}

.faq-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.9rem;
}

.city-chip-grid {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
}

.city-chip-grid span {
  border-radius: 999px;
  border: 1px solid rgba(164, 193, 235, 0.52);
  background: rgba(246, 251, 255, 0.95);
  padding: 0.36rem 0.72rem;
  font-size: 0.8rem;
  color: #274b7d;
  font-family: "JetBrains Mono", monospace;
}

.city-cta {
  margin-top: 1rem;
}

.city-list-full {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.city-list-full li a {
  display: block;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid rgba(169, 197, 237, 0.48);
  background: rgba(255, 255, 255, 0.94);
  color: #203d68;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.66rem 0.74rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.city-list-full li a:hover {
  transform: translateY(-1px);
  border-color: rgba(104, 168, 250, 0.68);
  box-shadow: 0 12px 26px rgba(18, 76, 153, 0.14);
}

.showcase-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.showcase-card {
  padding: 0.9rem;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.8rem;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(91, 198, 255, 0.18) 34%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.showcase-card:hover::after {
  transform: translateX(120%);
}

.showcase-visual {
  --tone-a: #2f6fe6;
  --tone-b: #17346d;
  border-radius: 13px;
  border: 1px solid rgba(196, 221, 255, 0.22);
  min-height: 170px;
  padding: 0.75rem;
  background: linear-gradient(135deg, var(--tone-a), var(--tone-b));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  align-items: end;
}

.tone-medical .showcase-visual {
  --tone-a: #3774ec;
  --tone-b: #123062;
}

.tone-dental .showcase-visual {
  --tone-a: #31b8c4;
  --tone-b: #0f5f69;
}

.tone-law .showcase-visual {
  --tone-a: #767f95;
  --tone-b: #2a3145;
}

.tone-construction .showcase-visual {
  --tone-a: #4d6894;
  --tone-b: #203a62;
}

.tone-estate .showcase-visual {
  --tone-a: #3fc7e3;
  --tone-b: #1b5f83;
}

.tone-dance .showcase-visual {
  --tone-a: #5574a5;
  --tone-b: #2b446e;
}

.tone-pilates .showcase-visual {
  --tone-a: #64cfa7;
  --tone-b: #2f7f73;
}

.tone-gym .showcase-visual {
  --tone-a: #3f6797;
  --tone-b: #1d365f;
}

.browser-frame {
  border-radius: 10px;
  border: 1px solid rgba(238, 247, 255, 0.35);
  background: rgba(4, 11, 26, 0.65);
  overflow: hidden;
}

.browser-head {
  height: 24px;
  border-bottom: 1px solid rgba(238, 247, 255, 0.2);
  background: rgba(1, 6, 18, 0.64);
  display: flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0 0.42rem;
}

.browser-head span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(233, 246, 255, 0.72);
}

.browser-body {
  padding: 0;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.browser-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mock-line {
  border-radius: 6px;
  background: rgba(218, 238, 255, 0.25);
  height: 8px;
}

.mock-line.sm {
  width: 52%;
}

.mock-line.md {
  width: 75%;
}

.mock-line.lg {
  width: 100%;
}

.phone-frame {
  width: 82px;
  border-radius: 14px;
  border: 1px solid rgba(238, 247, 255, 0.4);
  background: rgba(1, 6, 18, 0.66);
  padding: 0.3rem;
}

.phone-notch {
  width: 38px;
  height: 6px;
  border-radius: 999px;
  margin: 0 auto 0.35rem;
  background: rgba(216, 240, 255, 0.42);
}

.phone-body {
  border-radius: 10px;
  padding: 0;
  background: rgba(214, 236, 255, 0.12);
  overflow: hidden;
  aspect-ratio: 9 / 16;
}

.phone-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mock-pill {
  height: 12px;
  border-radius: 999px;
  background: rgba(217, 238, 255, 0.3);
}

.showcase-content {
  display: grid;
  gap: 0.28rem;
}

.showcase-content p {
  margin: 0;
  font-size: 0.74rem;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.showcase-content h3 {
  margin: 0;
  font-size: 1.05rem;
}

.showcase-content span {
  color: var(--muted);
  font-size: 0.82rem;
}

.category-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.category-card {
  border: 1px solid rgba(173, 202, 240, 0.5);
  background: rgba(248, 252, 255, 0.96);
  border-radius: 14px;
  padding: 0.82rem;
  text-align: left;
  display: grid;
  gap: 0.38rem;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(27, 65, 124, 0.08);
}

.category-card:hover {
  transform: translateY(-2px);
  border-color: rgba(106, 171, 255, 0.65);
}

.category-card.active {
  border-color: rgba(78, 157, 255, 0.8);
  box-shadow: 0 16px 34px rgba(27, 95, 182, 0.18);
}

.category-sector {
  color: var(--mint);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.category-card strong {
  font-size: 0.95rem;
  color: var(--text);
}

.category-card small {
  font-size: 0.8rem;
  color: var(--muted);
}

.category-detail-shell {
  display: none;
  margin-top: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(170, 198, 239, 0.45);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 46px rgba(17, 54, 111, 0.12);
  padding: 1rem;
}

.category-detail-shell.active {
  display: block;
}

.category-detail-head p {
  margin: 0;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  font-weight: 800;
}

.category-detail-head h3 {
  margin: 0.45rem 0 0;
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.25rem;
}

.project-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.project-grid.single {
  margin-top: 0.95rem;
  grid-template-columns: 1fr;
}

.project-card {
  padding: 1rem;
  display: grid;
  gap: 0.82rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
  transform-style: preserve-3d;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(95, 226, 255, 0.14) 36%, transparent 56%);
  transform: translateX(-120%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.project-card:hover {
  border-color: rgba(129, 213, 255, 0.55);
  box-shadow: 0 26px 66px rgba(4, 14, 30, 0.62);
}

.project-card:hover::before {
  transform: translateX(120%);
}

.project-preview {
  border-radius: 14px;
  border: 1px solid rgba(205, 223, 251, 0.25);
  min-height: 152px;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: 160% 160%;
  animation: shift 8s ease-in-out infinite;
}

.preview-medical {
  background-image: linear-gradient(135deg, #3a6de1 0%, #15346d 60%, #09142a 100%);
}

.preview-dental {
  background-image: linear-gradient(135deg, #2db6c2 0%, #146a76 58%, #0a2530 100%);
}

.preview-law {
  background-image: linear-gradient(135deg, #7a7e8c 0%, #2d3244 56%, #0a0f1d 100%);
}

.preview-construction {
  background-image: linear-gradient(135deg, #4d6894 0%, #23426b 58%, #0f2037 100%);
}

.preview-estate {
  background-image: linear-gradient(135deg, #40c3e3 0%, #206486 58%, #0d1e2e 100%);
}

.preview-dance {
  background-image: linear-gradient(135deg, #5574a5 0%, #304f7a 58%, #152742 100%);
}

.preview-pilates {
  background-image: linear-gradient(135deg, #64cfa7 0%, #2f7f73 58%, #122528 100%);
}

.preview-gym {
  background-image: linear-gradient(135deg, #3f6797 0%, #264672 58%, #11263f 100%);
}

.preview-badge {
  display: inline-flex;
  align-self: flex-start;
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  background: rgba(1, 11, 29, 0.5);
  border: 1px solid rgba(239, 246, 255, 0.35);
  font-size: 0.71rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.preview-kpi {
  margin: 0.7rem 0 0;
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.45rem;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.66rem;
}

.project-sector {
  margin: 0;
  color: var(--mint);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 800;
}

.project-stack {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.project-title {
  margin: 0;
  font-size: 1.23rem;
}

.project-desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
  font-size: 0.93rem;
}

.project-list {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.42rem;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.88rem;
}

.project-media {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.project-media figure {
  margin: 0;
  border-radius: 10px;
  border: 1px solid rgba(173, 202, 240, 0.5);
  overflow: hidden;
  background: #f1f6ff;
}

.project-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.28s ease;
}

.project-card:hover .project-media img {
  transform: scale(1.06);
}

.project-code {
  margin: 0;
  border-radius: 11px;
  border: 1px solid rgba(182, 214, 255, 0.22);
  background: rgba(3, 7, 15, 0.85);
  padding: 0.66rem 0.72rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  color: #98dfff;
  overflow: auto;
  white-space: pre;
}

.project-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.project-links a {
  color: var(--text);
  font-size: 0.85rem;
}

.flow-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.flow-grid article {
  padding: 1rem;
}

.flow-grid p {
  margin: 0;
  width: 33px;
  height: 33px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #041526;
  background: linear-gradient(140deg, var(--brand-soft), #73a6de);
  font-weight: 800;
}

.flow-grid h3 {
  margin: 0.72rem 0 0;
}

.flow-grid span {
  margin-top: 0.36rem;
  display: block;
  color: var(--muted);
  line-height: 1.58;
  font-size: 0.9rem;
}

.proposal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.proposal-copy {
  padding: 1.45rem;
}

.proposal-copy h2 {
  margin: 0.78rem 0 0;
  font-family: "Chakra Petch", sans-serif;
  line-height: 1.12;
}

.proposal-copy p {
  color: var(--muted);
  line-height: 1.62;
}

.proposal-copy ul {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.42rem;
  color: var(--muted);
}

.estimate-box {
  margin-top: 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(187, 217, 255, 0.3);
  background: linear-gradient(140deg, rgba(11, 27, 52, 0.95) 0%, rgba(8, 20, 39, 0.9) 100%);
  padding: 0.95rem;
}

.estimate-label {
  margin: 0;
  font-size: 0.75rem;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.estimate-price {
  margin: 0.55rem 0 0;
  font-family: "Chakra Petch", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.estimate-timeline {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.proposal-form {
  padding: 1rem;
  display: grid;
  gap: 0.72rem;
}

.proposal-form label {
  display: grid;
  gap: 0.34rem;
  font-size: 0.91rem;
  font-weight: 600;
}

.inline-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.module-picker {
  margin: 0;
  border-radius: 12px;
  border: 1px solid rgba(186, 210, 245, 0.45);
  background: rgba(245, 250, 255, 0.95);
  padding: 0.8rem;
}

.module-picker legend {
  padding: 0 0.35rem;
  font-size: 0.8rem;
  color: var(--mint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.module-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.42rem;
  font-size: 0.88rem;
}

.module-item input {
  width: 16px;
  height: 16px;
  accent-color: #63d0ff;
}

.form-actions {
  display: grid;
  gap: 0.52rem;
}

.proposal-form input,
.proposal-form select,
.proposal-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(179, 204, 241, 0.58);
  background: #ffffff;
  color: var(--text);
  font: inherit;
  padding: 0.74rem 0.8rem;
}

.proposal-form textarea {
  resize: vertical;
  min-height: 112px;
}

.proposal-form input:focus,
.proposal-form select:focus,
.proposal-form textarea:focus {
  outline: 2px solid rgba(115, 165, 225, 0.85);
  border-color: transparent;
}

.site-footer {
  padding: 2.5rem 0 2.8rem;
}

.footer-inner {
  border-top: 1px solid rgba(176, 201, 239, 0.48);
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.footer-inner a {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.56s ease, transform 0.56s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

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

@keyframes torchPulse {
  0%,
  100% {
    filter: saturate(135%) blur(0px);
  }
  50% {
    filter: saturate(170%) blur(0.4px);
  }
}

@keyframes chipPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(82, 172, 255, 0);
  }
  50% {
    transform: translateY(-1px);
    box-shadow: 0 0 14px rgba(82, 172, 255, 0.26);
  }
}

@keyframes codeFlow {
  0% {
    opacity: 0;
    transform: translate3d(0, -50%, 0) scale(0.96);
  }
  8%,
  88% {
    opacity: var(--op, 0.82);
  }
  100% {
    opacity: 0;
    transform: translate3d(140vw, -50%, 0) scale(1.05);
  }
}

@keyframes stormSweep {
  0% {
    transform: translate3d(0, 0, 0) scaleX(0.72);
    opacity: 0;
  }
  18%,
  72% {
    opacity: 0.82;
  }
  100% {
    transform: translate3d(140vw, 0, 0) scaleX(1.08);
    opacity: 0;
  }
}

@keyframes beamSweep {
  0%,
  100% {
    transform: translate3d(-28vw, 0, 0) rotate(12deg);
    opacity: 0.45;
  }
  50% {
    transform: translate3d(95vw, 0, 0) rotate(12deg);
    opacity: 0.85;
  }
}

@keyframes terminalScan {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(270%);
  }
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(10px, 16px, 0);
  }
}

@media (max-width: 1040px) {
  .hero,
  .proposal {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

  .site-nav {
    position: fixed;
    top: 80px;
    left: 1.1rem;
    right: 1.1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.72rem;
    max-height: calc(100vh - 100px);
    overflow: auto;
    padding: 0.9rem;
    border-radius: 14px;
    border: 1px solid rgba(144, 178, 227, 0.46);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(237, 246, 255, 0.97) 100%);
    box-shadow: 0 26px 48px rgba(16, 50, 102, 0.2);
    backdrop-filter: blur(16px);
    transform: translateY(-8px) scale(0.985);
    transform-origin: top center;
    opacity: 0;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }

  .site-nav.open {
    display: flex;
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  .site-nav a:not(.btn) {
    border-radius: 10px;
    border: 1px solid rgba(165, 196, 237, 0.35);
    background: rgba(246, 251, 255, 0.9);
    padding: 0.62rem 0.68rem;
    font-size: 0.88rem;
  }

  .site-nav a.btn {
    width: 100%;
  }

  .menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 8% 8%, rgba(88, 147, 220, 0.15) 0%, transparent 42%),
      radial-gradient(circle at 92% 5%, rgba(126, 181, 233, 0.15) 0%, transparent 46%),
      linear-gradient(165deg, #fafdff 0%, #edf4fb 100%);
  }

  .site-header {
    background: rgba(249, 252, 255, 0.88);
    border-bottom: 1px solid rgba(157, 186, 231, 0.42);
    backdrop-filter: blur(14px);
  }

  .header-inner {
    min-height: 72px;
  }

  .site-nav {
    top: 72px;
    left: 0.82rem;
    right: 0.82rem;
    max-height: calc(100vh - 84px);
    gap: 0.56rem;
  }

  .brand {
    gap: 0.48rem;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-main {
    font-size: 0.9rem;
    letter-spacing: 0.09em;
  }

  .brand-sub {
    font-size: 0.56rem;
    letter-spacing: 0.12em;
  }

  .hero {
    padding-top: 3.4rem;
    gap: 0.82rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.72rem, 8.4vw, 2.35rem);
    line-height: 1.06;
    letter-spacing: -0.01em;
  }

  .hero-copy p {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .hero-actions {
    gap: 0.52rem;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
    min-height: 42px;
  }

  body.mobile-clean .scan-beam,
  body.mobile-clean .orb,
  body.mobile-clean .storm-flare,
  body.mobile-clean .torch-layer {
    display: none !important;
  }

  body.mobile-clean .code-rain {
    opacity: 0.24;
    mix-blend-mode: normal;
  }

  body.mobile-clean.perf-lite .code-rain {
    opacity: 0.16;
  }

  body.mobile-clean .code-flow {
    color: rgba(24, 98, 151, 0.64);
    font-weight: 700;
    text-shadow: none;
  }

  .hero-copy,
  .hero-panel,
  .trust-strip,
  .project-card,
  .showcase-card,
  .flow-grid article,
  .proposal-copy,
  .proposal-form,
  .category-detail-shell,
  .stat-band,
  .code-marquee-wrap {
    padding: 0.96rem;
  }

  body.mobile-clean .project-card,
  body.mobile-clean .showcase-card,
  body.mobile-clean .category-card,
  body.mobile-clean .flow-grid article,
  body.mobile-clean .contact-card,
  body.mobile-clean .proposal-copy,
  body.mobile-clean .proposal-form,
  body.mobile-clean .category-detail-shell {
    border-color: rgba(148, 181, 228, 0.44);
    background: linear-gradient(162deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 250, 255, 0.95) 100%);
    box-shadow: 0 16px 34px rgba(17, 59, 123, 0.12);
  }

  .project-card.torch-on,
  .showcase-card.torch-on,
  .flow-grid article.torch-on {
    transform: none;
    box-shadow: 0 22px 44px rgba(17, 71, 141, 0.18);
  }

  .showcase-visual {
    min-height: 188px;
    grid-template-columns: 1fr auto;
  }

  .phone-frame {
    width: 74px;
  }

  .project-title {
    font-size: 1.1rem;
  }

  .project-desc {
    font-size: 0.9rem;
  }

  .project-code {
    font-size: 0.68rem;
    line-height: 1.42;
  }

  .flow-grid,
  .stat-band,
  .inline-fields {
    grid-template-columns: 1fr;
  }

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

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

  .category-card strong {
    font-size: 0.92rem;
  }

  .category-card small {
    font-size: 0.78rem;
  }

  .city-list-full {
    grid-template-columns: 1fr;
  }

  .terminal-stream {
    min-height: 220px;
  }

  .terminal-head {
    font-size: 0.69rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.36rem;
  }
}

@media (hover: none) and (pointer: coarse) {
  .btn:active {
    transform: translateY(-1px) scale(0.995);
  }

  .showcase-card:active,
  .project-card:active,
  .category-card:active,
  .flow-grid article:active,
  .contact-card:active {
    transform: translateY(-1px);
    border-color: rgba(103, 171, 255, 0.62);
    box-shadow: 0 18px 36px rgba(16, 67, 136, 0.16);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .code-rain,
  .code-float-layer,
  .scan-beam,
  .cursor-glow {
    display: none;
  }
}
